Skip to content

Commit b0bdaeb

Browse files
committed
Update to Laravel 11.
1 parent af6cff2 commit b0bdaeb

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
[![Vue v3.x](https://img.shields.io/badge/Vue.js-v3.x-2f4053?style=for-the-badge&logo=vue.js&logoColor=39af78)](https://vuejs.org/)
99
[![Inertia.js v1.x](https://img.shields.io/badge/Inertia.js-v1.x-6765ea?style=for-the-badge&logo=inertia&logoColor=ffffff)](https://inertiajs.com/)
10-
[![Laravel v10.x](https://img.shields.io/badge/Laravel-v10.x-FF2D20?style=for-the-badge&logo=laravel)](https://laravel.com)
10+
[![Laravel v11.x](https://img.shields.io/badge/Laravel-v11.x-FF2D20?style=for-the-badge&logo=laravel)](https://laravel.com)
1111
[![Tailwind CSS v3.x](https://img.shields.io/badge/Tailwind%20CSS-v3.x-31b5f7?style=for-the-badge&logo=tailwind-css&logoColor=ffffff)](https://tailwindcss.com/)
1212
[![Tests passing](https://img.shields.io/badge/Tests-passing-green?style=for-the-badge&logo=github)](https://github.com/daniel-cintra/modular-blog/actions)
1313

@@ -30,9 +30,9 @@ You can easily create posts using a Fully Featured WYSIWYG Editor, and manage th
3030

3131
The **Blog Module Public Views** offers the following features:
3232

33-
- **Archive Selector:** Automatically groups posts by month and year, allowing users to filter posts by specific periods.
34-
- **Tag Selector:** Enables filtering of posts by specific tags. By default, only tags with associated posts are displayed.
35-
- **Search Posts:** Incorporates a simple search feature within the module.
33+
- **Archive Selector:** Automatically groups posts by month and year, allowing users to filter posts by specific periods.
34+
- **Tag Selector:** Enables filtering of posts by specific tags. By default, only tags with associated posts are displayed.
35+
- **Search Posts:** Incorporates a simple search feature within the module.
3636

3737
<img src="art/modular-blog-index.jpg" alt="Modular Blog Index" style="width: 100%;">
3838

@@ -182,7 +182,7 @@ npm run dev
182182

183183
To access the Blog Module's CMS (Content Management System), login in to the Modular CMS using the configured path in your `config/modular.php` file in the `login-url` key (for example `/admin`). The Blog Management links will be listed in the sidebar menu.
184184

185-
#### Blog Site View
185+
#### Blog Site View
186186

187187
By default, you can access the blog posts controller in the `/blog` route registered by the module.
188188

@@ -234,8 +234,9 @@ php artisan db:seed --class="Modules\\Blog\\Database\\Seeders\\BlogSeeder"
234234
And for the `BlogAclSeeder`:
235235

236236
```bash
237-
php artisan db:seed --class="Modules\\Blog\\Database\\Seeders\\BlogAclSeeder"
237+
php artisan db:seed --class="Modules\\Blog\\Database\\Seeders\\BlogAclSeeder"
238238
```
239+
239240
These commands allow you to selectively seed your database with the blog module's content and ACL permissions, offering a more controlled setup process.
240241

241242
## License

composer.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,13 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.2",
20-
"daniel-cintra/modular": "^0.2.28",
21-
"cviebrock/eloquent-sluggable": "^10.0"
19+
"daniel-cintra/modular": "^0.3.0",
20+
"cviebrock/eloquent-sluggable": "^11.0"
2221
},
2322
"require-dev": {
24-
"pestphp/pest": "^2.33",
25-
"orchestra/testbench": "^8.21",
26-
"pestphp/pest-plugin-laravel": "^2.2",
23+
"pestphp/pest": "^2.34",
24+
"orchestra/testbench": "9.x-dev",
25+
"pestphp/pest-plugin-laravel": "^2.3",
2726
"laravel/pint": "^1.13"
2827
},
2928
"autoload": {

0 commit comments

Comments
 (0)