File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 6565 source .github/workflows/.utils.sh
6666
6767 echo "$PACKAGES" | xargs -n1 | parallel -j +3 "_run_task {} '(cd src/{} && $COMPOSER_UP && $PHPSTAN)'"
68+
69+ - name : Run PHPStan on examples
70+ run : |
71+ cd examples/ && $COMPOSER_UP && $PHPSTAN
Original file line number Diff line number Diff line change 3030 "symfony/process" : " ^6.4 || ^7.0" ,
3131 "symfony/var-dumper" : " ^6.4 || ^7.0"
3232 },
33+ "require-dev" : {
34+ "phpstan/phpstan" : " ^2.1"
35+ },
3336 "autoload" : {
3437 "psr-4" : {
3538 "Symfony\\ AI\\ Fixtures\\ " : " ../fixtures/"
3639 }
3740 },
41+ "autoload-dev" : {
42+ "psr-4" : {
43+ "Symfony\\ AI\\ PHPStan\\ " : " ../.phpstan/"
44+ }
45+ },
3846 "config" : {
3947 "allow-plugins" : {
4048 "codewithkyrian/platform-package-installer" : true ,
Original file line number Diff line number Diff line change 1+ includes :
2+ - ../.phpstan/extension.neon
3+
4+ parameters :
5+ level : 6
6+ paths :
7+ - ./
8+ excludePaths :
9+ - vendor
You can’t perform that action at this time.
0 commit comments