-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.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": "tonicforhealth/pagerduty-client",
"description": "This is the client for creating events and sending them to PagerDuty by API",
"license": "MIT",
"keywords": ["tonicforhealth", "PagerDuty", "Client", "Event", "API", "REST", "v2"],
"authors": [
{
"name": "Dmitry Gopkalo",
"email": "drefixs@gmail.com"
}
],
"require": {
"php-http/client-common": "~1.0",
"php-http/message": "~1.2",
"php-http/discovery": "~0.6",
"puli/composer-plugin": "^1.0@beta"
},
"require-dev": {
"phpunit/phpunit": "~4.8|~5.3",
"php-http/mock-client": "^0.3",
"guzzlehttp/psr7": "^1.3"
},
"suggest": {
"php-http/guzzle6-adapter": "~1.1",
"guzzlehttp/guzzle": "~6.1"
},
"autoload": {
"psr-4": {
"TonicForHealth\\PagerDutyClient\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TonicHealthCheck\\PagerDutyClient\\Test\\": "tests/"
}
},
"config": {
"bin-dir": "bin"
},
"prefer-stable": true,
"minimum-stability": "dev"
}