├── LICENSE ├── README.md ├── composer.json └── src ├── ArtisanCommandsServiceProvider.php ├── Commands ├── ChapolimCommand.php ├── ControllerMakeCommand.php ├── MigrationMakeCommand.php ├── ModelMakeCommand.php ├── RepositoryMakeCommand.php └── ServiceMakeCommand.php └── Services ├── Controller ├── ApiRouteGroupCreator.php ├── ControllerCreator.php └── stubs │ ├── controller.api.stub │ ├── controller.plain.stub │ ├── controller.service.api.stub │ ├── controller.service.plain.stub │ └── route-group.stub ├── Creator.php ├── Migration ├── MigrationCreator.php └── stubs │ ├── migration.create.stub │ ├── migration.stub │ └── migration.update.stub ├── Model ├── ModelCreator.php └── stubs │ ├── model.fillable.stub │ └── model.stub ├── Repository ├── RepositoryCreator.php ├── RepositoryInterfaceCreator.php ├── RepositoryLayerCreator.php ├── RepositoryServiceProviderCreator.php └── stubs │ ├── abstract-repository-interface.stub │ ├── abstract-repository.stub │ ├── repository-interface.stub │ ├── repository-service-provider.stub │ ├── repository.model.stub │ └── repository.stub └── Service ├── ServiceCreator.php └── stubs ├── service.plain.stub ├── service.repository.plain.stub ├── service.repository.stub └── service.stub /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/composer.json -------------------------------------------------------------------------------- /src/ArtisanCommandsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/ArtisanCommandsServiceProvider.php -------------------------------------------------------------------------------- /src/Commands/ChapolimCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Commands/ChapolimCommand.php -------------------------------------------------------------------------------- /src/Commands/ControllerMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Commands/ControllerMakeCommand.php -------------------------------------------------------------------------------- /src/Commands/MigrationMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Commands/MigrationMakeCommand.php -------------------------------------------------------------------------------- /src/Commands/ModelMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Commands/ModelMakeCommand.php -------------------------------------------------------------------------------- /src/Commands/RepositoryMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Commands/RepositoryMakeCommand.php -------------------------------------------------------------------------------- /src/Commands/ServiceMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Commands/ServiceMakeCommand.php -------------------------------------------------------------------------------- /src/Services/Controller/ApiRouteGroupCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Controller/ApiRouteGroupCreator.php -------------------------------------------------------------------------------- /src/Services/Controller/ControllerCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Controller/ControllerCreator.php -------------------------------------------------------------------------------- /src/Services/Controller/stubs/controller.api.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Controller/stubs/controller.api.stub -------------------------------------------------------------------------------- /src/Services/Controller/stubs/controller.plain.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Controller/stubs/controller.plain.stub -------------------------------------------------------------------------------- /src/Services/Controller/stubs/controller.service.api.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Controller/stubs/controller.service.api.stub -------------------------------------------------------------------------------- /src/Services/Controller/stubs/controller.service.plain.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Controller/stubs/controller.service.plain.stub -------------------------------------------------------------------------------- /src/Services/Controller/stubs/route-group.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Controller/stubs/route-group.stub -------------------------------------------------------------------------------- /src/Services/Creator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Creator.php -------------------------------------------------------------------------------- /src/Services/Migration/MigrationCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Migration/MigrationCreator.php -------------------------------------------------------------------------------- /src/Services/Migration/stubs/migration.create.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Migration/stubs/migration.create.stub -------------------------------------------------------------------------------- /src/Services/Migration/stubs/migration.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Migration/stubs/migration.stub -------------------------------------------------------------------------------- /src/Services/Migration/stubs/migration.update.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Migration/stubs/migration.update.stub -------------------------------------------------------------------------------- /src/Services/Model/ModelCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Model/ModelCreator.php -------------------------------------------------------------------------------- /src/Services/Model/stubs/model.fillable.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Model/stubs/model.fillable.stub -------------------------------------------------------------------------------- /src/Services/Model/stubs/model.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Model/stubs/model.stub -------------------------------------------------------------------------------- /src/Services/Repository/RepositoryCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Repository/RepositoryCreator.php -------------------------------------------------------------------------------- /src/Services/Repository/RepositoryInterfaceCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Repository/RepositoryInterfaceCreator.php -------------------------------------------------------------------------------- /src/Services/Repository/RepositoryLayerCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Repository/RepositoryLayerCreator.php -------------------------------------------------------------------------------- /src/Services/Repository/RepositoryServiceProviderCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Repository/RepositoryServiceProviderCreator.php -------------------------------------------------------------------------------- /src/Services/Repository/stubs/abstract-repository-interface.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Repository/stubs/abstract-repository-interface.stub -------------------------------------------------------------------------------- /src/Services/Repository/stubs/abstract-repository.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Repository/stubs/abstract-repository.stub -------------------------------------------------------------------------------- /src/Services/Repository/stubs/repository-interface.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Repository/stubs/repository-interface.stub -------------------------------------------------------------------------------- /src/Services/Repository/stubs/repository-service-provider.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Repository/stubs/repository-service-provider.stub -------------------------------------------------------------------------------- /src/Services/Repository/stubs/repository.model.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Repository/stubs/repository.model.stub -------------------------------------------------------------------------------- /src/Services/Repository/stubs/repository.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Repository/stubs/repository.stub -------------------------------------------------------------------------------- /src/Services/Service/ServiceCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Service/ServiceCreator.php -------------------------------------------------------------------------------- /src/Services/Service/stubs/service.plain.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Service/stubs/service.plain.stub -------------------------------------------------------------------------------- /src/Services/Service/stubs/service.repository.plain.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Service/stubs/service.repository.plain.stub -------------------------------------------------------------------------------- /src/Services/Service/stubs/service.repository.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Service/stubs/service.repository.stub -------------------------------------------------------------------------------- /src/Services/Service/stubs/service.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliezer-alves/chapolim/HEAD/src/Services/Service/stubs/service.stub --------------------------------------------------------------------------------