-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
44 lines (44 loc) · 1.03 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
{
"name": "careset/zermelo",
"description": "Zermelo, a PHP reporting engine for Laravel",
"type": "library",
"license": "Apache-2.0",
"keywords": [
"laravel",
"reporting",
"reports",
"report",
"datatables",
"d3",
"vega"
],
"require": {
"php": ">=7.2.0",
"doctrine/sql-formatter": "1.1.*",
"phpoffice/phpspreadsheet": "^1.22",
"twbs/bootstrap": "4.1.3",
"components/jquery": "3.3.1",
"moment/moment": "2.29.1",
"fortawesome/font-awesome" : "5.15.2",
"datatables/datatables": "1.10.21"
},
"autoload": {
"psr-4" : {
"CareSet\\Zermelo\\" : "src/"
}
},
"extra": {
"laravel": {
"providers": [
"CareSet\\Zermelo\\ZermeloServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"oomphinc/composer-installers-extender": true
}
}
}