├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── config.php └── src ├── Commands ├── AbstractClassMakeCommand.php ├── ClassMakeCommand.php ├── EnumMakeCommand.php ├── InterfaceMakeCommand.php └── TraitMakeCommand.php ├── Concerns ├── WithAbstractClass.php ├── WithInterface.php ├── WithStubCleaner.php └── WithTrait.php ├── ExtendedArtisanCommandsServiceProvider.php └── stubs ├── abstract-class.stub ├── class.stub ├── enum.stub ├── interface.stub └── trait.stub /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/config/config.php -------------------------------------------------------------------------------- /src/Commands/AbstractClassMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/src/Commands/AbstractClassMakeCommand.php -------------------------------------------------------------------------------- /src/Commands/ClassMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/src/Commands/ClassMakeCommand.php -------------------------------------------------------------------------------- /src/Commands/EnumMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/src/Commands/EnumMakeCommand.php -------------------------------------------------------------------------------- /src/Commands/InterfaceMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/src/Commands/InterfaceMakeCommand.php -------------------------------------------------------------------------------- /src/Commands/TraitMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/src/Commands/TraitMakeCommand.php -------------------------------------------------------------------------------- /src/Concerns/WithAbstractClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/src/Concerns/WithAbstractClass.php -------------------------------------------------------------------------------- /src/Concerns/WithInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/src/Concerns/WithInterface.php -------------------------------------------------------------------------------- /src/Concerns/WithStubCleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/src/Concerns/WithStubCleaner.php -------------------------------------------------------------------------------- /src/Concerns/WithTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/src/Concerns/WithTrait.php -------------------------------------------------------------------------------- /src/ExtendedArtisanCommandsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/src/ExtendedArtisanCommandsServiceProvider.php -------------------------------------------------------------------------------- /src/stubs/abstract-class.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/src/stubs/abstract-class.stub -------------------------------------------------------------------------------- /src/stubs/class.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/src/stubs/class.stub -------------------------------------------------------------------------------- /src/stubs/enum.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/src/stubs/enum.stub -------------------------------------------------------------------------------- /src/stubs/interface.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/src/stubs/interface.stub -------------------------------------------------------------------------------- /src/stubs/trait.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenjude/extended-artisan-commands/HEAD/src/stubs/trait.stub --------------------------------------------------------------------------------