-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.03 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
{
"name": "linio/microlog",
"description": "Provides a static wrapper around monolog",
"keywords": ["linio", "log", "logging"],
"type": "library",
"homepage": "https://github.com/linioit/microlog",
"license": "BSD-3-Clause",
"require": {
"php": "^7.4 || ^8.0",
"psr/log": "^1.0.1 || ^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"friendsofphp/php-cs-fixer": "^3.6",
"phpstan/phpstan": "^0.12"
},
"autoload": {
"psr-4": {
"Linio\\Component\\Microlog\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Linio\\Component\\Microlog\\": "tests/"
}
},
"scripts": {
"lint": "php-cs-fixer fix --verbose --show-progress=dots",
"lint:check": "php-cs-fixer fix --dry-run --verbose --show-progress=dots",
"phpunit": "phpunit",
"phpstan": "phpstan analyze",
"test": [
"@lint:check",
"@phpunit",
"@phpstan"
]
}
}