craftcms / phpstan
PHPStan configuration for Craft CMS projects
Installs: 109 663
Dependents: 327
Suggesters: 0
Security: 0
Stars: 12
Watchers: 8
Forks: 2
Open Issues: 0
Requires
- phpstan/phpstan: ^1.4.6
This package is auto-updated.
Last update: 2024-10-13 02:22:56 UTC
README
This package provides a base PHPStan configuration for Craft CMS plugins and projects.
To install, run the following commands within your plugin or project:
composer config minimum-stability dev
composer config prefer-stable true
composer require craftcms/phpstan:dev-main --dev
Then add a phpstan.neon
config file to the root of your project:
includes: - vendor/craftcms/phpstan/phpstan.neon parameters: level: 0 paths: - src
Change the paths
array to whichever directory(s) contain the source code you want PHPStan to inspect.
(See PHPStan’s Config Reference for a full list of supported config parameters.)
With that in place, you can begin running PHPStan with the following command:
vendor/bin/phpstan --memory-limit=1G
Or define a phpstan
script in composer.json
:
{ "...": "...", "scripts": { "phpstan": "phpstan --memory-limit=1G" } }
And then run PHPStan with:
composer run-script phpstan