-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
62 lines (62 loc) · 1.68 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
{
"name": "shipsaas/shipsaas-logger",
"type": "library",
"version": "1.0.0",
"description": "Laravel ShipSaasLogger enables the tracing of requests across servers by marking each request with a unique ID. Skyrocket the production debugging.",
"keywords": [
"laravel library",
"laravel unique request id logger",
"laravel shipsaas logger",
"debugging",
"development",
"laravel"
],
"authors": [
{
"name": "Phat Tran (Seth Phat)",
"email": "me@sethphat.com",
"homepage": "https://github.com/sethsandaru",
"role": "Sr.SWE"
}
],
"license": "MIT",
"require": {
"php": "^8.1|^8.2",
"laravel/framework": "^10|dev-master"
},
"require-dev": {
"fakerphp/faker": "^v1.20.0",
"mockery/mockery": "^1.5.1",
"phpunit/phpunit": "^10",
"orchestra/testbench": "^8",
"phpunit/php-code-coverage": "^10",
"friendsofphp/php-cs-fixer": "^3.10"
},
"extra": {
"laravel": {
"providers": [
"ShipSaasUniqueRequestLogger\\ShipSaasUniqueRequestLoggerServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"ShipSaasUniqueRequestLogger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ShipSaasUniqueRequestLogger\\Tests\\": "tests/"
}
},
"scripts": {
"test-coverage": [
"@php vendor/bin/phpunit --coverage-clover coverage.xml"
],
"test": [
"@php vendor/bin/phpunit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}