-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·63 lines (51 loc) · 1.64 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
60
61
62
63
{
"name": "germania-kg/logger",
"description": "Our Company's default logging solution: Pimple Service Provider for Logging with Monolog",
"license": "MIT",
"authors": [
{
"name": "Carsten Witt",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Germania\\Logger\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/src"
}
},
"require": {
"php": "^7.2|^8.0",
"pimple/pimple": "^3.0",
"psr/log": "^1.0",
"monolog/monolog": "^1.16|^2.0",
"bramus/monolog-colored-line-formatter": "^2.0|^3.0"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.0",
"phpunit/phpunit": "~9.0",
"phpspec/prophecy-phpunit": "^2.0",
"league/climate": "^3.4",
"germania-kg/mailer": "^1.0",
"friendsofphp/php-cs-fixer": "^2.0",
"cmdisp/monolog-microsoft-teams": "^1.2"
},
"scripts": {
"phpcs": "php-cs-fixer fix --verbose --diff --dry-run src/",
"phpcs-apply": "php-cs-fixer fix --verbose --diff src/",
"phpunit": "phpunit",
"test": [
"@phpunit"
]
},
"suggest": {
"cmdisp/monolog-microsoft-teams": "Monolog Handler for sending messages to Microsoft Teams channels",
"germania-kg/mailer": "Pimple Service Provider for email and SwiftMailer services. Required by 'SwiftMailerLoggerServiceProvider'.",
"league/climate": "PHP's best friend for the terminal. Required by 'ClimateLoggerServiceProvider'"
}
}