Download the PHP package lliure/llrequest without Composer
On this page you can find all versions of the php package lliure/llrequest. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download lliure/llrequest
More information about lliure/llrequest
Files in lliure/llrequest
Download lliure/llrequest
More information about lliure/llrequest
Files in lliure/llrequest
Vendor lliure
Package llrequest
Short Description A lightweight PHP package for connecting to RESTful HTTP APIs and SOAP services.
License MIT
Package llrequest
Short Description A lightweight PHP package for connecting to RESTful HTTP APIs and SOAP services.
License MIT
Please rate this library. Is it a good library?
Informations about the package llrequest
Package Documentation: llRequest
Overview
llRequest
is a versatile PHP library for making SOAP and HTTP API requests. It simplifies the process of interacting with remote services by providing an easy-to-use interface for sending requests and handling responses.
Installation
To use llRequest
, you can include it in your project via Composer. Add the following line to your composer.json
file:
Then run composer install
to install the package.
Examples
SOAP Request
HTTP/API GET Request
HTTP/API POST Request
Usage
- SOAP Request: Use
Request::soap($wsdlUrl)
to initiate a SOAP request. You can set headers with->headers($headersArray)
and make method calls like->MethodName($paramsArray)
. - HTTP/API Request: Use
Request::http($url)
to initiate an HTTP request. Set headers with->headers($headersArray)
and specify the request type (->get()
,->post($data)
, etc.). Handle the response using the->done()
method.
Notes
- Ensure that the required dependencies are installed via Composer (
ll/request
). - Replace placeholder values (
xxxx
,http://xxxxx.xxx/xxx/xxx
, etc.) with actual URLs, credentials, and data relevant to your use case. - Handle response data within the
->done()
callback function, processing it as needed for your application.
For more information and detailed usage instructions, refer to the official llRequest
documentation or source repository.
All versions of llrequest with dependencies
PHP Build Version
Package Version
Requires
php Version
^5.3.3 || ^7.0 || ^8.0
ext-curl Version *
ext-curl Version *
The package lliure/llrequest contains the following files
Loading the files please wait ....