-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.42 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
{
"name": "treblle/api-responses",
"description": "A package to help you keep your API Responses standardized.",
"minimum-stability": "stable",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"role": "Developer",
"name": "Steve McDougall",
"email": "[email protected]",
"homepage": "https://www.juststeveking.uk/"
}
],
"autoload": {
"psr-4": {
"Treblle\\ApiResponses\\": "src/"
}
},
"require": {
"php": "^8.2",
"juststeveking/sdk-tools": "^0.0.5"
},
"require-dev": {
"laravel/pint": "^1.11",
"orchestra/testbench": "^8.9.1",
"pestphp/pest": "^2.16",
"phpstan/phpstan": "^1.10.32",
"roave/security-advisories": "dev-latest"
},
"extra": {
"laravel": {
"providers": [
"Treblle\\ApiResponses\\Providers\\PackageServiceProvider"
]
}
},
"scripts": {
"pint": [
"./vendor/bin/pint"
],
"stan": [
"./vendor/bin/phpstan analyse --memory-limit=3g"
],
"test": [
"./vendor/bin/pest"
]
},
"scripts-descriptions": {
"pint": "Run the Laravel Pint code standards",
"stan": "Run the PhpStan static analysis checks",
"test": "Run the pestPHP test suite"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
}
}