-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
42 lines (41 loc) · 1.23 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": "castlepointanime/slack-api-bundle",
"type": "library",
"description": "Symfony bundle for interacting with the Slack API",
"keywords": ["symfony", "slack"],
"license": "AGPL-3.0",
"homepage": "https://github.com/castlepointanime/slack-api-bundle",
"authors": [
{
"name": "Tyler Romeo",
"email": "[email protected]",
"homepage": "https://parent5446.nyc",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/castlepointanime/slack-api-bundle/issues",
"source": "https://github.com/castlepointanime/slack-api-bundle"
},
"autoload": {
"psr-4": { "CastlePointAnime\\SlackApiBundle\\": "" }
},
"require": {
"php": ">=5.3.3",
"guzzlehttp/guzzle-services": "0.5.0",
"symfony/event-dispatcher": "~2.6",
"symfony/config": "~2.6",
"symfony/dependency-injection": "~2.6",
"symfony/http-foundation": "~2.6"
},
"require-dev": {
"sensio/generator-bundle": "~2.3",
"phpunit/phpunit": "4.4.*"
},
"extra": {
"branch-alias": {
"dev-master": "0.5-dev"
}
}
}