Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})

* Fixed composer install crash caused by legacy prestissimo removal running as wrong user
* Improved composer install script to default to latest stable
* Fixed `mysqldump` warning for unknown option on MariaDB 11.4/11.8 [#237](https://github.com/lando/php/issues/237)
* Updated to [@lando/nginx@1.6.0](https://github.com/lando/nginx/releases/tag/v1.6.0)
Expand Down
8 changes: 0 additions & 8 deletions scripts/install-composer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,3 @@ fi

# Remove the setup script
php -r "unlink('/tmp/composer-setup.php');"

# Check if anything is installed globally
if [ -f /var/www/.composer/composer.json ]; then
# If this is version 2 then let's make sure hirak/prestissimo is removed
if composer --version 2>/dev/null | grep -E "Composer (version )?2." > /dev/null; then
composer global remove hirak/prestissimo
fi
fi
Loading