This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
image: phpunit/phpunit:4.6.10 | |
pipelines: | |
default: | |
- step: | |
script: | |
- pecl install xdebug && echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini | |
- composer --version | |
- composer install | |
- vendor/bin/phpunit --version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Ensure in user's home dir to start | |
cd ~ | |
# Yum packages | |
sudo yum update -y | |
sudo yum install -y httpd24 mysql-server php55 php55-devel php55-common php55-cli php55-pecl-apc php55-pdo php55-xml php55-gd php55-mbstring php-pear php55-mysqlnd php55-mcrypt | |
# Start apache and start on boot |