├── .editorconfig ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── SECURITY.md └── workflows │ ├── phpstan.yml │ ├── pint.yml │ └── run-tests.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── phpcs.xml ├── phpstan.neon ├── phpunit.xml.dist ├── pint.json ├── src ├── SafeFormRequestServiceProvider.php └── Traits │ └── RetrievesSafeInput.php └── tests ├── RetrievesSafeInputTest.php ├── Stubs └── MySafeFormRequest.php └── TestCase.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://paypal.me/observername"] 2 | -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/workflows/phpstan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/.github/workflows/phpstan.yml -------------------------------------------------------------------------------- /.github/workflows/pint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/.github/workflows/pint.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/pint.json -------------------------------------------------------------------------------- /src/SafeFormRequestServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/src/SafeFormRequestServiceProvider.php -------------------------------------------------------------------------------- /src/Traits/RetrievesSafeInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/src/Traits/RetrievesSafeInput.php -------------------------------------------------------------------------------- /tests/RetrievesSafeInputTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/tests/RetrievesSafeInputTest.php -------------------------------------------------------------------------------- /tests/Stubs/MySafeFormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/tests/Stubs/MySafeFormRequest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-rubel/laravel-safe-request/HEAD/tests/TestCase.php --------------------------------------------------------------------------------