-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.4 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.4 KB
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
46
47
48
49
50
{
"name": "relaticle/comments",
"description": "A full-featured commenting system for Filament panels",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.2",
"filament/filament": "^4.0|^5.0",
"filament/notifications": "^4.0|^5.0",
"filament/support": "^4.0|^5.0",
"illuminate/database": "^12.0|^13.0",
"illuminate/support": "^12.0|^13.0",
"livewire/livewire": "^3.5|^4.0",
"spatie/laravel-package-tools": "^1.93"
},
"require-dev": {
"laravel/pint": "^1.0",
"larastan/larastan": "^3.0",
"orchestra/testbench": "^10.0|^11.0",
"pestphp/pest": "^3.0|^4.0",
"pestphp/pest-plugin-laravel": "^3.0|^4.0",
"pestphp/pest-plugin-livewire": "^3.0|^4.0"
},
"autoload": {
"psr-4": {
"Relaticle\\Comments\\": "src/",
"Relaticle\\Comments\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"Relaticle\\Comments\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Relaticle\\Comments\\CommentsServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}