Skip to content

Commit 50dcd3a

Browse files
Update README.md
1 parent 18c40db commit 50dcd3a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

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

1212
This is a stripped down version from the paid version [Maravel rest wizard](https://github.com/macropay-solutions/laravel-lumen-crud-wizard) (for laravel/lumen >= 8 and maravelith/maravel >= 10).
1313

14-
## Url query language lib for RESTful CRUD (micro) services using lumen/laravel 8-9-10-11-12 and Maravelith/Maravel >=10
14+
## Url query language lib for RESTful CRUD (micro) services using Lumen/Laravel 8-9-10-11-12 and Maravelith/Maravel >=10
1515

1616
### This is not just another CRUD lib!
1717
It has built in filtering capabilities that can be used for listing but also for mass deleting, so it could be called a CRU**F**D (create, read, update, **filter** and delete) lib instead.
@@ -94,9 +94,9 @@ Register
9494

9595
\MacropaySolutions\LaravelCrudWizard\Providers\CrudProvider
9696

97-
\MacropaySolutions\LaravelCrudWizard\Providers\ValidationServiceProvider instead of Illuminate\Validation\ValidationServiceProvider::class if you are using **illuminate/validation < 11.44.1 to solve CVE-2025-27515 security issue and https://github.com/laravel/framework/issues/41734#issuecomment-3127680521 issue**
97+
\MacropaySolutions\LaravelCrudWizard\Providers\ValidationServiceProvider instead of Illuminate\Validation\ValidationServiceProvider::class if you are using **illuminate/validation < 11.44.1 to solve CVE-2025-27515 security issue and https://github.com/laravel/framework/issues/41734#issuecomment-3127680521 issue** (fixed in Maravel/Maravelith, so it is not needed)
9898

99-
\MacropaySolutions\LaravelCrudWizard\Http\Middleware\UnescapedJsonMiddleware::class in lumen or laravel.
99+
\MacropaySolutions\LaravelCrudWizard\Http\Middleware\UnescapedJsonMiddleware::class in Lumen/Laravel or Maravel/Maravelith.
100100

101101
Create a constant in your code
102102

@@ -202,7 +202,7 @@ Optionally if you don't want to expose some models as resources but, you want to
202202

203203
Add this new resource to the above map.
204204

205-
Register the crud routes in your application using (for example in Laravel)
205+
Register the crud routes in your application using (for example in Laravel/Maravelith)
206206

207207
```php
208208
try {
@@ -226,7 +226,7 @@ Register the crud routes in your application using (for example in Laravel)
226226
}
227227
```
228228

229-
for example for lumen:
229+
for example for Lumen/Maravel:
230230

231231
```php
232232

@@ -519,7 +519,7 @@ Obs.
519519
use ?cursor= for cursor pagination and ?simplePaginate=1 for simplePaginate. Use none of them for length aware paginator.
520520
if \Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class is used use ?cursor=1 instead of emtpy string
521521
sort works also on aggregated colums for relation count and existence
522-
withRelations which uses with function does not load morphable relations in laravel. BaseResourceService::addRelationsToExistingModel can be used for those or loadMorph.
522+
withRelations which uses with function does not load morphable relations in laravel/Maravelith. BaseResourceService::addRelationsToExistingModel can be used for those or loadMorph.
523523

524524

525525
#### III.4 Update resource (or create)

0 commit comments

Comments
 (0)