Skip to content

Laravel 9 compatibility #75

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
123 changes: 61 additions & 62 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,62 +1,61 @@
{
"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": "contact@binshops.com"
}
],
"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": {
}
}
}
}
{
"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": "contact@binshops.com"
}
],
"require": {
"cviebrock/eloquent-sluggable": "^9.0|~8.0|~7.0|~6.0|~4.8|~4.7|~4.6|~4.5",
"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": {
}
}
}
}