-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 883 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": "cxj/phpsyslog",
"type": "library",
"description": "Simple PSR-3 logger implementation that outputs to syslog",
"keywords": [
"syslog",
"PSR-3"
],
"homepage": "https://github.com/cxj/phpsyslog",
"license": "MIT",
"authors": [
{
"name": "Chris Johnson"
}
],
"require": {
"php": ">=7.4",
"psr/log": "^1"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.6",
"php-mock/php-mock-phpunit": "^2.6",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpunit/phpunit": "^9.1",
"roave/security-advisories": "dev-master"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
"Cxj\\": "src/"
}
}
}