You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
if [ ! -x vendor/bin/phpstan ]; then
|
|
if which composer >/dev/null 2>&1; then
|
|
echo "Running Composer to install phpstan."
|
|
composer require --dev phpstan/phpstan
|
|
else
|
|
echo "Please install php composer!"
|
|
fi
|
|
fi
|
|
|
|
./vendor/bin/phpstan analyse |