-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
101 lines (101 loc) · 2.83 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "jerfeson/slim4-skeleton",
"description": "Slim4 skeleton (http + cli + oauth2) with some add-ons out of the box",
"type": "project",
"keywords": [
"slim-framework",
"skeleton",
"slim",
"slim4",
"apache",
"nginx"
],
"require": {
"php": "^8.0 | ^7.4 | ^7.2",
"doctrine/annotations": "1.13.*",
"ext-intl": "*",
"ext-json": "*",
"ext-fileinfo": "*",
"illuminate/contracts": "8.*",
"illuminate/database": "8.*",
"illuminate/pagination": "8.*",
"illuminate/support": "8.*",
"php-di/php-di": "6.3.*",
"league/flysystem": "1.0.*",
"league/oauth2-server": "8.2.*",
"monolog/monolog": "2.3.*",
"naroga/redis-cache": "1.0.*",
"phpmailer/phpmailer": "6.1.*",
"respect/validation": "2.2.*",
"slashtrace/slashtrace": "1.1.*",
"slim/csrf": "1.2.*",
"slim/flash": "0.4.*",
"slim/psr7": "1.3.*",
"slim/slim": "4.8.*",
"slim/twig-view": "3.2.*",
"symfony/console": "5.3.*",
"symfony/translation": "5.3.*"
},
"license": "MIT",
"authors": [
{
"name": "Jerfeson Guerreiro",
"email": "[email protected]"
},
{
"name": "Thiago Dahner",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"config": {
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Console\\": "console/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.1",
"squizlabs/php_codesniffer": "^3.4",
"phpstan/phpstan": "0.*",
"overtrue/phplint": "^1.1",
"codeception/codeception": "4.1.*",
"codeception/module-phpbrowser": "^1.0.0",
"codeception/module-asserts": "^1.0.0",
"codeception/module-webdriver": "^1.0",
"codeception/module-rest": "1.2.*"
},
"scripts": {
"build:check": [
"@lint",
"@cs:check",
"@sniffer:check",
"@test:coverage"
],
"build:fix": [
"@cs:fix",
"@sniffer:fix"
],
"lint": "phplint ./ --exclude=vendor --no-interaction --no-cache",
"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",
"sniffer:check": "phpcs --standard=phpcs.xml",
"sniffer:fix": "phpcbf --standard=phpcs.xml",
"phpstan": "phpstan analyse tests --level=max -c phpstan.neon --no-progress --ansi",
"test:coverage": "php vendor/bin/codecept run --coverage --coverage-xml --coverage-html",
"schema:dump": "php bin/console.php schema-dump",
"test": "php vendor/bin/codecept run --steps",
"console:sample": "php public/index.php app:sample",
"console:migrate": "php public/index.php app:create-database down",
"npm:build": "npm rum build"
}
}