appstore-1panel/apps/php5/5.5.38/build/php/extensions/install-composer.sh

14 lines
588 B
Bash
Raw Normal View History

2023-04-09 10:55:06 +08:00
#!/bin/sh
# The latest mirror's composer version only support for PHP 7.2.5
2023-04-09 10:55:06 +08:00
# And if your PHP version is lesser than that, will be download supported version.
supportLatest=$(php -r "echo version_compare(PHP_VERSION, '7.2.5', '>');")
2023-04-09 10:55:06 +08:00
if [ "$supportLatest" -eq "1" ]; then
curl -o /usr/bin/composer https://mirrors.aliyun.com/composer/composer.phar \
&& chmod +x /usr/bin/composer
else
curl -ksS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer --disable-tls \
2023-04-09 10:55:06 +08:00
&& chmod +x /usr/bin/composer \
&& rm -rf /tmp/composer-setup.php
fi