mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 16:57:09 +00:00
11 lines
263 B
Bash
Executable File
11 lines
263 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Install composer packages
|
|
composer install --no-suggest --no-scripts --no-ansi &> /dev/null
|
|
|
|
# Do static code analysis.
|
|
./vendor/bin/phpstan analyse -c .ci/phpstan.neon --no-progress --error-format=raw > phpstan.txt
|
|
|
|
cat phpstan.txt
|
|
|
|
exit 0 |