-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for formatting large request bodies #22
base: master
Are you sure you want to change the base?
Conversation
composer.json
Outdated
@@ -4,7 +4,8 @@ | |||
"require": { | |||
"php": ">=5.5.0", | |||
"guzzlehttp/guzzle": "^6.0", | |||
"psr/log": "^1.0" | |||
"psr/log": "^1.0", | |||
"symfony/process": "^3.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use ^3.0|^4.0|^5.0
otherwise it cannot be installed on newer symfony versions
a9b35a8
This repo seems to be unmaintained now. |
PHP's escapeshellarg throws a fatal error on bad input (null bytes, strings that are too long). To workaround this, use symfony/process to escape arguments instead.
Version 3 of symfony/process was used instead of 4 because of Cuzzle's support for PHP 5.5
Solves #20