-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 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
39
{
"name": "h22k/logma",
"license": "MIT",
"version": "0.0.3",
"description": "Basic logging library for small projects",
"type": "library",
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"H22k\\Logma\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"H22k\\Logma\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Halil Hakan Karabay",
"email": "hakankarabay@icloud.com"
}
],
"scripts": {
"fixer": "@php vendor/bin/php-cs-fixer fix",
"phpstan": "@php vendor/bin/phpstan analyse",
"test": "@php vendor/bin/phpunit tests/Unit",
"test-detail": "@php vendor/bin/phpunit --colors --testdox --display-warnings tests/Unit"
},
"require": {
"psr/log": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0.0",
"friendsofphp/php-cs-fixer": "dev-master",
"phpstan/phpstan": "2.0.x-dev",
"mikey179/vfsstream": "^1.6.11"
}
}