Trying to deploy my symfony app I have this error occured:
Counting objects: 74, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (36/36), done.
Writing objects: 100% (36/36), 14.54 KiB | 0 bytes/s, done.
Total 36 (delta 24), reused 0 (delta 0)
remote: Compressing source files... done.
remote: Building source:
remote:
remote: -----> PHP app detected
remote:
remote: ! WARNING: Your 'composer.json' contains a non-'stable' setting
remote: for 'minimum-stability'. This may cause the installation of
remote: unstable versions of runtimes and extensions during this deploy.
remote: It is recommended that you always use stability flags instead,
remote: even if you have 'prefer-stable' enabled. For more information,
remote: see https://getcomposer.org/doc/01-basic-usage.md#stability
remote:
remote: -----> Bootstrapping...
remote:
remote: gzip: stdin: not in gzip format
remote: tar: Child returned status 1
remote: tar: Error is not recoverable: exiting now
remote: ! Push rejected, failed to compile PHP app.
remote:
remote: ! Push failed
remote: Verifying deploy...
remote:
remote: ! Push rejected to my-app.
remote:
To https://git.heroku.com/my-app.git
! [remote rejected] master -> master (pre-receive hook declined)
error: impossible de pousser des références vers 'https://git.heroku.com/my-app.git'
I really don't understand why, and I am not sure it is in relation with php buildpack. Before this error not appear and I have the same configuration as before.
Trying to deploy my symfony app I have this error occured:
I really don't understand why, and I am not sure it is in relation with php buildpack. Before this error not appear and I have the same configuration as before.
This is my composer.json file:
For depolying I run this command:
git push heroku my-branch:master
and I see the hroku logs that build the app.More explanation here: http://stackoverflow.com/questions/38523304/deploy-symfony-app-on-heroku-return-push-failed-error
Someone have the same problem ?