-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
38 lines (38 loc) · 850 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
{
"name": "neoblack/t3bot",
"description": "TYPO3 slack channel bot",
"license": "proprietary",
"authors": [
{
"name": "Frank Nägler",
"email": "[email protected]"
}
],
"require": {
"coderstephen/slack-client": "^0.3.0",
"doctrine/dbal": "^2.5",
"doctrine/migrations": "^1.5",
"monolog/monolog": "^1.24",
"vlucas/phpdotenv": "^2.4"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^4.8.0"
},
"config": {
"bin-dir": "./bin",
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"T3Bot\\": "Classes/",
"T3Bot\\Tests\\": "Tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"issues": "https://github.com/NeoBlack/T3Bot/issues",
"slack": "https://typo3.slack.com#t3bot"
}
}