forked from WebDevEtc/BlogEtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·61 lines (61 loc) · 1.76 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
{
"name": "dcoding/blogetc",
"keywords": [
"laravel",
"blog",
"package",
"admin",
"panel",
"rss",
"feed",
"write",
"posts",
"news",
"update",
"webdevetc",
"webdev"
],
"description": "Simple blog package (with admin panel) for Laravel. 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://webdevetc.com/laravel/packages/blogetc-blog-system-for-your-laravel-app/help-documentation/laravel-blog-package-blogetc"
},
"authors": [
{
"name": "WebDevEtc",
"homepage": "https://webdevetc.com/",
"role": "developer",
"email": "[email protected]"
}
],
"require": {
"laravel/framework": "^6.0",
"cviebrock/eloquent-sluggable": "4.5.*|4.6.*|4.7.*|4.8.*|6.0.*",
"laravelium/feed": "~2.12.0|~3.0.0|3.1.*|v6.0.*",
"intervention/image": "2.*"
},
"require-dev": {
"phpunit/phpunit": "*",
"orchestra/testbench": "4.0.*",
"php-coveralls/php-coveralls": "*"
},
"autoload": {
"psr-4": {
"WebDevEtc\\BlogEtc\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WebDevEtc\\BlogEtc\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"WebDevEtc\\BlogEtc\\BlogEtcServiceProvider"
],
"aliases": {
}
}
}
}