-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
45 lines (45 loc) · 1.29 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
{
"name": "webthink/monolog-slack",
"type": "monolog-handler",
"homepage": "https://github.com/gmponos/monolog-slack",
"description": "This package contains handlers/processors for sending logs of monolog to a slack channel.",
"keywords": ["slack", "handler", "monolog", "logs", "psr3"],
"license": "MIT",
"authors": [
{
"name": "George Mponos",
"email": "gmponos@gmail.com"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"monolog/monolog": "^1.24 || ^2.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"guzzlehttp/psr7": "^1.5",
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "~3.5.5"
},
"autoload": {
"psr-4": {
"Webthink\\MonologSlack\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Webthink\\MonologSlack\\Test\\": "tests",
"Webthink\\MonologSlack\\Test\\App\\": "tests/App"
}
},
"scripts": {
"tests": "php vendor/bin/phpunit --testsuite UnitTests --color=always",
"phpcbf": "php vendor/bin/phpcbf src tests",
"phpcs": "php vendor/bin/phpcs src tests"
},
"config": {
"sort-packages": true
}
}