├── LICENSE.md ├── README.md ├── composer.json ├── config └── updater.php ├── resources └── views │ └── index.blade.php ├── routes └── web.php └── src ├── CheckForUpdate.php ├── Updater.php └── UpdaterServiceProvider.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salahhusa9/updater/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salahhusa9/updater/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salahhusa9/updater/HEAD/composer.json -------------------------------------------------------------------------------- /config/updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salahhusa9/updater/HEAD/config/updater.php -------------------------------------------------------------------------------- /resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salahhusa9/updater/HEAD/resources/views/index.blade.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salahhusa9/updater/HEAD/routes/web.php -------------------------------------------------------------------------------- /src/CheckForUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salahhusa9/updater/HEAD/src/CheckForUpdate.php -------------------------------------------------------------------------------- /src/Updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salahhusa9/updater/HEAD/src/Updater.php -------------------------------------------------------------------------------- /src/UpdaterServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salahhusa9/updater/HEAD/src/UpdaterServiceProvider.php --------------------------------------------------------------------------------