-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 947 Bytes
/
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
{
"name": "home/test-php",
"autoload": {
"psr-4": {
"PetAdoption\\": "src/",
"PetAdoptionTest\\": "tests/"
}
},
"authors": [
{
"name": "Douglas Volcato",
"email": "douglasvolcato@gmail.com"
}
],
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7",
"infection/infection": "^0.27.8",
"mockery/mockery": "^1.6"
},
"require": {
"egulias/email-validator": "^4.0",
"guzzlehttp/guzzle": "^7.8",
"ramsey/uuid": "^4.7",
"fakerphp/faker": "^1.23",
"firebase/php-jwt": "^6.10"
},
"scripts": {
"test": "phpunit",
"stan": "phpstan",
"fix": "phpcbf --standard=PSR12 src/",
"coverage": "XDEBUG_MODE=coverage phpunit --coverage-html coverage",
"infection": "infection --threads=$(nproc)"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}