-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
44 lines (44 loc) · 1.27 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
{
"name": "dersonsena/clean-arch-phpsummit",
"authors": [
{
"name": "Kilderson Sena",
"email": "[email protected]"
}
],
"scripts": {
"test": "phpunit --testdox --configuration tests/phpunit.xml",
"test-unit": "phpunit --configuration tests/phpunit.xml --testdox --testsuite unit",
"test-integration": "phpunit --configuration tests/phpunit.xml --testdox --testsuite integration",
"test-filter": "phpunit --configuration tests/phpunit.xml --filter ",
"test-coverage": "phpunit --configuration tests/phpunit.xml --coverage-html tests/coverage/html"
},
"require": {
"php": "^8.0",
"ext-json": "*",
"ramsey/uuid": "^4.1",
"vlucas/phpdotenv": "^5.3",
"psr/http-message": "^1.0",
"erandir/plug-route": "^4.3",
"guzzlehttp/guzzle": "^7.3",
"nyholm/psr7": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"dg/bypass-finals": "^1.3",
"fakerphp/faker": "^1.14"
},
"autoload": {
"psr-4": {
"App\\": "src\\"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests\\"
}
},
"config": {
"optimize-autoloader": true
}
}