-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 2.95 KB
/
composer.json
File metadata and controls
91 lines (91 loc) · 2.95 KB
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
82
83
84
85
86
87
88
89
90
91
{
"name": "odan/slim4-skeleton",
"type": "project",
"description": "A Slim 4 skeleton",
"keywords": [
"slim-framework",
"skeleton",
"slim",
"slim4",
"apache"
],
"license": "MIT",
"require": {
"php": "^7.3",
"ext-json": "*",
"ext-pdo": "*",
"cakephp/chronos": "^2",
"cakephp/database": "^4",
"fig/http-message-util": "^1.1",
"fullpipe/twig-webpack-extension": "^3.0",
"google/apiclient": "v2.8.3",
"monolog/monolog": "^2",
"odan/phinx-migrations-generator": "^5.1",
"php-di/php-di": "^6.2",
"selective/array-reader": "^1",
"selective/basepath": "^1",
"selective/validation": "^0.11",
"slim/psr7": "^1",
"slim/slim": "^4.5",
"slim/twig-view": "^3",
"symfony/console": "^5.0",
"symfony/http-foundation": "^5.1",
"symfony/translation": "^5.0",
"symfony/twig-bridge": "^5.0",
"databox/databox": "2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"overtrue/phplint": "^1.1",
"phpstan/phpstan": "0.*",
"phpunit/phpunit": "^7 || ^8",
"squizlabs/php_codesniffer": "^3.4",
"symfony/filesystem": "^5.0",
"symfony/finder": "^5.0"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"src/Utility/translate.php"
]
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"npm install",
"npm run build"
],
"build": "ant build",
"build:cc": "ant cc",
"check": [
"@lint",
"@cs:check",
"@sniffer:check",
"@phpstan",
"@test:coverage"
],
"cs:check": "php-cs-fixer fix --dry-run --format=txt --verbose --diff --diff-format=udiff --config=.cs.php",
"cs:fix": "php-cs-fixer fix --config=.cs.php",
"lint": "phplint ./ --exclude=vendor --no-interaction --no-cache",
"phinx:create": "phinx create -c config/phinx.php --ansi",
"phinx:generate": "phinx-migrations generate --overwrite -c config/phinx.php --ansi",
"phinx:migrate": "phinx migrate -c config/phinx.php --ansi -vvv",
"phpstan": "phpstan analyse src tests config --level=max -c phpstan.neon --no-progress --ansi",
"schema:dump": "php bin/console.php schema-dump",
"sniffer:check": "phpcs --standard=phpcs.xml",
"sniffer:fix": "phpcbf --standard=phpcs.xml",
"test": "phpunit --configuration phpunit.xml",
"test:coverage": "phpunit --configuration phpunit.xml --coverage-clover build/logs/clover.xml --coverage-html build/coverage",
"twig:compile": "php bin/console.php compile-twig --ansi"
}
}