1
0
Fork 0
mirror of synced 2024-10-02 10:16:27 +13:00

Update src/Appwrite/Utopia/Request/Filters/V16.php

This commit is contained in:
Jake Barnby 2023-08-22 17:24:27 -04:00 committed by GitHub
parent 02f8e7796d
commit aec59074df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,6 +35,12 @@ class V16 extends Filter
return 'dart pub get';
} elseif (\str_starts_with($runtime, 'php')) {
return 'composer update --no-interaction --ignore-platform-reqs --optimize-autoloader --prefer-dist --no-dev';
} elseif (\str_starts_with($runtime, 'ruby')) {
return 'bundle install';
} elseif (\str_starts_with($runtime, 'swift')) {
return 'swift package resolve';
} elseif (\str_starts_with($runtime, 'dotnet')) {
return 'dotnet restore';
}
return '';