Skip to content

Commit 66c998e

Browse files
committed
initial
0 parents  commit 66c998e

18 files changed

+789
-0
lines changed

.gitignore

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# phpstorm project files
2+
.idea
3+
4+
# netbeans project files
5+
nbproject
6+
7+
# zend studio for eclipse project files
8+
.buildpath
9+
.project
10+
.settings
11+
12+
# windows thumbnail cache
13+
Thumbs.db
14+
15+
# composer vendor dir
16+
/app/vendor
17+
18+
# composer itself is not needed
19+
composer.phar
20+
21+
# Mac DS_Store Files
22+
.DS_Store
23+
24+
# phpunit itself is not needed
25+
phpunit.phar
26+
# local phpunit config
27+
/phpunit.xml
28+
29+
tests/_output/*
30+
tests/_support/_generated
31+
32+
#vagrant folder
33+
/.vagrant
34+
35+
*-local.php
36+
/volumes

Dockerfile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM yiisoftware/yii2-php:7.2-apache
2+
3+
4+
5+
ENV PATH /app/vendor/bin:${PATH}

app/composer.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "devgroup/yii3_crm",
3+
"description": "Awesome yii3 crm",
4+
"type": "project",
5+
"require": {
6+
"yiisoft/yii2-dev": "~3.0.0-alpha1",
7+
"ezyang/htmlpurifier": "dev-master"
8+
},
9+
"license": "BSD",
10+
"authors": [
11+
{
12+
"name": "Alexander Kozhevnikov",
13+
"email": "[email protected]"
14+
}
15+
],
16+
"minimum-stability": "dev",
17+
"autoload": {
18+
"psr-4": {
19+
"app\\": "./"
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)