forked from fxcosta/laravel-chartjs
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
55 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
55
{
"name": "icehouse-ventures/laravel-chartjs",
"description": "Simple package to facilitate and automate the use of charts in Laravel using the Chart.js library",
"keywords": [
"laravel", "chartjs","charts","graphs","icehouseventures"
],
"license": "MIT",
"authors": [
{
"name": "Icehouse Ventures",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/support": "^5.1|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"IcehouseVentures\\LaravelChartjs\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"IcehouseVentures\\LaravelChartjs\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"IcehouseVentures\\LaravelChartjs\\Providers\\ChartjsServiceProvider"
],
"aliases": {
"Chartjs": "IcehouseVentures\\LaravelChartjs\\Facades\\Chartjs"
}
}
},
"require-dev": {
"orchestra/testbench": "^8.19",
"pestphp/pest": "^2.30",
"laravel/pint": "^1.13",
"phpstan/phpstan": "^1.10",
"pestphp/pest-plugin-laravel": "^2.2"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}