forked from wow-apps/symfony-slack-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.59 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
48
49
50
51
52
53
{
"name": "wow-apps/symfony-slack-bot",
"license": "MIT",
"description": "Simple Symfony 3 and 4 Bundle for sending customizeable messages to Slack via incoming webhooks",
"type": "symfony-bundle",
"keywords": [
"slack",
"slack bot",
"slackbot",
"symfony",
"symfony 3",
"symfony 4"
],
"homepage": "https://wow-apps.github.io/symfony-slack-bot/",
"authors": [
{
"name": "Alexey Samara",
"role": "lead",
"email": "[email protected]",
"homepage": "https://wow-apps.pro"
}
],
"support": {
"issues": "https://github.com/wow-apps/symfony-slack-bot/issues",
"wiki": "https://github.com/wow-apps/symfony-slack-bot/wiki",
"source": "https://github.com/wow-apps/symfony-slack-bot"
},
"require": {
"php": "^7.0",
"ext-json": "*",
"psr/log": "^1.1",
"symfony/framework-bundle": "^3.0 || ^4.0",
"symfony/http-foundation": "^3.0 || ^4.0",
"symfony/yaml": "^3.0 || ^4.0",
"guzzlehttp/guzzle": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"matthiasnoback/symfony-config-test": "^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^3.1",
"nyholm/symfony-bundle-test": "^1.4",
"friendsofphp/php-cs-fixer": "2.14.*"
},
"autoload": {
"psr-4": {
"WowApps\\SlackBundle\\": "",
"WowApps\\SlackBundle\\Tests\\": "tests/"
},
"exclude-from-classmap": [
"/Tests/"
]
}
}