-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.13 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.13 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
44
45
46
{
"name": "maslosoft/api-facades",
"description": "OpenAPI chainable facades generator",
"require-dev": {
"codeception/codeception": "^5",
"codeception/module-asserts": "^3",
"codeception/module-phpbrowser": "*",
"maslosoft/codeception-reflection-asserts": "^1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Maslosoft\\ApiFacades\\": "src/"
},
"files": [
"src/Logging.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Models\\": "tests/Models"
}
},
"authors": [
{
"name": "Peter Maselkowski",
"email": "office@maslosoft.com"
}
],
"require": {
"php": ">=8.3",
"maslosoft/cli-shared": "*",
"maslosoft/embedi": "^2|^3|^4",
"maslosoft/light": "^1|^2|^4",
"monolog/monolog": ">=2",
"symfony/yaml": ">2.6"
},
"suggest": {
"jane-php/open-api-3": "Generate OpenAPI client from OpenAPI spec"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}