-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.35 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
54
55
{
"name": "carpediem/mattermost-monolog",
"description": "Mattermost monolog integration",
"homepage": "https://github.com/carpediem/mattermost-monolog",
"keywords": [
"mattermost",
"php",
"monolog",
"monolog-handler",
"monolog-formatter",
"log",
"logging"
],
"type": "library",
"require": {
"php": ">=5.6.0",
"monolog/monolog": "^1.23",
"carpediem/mattermost-webhook": "^1.2.0 || ^2.2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^5.7 || ^6.2"
},
"license": "MIT",
"authors": [
{
"name": "Carpediem Developper",
"email": "[email protected]",
"homepage": "https://carpediem.github.io"
}
],
"autoload": {
"psr-4": {
"Carpediem\\Mattermost\\Monolog\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Carpediem\\Mattermost\\Monolog\\Test\\": "tests"
}
},
"scripts": {
"test": ["@phpunit", "@phpcs"],
"phpunit": "phpunit --coverage-text",
"phpcs": "php-cs-fixer fix -v --diff --dry-run --allow-risky=yes;"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"config": {
"sort-packages": true
}
}