-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
50 lines (50 loc) · 1.14 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
{
"name": "uderline/openapi-php-attributes",
"description": "Automatically render your OpenApi 3 file describing your PHP API using attributes",
"keywords": [
"api",
"php",
"json",
"attributes",
"openapi",
"renderer",
"api-rest",
"openapi3",
"php8"
],
"minimum-stability": "stable",
"homepage": "https://uderline.github.io/openapi-php-attributes/",
"license": "MIT",
"authors": [
{
"name": "Joseph Martell",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=8.1",
"symfony/finder": "^6.0|^7.0",
"symfony/http-foundation": "^6.0|^7.0",
"symfony/string": "^6.2"
},
"autoload": {
"psr-4": {
"OpenApiGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenApiGenerator\\Tests\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^10.2.2"
},
"scripts": {
"test": "vendor/bin/phpunit tests"
},
"bin": [
"opag"
]
}