I am running Laravel 5.3 and trying to do some image manipulation. I get this error: GD Library extension not available with this PHP installation.
I\'ve tried putting g
Add "gd": "*"
to composer.json and perform composer update
If that doesn't work add "ext-gd":" *"
and do a composer update
I run composer require ext-gd
and git push heroku master
it did work.
I tried add "gd": "*"
to composer.json and perform composer update
but when push to Heroku meet error with Class 'Symfony\Component\HttpFoundation\InputBag' not found
. I think it's not only update ext-gd
with composer update
"require": {
"facade/ignition": "^2.3.6",
"fzaninotto/faker": "^1.9.1",
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^5.0",
"phpunit/phpunit": "^9.3",
"ext-gd": "*"
},
composer update
git add .
git commit -m "message"
git push origin <branch name>
https://devcenter.heroku.com/articles/php-support#extensions