├── .gitignore ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── FormRequestTester.php └── TestsFormRequests.php └── tests ├── Stubs ├── Database │ ├── factories │ │ ├── PostFactory.php │ │ └── UserFactory.php │ └── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ └── 2019_01_24_182744_create_posts_table.php ├── FormRequests │ └── UpdatePost.php ├── Models │ ├── Post.php │ └── User.php └── ServiceProviders │ └── RouteServiceProvider.php ├── TestCase.php └── TestsFormRequestTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedmanssour/form-request-tester/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedmanssour/form-request-tester/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedmanssour/form-request-tester/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedmanssour/form-request-tester/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedmanssour/form-request-tester/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/FormRequestTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedmanssour/form-request-tester/HEAD/src/FormRequestTester.php -------------------------------------------------------------------------------- /src/TestsFormRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedmanssour/form-request-tester/HEAD/src/TestsFormRequests.php -------------------------------------------------------------------------------- /tests/Stubs/Database/factories/PostFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedmanssour/form-request-tester/HEAD/tests/Stubs/Database/factories/PostFactory.php -------------------------------------------------------------------------------- /tests/Stubs/Database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedmanssour/form-request-tester/HEAD/tests/Stubs/Database/factories/UserFactory.php -------------------------------------------------------------------------------- /tests/Stubs/Database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedmanssour/form-request-tester/HEAD/tests/Stubs/Database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /tests/Stubs/Database/migrations/2019_01_24_182744_create_posts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedmanssour/form-request-tester/HEAD/tests/Stubs/Database/migrations/2019_01_24_182744_create_posts_table.php -------------------------------------------------------------------------------- /tests/Stubs/FormRequests/UpdatePost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedmanssour/form-request-tester/HEAD/tests/Stubs/FormRequests/UpdatePost.php -------------------------------------------------------------------------------- /tests/Stubs/Models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedmanssour/form-request-tester/HEAD/tests/Stubs/Models/Post.php -------------------------------------------------------------------------------- /tests/Stubs/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedmanssour/form-request-tester/HEAD/tests/Stubs/Models/User.php -------------------------------------------------------------------------------- /tests/Stubs/ServiceProviders/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedmanssour/form-request-tester/HEAD/tests/Stubs/ServiceProviders/RouteServiceProvider.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedmanssour/form-request-tester/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/TestsFormRequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohammedmanssour/form-request-tester/HEAD/tests/TestsFormRequestTest.php --------------------------------------------------------------------------------