-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
75 lines (75 loc) · 1.61 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "ytake/laravel-fluent-logger",
"description": "fluent logger for laravel and lumen",
"minimum-stability": "stable",
"license": "MIT",
"keywords": [
"laravel",
"log",
"logging",
"fluent",
"lumen"
],
"authors": [
{
"name": "Yuuki Takezawa",
"email": "yuuki.takezawa@comnect.jp.net"
}
],
"require": {
"php": "^8.1",
"fluent/logger": "^1.0",
"illuminate/log": "^10.0 | ^11.0",
"illuminate/support": "^10.0 | ^11.0",
"illuminate/config": "^10.0 | ^11.0",
"illuminate/contracts": "^10.0 | ^11.0",
"illuminate/container": "^10.0 | ^11.0",
"illuminate/events": "^10.0 | ^11.0",
"monolog/monolog": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"php-coveralls/php-coveralls": "^2.4",
"illuminate/filesystem": "^10.0 | ^11.0",
"phpstan/phpstan": "^1.10",
"slevomat/coding-standard": "^6.4",
"squizlabs/php_codesniffer": "^3.5",
"doctrine/coding-standard": "^8.2"
},
"autoload": {
"psr-4": {
"Ytake\\LaravelFluent\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Ytake\\LaravelFluent\\LogServiceProvider"
]
}
},
"scripts": {
"test": [
"./vendor/bin/phpunit"
],
"cs": [
"./vendor/bin/phpcs --standard=./phpcs.xml src tests"
],
"sa": [
"./vendor/bin/phpstan analyse -c phpstan.neon"
],
"qa": [
"@test" ,"@cs", "@sa"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}