php/docker/usr/local/bin/php_helper.sh
Aleksander Cynarski be2e033263
All checks were successful
continuous-integration/drone/push Build is passing
php_helper improve for dev/test
2021-06-14 18:58:52 +02:00

36 lines
847 B
Bash
Executable File

#!/bin/sh
PHP_VERSION=`php -r 'echo PHP_MAJOR_VERSION.PHP_MINOR_VERSION;'`
echo "Actual environment: ${ENVIRONMENT}"
if [ -f /usr/local/etc/php/php.ini-$ENVIRONMENT ]; then
mv /usr/local/etc/php/php.ini-$ENVIRONMENT /usr/local/etc/php/php.ini
fi
if [ $PHP_VERSION = '72' ]; then
wget -O /bin/composer https://getcomposer.org/composer-1.phar
else
wget -O /bin/composer https://getcomposer.org/composer.phar
fi
chmod a+x /bin/composer
if [ $PHP_VERSION = '72' ]; then
composer global require hirak/prestissimo
fi
if [ $ENVIRONMENT != 'production' ]; then
wget -O phpunit https://phar.phpunit.de/phpunit-9.phar
install phpunit /usr/local/bin
fi
if [ $ENVIRONMENT = 'development' ]; then
apk --update --no-cache add autoconf g++ make
pecl install -f xdebug
docker-php-ext-enable xdebug
apk del --purge autoconf g++ make
fi