├── LICENSE.md ├── README.md ├── bin └── filament ├── composer.json ├── src ├── Concerns │ ├── ConfiguresPrompts.php │ ├── FilamentInstaller.php │ └── InteractsWithHerdOrValet.php └── NewCommand.php └── stubs └── pest ├── Feature.php └── Unit.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/filament-installer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/filament-installer/HEAD/README.md -------------------------------------------------------------------------------- /bin/filament: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/filament-installer/HEAD/bin/filament -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/filament-installer/HEAD/composer.json -------------------------------------------------------------------------------- /src/Concerns/ConfiguresPrompts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/filament-installer/HEAD/src/Concerns/ConfiguresPrompts.php -------------------------------------------------------------------------------- /src/Concerns/FilamentInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/filament-installer/HEAD/src/Concerns/FilamentInstaller.php -------------------------------------------------------------------------------- /src/Concerns/InteractsWithHerdOrValet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/filament-installer/HEAD/src/Concerns/InteractsWithHerdOrValet.php -------------------------------------------------------------------------------- /src/NewCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/filament-installer/HEAD/src/NewCommand.php -------------------------------------------------------------------------------- /stubs/pest/Feature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/filament-installer/HEAD/stubs/pest/Feature.php -------------------------------------------------------------------------------- /stubs/pest/Unit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lara-zeus/filament-installer/HEAD/stubs/pest/Unit.php --------------------------------------------------------------------------------