mirror of
https://github.com/Karaka-Management/Build.git
synced 2026-01-16 13:58:40 +00:00
17 lines
669 B
Bash
17 lines
669 B
Bash
#!/bin/bash
|
|
|
|
# Downloading tools
|
|
wget -nc https://phar.phpunit.de/phploc.phar
|
|
wget -nc https://phar.phpunit.de/phpunit.phar
|
|
wget -nc https://github.com/Halleck45/PhpMetrics/raw/master/build/phpmetrics.phar
|
|
wget -nc http://phpdoc.org/phpDocumentor.phar
|
|
wget -nc http://static.pdepend.org/php/latest/pdepend.phar
|
|
wget -nc https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar
|
|
wget -nc http://static.phpmd.org/php/latest/phpmd.phar
|
|
wget -nc https://phar.phpunit.de/phpcpd.phar
|
|
wget -nc http://dl.google.com/closure-compiler/compiler-latest.tar.gz
|
|
tar -zxvf compiler-latest.tar.gz
|
|
|
|
# Installing tools
|
|
[[ $(jsonlint -h) != *"Usage: jsonlint"* ]] && npm install jsonlint -g
|