Skip to content
This repository has been archived by the owner on Jul 1, 2022. It is now read-only.

Latest commit

 

History

History
29 lines (23 loc) · 511 Bytes

File metadata and controls

29 lines (23 loc) · 511 Bytes

Upgrading Guide

Upgrade to 2.0

Support for autoload.exclude-from-files has been removed. This non-standard usage of the autoloads property should never have been supported to begin with.

Instead of using autoload:

{
    "autoload": {
        "exclude-from-files": [
            "illuminate/support/helpers.php"
        ]
    }
}

You now have to use extra:

{
    "extra": {
        "exclude-from-files": [
            "illuminate/support/helpers.php"
        ]
    }
}