-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.13 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
{
"require": {
"cakephp/validation": "^4.3",
"cycle/annotated": "^2.4",
"cycle/orm": "^1.7",
"cycle/schema-builder": "^1.2",
"monolog/monolog": "^2.3",
"php-di/php-di": "^6.3",
"ramsey/uuid": "^4.2",
"selective/validation": "^2.0",
"slim/php-view": "^3.1",
"slim/psr7": "^1.5",
"slim/slim": "4.*",
"vlucas/phpdotenv": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"selective/test-traits": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"scripts": {
"test": "phpunit --testdox --configuration phpunit.xml --do-not-cache-result --colors=always",
"test:coverage": "php -d xdebug.mode=coverage -r \"require 'vendor/bin/phpunit';\" -- --configuration phpunit.xml --do-not-cache-result --colors=always --coverage-clover build/logs/clover.xml --coverage-html build/coverage"
}
}