├── composer.json └── src ├── Commands ├── GeneratorCommand.php └── MigrationGeneratorCommand.php ├── Concerns ├── CodeGenerator.php ├── CreatesUsingGeneratorPreset.php ├── MigrationGenerator.php ├── ResolvesPresetStubs.php ├── TestGenerator.php └── UsesGeneratorOverrides.php ├── Contracts └── GeneratesCode.php ├── LaravelServiceProvider.php ├── PresetManager.php └── Presets ├── Laravel.php └── Preset.php /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/canvas-core/HEAD/composer.json -------------------------------------------------------------------------------- /src/Commands/GeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/canvas-core/HEAD/src/Commands/GeneratorCommand.php -------------------------------------------------------------------------------- /src/Commands/MigrationGeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/canvas-core/HEAD/src/Commands/MigrationGeneratorCommand.php -------------------------------------------------------------------------------- /src/Concerns/CodeGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/canvas-core/HEAD/src/Concerns/CodeGenerator.php -------------------------------------------------------------------------------- /src/Concerns/CreatesUsingGeneratorPreset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/canvas-core/HEAD/src/Concerns/CreatesUsingGeneratorPreset.php -------------------------------------------------------------------------------- /src/Concerns/MigrationGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/canvas-core/HEAD/src/Concerns/MigrationGenerator.php -------------------------------------------------------------------------------- /src/Concerns/ResolvesPresetStubs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/canvas-core/HEAD/src/Concerns/ResolvesPresetStubs.php -------------------------------------------------------------------------------- /src/Concerns/TestGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/canvas-core/HEAD/src/Concerns/TestGenerator.php -------------------------------------------------------------------------------- /src/Concerns/UsesGeneratorOverrides.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/canvas-core/HEAD/src/Concerns/UsesGeneratorOverrides.php -------------------------------------------------------------------------------- /src/Contracts/GeneratesCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/canvas-core/HEAD/src/Contracts/GeneratesCode.php -------------------------------------------------------------------------------- /src/LaravelServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/canvas-core/HEAD/src/LaravelServiceProvider.php -------------------------------------------------------------------------------- /src/PresetManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/canvas-core/HEAD/src/PresetManager.php -------------------------------------------------------------------------------- /src/Presets/Laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/canvas-core/HEAD/src/Presets/Laravel.php -------------------------------------------------------------------------------- /src/Presets/Preset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orchestral/canvas-core/HEAD/src/Presets/Preset.php --------------------------------------------------------------------------------