gitextract_gek_81al/ ├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── app/ │ ├── Commands/ │ │ ├── .gitkeep │ │ └── Package.php │ ├── Enums/ │ │ └── Platform.php │ └── Providers/ │ └── AppServiceProvider.php ├── bootstrap/ │ └── app.php ├── box.json ├── builds/ │ └── haulable ├── composer.json ├── config/ │ ├── app.php │ ├── commands.php │ ├── filesystems.php │ └── view.php ├── haulable ├── phpunit.xml.dist ├── pint.json ├── resources/ │ └── views/ │ ├── error.blade.php │ ├── intro.blade.php │ └── packaging-successful.blade.php └── tests/ ├── CreatesApplication.php ├── Pest.php └── TestCase.php