[TYPO3-dev] Re: Composer installation add TYPO3 extension

Philipp Wrann philippwrann at gmail.com
Tue Aug 25 16:46:20 CEST 2015


Aha, seems the package does have a composer.json but neither psr-4, nor psr-0 autoloading specified in it.

Fix:

Add the speficiation to your project root:

    "autoload": {
        "psr-4": {
            "Causal\\ImageAutoresize\\": "web/typo3conf/ext/image_autoresize/Classes/"
        }
    },

and run composer install again to regenerate autoloader



More information about the TYPO3-dev mailing list