Skip to content

Releases: Metadrop/drupal-dev

v2.6.0

22 Nov 15:11
Compare
Choose a tag to compare

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

28 Oct 09:45
77732e9
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.4.0...v2.5.0

v2.3.0

03 Oct 10:34
Compare
Choose a tag to compare

Full Changelog: v2.2.0...v2.3.0

v2.2.0

03 Oct 09:40
411db82
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.1.0...v2.2.0

v2.1.0

19 Sep 10:17
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.0.0...v2.1.0

v2.0.0

01 Apr 14:08
116d810
Compare
Choose a tag to compare

Compatibility with docker-compose v2

v1.0.1

23 Aug 18:44
Compare
Choose a tag to compare
Allow stable version of phpcs installer

v1.0.0

23 Aug 18:44
Compare
Choose a tag to compare
Add image styles generator

v0.4.0

31 Jul 07:26
Compare
Choose a tag to compare

Add composer comments package

v0.3.0

14 Apr 10:26
Compare
Choose a tag to compare

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