php composer script (check php versions)
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
17
docker/tools/install_composer.sh
Executable file
17
docker/tools/install_composer.sh
Executable file
@ -0,0 +1,17 @@
|
||||
#!/bin/sh
|
||||
|
||||
PHP_VERSION=`php -r 'echo PHP_MAJOR_VERSION.PHP_MINOR_VERSION;'`
|
||||
|
||||
|
||||
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
|
Reference in New Issue
Block a user