Skip to content

Instantly share code, notes, and snippets.

@kissge
Created February 27, 2018 08:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kissge/6c9028e1d16901f63704ad1ff8107af0 to your computer and use it in GitHub Desktop.
Save kissge/6c9028e1d16901f63704ad1ff8107af0 to your computer and use it in GitHub Desktop.
sudo apt install php7.0-{cli,xml}
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('SHA384', 'composer-setup.php') === '544e09ee996cdf60ece3804abc52599c22b1f40f4323403c44d44fdfdd586475ca9813a858088ffbc1f233e9b180f061') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
sudo mv composer.phar /usr/bin/composer
composer global require escapestudios/symfony2-coding-standard:3.x-dev
composer global require squizlabs/php_codesniffer=\*
phpcs --config-set installed_paths ~/.composer/vendor/escapestudios/symfony2-coding-standard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment