-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.01 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.01 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
{
"name": "open-solid/open-api-assistant-bundle",
"description": "Assistant for OpenApiBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Yonel Ceruto",
"email": "open@yceruto.dev"
}
],
"require": {
"php": ">=8.2",
"doctrine/inflector": "^2.0",
"open-solid/open-api-assistant": "^0.1.0",
"symfony/form": "^7.0",
"symfony/framework-bundle": "^7.0",
"symfony/serializer": "^7.0",
"symfony/twig-bundle": "^7.0",
"symfony/validator": "^7.0"
},
"require-dev": {
"open-solid/open-api-bundle": "^0",
"phpunit/phpunit": "^10"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"OpenSolid\\OpenApiAssistantBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenSolid\\OpenApiAssistantBundle\\Tests\\": "tests/",
"Demo\\": "demo/src/"
}
}
}