forked from hacklabsdev/laravel-trends
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 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
{
"name": "eighteen73/laravel-radioactivity",
"description": "Laravel Radioactivity provides a lightweight trending system to your application.",
"keywords": ["laravel"],
"license": "MIT",
"support": {
"issues": "https://github.com/eighteen73/laravel-radioactivity/issues",
"source": "https://github.com/eighteen73/laravel-radioactivity"
},
"authors": [
{
"name": "Ed Jeavons",
"email": "[email protected]"
}
],
"require": {
"illuminate/contracts": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"laravel/pint": "^1.18"
},
"autoload": {
"psr-4": {
"Eighteen73\\Radioactivity\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Eighteen73\\Radioactivity\\RadioactivityServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}