-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
79 lines (79 loc) · 1.82 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": "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": "vedran@treblle.com",
"homepage": "https://treblle.com/"
},
{
"role": "Developer",
"name": "Steve McDougall",
"email": "juststevemcd@gmail.com",
"homepage": "https://treblle.com/"
}
],
"autoload": {
"psr-4": {
"Treblle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Treblle\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"ext-json": "*",
"treblle/utils": "^0.4.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.7.0",
"laravel/octane": "^1.5.6",
"laravel/pint": "^1.10.3",
"orchestra/testbench": "^7.0 || ^8.5.9",
"phpstan/phpstan": "^1.10.25"
},
"extra": {
"laravel": {
"providers": [
"Treblle\\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
}
}
}