-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
42 lines (42 loc) · 1.13 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
41
42
{
"name": "jolicode/harvest-php-api",
"description": "An up to date PHP client for Harvest's API",
"keywords": ["harvest", "harvest api", "harvestapp", "client", "openapi", "swagger", "sdk"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Xavier Lacot",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"JoliCode\\Harvest\\Api\\": "generated/",
"JoliCode\\Harvest\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"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",
"symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0",
"symfony/yaml": "^5.4 || ^6.0 || ^7.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}