-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·67 lines (67 loc) · 1.57 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
{
"name": "nexelity/bprof-laravel",
"description": "A Laravel wrapper for the PHP bprof profiler extension ",
"license": "Apache-2.0",
"type": "library",
"keywords": [
"laravel",
"bprof"
],
"authors": [
{
"name": "Ben Poulson",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Nexelity\\Bprof\\": "src/"
}
},
"require": {
"php": "^8.0",
"laravel/framework": "^10.0 || ^9.0 || >=8.40.0",
"ext-pdo": "*",
"ext-zlib": "*"
},
"extra": {
"laravel": {
"providers": [
"Nexelity\\Bprof\\LaravelBprofServiceProvider"
],
"aliases": {
"Bprof": "Nexelity\\Bprof\\LaravelBprofFacade"
}
}
},
"config": {
"platform": {
"php": "8.0"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"orchestra/testbench": "^6.41",
"larastan/larastan": "^1.0.4",
"phpunit/phpunit": "^9.6.15"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"@prepare"
],
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"serve": [
"Composer\\Config::disableProcessTimeout",
"@php vendor/bin/testbench serve"
],
"lint": [
"@php vendor/bin/phpstan analyse"
]
}
}