forked from laravel-bi/laravel-bi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 943 Bytes
/
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
{
"name": "laravel-bi/laravel-bi",
"description": "A beautiful and fully-featured Business Intelligence dashboard manager for Laravel",
"license": "MIT",
"authors": [
{
"name": "Alberto Bottarini",
"email": "alberto.bottarini@gmail.com"
}
],
"require": {
"php": ">=7.1.0",
"illuminate/support": "^5.7.15 | 5.8.* | ^6.0 | ^7.0 | ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^8.3",
"orchestra/testbench": "^3.8"
},
"autoload": {
"psr-4": {
"LaravelBi\\LaravelBi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LaravelBi\\LaravelBi\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"LaravelBi\\LaravelBi\\BiServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}