forked from DZunke/SlackBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.04 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.04 KB
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
{
"name": "dzunke/slack-bundle",
"description": "Symfony2 Integration for Slack - supporting Monolog",
"keywords": ["symfony", "api", "bundle", "slack", "monolog", "logger", "messaging"],
"homepage": "https://github.com/DZunke/SlackBundle",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Denis Zunke",
"email": "denis.zunke@gmail.com"
}
],
"archive": {
"exclude": ["/Tests"]
},
"require": {
"php": ">=5.6",
"symfony/console": "~2.8|~3.0|~4.0",
"symfony/config": "~2.8|~3.0|~4.0",
"symfony/dependency-injection": "~2.8|~3.0|~4.0",
"symfony/http-foundation": "~2.8|~3.0|~4.0",
"symfony/event-dispatcher": "~2.8|~3.0|~4.0",
"monolog/monolog": "^1",
"guzzlehttp/guzzle": "^6.2.1"
},
"autoload": {
"psr-0": { "DZunke\\SlackBundle": "" }
},
"target-dir": "DZunke/SlackBundle",
"extra": {
"branch-alias": {
"dev-dev": "2.0-dev"
}
}
}