hcomg / laravel-deployman
Deploy your Laravel applications via Github or Bitbucket Hooks
dev-master
2017-05-20 14:09 UTC
Requires
- php: >=5.5.9
- laravel/framework: >=5.0.0
This package is not auto-updated.
Last update: 2025-02-02 04:57:21 UTC
README
Deploy your Laravel applications via Github or Bitbucket Hooks
Features
1. Auto pull to server when new commit has been to pushed
2. [Composer install] if have new package in composer.json file
3. [Yarn install] if have new package in package.json file
4. ...
Requirements
Laravel >=5.0
PHP >= 5.5.9
Installation
Open your terminal(CLI), go to the root directory of your Laravel project, then follow the following procedure.
-
Install Through Composer
composer require hcomg/laravel-deployman
-
Add the Service Provider to
config/app.php
'providers' => [ ... Deployman\DeploymanServiceProvider::class, ],
-
Publish the config file
php artisan deployman:publish
To force publishing
php artisan deployman:publish --force