-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.1 KB
/
Copy pathcomposer.json
File metadata and controls
43 lines (43 loc) · 1.1 KB
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
{
"name": "selency/openapi",
"type": "library",
"description": "Provides a user-friendly, object-oriented library to build OpenAPI specifications using PHP.",
"keywords": ["openapi", "api", "specification", "documentation"],
"homepage": "https://selency.fr",
"license": "MIT",
"authors": [
{
"name": "Titouan Galopin",
"email": "galopintitouan@gmail.com"
},
{
"name": "Selency Team",
"homepage": "https://selency.fr"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.2",
"symfony/var-dumper": "^6.2",
"symfony/yaml": "^6.2",
"vimeo/psalm": "^5.8",
"phpunit/phpunit": "^9.5",
"sebastian/diff": "^4.0"
},
"autoload": {
"psr-4": {
"Selency\\OpenApi\\": "src/"
},
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"Selency\\OpenApi\\Tests\\": "tests/"
}
},
"minimum-stability": "dev"
}