-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (52 loc) · 1.41 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
{
"name": "shihabphp/livewire-dashboard",
"description": "A Dashboard Creator for your Laravel or Livewire Application",
"type": "library",
"require": {
"livewire/livewire": "^2.0",
"php": "^7.4",
"illuminate/database": "^8.0",
"illuminate/view": "^8.0",
"doctrine/dbal": "^3.1"
},
"require-dev": {
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^9.3"
},
"license": "MIT",
"authors": [
{
"name": "Muhammed Shihab",
"email": "Shihab640@hotmail.com",
"homepage": "https://github.com/Shihabphp/livewire-dashboard.git",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Shihabphp\\Dashboard\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Shihabphp\\Dashboard\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Shihabphp\\Dashboard\\DashboardServiceProvider",
"Shihabphp\\Dashboard\\KPITileServiceProvider",
"Shihabphp\\Dashboard\\ChartTileServiceProvider"
],
"aliases": {
"Dashboard": "Shihabphp\\Dashboard\\Facades\\Dashboard"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}