forked from xolvionl/laravel-data-openapi-generator
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
58 lines (58 loc) · 1.65 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
{
"name": "xolvio/laravel-data-openapi-generator",
"description": "Generate OpenAPI specification from Laravel routes and Laravel Data objects.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Xolvio\\OpenApiGenerator\\": "src/",
"Xolvio\\OpenApiGenerator\\Test\\": "tests/Dummy/"
}
},
"extra": {
"laravel": {
"providers": [
"Xolvio\\OpenApiGenerator\\OpenApiServiceProvider"
]
}
},
"authors": [
{
"name": "Robert Groot",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"format": [
"@php ./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --verbose --config=./php-cs.php --path-mode=intersection . --ansi"
],
"format-dry": [
"@php ./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --dry-run --verbose --config=./php-cs.php --path-mode=intersection . --ansi"
],
"larastan": [
"vendor/bin/phpstan analyse"
],
"test": [
"vendor/bin/pest"
]
},
"require": {
"spatie/laravel-data": "^3.2",
"laravel/framework": "^8|^9|^10",
"phpdocumentor/reflection-docblock": "^5.3",
"spatie/invade": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.15",
"nunomaduro/larastan": "^2.5",
"orchestra/testbench": "^7.8",
"pestphp/pest": "^1.21"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}