forked from robbielove/laravel-comments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.04 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
{
"name": "robbielove/laravel-comments",
"description": "Comments for Laravel.",
"keywords": [
"laravel",
"comments"
],
"license": "MIT",
"authors": [
{
"name": "Mario Bašić",
"email": "[email protected]",
"homepage": "https://laravelista.hr"
}
],
"require": {
"php": "^8.1",
"erusev/parsedown": "^1.7",
"illuminate/database": "^10.0|^11.0",
"illuminate/http": "^10.0|^11.0",
"illuminate/pagination": "^10.0|^11.0",
"illuminate/routing": "^10.0|^11.0",
"illuminate/queue": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"spatie/laravel-honeypot": "^4.3"
},
"replace": {
"laravelista/comments": "self.version"
},
"autoload": {
"psr-4": {
"Laravelista\\Comments\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Laravelista\\Comments\\ServiceProvider"
]
}
}
}