You are here

install.sh in Service Container 8

Same filename and directory in other branches
  1. 7.2 tests/install.sh
  2. 7 tests/install.sh
#!/bin/bash
# @file
# Simple script to install composer dependencies.

set -e

DIR=$(dirname $0)
cd $DIR
composer self-update
composer install --no-interaction --prefer-source --dev

File

tests/install.sh
View source
  1. #!/bin/bash
  2. # @file
  3. # Simple script to install composer dependencies.
  4. set -e
  5. DIR=$(dirname $0)
  6. cd $DIR
  7. composer self-update
  8. composer install --no-interaction --prefer-source --dev