-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 959 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": "srt4rulez/monolog-tracy-bar-dump-handler",
"description": "Monolog handler that logs to Tracy's barDump method.",
"type": "library",
"require": {
"php": ">=7.2.5",
"monolog/monolog": "^2.0",
"tracy/tracy": "^2.0"
},
"license": "MIT",
"authors": [
{
"name": "Jake Dennison",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"srt4rulez\\": "src/"
}
},
"config": {
"sort-packages": true
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16"
},
"scripts": {
"cs": "./vendor/bin/php-cs-fixer fix --verbose --diff --show-progress=dots --ansi --dry-run",
"cs:fix": "./vendor/bin/php-cs-fixer fix --verbose --diff --show-progress=dots --ansi",
"lint": [
"@cs"
],
"lint:fix": [
"@cs:fix"
]
}
}