-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
73 lines (73 loc) · 1.99 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
{
"name": "gabrielpcruz/slim",
"type": "project",
"description": "Skeleton slim framework 4 application (http + cli + oauth2)",
"keywords": [
"microframework",
"framework",
"slim"
],
"license": "MIT",
"authors": [
{
"name": "Gabriel Cruz",
"email": "gabrielpcruz.github@gmail.com"
}
],
"require": {
"php": ">=8.3",
"ext-iconv": "*",
"ext-json": "*",
"adbario/php-dot-notation": "^3.1",
"fig/http-message-util": "^1.1",
"guzzlehttp/psr7": "^2.4",
"illuminate/database": "^8.83",
"league/oauth2-server": "^8.3",
"ocramius/proxy-manager": "^1.0",
"php-di/php-di": "^6.4",
"phpmailer/phpmailer": "^6.7",
"slashtrace/slashtrace": "^1.1",
"slim/flash": "^0.4.0",
"slim/slim": "^4.10",
"slim/twig-view": "^3.3",
"symfony/console": "^5.4",
"symfony/yaml": "^5.4",
"twig/intl-extra": "^3.7"
},
"scripts": {
"test" : "./vendor/bin/pest",
"codesniffer" : "./vendor/bin/phpcs --colors --standard=PSR12 src",
"codesniffer-fix" : "./vendor/bin/phpcbf --colors --standard=PSR12 src",
"phpstan" : "./vendor/bin/phpstan --xdebug analyse -c phpstan.neon",
"check" : [
"@codesniffer",
"@phpstan"
],
"fix" : [
"@codesniffer-fix"
]
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Tests\\": "tests/"
},
"files": [
"resources/helpers/slim.php"
]
},
"require-dev": {
"mockery/mockery": "^1.5",
"pestphp/pest": "^1.22",
"phpstan/phpstan": "^1.9",
"squizlabs/php_codesniffer": "3.*"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}