-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.36 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
{
"name": "prinsfrank/jsonapi-openapi-spec-generator",
"description": "Generate OpenAPI specifications for JSON:API's",
"type": "library",
"license": "MIT",
"extra": {
"laravel": {
"providers": [
"PrinsFrank\\JsonapiOpenapiSpecGenerator\\OpenApiSpecGeneratorServiceProvider"
]
}
},
"require": {
"php": "^8.0",
"laravel-json-api/laravel": "^2.1 || ^3.0",
"illuminate/support": "^8.0 || ^9.0 || ^10.0",
"goldspecdigital/oooas": "^2.8"
},
"autoload": {
"psr-4": {
"PrinsFrank\\JsonapiOpenapiSpecGenerator\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^7.4",
"friendsofphp/php-cs-fixer": "^3.13",
"phpstan/phpstan": "^1.9",
"nunomaduro/larastan": "^2.3"
},
"autoload-dev": {
"psr-4": {
"PrinsFrank\\JsonapiOpenapiSpecGenerator\\Tests\\": "tests/"
}
},
"scripts": {
"cs": "php-cs-fixer fix --allow-risky=yes --dry-run",
"cs:fix": "php-cs-fixer fix --allow-risky=yes",
"stan": "phpstan analyse",
"unit": "phpunit --testsuite=Unit",
"feature": "phpunit --testsuite=Feature",
"test": [
"@unit",
"@feature",
"@cs"
]
}
}