-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
45 lines (45 loc) · 1.23 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
45
{
"name": "tizis/laravel-comments",
"description": "Comments system for your Laravel application. Features: can be used to comment on any model, HTML filter customization (HTMLPurifier), API, comment rating, replies, events, auth rules ...",
"keywords": [
"laravel",
"comments"
],
"license": "MIT",
"authors": [
{
"name": "Roman Yepanchenko",
"homepage": "https://github.com/tizis"
}
],
"require": {
"php": "^7.1|^8.0",
"illuminate/support": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/database": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/http": "~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0",
"mews/purifier": "^2.1|^3.0"
},
"require-dev": {
"orchestra/testbench": "~3.0",
"phpunit/phpunit": "^7.0|^9.5"
},
"autoload": {
"psr-4": {
"tizis\\laraComments\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"tizis\\laraComments\\Tests\\": "tests/",
"tizis\\laraComments\\Database\\Seeds": "database/seeds/"
}
},
"extra": {
"laravel": {
"providers": [
"tizis\\laraComments\\Providers\\ServiceProvider",
"tizis\\laraComments\\Providers\\AuthServiceProvider"
]
}
}
}