forked from cleentfaar/slack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1012 Bytes
/
composer.json
File metadata and controls
43 lines (43 loc) · 1012 Bytes
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
{
"name": "cleentfaar/slack",
"description": "Access your Slack Team's API through PHP objects",
"homepage": "http://cleentfaar.github.io/slack/",
"keywords": [
"slack",
"slack api",
"chat"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Cas Leentfaar",
"homepage": "https://github.com/cleentfaar",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"ext-curl": "*",
"jms/serializer": "~0.16",
"symfony/event-dispatcher": "~2.2",
"guzzlehttp/guzzle": ">=4.2",
"doctrine/annotations": "~1.2",
"doctrine/collections": "~1.2"
},
"require-dev": {
"phpunit/phpunit": "~4.4"
},
"suggest": {
"cleentfaar/slack-bundle": "For easy integration with your Symfony projects",
"cleentfaar/slack-cli": "Command-line application for interacting with the Slack API"
},
"autoload": {
"psr-4": {
"CL\\Slack\\": "src/CL/Slack/"
}
},
"config": {
"bin-dir": "bin"
}
}