forked from thefireflytech/filament-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.34 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
46
47
48
49
50
51
52
53
54
55
{
"name": "firefly/filament-blog",
"type": "library",
"description": "An advance blog package for Filament Admin Panel",
"keywords": [
"filament",
"laravel",
"blog",
"firefly"
],
"license": "MIT",
"authors": [
{
"name": "Asmit Nepali",
"email": "[email protected]",
"homepage": "https://github.com/asmit-firefly",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"filament/support": "^3.2",
"awcodes/filament-tiptap-editor": "^3.2"
},
"autoload": {
"psr-4": {
"Firefly\\FilamentBlog\\": "src/",
"Firefly\\FilamentBlog\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"Firefly\\FilamentBlog\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Firefly\\FilamentBlog\\FilamentBlogServiceProvider"
]
}
},
"require-dev": {
"orchestra/testbench": "^9",
"pestphp/pest": "2.34.5",
"pestphp/pest-plugin-laravel": "^2.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}