This repository has been archived by the owner on Jan 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
64 lines (64 loc) · 1.76 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
{
"name": "notifymehq/notifyme",
"description": "Provides a common interface for notification services",
"license": "MIT",
"keywords": ["notifymehq", "notifyme", "notifications", "integrations"],
"authors": [
{
"name": "James Brooks",
"email": "james@alt-three.com"
},
{
"name": "Graham Campbell",
"email": "graham@alt-three.com"
},
{
"name": "Joseph Cohen",
"email": "joe@alt-three.com"
}
],
"require": {
"php": ">=5.5.9",
"guzzlehttp/guzzle": "^5.3|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.0"
},
"autoload": {
"psr-4": {
"NotifyMeHQ\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NotifyMeHQ\\Tests\\": "tests/"
}
},
"replace": {
"notifymehq/ballou": "self.version",
"notifymehq/campfire": "self.version",
"notifymehq/contracts": "self.version",
"notifymehq/factory": "self.version",
"notifymehq/gitter": "self.version",
"notifymehq/hipchat": "self.version",
"notifymehq/http": "self.version",
"notifymehq/manager": "self.version",
"notifymehq/pagerduty": "self.version",
"notifymehq/pushover": "self.version",
"notifymehq/slack": "self.version",
"notifymehq/support": "self.version",
"notifymehq/twilio": "self.version",
"notifymehq/webhook": "self.version",
"notifymehq/yo": "self.version"
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}