forked from mdcollins05/phoneduty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (35 loc) · 870 Bytes
/
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
{
"_-x-vim-formatting": " vim: set ft=javascript ts=4 sw=4 et : ",
"name": "acrawly/Phoneduty",
"description": "Dynamically route incoming calls with Twilio & Pagerduty",
"license": "proprietary",
"authors": [
{
"name": "VCA Engineering",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Vend\\Phoneduty\\": "src"
}
},
"require": {
"php": ">=5.3.8",
"twilio/sdk": "dev-master",
"guzzlehttp/guzzle": "~4.0"
},
"config": {
"bin-dir": "bin",
"vendor-dir": "vendor"
},
"repositories": [
{
"type" : "vcs",
"url" : "[email protected]:twilio/twilio-php.git"
}
],
"require-dev": {
"heroku/heroku-buildpack-php": "5.3"
}
}