forked from cleentfaar/CLSlackBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 997 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": "byng-systems/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.5",
"cleentfaar/slack": "~0.20.1",
"symfony/framework-bundle": "^2.3|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.0|^5.0",
"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"
}
}