aboutsummaryrefslogtreecommitdiffhomepage
path: root/install_dev.sh
blob: cbd47495391158f2625a2897b560e11532ab61d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /usr/bin/env bash

echo " > Installing PHP dependencies (including dev) through Composer..."
composer install -o  --no-interaction --no-progress --prefer-dist

if [[ $ASSETS == 'build' || $TRAVIS_BUILD_DIR == '' ]]; then
    echo " > Downloading librairies through npm..."
    npm install

    echo " > Concat, minify and installing assets..."
    grunt
fi

echo " > Install finished"