Sha256: 5890dcd9467907382ce2dad8d821b7381800e23011e185b36e929504b90818fd
Contents?: true
Size: 467 Bytes
Versions: 602
Compression:
Stored size: 467 Bytes
Contents
#!/bin/sh EXPECTED_SIGNATURE="$(wget -q -O - https://composer.github.io/installer.sig)" php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" ACTUAL_SIGNATURE="$(php -r "echo hash_file('sha384', 'composer-setup.php');")" if [ "$EXPECTED_SIGNATURE" != "$ACTUAL_SIGNATURE" ] then >&2 echo 'ERROR: Invalid installer signature' rm composer-setup.php exit 1 fi php composer-setup.php --quiet RESULT=$? rm composer-setup.php exit $RESULT
Version data entries
602 entries across 602 versions & 1 rubygems