-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
72 lines (72 loc) · 1.73 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"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.2",
"ext-json": "*",
"php-http/cache-plugin": "^1.7",
"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": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
"guzzlehttp/psr7": "^1.0",
"php-http/guzzle7-adapter": "^0.1.1 || ^1.0.0",
"php-http/mock-client": "^1.2",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^0.12.65",
"phpunit/phpunit": "^7.0 | ^8.0 | ^9.0",
"slevomat/coding-standard": "^6.3 || ^7.0",
"squizlabs/php_codesniffer": "^3.3"
},
"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.3.x-dev"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit",
"lint": "@php vendor/bin/phpcs --report=summary,source",
"format": "@php vendor/bin/phpcbf --report=summary,source",
"analyze": "@php vendor/bin/phpstan analyze"
}
}