-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.02 KB
/
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
40
{
"name": "yngc0der/easyweek-php-api",
"type": "library",
"keywords": ["easyweek", "api", "client", "openapi", "swagger"],
"license": "MIT",
"authors": [
{
"name": "yngc0der",
"email": "rg.archuser@gmail.com"
}
],
"require": {
"php": ">=7.2",
"jane-php/open-api-runtime": "^7.5",
"php-http/discovery": "^1.19",
"psr/http-client-implementation": "*",
"php-http/client-common": "^2.7",
"php-http/multipart-stream-builder": "^1.3"
},
"require-dev": {
"jane-php/open-api-2": "^7.5",
"nyholm/psr7": "^1.8",
"friendsofphp/php-cs-fixer": "^3.38",
"symfony/http-client": "^6.3"
},
"autoload": {
"psr-4": {
"Yngc0der\\EasyWeek\\": "src/",
"Yngc0der\\EasyWeek\\Api\\": "generated/"
}
},
"conflict": {
"php-http/httplug": "< 2.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}