-
Notifications
You must be signed in to change notification settings - Fork 123
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
Any issue with dropping curl dependency? #62
Comments
After looking into it more, the curl backed method will verify the HTTPS certs if properly configured, in which case the solution might be to conditionally or at least optionally enable the HTTPS checks for curl. Still, might be simpler to remove curl dependency (?). |
Sounds good to me. Pest is not getting the love it needs lately. Would you be interested in jumping on as a maintainer/contributor? |
Yes, I would. I'm integrating pest in a number of projects. |
Okay you should now have full access to the Pest repo. On Sat, Feb 28, 2015 at 12:13 PM, Zane Rockenbaugh <[email protected]
|
It seems possible to rewrite (something I'd be happy to contribute to) to use PHP streams rather than rely on curl for the HTTP requests. This has the advantage of actually using (rather than ignoring) HTTPS host verification. Also, it seems to me that vanilla Composer (which Pest supports) is incompatible with curl systems. At least on my setup, if PHP is compiled with curl, (the latest?) composer either fails to install (if
--with-curl-wrappers
included) or fails at runtime (if 'wrappers' left out, but--with-curl
left in).The text was updated successfully, but these errors were encountered: