-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 1.81 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
{
"name": "eyedroot/gg",
"description": "PHP Debug, Logging Tools",
"keywords": [
"php",
"debug",
"logging",
"beaverlabs",
"gg"
],
"homepage": "https://github.com/eyedroot/gg",
"license": "MIT",
"authors": [
{
"name": "byzz",
"email": "[email protected]",
"homepage": "https://phpgg.kr",
"role": "Developer"
}
],
"require": {
"php": "^8.3",
"ext-curl": "*",
"ext-json": "*",
"illuminate/contracts": "^9.0|^10.0|^11.0",
"illuminate/database": "^9.0|^10.0|^11.0",
"illuminate/log": "^9.0|^10.0|^11.0",
"illuminate/queue": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"rybakit/msgpack": "^0.9.1"
},
"require-dev": {
"fakerphp/faker": "^1.23.1",
"guzzlehttp/guzzle": "^7.8.1",
"laravel/framework": "^9.0|^10.44|^11.0",
"laravel/pint": "^1.13",
"mockery/mockery": "^1.6.7",
"orchestra/testbench-core": "^8.21.1",
"pestphp/pest": "^2.33.6",
"phpunit/phpunit": "^10.5.10"
},
"autoload": {
"psr-4": {
"Beaverlabs\\Gg\\": "src/"
},
"files": [
"src/helpers/helper.php"
]
},
"autoload-dev": {
"psr-4": {
"Beaverlabs\\Gg\\Tests\\": "tests/",
"Beaverlabs\\Gg\\Databases\\Factories\\": "database/factories",
"Beaverlabs\\Gg\\Databases\\Migrations\\": "database/migrations"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Beaverlabs\\Gg\\Providers\\GgServiceProvider",
"Beaverlabs\\Gg\\Providers\\EventServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"funding": [
]
}