├── .scrutinizer.yml ├── .styleci.yml ├── LICENSE.md ├── README.md ├── appveyor.yml ├── composer.json ├── config └── generator.php ├── phpcs.xml ├── resources └── stubs │ └── app │ ├── Http │ └── Controllers │ │ └── Controller.stub │ ├── Model.stub │ └── Repositories │ ├── Contracts │ └── Repository.stub │ └── Repository.stub ├── ruleset.xml └── src ├── Code.php ├── CommandFactory.php ├── Console └── GeneratorCommand.php ├── Fixers └── UseSortFixer.php ├── Generator.php ├── GeneratorServiceProvider.php └── Plugins ├── Plugin.php └── ServiceProviderRegister.php /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel 2 | 3 | linting: true 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/appveyor.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/composer.json -------------------------------------------------------------------------------- /config/generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/config/generator.php -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/phpcs.xml -------------------------------------------------------------------------------- /resources/stubs/app/Http/Controllers/Controller.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/resources/stubs/app/Http/Controllers/Controller.stub -------------------------------------------------------------------------------- /resources/stubs/app/Model.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/resources/stubs/app/Model.stub -------------------------------------------------------------------------------- /resources/stubs/app/Repositories/Contracts/Repository.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/resources/stubs/app/Repositories/Contracts/Repository.stub -------------------------------------------------------------------------------- /resources/stubs/app/Repositories/Repository.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/resources/stubs/app/Repositories/Repository.stub -------------------------------------------------------------------------------- /ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/ruleset.xml -------------------------------------------------------------------------------- /src/Code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/src/Code.php -------------------------------------------------------------------------------- /src/CommandFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/src/CommandFactory.php -------------------------------------------------------------------------------- /src/Console/GeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/src/Console/GeneratorCommand.php -------------------------------------------------------------------------------- /src/Fixers/UseSortFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/src/Fixers/UseSortFixer.php -------------------------------------------------------------------------------- /src/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/src/Generator.php -------------------------------------------------------------------------------- /src/GeneratorServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/src/GeneratorServiceProvider.php -------------------------------------------------------------------------------- /src/Plugins/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/src/Plugins/Plugin.php -------------------------------------------------------------------------------- /src/Plugins/ServiceProviderRegister.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recca0120/generator/HEAD/src/Plugins/ServiceProviderRegister.php --------------------------------------------------------------------------------