├── .gitignore ├── LICENSE.txt ├── composer.json ├── composer.lock ├── phpunit.xml ├── readme.md └── src ├── AbstractStubCreator.php ├── Command └── MakeRepositories.php ├── ModelsFilter.php ├── ModelsFinder.php ├── Provider └── RepositoriesMakerServiceProvider.php ├── RepositoriesCreator.php ├── RepositoriesServiceProviderCreator.php ├── RepositoryCreator.php ├── RepositoryInterfaceCreator.php └── Stubs ├── RepositoriesServiceProviderStub.stub ├── RepositoryInterfaceStub.stub └── RepositoryStub.stub /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelrahmanrafaat/repositories-maker/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelrahmanrafaat/repositories-maker/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelrahmanrafaat/repositories-maker/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelrahmanrafaat/repositories-maker/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelrahmanrafaat/repositories-maker/HEAD/readme.md -------------------------------------------------------------------------------- /src/AbstractStubCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelrahmanrafaat/repositories-maker/HEAD/src/AbstractStubCreator.php -------------------------------------------------------------------------------- /src/Command/MakeRepositories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelrahmanrafaat/repositories-maker/HEAD/src/Command/MakeRepositories.php -------------------------------------------------------------------------------- /src/ModelsFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelrahmanrafaat/repositories-maker/HEAD/src/ModelsFilter.php -------------------------------------------------------------------------------- /src/ModelsFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelrahmanrafaat/repositories-maker/HEAD/src/ModelsFinder.php -------------------------------------------------------------------------------- /src/Provider/RepositoriesMakerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelrahmanrafaat/repositories-maker/HEAD/src/Provider/RepositoriesMakerServiceProvider.php -------------------------------------------------------------------------------- /src/RepositoriesCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelrahmanrafaat/repositories-maker/HEAD/src/RepositoriesCreator.php -------------------------------------------------------------------------------- /src/RepositoriesServiceProviderCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelrahmanrafaat/repositories-maker/HEAD/src/RepositoriesServiceProviderCreator.php -------------------------------------------------------------------------------- /src/RepositoryCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelrahmanrafaat/repositories-maker/HEAD/src/RepositoryCreator.php -------------------------------------------------------------------------------- /src/RepositoryInterfaceCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelrahmanrafaat/repositories-maker/HEAD/src/RepositoryInterfaceCreator.php -------------------------------------------------------------------------------- /src/Stubs/RepositoriesServiceProviderStub.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelrahmanrafaat/repositories-maker/HEAD/src/Stubs/RepositoriesServiceProviderStub.stub -------------------------------------------------------------------------------- /src/Stubs/RepositoryInterfaceStub.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelrahmanrafaat/repositories-maker/HEAD/src/Stubs/RepositoryInterfaceStub.stub -------------------------------------------------------------------------------- /src/Stubs/RepositoryStub.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdelrahmanrafaat/repositories-maker/HEAD/src/Stubs/RepositoryStub.stub --------------------------------------------------------------------------------