├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── Exceptions │ └── LaravelModuleInstallerException.php ├── LaravelModuleInstaller.php └── LaravelModuleInstallerPlugin.php └── tests └── LaravelModuleInstallerTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | .idea/ 3 | .phpunit.result.cache -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbrw/laravel-module-installer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbrw/laravel-module-installer/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbrw/laravel-module-installer/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbrw/laravel-module-installer/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbrw/laravel-module-installer/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Exceptions/LaravelModuleInstallerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbrw/laravel-module-installer/HEAD/src/Exceptions/LaravelModuleInstallerException.php -------------------------------------------------------------------------------- /src/LaravelModuleInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbrw/laravel-module-installer/HEAD/src/LaravelModuleInstaller.php -------------------------------------------------------------------------------- /src/LaravelModuleInstallerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbrw/laravel-module-installer/HEAD/src/LaravelModuleInstallerPlugin.php -------------------------------------------------------------------------------- /tests/LaravelModuleInstallerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbrw/laravel-module-installer/HEAD/tests/LaravelModuleInstallerTest.php --------------------------------------------------------------------------------