monsterlane / lumen-form-request by monsterlane

Laravel Form Request adaptation for Lumen framework.
2,767
0
1
Package Data
Maintainer Username: monsterlane
Package Create Date: 2022-05-22
Package Last Update: 2022-08-29
Language: PHP
License: MIT
Last Refreshed: 2024-05-01 15:00:41
Package Statistics
Total Downloads: 2,767
Monthly Downloads: 61
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 1
Total Open Issues: 0

Lumen Form Request

This is a small library to port form request's from Laravel 5.8 to Lumen 5.8.

To use this library register the service provider in bootstrap/app.php:

/*
|--------------------------------------------------------------------------
| Register Service Providers
|--------------------------------------------------------------------------
|
| Here we will register all of the application's service providers which
| are used to bind services into the container. Service providers are
| totally optional, so you are not required to uncomment this line.
|
*/

$app->register(Monsterlane\Providers\FormRequestServiceProvider::class);

Create files in App\Http\Requests using the following format:

<?php

namespace App\Http\Requests;

use Monsterlane\Http\FormRequest;

class SaveRequest extends FormRequest
{
    /**
	 * Verify we are authorized to call the route.
     *
     * @return bool
     */
    public function authorize(): bool
    {
        return true;
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules(): array
    {
        return [];
    }
}

Use them in a controller:

public function myRoute(SaveRequest $request, ...): JsonResponse

MIT License

Copyright (c) 2022 Jonathan Down

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.