forked from cleentfaar/CLSlackBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 985 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
{
"name": "cleentfaar/slack-bundle",
"description": "This bundle provides integration with the Slack API library, allowing you to interact with the Slack API from within your Symfony projects",
"keywords": [
"slack",
"api",
"symfony",
"bundle"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Cas Leentfaar",
"homepage": "https://github.com/cleentfaar",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"cleentfaar/slack": "^0.15.3",
"symfony/framework-bundle": "~2.2"
},
"require-dev": {
"phpunit/phpunit": "~4.4",
"matthiasnoback/symfony-config-test": "~0.2",
"matthiasnoback/symfony-dependency-injection-test": "~0.7"
},
"suggest": {
"cleentfaar/slack-cli": "Command-line application for interacting with the Slack API"
},
"autoload": {
"psr-4": {
"CL\\Bundle\\SlackBundle\\": ""
}
},
"config": {
"bin-dir": "bin"
}
}