-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
29 lines (29 loc) · 851 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
{
"name": "imanghafoori/crudbooster-statistics",
"description": "A plug-in for CrudBooster CMS to add statistics functionality",
"keywords": ["crudbooster", "crudbooster-statistics", "crudbooster statistics", "crudbooster plugin"],
"license": "MIT",
"homepage": "https://github.com/imanghafoori1/crudbooster-statistics",
"authors": [
{
"name": "Iman Ghafoori",
"email": "imanghafoori1@gmail.com"
}
],
"require": {
"php": ">=5.6.0",
"crocodicstudio/crudbooster": "dev-master"
},
"autoload": {
"psr-4": {
"Imanghafoori\\CrudBoosterStats\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Imanghafoori\\CrudBoosterStats\\CbStatisticsServiceProvider"
]
}
}
}