Disable xdebug on phpstan for performance boost.

This commit is contained in:
Buster Neece 2022-12-15 17:36:35 -06:00
parent 19a82114a2
commit 443534de7d
No known key found for this signature in database
GPG Key ID: F1D2E64A0005E80E
2 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ jobs:
- name: Run PHPStan
run: |
vendor/bin/phpstan analyze --xdebug --memory-limit=-1 --error-format=checkstyle | cs2pr
vendor/bin/phpstan analyze --memory-limit=-1 --error-format=checkstyle | cs2pr
- name: Run PHP Code Sniffer
run: |

View File

@ -186,7 +186,7 @@
"phpcbf": "phpcbf",
"phpcs": "phpcs",
"phplint": "parallel-lint . --exclude vendor",
"phpstan": "phpstan analyze --xdebug --memory-limit=-1",
"phpstan": "phpstan analyze --memory-limit=-1",
"shell": "psysh"
}
}