All Versions
27
Latest Version
Avg Release Cycle
46 days
Latest Release
798 days ago

Changelog History
Page 2

  • v0.6.2 Changes

    October 31, 2019

    โž• Added

    • โž• Added support to scan for unused php extensions #33 thanks to @marcelthole
  • v0.6.1 Changes

    October 24, 2019

    ๐Ÿ›  Fixed some leftover references on zendframework/zend-servicemanager which caused a bug in runtime.
    ๐Ÿ“ฆ Also remove shorthand options on the command for excludeDir and excludePackage

  • v0.6.0 Changes

    October 24, 2019

    ๐Ÿ”„ Changed

    • โž• Added custom psr/container-interface implementation as a replacement for zendframework/zend-servicemanager
    • ๐Ÿ“ฆ Inverted the validation of valid Composer package types (no longer a whitelist, but rather a blacklist of invalid types)

    ๐Ÿ›  Fixed

    • ๐Ÿ›  Fixed issue with short option for cli parameter (--excludeDir|-d and --excludePackage|-p)
  • v0.5.6 Changes

    April 30, 2019

    ๐Ÿ›  Bugfix release to support typo3 composer packages #47 Thanks to @tomasnorre

  • v0.5.5 Changes

    April 12, 2019

    ๐Ÿ›  Bugfix release to support yii2 composer packages #44 Thanks to @moltam

  • v0.5.4 Changes

    April 11, 2019

    ๐Ÿ›  Fixed

    • ๐Ÿ›  Fixed issue where composer-unused-dump was created even when not in debug mode #41
    • ๐Ÿ›  Fixed issue where exit code was greater 0 on skipped packages, while it should be on unused packages #42 Thanks to @binarious
  • v0.5.3 Changes

    April 11, 2019

    ๐Ÿ›  Fixed

    • ๐Ÿ›  Fixed issue where qualified namespaces where not recognized when called from global namespace
      • This caused some false-positives (e.g. for symfony-bundles)
  • v0.5.2 Changes

    April 11, 2019

    ๐Ÿ›  This bugfix release adds support for symfony-bundle type in composer.json

  • v0.5.1 Changes

    March 29, 2019

    ๐Ÿ“ฆ It is possible that a package defines a valid namespace and an empty one.
    This caused the usage analysis to break.

    {
      "autoload": {
        "psr-4": {
            "": "src/",
            "A\\": "src/"
        }
      }
    }
    
  • v0.5.0 Changes

    March 29, 2019

    ๐Ÿš€ This release will change the behavior of the plugin.

    ๐Ÿ”„ Changed:

    • ๐Ÿ“ฆ the plugin will exit with a code > 0 if there are unused packages
    • ๐Ÿ“ฆ temporary solution to "silent" ignore ext- packages (might be changed in the future #33)

    โž• Added:

    • ๐Ÿ“ฆ cli parameter to exit clean (even with unused packages) --ignore-exit-code