rtablada / slim-post
There is no license information available for the latest version (dev-master) of this package.
A super slim POST CURL wrapper
dev-master
2013-05-01 15:17 UTC
This package is not auto-updated.
Last update: 2024-11-04 11:23:26 UTC
README
In writing a few projects, I found that many of the HTTP request libraries were a bit heavy for what I needed. The answer was to create a super-lightweight CURL wrapper that would do the job.
Note: this package sends to a url with a POST payload, and that is it!
Installation
This package is distributed using Packagist and Composer.
To your composer.json requires object add
"Rtablada/slim-post" : "*"
Run composer install
or composer update
Using this package
In your sample file after autoloading SlimPost is super easy to use!
<?php use Rtablada\SlimPost\SlimPost; $url = "http://somewebsite.co"; $data = array( 'name' => 'Bob', 'age' => 25 ); $results = SlimPost::create($url, $data)->send();
The results is untouched and ready for you to read however you see fit.