Releases: Metadrop/drupal-dev
Releases · Metadrop/drupal-dev
v2.6.0
Add composer vendor cleaner package: https://github.com/liborm85/composer-vendor-cleaner
By this, projects can be configured to delete unneeded vendor binaries, like vendor/bin/composer binary at local environments.
Require backstopjs addons
v2.3.0
Full Changelog: v2.2.0...v2.3.0
v2.2.0
What's Changed
- Issue #9: drupal/core-dev compatibility 11 basis by @AliagaDev in #10
New Contributors
- @AliagaDev made their first contribution in #10
Full Changelog: v2.1.0...v2.2.0
v2.1.0
What's Changed
- Install config inspector on dev dependencies by @Eduardo-Morales-Alberti in #7
Full Changelog: v2.0.0...v2.1.0
v2.0.0
Compatibility with docker-compose v2
v1.0.1
v1.0.0
v0.4.0
Add composer comments package
v0.3.0
Drupal check has been removed and now PHPstan is used instead.
For projects that were using drupal check, the steps to do the upgrade are:
- Add a phpstan.neon configuration at the root of the repository, based on your business logic. Example:
parameters:
level: 8
paths:
- web/modules/custom
- web/themes/custom
More information about configuring PHPstan: https://phpstan.org/config-reference
- In the case you are using grumphp:
- Remove the drupalcheck configuration from grumphp.yml in case you where using it.
- Add the following phpstan configuration, modify it based on your needing:
phpstan:
autoload_file: ~
configuration: ~
force_patterns: []
ignore_patterns: []
triggered_by: ['php', 'module', 'inc', 'theme', 'install']
memory_limit: "-1"
use_grumphp_paths: true
More information about configuring phpstan at grumphp: https://github.com/phpro/grumphp/blob/master/doc/tasks/phpstan.md