-
Notifications
You must be signed in to change notification settings - Fork 91
/
composer.json
40 lines (40 loc) · 1.11 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "zendframework/zend-expressive-skeleton",
"type": "project",
"homepage": "https://github.com/zendframework/zend-expressive-skeleton",
"license": "BSD-3-CLAUSE",
"authors": [
{
"name": "Geert Eltink",
"homepage": "https://xtreamwayz.github.io/"
}
],
"require": {
"roave/security-advisories": "dev-master",
"zendframework/zend-expressive": "1.0.0rc2",
"zendframework/zend-stdlib": "~2.7"
},
"require-dev": {
"composer/composer": ">=1.0.0-alpha10",
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/"
}
},
"scripts": {
"pre-install-cmd": "App\\Composer\\OptionalPackages::install",
"pre-update-cmd": "App\\Composer\\OptionalPackages::install",
"test": [
"php vendor/squizlabs/php_codesniffer/scripts/phpcs",
"php vendor/phpunit/phpunit/phpunit"
]
}
}