-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 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
{
"name": "grafite/mission-control",
"description": "The PHP agnostic package for Mission Control (Grafite Inc)",
"license": "MIT",
"authors": [
{
"name": "Matt Lantz",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3|>=8.0",
"kassner/log-parser": "^1.5",
"nesbot/carbon": "^1.25|^2.16",
"illuminate/collections": "^10.|^11.0",
"guzzlehttp/guzzle": "^7.5",
"illuminate/support": "^9.0|^10.2|^11"
},
"require-dev": {
"fakerphp/faker": "^1.10",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^10.0",
"mikey179/vfsstream": "^1.6",
"orchestra/testbench": "^8.0|^9.0"
},
"bin": [
"bin/performance",
"bin/traffic"
],
"autoload": {
"psr-4": {
"Grafite\\MissionControl\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"minimum-stability": "stable"
}