-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 941 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
{
"name": "psx/api-bundle",
"type": "symfony-bundle",
"description": "PSX API Symfony Bundle",
"keywords": ["api", "rest", "code-generator", "specification", "openapi", "dto"],
"homepage": "https://phpsx.org",
"license": "MIT",
"authors": [
{
"name": "Christoph Kappestein",
"email": "[email protected]",
"homepage": "https://chrisk.app"
}
],
"require": {
"php": ">=8.2",
"psx/api": "^7.2",
"psx/data": "^7.0",
"psx/schema": "^7.2",
"psx/sql": "^4.1",
"symfony/framework-bundle": "^6.4|^7.0"
},
"autoload": {
"psr-4": {
"PSX\\ApiBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PSX\\ApiBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"vimeo/psalm": "^5.0"
}
}