-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
71 lines (71 loc) · 1.58 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
{
"name": "treblle/treblle-laravel",
"description": "Stay in tune with your APIs",
"license": "MIT",
"homepage": "https://treblle.com/",
"type": "library",
"keywords": [
"api",
"debuging",
"documentation",
"laravel",
"monitoring",
"treblle"
],
"authors": [
{
"role": "Developer",
"name": "Vedran Cindrić",
"email": "[email protected]",
"homepage": "https://treblle.com/"
}
],
"autoload": {
"psr-4": {
"Treblle\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Treblle\\Laravel\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"ext-json": "*",
"ext-mbstring": "*",
"treblle/treblle-php": "^4.0.2"
},
"require-dev": {
"orchestra/testbench": "^7.0 || ^8.5.9",
"laravel/pint": "^1.15"
},
"extra": {
"laravel": {
"providers": [
"Treblle\\Laravel\\TreblleServiceProvider"
]
}
},
"scripts": {
"pint": [
"./vendor/bin/pint"
],
"stan": [
"./vendor/bin/phpstan analyse"
],
"test": [
"./vendor/bin/phpunit"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"pestphp/pest-plugin": true
}
}
}