-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1009 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 1009 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
{
"name": "jolicode/forecast-php-api",
"description": "An up to date PHP client for Harvest Forecast's API",
"keywords": ["forecast", "forecast api", "forecastapp", "harvest", "harvestapp", "janephp", "client", "openapi", "swagger", "sdk"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Xavier Lacot",
"email": "xlacot@jolicode.com"
}
],
"autoload": {
"psr-4": {
"JoliCode\\Forecast\\Api\\": "generated/",
"JoliCode\\Forecast\\": "src/"
}
},
"require": {
"php": ">=8.1",
"jane-php/open-api-runtime": "^7.6",
"php-http/client-implementation": "*",
"php-http/client-common": "^1.9 || ^2.0"
},
"require-dev": {
"jane-php/open-api-3": "^7.6",
"symfony/http-client": "^5.4 || ^6.0|| ^7.0",
"nyholm/psr7": "^1.6"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}