forked from laravie/profiler
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1005 Bytes
/
composer.json
File metadata and controls
43 lines (43 loc) · 1005 Bytes
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
{
"name": "laravie/profiler",
"description": "Simple Profiling for Laravel",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "crynobone@gmail.com"
}
],
"autoload": {
"psr-4": {
"Laravie\\Profiler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laravie\\Profiler\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.4 || ^8.0",
"illuminate/contracts": "^8.11",
"illuminate/log": "^8.11",
"illuminate/support": "^8.11",
"laravel/legacy-factories": "1.x-dev",
"orchestra/support-core": "^6.0"
},
"require-dev": {
"mockery/mockery": "^1.3.1",
"orchestra/testbench": "^6.0"
},
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}