-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
81 lines (81 loc) · 2.38 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
76
77
78
79
80
81
{
"name": "fcno/log-reader",
"description": "Log Reader para aplicações Laravel",
"license": "MIT",
"type": "library",
"keywords": [
"fcno",
"laravel",
"log-reader"
],
"authors": [
{
"name": "Fabio Cassiano",
"email": "fabiocassiano@jfes.jus.br",
"homepage": "https://github.com/fcno",
"role": "Developer"
}
],
"homepage": "https://github.com/fcno/log-reader",
"require": {
"php": "^8.0",
"bcremer/line-reader": "^1.2",
"illuminate/collections": "^8.77",
"illuminate/contracts": "^8.77",
"illuminate/filesystem": "^8.77",
"illuminate/support": "^8.77",
"monolog/monolog": "^2.3",
"spatie/laravel-package-tools": "^1.9.2"
},
"require-dev": {
"fakerphp/faker": "^1.17",
"nunomaduro/collision": "^5.10",
"nunomaduro/larastan": "^1.0",
"orchestra/testbench": "^6.22",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5",
"spatie/laravel-ray": "^1.26"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Fcno\\LogReader\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fcno\\LogReader\\Tests\\": "tests",
"Fcno\\LogReader\\Tests\\Stubs\\": "tests/stubs"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"aliases": {
"LogReader": "Fcno\\LogReader\\Facades\\LogReader",
"RecordReader": "Fcno\\LogReader\\Facades\\RecordReader",
"SummaryReader": "Fcno\\LogReader\\Facades\\SummaryReader"
},
"providers": [
"Fcno\\LogReader\\LogReaderServiceProvider"
]
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --memory-limit 1G --error-format=github",
"coverage": "composer test -- --coverage",
"test": "vendor/bin/pest"
}
}