Skip to content

Instantly share code, notes, and snippets.

@nchaulet
Created January 6, 2014 19:24
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nchaulet/8288240 to your computer and use it in GitHub Desktop.
Save nchaulet/8288240 to your computer and use it in GitHub Desktop.
Composer with HHVM

Composer with HHVM

Tips :

If your dependencies needs ext-intl or ext-gmp you can add this to your composer.json

"provide" : { "ext-intl" : "*", "ext-gmp": "*" }

Or with `jq``

cat composer.json | jq '. +  {"provide" : {"ext-gmp": "*", "ext-intl": "*"}}' > composer.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment