-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
52 lines (52 loc) · 1.37 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
{
"name": "dersonsena/clean-arch-pokemon",
"type": "project",
"authors": [
{
"name": "Kilderson Sena",
"email": "[email protected]"
}
],
"scripts": {
"test": "phpunit --colors",
"test-unit": "phpunit --colors --testsuite unit",
"test-filter": "phpunit --colors --filter ",
"coverage": "phpunit --coverage-html tests/coverage/html"
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-iconv": "*",
"slim/slim": "4.*",
"slim/psr7": "^1.3",
"php-di/slim-bridge": "^3.1",
"nyholm/psr7": "^1.3",
"nyholm/psr7-server": "^1.0",
"guzzlehttp/psr7": "^1.7",
"http-interop/http-factory-guzzle": "^1.0",
"laminas/laminas-diactoros": "^2.5",
"guzzlehttp/guzzle": "^7.0",
"vlucas/phpdotenv": "^5.2",
"robmorgan/phinx": "^0.12.4",
"predis/predis": "^1.1",
"respect/validation": "^2.1",
"twig/twig": "^3.0",
"jenssegers/blade": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"dg/bypass-finals": "^1.3"
},
"autoload": {
"psr-4": {
"App\\": "src\\"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests\\"
}
}
}