thijskok/phpci-bower-plugin

This package is abandoned and no longer maintained. No replacement package was suggested.

PHPCI plugin for Bower integration

dev-master 2016-08-05 12:58 UTC

This package is auto-updated.

Last update: 2020-01-28 12:50:05 UTC


README

A plugin for PHPCI to download and install Bower packages required by your application.

Install the Plugin

  1. Navigate to your PHPCI root directory and run composer require thijskok/phpci-bower-plugin
  2. If you are using the PHPCI daemon, restart it
  3. Update your phpci.yml in the project you want to deploy with

Prerequisites

  1. Bower needs to be installed.

Plugin Options

  • force [boolean, optional] - Force latest version on conflict
  • production [boolean, optional] - Do not install project devDependencies

PHPCI Config

ThijsKok\PHPCI\Plugin\Bower:
    force: false
    production: true

example:

setup:
    ThijsKok\PHPCI\Plugin\Bower:
        production: false