json - Laravel 4: Fatal error: Class 'Patchwork\Utf8\Bootup' not found in autoload.php -
i added "cviebrock/image-validator": "1.0.*" require section of composer.json. after, ran composer update, getting fatal error.
:::error:::
fatal error: class 'patchwork\utf8\bootup' not found in f:\xampp\htdocs\project\ bootstrap\autoload.php on line 46 script php artisan clear-compiled handling post-update-cmd event returned wi th error [runtimeexception] error output: update [--prefer-source] [--prefer-dist] [--dry-run] [--dev] [--no-dev] [--lock] [--no-plugins] [--no-custom-installers] [--no-scripts] [--no-progress] [--with- dependencies] [-v|vv|vvv|--verbose] [-o|--optimize-autoloader] [packages1] ... [ packagesn]
:::end of error:::
:::composer.json require section:::
"require": { "intervention/image": "2.*", "cviebrock/image-validator": "1.0.*" },
i need in rectifying fatal error.
thanks & regards,
michael sangma
this error seems me there no patchwork/utf8
package installed.
see in vendor folder whether package exists or add in require section in composer.json file: "patchwork/utf8": "1.1.*"
, composer update
.
Comments
Post a Comment