-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
67 lines (67 loc) · 1.41 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
{
"name": "oanhnn/laravel-logzio",
"type": "library",
"description": "Integrate Logz.io into PHP and Laravel 5.6+ Application",
"keywords": [
"laravel",
"package",
"log",
"logging",
"logzio",
"logz.io"
],
"license": "MIT",
"homepage": "https://github.com/oanhnn/laravel-logzio",
"support": {
"issues": "https://github.com/oanhnn/laravel-logzio/issues",
"source": "https://github.com/oanhnn/laravel-logzio"
},
"authors": [
{
"name": "Oanh Nguyen",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Laravel\\Logzio\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=7.1.3",
"guzzlehttp/guzzle": "^6.3|^7.0",
"monolog/monolog": "^1.12|^2.0",
"psr/log": "^1.1"
},
"require-dev": {
"illuminate/contracts": "^6.20|^7.29|^8.12",
"illuminate/support": "^6.20|^7.29|^8.12",
"orchestra/testbench": "^4.0|^5.0|^6.0",
"phpunit/phpunit": "^8.5|^9.0"
},
"scripts": {
"test": [
"phpunit --testdox --testsuite=Tests"
],
"coverage": [
"phpunit --coverage-html storage/coverage --testsuite=Tests"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"extra": {
"laravel": {
"providers": [
"Laravel\\Logzio\\ServiceProvider"
]
}
}
}