forked from mcrumm/phlack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.37 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.37 KB
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
{
"name": "mcrumm/phlack",
"description": "Slack API and WebHook integration in PHP",
"keywords": [ "slack", "slack-api", "phlack" ],
"license": "MIT",
"authors": [
{
"name": "Michael Crumm",
"email": "mike@crumm.net"
}
],
"require": {
"php": ">=5.4",
"guzzle/guzzle": "~3.8",
"doctrine/collections": ">=1.0",
"symfony/options-resolver": "~2.4"
},
"suggest": {
"symfony/expression-language": "Required to use ExpressionBots",
"symfony/http-foundation": "Required to use the RequestAdapter",
"symfony/console": "Required to use the ConsoleAdapter"
},
"require-dev": {
"silex/silex": "~1.1",
"symfony/expression-language": "~2.4",
"symfony/console": "~2.4",
"symfony/http-foundation": "~2.4",
"behat/behat": "2.5.*",
"phpspec/phpspec": "~2.1@dev",
"phpspec/nyan-formatters": "1.*",
"henrikbjorn/phpspec-code-coverage": "~0.2"
},
"config": {
"bin-dir":"bin/"
},
"bin": ["bin/phlackbot"],
"minimum-stability": "stable",
"autoload": {
"psr-0": {
"": "src",
"Context": "features"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.5.x-dev",
"dev-develop": "0.6.x-dev"
}
}
}