2017 © Pedro Peláez
 

library post-deploy-actions

Migration style post deployment commands for Laravel

image

dblencowe/post-deploy-actions

Migration style post deployment commands for Laravel

  • Monday, March 20, 2017
  • by dblencowe
  • Repository
  • 1 Watchers
  • 1 Stars
  • 215 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 14 % Grown

The README.md

Post Deploy Actions for Laravel

Easily run environment specific post deploy actions for any Laravel project (>= version 5.1), (*1)

Installation

Install the package via composer:, (*2)

$ composer require dblencowe/post-deploy-actions

Register the service provider with your app:, (*3)

// config/app.php
'providers' => [
    ...
    Dblencowe\PostDeploy\PostDeployServiceProvider::class,
]

Publish vendor files to add the migrations:, (*4)

php artisan vendor:publish --tag=migrations

Create the database table that tracks run actions:, (*5)

php artisan migrate

Usage

To create a Post Deployment command use artisans make command. Not specifying an environment will add a global action which will be run on all., (*6)

php artisan make:deploy_action name --env=ENVIRONMENT

To run outstanding actions there is an artisan command:, (*7)

php artisan postdeploy:run

The Versions

20/03 2017

dev-master

9999999-dev http://www.dblencowe.com

Migration style post deployment commands for Laravel

  Sources   Download

MIT

The Requires

 

laravel continuous integration deployment

20/03 2017

1.0.2

1.0.2.0 http://www.dblencowe.com

Migration style post deployment commands for Laravel

  Sources   Download

MIT

The Requires

 

laravel continuous integration deployment

20/03 2017

1.0.1

1.0.1.0 http://www.dblencowe.com

Migration style post deployment commands for Laravel

  Sources   Download

MIT

The Requires

 

laravel continuous integration deployment

20/03 2017

1.0.0

1.0.0.0 http://www.dblencowe.com

Migration style post deployment commands for Laravel

  Sources   Download

MIT

The Requires

  • php >= 7.0
  • laravel >= 5.1

 

laravel continuous integration deployment