-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 1.03 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
{
"name": "chriha/laravel-api-documentation",
"description": "description",
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Christopher Hartmann",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0|^8.1|^8.2|^8.3",
"symfony/yaml": "^6.0|^7.0",
"illuminate/http": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"illuminate/routing": "^9.0|^10.0|^11.0",
"illuminate/view": "^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"Chriha\\ApiDocumentation\\": "src",
"Chriha\\ApiDocumentation\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Chriha\\ApiDocumentation\\ApiDocumentationServiceProvider"
]
}
},
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "^9.1",
"orchestra/testbench-core": "^7.1",
"laravel/pint": "^1.7"
}
}