-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.67 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
56
57
58
59
{
"name": "bizkit/loggable-command-bundle",
"description": "Symfony bundle which creates a dedicated Monolog log file for each command or message handler.",
"type": "symfony-bundle",
"keywords": [
"log",
"logging",
"loggable",
"monolog",
"console",
"cli"
],
"homepage": "https://github.com/HypeMC/loggable-command-bundle",
"license": "MIT",
"authors": [
{
"name": "HypeMC",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"monolog/monolog": "^1.25.1 || ^2 || ^3",
"symfony/config": "^4.4 || ^5.2 || ^6.0 || ^7.0",
"symfony/console": "^4.4 || ^5.2 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.4 || ^5.2 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.4 || ^5.2 || ^6.0 || ^7.0",
"symfony/monolog-bridge": "^4.4 || ^5.2 || ^6.0 || ^7.0",
"symfony/monolog-bundle": "^3.4"
},
"require-dev": {
"doctrine/annotations": "^1.10.4 || ^2",
"symfony/phpunit-bridge": "^6.4.1"
},
"conflict": {
"doctrine/annotations": "<1.10.4"
},
"suggest": {
"doctrine/annotations": "For configuring services with the use of an annotation"
},
"autoload": {
"psr-4": {
"Bizkit\\LoggableCommandBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bizkit\\LoggableCommandBundle\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "phpstan analyse",
"lint": "php-cs-fixer fix -v",
"test": "simple-phpunit"
},
"config": {
"sort-packages": true
}
}