forked from Studio221/Larastats
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 704 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 704 Bytes
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
{
"name": "bigsnowfr/larastats",
"description": "This package allow you to fetch stats as a graph or as an integer from one of your model and get a simple value or an array with a pair value of date and count.",
"type": "library",
"require": {
"nesbot/carbon": "^1.22"
},
"license": "MIT",
"authors": [
{
"name": "EtienneFontaine",
"email": "etienne@221.rocks"
}
],
"autoload": {
"psr-4": {
"Bigsnowfr\\Larastats\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Bigsnowfr\\Larastats\\LarastatsServiceProvider"
],
"aliases": {
"Larastats": "Bigsnowfr\\Larastats\\LarastatsFacade"
}
}
}
}