mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 16:57:09 +00:00
16 lines
532 B
Bash
Executable File
16 lines
532 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo $PWD
|
|
|
|
# single line install command
|
|
composer global require hirak/prestissimo \
|
|
phpstan/phpstan \
|
|
ergebnis/phpstan-rules \
|
|
nunomaduro/larastan \
|
|
phpstan/phpstan-deprecation-rules \
|
|
thecodingmachine/phpstan-strict-rules \
|
|
nette/coding-standard \
|
|
--no-plugins --no-scripts
|
|
|
|
~/.config/composer/vendor/bin/phpstan analyse -c .ci/phpstan.neon
|