-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
32 lines (32 loc) · 862 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
{
"name": "matthijsthoolen/slacky",
"license": "MIT",
"description": "A slack connector written in PHP",
"type": "library",
"authors": [
{
"name": "Matthijs Thoolen",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "6.3.*",
"symfony/dotenv": "4.3.*",
"ext-json": "*"
},
"require-dev": {
"brianium/paratest": "3.0",
"php-coveralls/php-coveralls": "~2.1",
"friendsofphp/php-cs-fixer": "~2.15",
"squizlabs/php_codesniffer": "3.*",
"phpmd/phpmd": "@stable",
"phpunit/phpunit": "8.3.4",
"codacy/coverage": "^1.4"
},
"autoload": {
"psr-4": {
"MatthijsThoolen\\Slacky\\": "src/",
"MatthijsThoolen\\Slacky\\Tests\\": "tests/"
}
}
}