1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:17:35 +00:00

Ports/composer: Update composer to version 2.3.5

This commit is contained in:
EWouters 2022-06-02 22:05:04 +02:00 committed by Linus Groh
parent 34eff055b2
commit 2a9a2f17a1
2 changed files with 8 additions and 8 deletions

View file

@ -1,8 +1,8 @@
#!/usr/bin/env -S bash ../.port_include.sh
port=composer
version="2.3.4"
files="https://getcomposer.org/download/${version}/composer.phar composer.phar 1fc8fc5b43f081fe76fa85eb5a213412e55f54a60bae4880bc96521ae482d6c3"
auth_type=sha256
port='composer'
version='2.3.5'
files="https://getcomposer.org/download/${version}/composer.phar composer.phar 3b3b5a899c06a46aec280727bdf50aad14334f6bc40436ea76b07b650870d8f4"
auth_type='sha256'
depends=("php")
build() {
@ -10,7 +10,7 @@ build() {
}
install() {
local target_path=${SERENITY_INSTALL_ROOT}/usr/local/bin/composer
run_nocd cp composer.phar ${target_path}
run_nocd chmod +x ${target_path}
local target_path="${SERENITY_INSTALL_ROOT}/usr/local/bin/composer"
run_nocd cp composer.phar "${target_path}"
run_nocd chmod +x "${target_path}"
}