mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 16:57:09 +00:00
14 lines
254 B
Bash
Executable File
14 lines
254 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
FF_DIR=$PWD
|
|
|
|
# single line install command
|
|
composer global require hirak/prestissimo \
|
|
--no-plugins --no-scripts
|
|
|
|
cd $FF_DIR
|
|
|
|
echo "Changed back to '$FF_DIR'"
|
|
|
|
./vendor/bin/phpstan analyse -c .ci/phpstan.neon
|