Skip to content

Instantly share code, notes, and snippets.

@kerasai
Created February 21, 2019 23:51
Show Gist options
  • Save kerasai/774a6881270e1e3cce0129ffdfda8aae to your computer and use it in GitHub Desktop.
Save kerasai/774a6881270e1e3cce0129ffdfda8aae to your computer and use it in GitHub Desktop.
Box PHAR Compilation
#!/usr/bin/bash
sudo mkdir -p /opt/box
cd /opt/box
sudo curl -OL https://github.com/humbug/box/releases/download/3.4.0/box.phar
sudo chmod +x box.phar
sudo mv box.phar box-3.4.0.phar
sudo update-alternatives --install /usr/bin/box box /opt/box/box-3.4.0.phar 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment