├── .editorconfig ├── .gitignore ├── .styleci.yml ├── LICENSE.txt ├── README.md ├── composer.json ├── spark ├── spark.bat └── src ├── Installation ├── AddAppProviderToConfiguration.php ├── AddCoreProviderToConfiguration.php ├── CompileAssets.php ├── ComposerUpdate.php ├── CreateLaravelProject.php ├── DownloadSpark.php ├── RunNpmInstall.php ├── RunSparkInstall.php └── UpdateComposerFile.php ├── InteractsWithSparkAPI.php ├── InteractsWithSparkConfiguration.php ├── NewCommand.php ├── RegisterCommand.php ├── TokenCommand.php └── cacert.pem /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/.styleci.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/composer.json -------------------------------------------------------------------------------- /spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/spark -------------------------------------------------------------------------------- /spark.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/spark.bat -------------------------------------------------------------------------------- /src/Installation/AddAppProviderToConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/src/Installation/AddAppProviderToConfiguration.php -------------------------------------------------------------------------------- /src/Installation/AddCoreProviderToConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/src/Installation/AddCoreProviderToConfiguration.php -------------------------------------------------------------------------------- /src/Installation/CompileAssets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/src/Installation/CompileAssets.php -------------------------------------------------------------------------------- /src/Installation/ComposerUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/src/Installation/ComposerUpdate.php -------------------------------------------------------------------------------- /src/Installation/CreateLaravelProject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/src/Installation/CreateLaravelProject.php -------------------------------------------------------------------------------- /src/Installation/DownloadSpark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/src/Installation/DownloadSpark.php -------------------------------------------------------------------------------- /src/Installation/RunNpmInstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/src/Installation/RunNpmInstall.php -------------------------------------------------------------------------------- /src/Installation/RunSparkInstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/src/Installation/RunSparkInstall.php -------------------------------------------------------------------------------- /src/Installation/UpdateComposerFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/src/Installation/UpdateComposerFile.php -------------------------------------------------------------------------------- /src/InteractsWithSparkAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/src/InteractsWithSparkAPI.php -------------------------------------------------------------------------------- /src/InteractsWithSparkConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/src/InteractsWithSparkConfiguration.php -------------------------------------------------------------------------------- /src/NewCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/src/NewCommand.php -------------------------------------------------------------------------------- /src/RegisterCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/src/RegisterCommand.php -------------------------------------------------------------------------------- /src/TokenCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/src/TokenCommand.php -------------------------------------------------------------------------------- /src/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravel/spark-installer/HEAD/src/cacert.pem --------------------------------------------------------------------------------