-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
39 lines (39 loc) · 924 Bytes
/
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": "psx/api",
"description": "Parse and generate API specification formats",
"keywords": ["api", "specification", "openapi", "raml", "swagger"],
"homepage": "https://phpsx.org",
"license": "Apache-2.0",
"authors": [
{
"name": "Christoph Kappestein",
"email": "[email protected]",
"homepage": "https://chrisk.app"
}
],
"require": {
"php": ">=8.1",
"psx/json": "^3.0",
"psx/openapi": "^1.0",
"psx/schema": "^7.0",
"symfony/cache": "^5.0|^6.0|^7.0",
"symfony/console": "^5.0|^6.0|^7.0",
"symfony/yaml": "^5.0|^6.0|^7.0",
"symfony/property-access": "^5.0|^6.0|^7.0",
"twig/twig": "^2.4|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"vimeo/psalm": "^5.0"
},
"autoload": {
"psr-4": {
"PSX\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PSX\\Api\\Tests\\": "tests/"
}
}
}