-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.07 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
{
"name": "mohsen-mhm/laravel-image-charts",
"description": "Image-charts PHP library to make chart in image format",
"type": "laravel-package",
"keywords": [
"php",
"laravel",
"chart",
"chart.js"
],
"homepage": "https://github.com/Mohsen-mhm/laravel-image-charts",
"license": "MIT",
"autoload": {
"psr-4": {
"MohsenMhm\\LaravelImageCharts\\": "src/"
}
},
"authors": [
{
"role": "Developer",
"name": "Mohsen Mohammadi",
"email": "mohsen.mhm23@gmail.com",
"homepage": "https://mohsen.sbs"
}
],
"require": {
"php": "^8.2|^8.3",
"laravel/framework": "^9.0|^10.0|^11.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
},
"extra": {
"laravel": {
"providers": [
"MohsenMhm\\LaravelImageCharts\\Providers\\ImageChartsServiceProvider"
],
"aliases": {
"ImageChart": "MohsenMhm\\LaravelImageCharts\\Facades\\ImageChartFacade"
}
}
}
}