- Added phpstan/phpstan - Added bootstrap file - Added phpstan config - Added ci file - Added to CI matrix Signed-off-by: William Desportes <williamdes@wdes.fr>
8 lines
239 B
Bash
Executable File
8 lines
239 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd $(dirname $0)/../
|
|
echo "Running in : $(pwd)"
|
|
|
|
# 1G is a litte high, should use < 512M (less ram + a lot of code = bigger risk of crash)
|
|
./vendor/bin/phpstan analyse ./ --configuration=phpstan.neon --level=0 --memory-limit=1G
|