All Versions
27
Latest Version
Avg Release Cycle
46 days
Latest Release
795 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