-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 799 Bytes
/
Copy pathcomposer.json
File metadata and controls
36 lines (36 loc) · 799 Bytes
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
{
"name": "danieldevelop/openapi-php-workorders",
"description": "API REST de órdenes de trabajo en PHP nativo, sin framework, documentada con OpenAPI 3 usando swagger-php y Swagger UI. Datos en archivos JSON, sin base de datos.",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"authors": [
{
"name": "Daniel Gomez",
"email": "51731637+danieldevelop@users.noreply.github.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"vlucas/phpdotenv": "^5.6",
"swagger-api/swagger-ui": "^5.32",
"zircote/swagger-php": "4.11",
"doctrine/annotations": "^2.0"
},
"config": {
"platform": {
"php": "8.1.0"
}
},
"require-dev": {
"symfony/var-dumper": "^6.4"
}
}