-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.1 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
{
"name": "themosis/error",
"description": "The Themosis error component.",
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Julien",
"email": "[email protected]"
}
],
"prefer-stable": true,
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Themosis\\Components\\Error\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Themosis\\Components\\Error\\Tests\\": "tests/"
}
},
"repositories": [],
"require": {
"php": "^8.2",
"psr/log": "^3.0"
},
"scripts": {
"test": "XDEBUG_MODE=coverage tools/phpunit/vendor/bin/phpunit --coverage-html coverage/html",
"fix": "tools/phpcs/vendor/bin/phpcbf",
"sniff": "tools/phpcs/vendor/bin/phpcs",
"analyze": "tools/phpstan/vendor/bin/phpstan analyze"
},
"suggest": {
"themosis/log": "Themosis component to help you manage PSR-3 compliant loggers.",
"monolog/monolog": "Popular PHP package to generate PSR-3 compliant loggers."
}
}