├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── Console │ └── Commands │ │ └── Generators │ │ └── RepositoryMakeCommand.php ├── Exceptions │ └── RepositoryException.php ├── LaravelRepositoryServiceProvider.php └── Repositories │ └── BaseRepository.php ├── stubs └── laravel-repository.stub └── tests ├── AfterHooksTest.php ├── ArtisanCommandTest.php ├── BeforeHooksTest.php ├── RepositoryTest.php ├── TestCase.php └── database └── migrations ├── 2014_10_12_000000_create_users_test_table.php └── 2014_10_12_000001_create_user_details_test_table.php /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Console/Commands/Generators/RepositoryMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/src/Console/Commands/Generators/RepositoryMakeCommand.php -------------------------------------------------------------------------------- /src/Exceptions/RepositoryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/src/Exceptions/RepositoryException.php -------------------------------------------------------------------------------- /src/LaravelRepositoryServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/src/LaravelRepositoryServiceProvider.php -------------------------------------------------------------------------------- /src/Repositories/BaseRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/src/Repositories/BaseRepository.php -------------------------------------------------------------------------------- /stubs/laravel-repository.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/stubs/laravel-repository.stub -------------------------------------------------------------------------------- /tests/AfterHooksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/tests/AfterHooksTest.php -------------------------------------------------------------------------------- /tests/ArtisanCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/tests/ArtisanCommandTest.php -------------------------------------------------------------------------------- /tests/BeforeHooksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/tests/BeforeHooksTest.php -------------------------------------------------------------------------------- /tests/RepositoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/tests/RepositoryTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/database/migrations/2014_10_12_000000_create_users_test_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/tests/database/migrations/2014_10_12_000000_create_users_test_table.php -------------------------------------------------------------------------------- /tests/database/migrations/2014_10_12_000001_create_user_details_test_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saineshmamgain/laravel-repositories/HEAD/tests/database/migrations/2014_10_12_000001_create_user_details_test_table.php --------------------------------------------------------------------------------