Download the PHP package bca/curl without Composer
On this page you can find all versions of the php package bca/curl. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package curl
Short Description cURL wrapper for PHP applications.
License MIT
Homepage https://github.com/brodkinca/BCA-PHP-CURL
Informations about the package curl
BCA-PHP-CURL
Work with remote servers via cURL much easier than using the native PHP bindings.
Requirements
- PHP 5.3+
- libcurl
Features
- POST/GET/PUT/DELETE requests over HTTP
- HTTP Authentication
- Follows redirects
- Returns error string
- Provides debug information
- Cookies
Install
Using Composer
Just add the following to the require section your composer.json file:
Then execute composer install
to pull down the latest release.
Package details can be found at https://packagist.org/packages/bca/curl.
Manually via Github
You may download a specific version from https://github.com/brodkinca/BCA-PHP-CURL/tags or visit the main repository at https://github.com/brodkinca/BCA-PHP-CURL/tree/master to download unreleased code or pull down a copy via git.
Versioning
This library will be maintained under the Semantic Versioning guidelines.
Releases will be numbered with the following format:
And constructed with the following guidelines:
- Breaking backward compatibility bumps the major (and resets the minor and patch)
- New additions without breaking backward compatibility bumps the minor (and resets the patch)
- Bug fixes and misc changes bump the patch
Composer users who would like more granular control over upgrades should restrict their installation to patch updates only using this require key:
For more information on SemVer, please visit http://semver.org/.
Examples
Simple requests can be constructed with just a URL and a method.
More complex requests build upon that concept by adding methods to the request.
Advanced requests can be built by adding even more methods.