-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
74 lines (74 loc) · 2.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
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
{
"name": "always-open/laravel-request-logger",
"description": "Micro-package to ease the effort to log HTTP requests made from your application",
"keywords": [
"always-open",
"always open",
"request logger",
"laravel",
"http request"
],
"homepage": "https://github.com/always-open/laravel-request-logger",
"license": "MIT",
"authors": [
{
"name": "Quentin Schmick",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Always Open",
"homepage": "https://github.com/always-open",
"role": "Organization"
}
],
"require": {
"php": "^8.0.0|^8.1.0",
"always-open/laravel-process-stamps": "^5.0|^6.0|^7.0",
"guzzlehttp/guzzle": "^7.4",
"laravel/framework": "^8.0|^9.0|^10.0"
},
"require-dev": {
"doctrine/dbal": "^2.9|^3.0",
"friendsofphp/php-cs-fixer": "^3.1",
"laravel/tinker": "^2.7",
"nunomaduro/larastan": "^1.0",
"orchestra/testbench": "^6.22",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"AlwaysOpen\\RequestLogger\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AlwaysOpen\\RequestLogger\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse src/ --level=5",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"AlwaysOpen\\RequestLogger\\RequestLoggerServiceProvider"
],
"aliases": {
"RequestLogger": "AlwaysOpen\\RequestLogger\\Facades\\RequestLogger"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}