forked from wearerequired/harvest-api-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.23 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "wearerequired/harvest-api-php-client",
"type": "library",
"description": "PHP client library for the Harvest REST API.",
"keywords": [
"harvest",
"api"
],
"homepage": "https://github.com/wearerequired/harvest-api-php-client",
"license": "MIT",
"authors": [
{
"name": "required",
"email": "[email protected]",
"homepage": "https://required.com",
"role": "Company"
},
{
"name": "Dominik Schilling",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"ext-json": "*",
"php-http/client-common": "^1.6 || ^2.0",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.0",
"php-http/httplug": "^1.1 || ^2.0",
"php-http/message-factory": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"guzzlehttp/psr7": "^1.0",
"php-http/guzzle6-adapter": "^1.1 || ^2.0",
"php-http/mock-client": "^1.0",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"Required\\Harvest\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Required\\Harvest\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
}
}