Skip to content

Commit 6db293a

Browse files
committed
Add a composer configuration file for the distribution
1 parent a6f65d5 commit 6db293a

File tree

2 files changed

+23
-4
lines changed

2 files changed

+23
-4
lines changed

.gitignore

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
*.exe
2-
*.exe~
3-
*.orig
4-
*.test
51
.*.swp
62
.DS_Store
3+
web/app/composer.json

web/app/composer.json.dist

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"require": {
3+
4+
},
5+
"require-dev": {
6+
"squizlabs/php_codesniffer": "2.*",
7+
"phpunit/phpunit": "5.7.*",
8+
"apigen/apigen": "^4.1.2"
9+
},
10+
"autoload": {
11+
"psr-4": {
12+
"App\\Acme\\": "src/"
13+
}
14+
},
15+
"autoload-dev": {
16+
"psr-4": {
17+
"AppTest\\Acme\\": "test/"
18+
}
19+
},
20+
"minimum-stability": "dev",
21+
"prefer-stable": true
22+
}

0 commit comments

Comments
 (0)