-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.36 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.36 KB
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": "wiebekn/dawilog-php",
"description": "client for dawilog",
"keywords": [
"dawilog",
"log",
"logging",
"error-monitoring",
"error-handler",
"crash-reporting",
"crash-reports"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Wiebe Kloosterman",
"email": "wiebe@kloosterman.eu"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Dawilog\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dawilog\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
},
"require": {
"php": "^8.0",
"ext-json": "*",
"psr/log": "^1.1|^2.0|^3.0",
"php-http/message": "^1.5",
"psr/http-factory": "^1.0",
"guzzlehttp/psr7": "^2.4",
"guzzlehttp/guzzle": "^7.0",
"ramsey/uuid": "^4.7"
},
"require-dev": {
"phpunit/phpunit": "^9.6|^10.5|^11.0",
"illuminate/support": "^13.0"
},
"extra": {
"laravel": {
"providers": [
"Dawilog\\Laravel\\ServiceProvider"
],
"aliases": {
"Dawilog": "Dawilog\\Laravel\\Facade"
}
}
}
}