forked from cleentfaar/slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.17 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
43
44
45
46
47
{
"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.5",
"ext-curl": "*",
"jms/serializer": "^1.0",
"symfony/event-dispatcher": "^2.3|^3.0",
"symfony/yaml": "^2.3|^3.0",
"guzzlehttp/guzzle": "^6.0",
"doctrine/collections": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^4.7",
"mockery/mockery": "^0.9",
"symfony/var-dumper": "^2.3|^3.0"
},
"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/",
"CL\\Slack\\Test\\": "tests/src/CL/Slack/Test/",
"CL\\Slack\\Tests\\": "tests/src/CL/Slack/Tests/"
}
},
"config": {
"bin-dir": "bin"
}
}