-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.65 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "svycka/codeception-zend-expressive-module",
"type": "library",
"description": "Codeception Module for Zend Expressive 3 Framework",
"keywords": [
"svycka",
"codeception-zend-expressive-module",
"Zend Expressive",
"Codeception",
"module",
"test"
],
"homepage": "https://github.com/svycka/codeception-zend-expressive-module",
"license": "MIT",
"authors": [
{
"name": "Vytautas Stankus",
"email": "[email protected]",
"homepage": "https://github.com/svycka",
"role": "Developer"
}
],
"require": {
"php": "^7.1",
"codeception/codeception": "^2.4",
"zendframework/zend-expressive": "^3.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.2.3",
"zendframework/zend-config-aggregator": "^1.1",
"zendframework/zend-diactoros": "^1.7",
"zendframework/zend-expressive-fastroute": "^3.0",
"zendframework/zend-expressive-helpers": "^5.0",
"zendframework/zend-servicemanager": "^3.3"
},
"autoload": {
"psr-4": {
"Svycka\\Codeception\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "tests/_data/app/"
}
},
"scripts": {
"test": "codecept run",
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src"
},
"config": {
"sort-packages": true
}
}