Skip to content

Commit bf63060

Browse files
committed
Adding PHP 8.3
1 parent 5141fac commit bf63060

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bin/compile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ if [[ $VERSION == nightly* || $VERSION == master* ]]; then
6969
fi
7070
fi
7171

72-
php-build -i development "${buildDefinition}" "${INSTALL_DEST}/${VERSION}"
72+
php-build -i development "${buildDefinition}" "${INSTALL_DEST}/${VERSION}" --verbose
7373

7474
pushd "${INSTALL_DEST}/${VERSION}"
7575

@@ -91,7 +91,7 @@ rm go-pear.phar
9191
ln -sv ../sbin/php-fpm bin/php-fpm
9292

9393
# composer and phpunit
94-
curl -fsSL -o bin/composer http://getcomposer.org/composer.phar
94+
curl -fsSL -o $INSTALL_DEST/$VERSION/bin/composer http://getcomposer.org/composer.phar
9595
if [[ $VERSION == nightly* || $VERSION == master* || $VERSION == 7* || $VERSION == 8* ]]; then
9696
PHPUNIT_ARCHIVE=phpunit.phar
9797
elif [[ $VERSION == 5.6* ]]; then
@@ -101,7 +101,7 @@ else
101101
fi
102102
curl -fsSL -o bin/phpunit https://phar.phpunit.de/$PHPUNIT_ARCHIVE
103103

104-
chmod +x bin/composer bin/phpunit
104+
chmod +x $INSTALL_DEST/$VERSION/bin/composer bin/phpunit
105105

106106
popd
107107

@@ -127,6 +127,6 @@ pushd /tmp
127127

128128
phpenv local "${VERSION}"
129129
phpenv rehash
130-
bin/composer self-update
130+
composer self-update
131131

132132
popd

0 commit comments

Comments
 (0)