mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 08:35:00 +00:00
8 lines
193 B
Bash
Executable File
8 lines
193 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Install composer packages
|
|
composer install --no-suggest --no-scripts --no-ansi
|
|
|
|
# Do static code analysis.
|
|
./vendor/bin/phpstan analyse -c .ci/phpstan.neon > phpstan.txt
|