-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
51 lines (51 loc) · 1.23 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
{
"name": "phpay-io/phpay",
"type": "library",
"autoload": {
"psr-4": {
"PHPay\\": "src/",
"PHPay\\Asaas\\": "src/Gateways/Asaas/",
"PHPay\\Efi\\": "src/Gateways/Efi/",
"Efi\\": "src/Gateways/Efi/",
"AsaasCustomer\\": "src/Gateways/Asaas/Resources/Customer/"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
},
"authors": [
{
"name": "Mário Lucas",
"email": "[email protected]"
}
],
"require-dev": {
"pestphp/pest": "3.5",
"laravel/pint": "^1.18",
"phpstan/phpstan": "^2.0",
"nunomaduro/termwind": "^2.3"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"require": {
"php": "^8.1",
"ext-curl": "*",
"guzzlehttp/guzzle": "^7.0"
},
"scripts": {
"lint": "pint -v",
"test:lint": "pint --test -v",
"test:unit": "pest --colors=always",
"test:types": "phpstan analyse --level=9",
"test": [
"@test:lint",
"@test:unit",
"@test:types"
]
}
}