-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.11 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.11 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
{
"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": "xlacot@jolicode.com"
}
],
"autoload": {
"psr-4": {
"JoliCode\\Harvest\\Api\\": "generated/",
"JoliCode\\Harvest\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=8.2",
"jane-php/open-api-runtime": "^7.9",
"php-http/client-common": "^1.9 || ^2.0",
"php-http/client-implementation": "*"
},
"require-dev": {
"jane-php/open-api-3": "^7.9",
"nyholm/psr7": "^1.6",
"symfony/http-client": "^6.4 || ^7.0 || ^8.0",
"symfony/phpunit-bridge": "^6.4 || ^7.0 || ^8.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
},
"sort-packages": true
}
}