File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 6565 " @lint-8.2-or-earlier" ,
6666 " @lint-8.3-or-later"
6767 ],
68- "lint-8.2-or-earlier" : " [ $(php -r \" echo PHP_VERSION_ID;\" ) -ge 80300 ] || git ls-files | grep ' .php$' | grep -v '^lib /composer/' | grep -v '^build /stubs/' | xargs -0 -n1 php -l" ,
69- "lint-8.3-or-later" : " [ $(php -r \" echo PHP_VERSION_ID;\" ) -lt 80300 ] || php -l $(git ls-files | grep ' .php$' | grep -v '^lib /composer/' | grep -v '^build /stubs/' | sed 's#/[^/]*$#/*.php# ' | sort -u) " ,
68+ "lint-8.2-or-earlier" : " [ $(php -r \" echo PHP_VERSION_ID;\" ) -ge 80300 ] || find . -type f -name '* .php' -not -path './3rdparty/*' -not -path '* /composer/*' -not -path '* /stubs/*' -not -path '*/vendor-bin/*' -not -path '*/vendor/*' | xargs -n1 -P$(nproc) php -l" ,
69+ "lint-8.3-or-later" : " [ $(php -r \" echo PHP_VERSION_ID;\" ) -lt 80300 ] || find . -type f -name '* .php' -not -path './3rdparty/*' -not -path '* /composer/*' -not -path '* /stubs/*' -not -path '*/vendor-bin/*' -not -path '*/vendor/* ' | xargs -n200 -P$(nproc) php -l " ,
7070 "psalm" : " psalm --no-cache --threads=$(nproc)" ,
7171 "psalm:ocp" : " psalm --no-cache --threads=$(nproc) -c psalm-ocp.xml" ,
7272 "psalm:ncu" : " psalm --no-cache --threads=$(nproc) -c psalm-ncu.xml" ,
You can’t perform that action at this time.
0 commit comments