forked from binshops/laravel-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·62 lines (62 loc) · 1.79 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
56
57
58
59
60
61
62
{
"name": "binshops/laravel-blog",
"keywords": [
"laravel",
"blog",
"package",
"admin",
"panel",
"rss",
"feed",
"write",
"posts",
"news",
"update",
"laravel blog",
"binshops"
],
"description": "Simple blog package (with admin panel) for Laravel (6.x and 7.x). Includes all views, controllers, routes and can add a blog to any existing Laravel app. Fully customisable blog (view, urls, and many other options). Includes image uploads and a pretty admin interface to manage your blog. Defaults to /blog but you can change it to anything.",
"license": "MIT",
"support": {
"docs": "https://github.com/binshops/laravel-blog"
},
"authors": [
{
"name": "Binshops",
"homepage": "https://github.com/binshops/laravel-blog",
"role": "owner",
"email": "[email protected]"
}
],
"require": {
"cviebrock/eloquent-sluggable": "~8.0|~7.0|~6.0|~4.8|~4.7|~4.6|~4.5",
"laravelium/feed": "~2.12.0|~3.0.0|3.1.*|v6.0.*|v7.0.*|v8.0.*",
"intervention/image": "2.*",
"laravel/helpers": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "*",
"orchestra/testbench": "4.0.*",
"php-coveralls/php-coveralls": "*"
},
"autoload": {
"psr-4": {
"BinshopsBlog\\": "src",
"BinshopsBlog\\Laravel\\Fulltext\\": "src/FulltextSearch/src/"
}
},
"autoload-dev": {
"psr-4": {
"BinshopsBlog\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"BinshopsBlog\\BinshopsBlogServiceProvider"
],
"aliases": {
}
}
}
}