This repository was archived by the owner on Nov 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.37 KB
/
composer.json
File metadata and controls
48 lines (48 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
{
"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|3.0.*"
},
"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": {
"symfony/http-kernel": "~2.4|3.0.*",
"symfony/expression-language": "~2.4|3.0.*",
"symfony/console": "~2.4|3.0.*",
"symfony/http-foundation": "~2.4|3.0.*",
"phpspec/phpspec": "^2.4.0",
"henrikbjorn/phpspec-code-coverage": "~0.2",
"coduo/phpspec-data-provider-extension": "^1.0"
},
"config": {
"bin-dir":"bin/"
},
"bin": ["bin/phlackbot"],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Crummy\\Phlack\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.7.x-dev",
"dev-develop": "0.8.x-dev"
}
}
}