forked from odan/slim4-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
81 lines (81 loc) · 2.61 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "odan/slim4-skeleton",
"type": "project",
"description": "A Slim 4 skeleton",
"keywords": [
"slim-framework",
"skeleton",
"slim",
"slim4",
"apache"
],
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-pdo": "*",
"cakephp/chronos": "^2",
"cakephp/database": "^4",
"cakephp/validation": "^4.2",
"fig/http-message-util": "^1.1",
"lulco/phoenix": "^2.0",
"monolog/monolog": "^2",
"nyholm/psr7": "^1.4",
"nyholm/psr7-server": "^1.0",
"php-di/php-di": "^6",
"selective/array-reader": "^1.1",
"selective/basepath": "^2",
"selective/validation": "^2",
"slim/php-view": "^3.0",
"slim/slim": "^4",
"symfony/cache": "^5.3",
"symfony/console": "^5",
"symfony/polyfill-uuid": "^1.22",
"symfony/yaml": "^5.2",
"tuupola/slim-basic-auth": "^3.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"mikey179/vfsstream": "^1.6",
"overtrue/phplint": "^3",
"phpstan/phpstan": "1.*",
"phpunit/phpunit": "^8 || ^9",
"selective/test-traits": "^2",
"squizlabs/php_codesniffer": "^3",
"symfony/filesystem": "^5",
"symfony/finder": "^5"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/"
}
},
"scripts": {
"cs:check": "php-cs-fixer fix --dry-run --format=txt --verbose --diff --config=.cs.php --ansi",
"cs:fix": "php-cs-fixer fix --config=.cs.php --ansi",
"lint": "phplint ./ --exclude=vendor --no-interaction --no-cache --ansi",
"phoenix": "phoenix --ansi",
"stan": "phpstan analyse -c phpstan.neon --no-progress --ansi",
"schema:dump": "php bin/console.php schema-dump --ansi",
"sniffer:check": "phpcs --standard=phpcs.xml",
"sniffer:fix": "phpcbf --standard=phpcs.xml",
"test": "phpunit --configuration phpunit.xml --do-not-cache-result --colors=always",
"test:all": [
"@lint",
"@cs:check",
"@sniffer:check",
"@stan",
"@test"
],
"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"
}
}