diff --git a/deploy.php b/deploy.php index 5c3195f..6694aa2 100644 --- a/deploy.php +++ b/deploy.php @@ -12,6 +12,14 @@ set('repository', 'ssh://git@git.thisfro.ch:222/thisfro/pflaenz.li.git'); // [Optional] Allocate tty for git clone. Default value is false. set('git_tty', true); +set('bin/php', function() { + return '/opt/php8.0/bin/php'; +}); + +set('bin/composer', function() { + return '/opt/php8.0/bin/composer2'; +}); + // Shared files/dirs between deploys add('shared_files', ['public/.htaccess']); add('shared_dirs', ['public/uploads']);