-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1.15 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
{
"name": "treblle/treblle-lumen",
"description": "Stay in tune with your APIs",
"license": "MIT",
"type": "library",
"keywords": [
"api",
"debuging",
"documentation",
"lumen",
"monitoring",
"treblle"
],
"authors": [
{
"name": "Vedran Cindrić",
"email": "[email protected]",
"homepage": "https://treblle.com/",
"role": "Developer"
}
],
"homepage": "https://treblle.com/",
"require": {
"php": "^7.2.5 || ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.5.0 || ^7.0",
"illuminate/contracts": "^7.0 || ^8.0 || ^9.0",
"illuminate/http": "^7.0 || ^8.0 || ^9.0",
"illuminate/support": "^7.0 || ^8.0 || ^9.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"orchestra/testbench": "^5.0 || ^6.0 || ^7.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Treblle\\": "src/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
}
}