Download the PHP package tobento/service-requester without Composer
On this page you can find all versions of the php package tobento/service-requester. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tobento/service-requester
More information about tobento/service-requester
Files in tobento/service-requester
Package service-requester
Short Description A PSR-7 server request wrapper class providing simplified methods.
License MIT
Homepage https://www.tobento.ch
Informations about the package service-requester
Requester Service
A PSR-7 server request wrapper class providing simplified methods.
Table of Contents
- Getting started
- Requirements
- Highlights
- Documentation
- Create Requester
- Available Methods
- Credits
Getting started
Add the latest version of the requester service project running this command.
Requirements
- PHP 8.0 or greater
Highlights
- Framework-agnostic, will work with any project
- Decoupled design
Documentation
Create Requester
Available Methods
method
Returns the HTTP method in uppercase such as GET, POST, PUT...
isSecure
Returns whether the request is secure or not.
isContentType
Determine if the request is of the specified content type.
isReading
Determine if the HTTP request is a reading request which is the case if the method is one of HEAD, GET and OPTIONS.
isPrefetch
Determine if the HTTP request is a prefetch call.
isAjax
Check if request was via AJAX.
isJson
Determine if the request is sending JSON.
wantsJson
Determine if the request is asking for JSON.
json
Returns the request JSON payload.\ Check out the Collection Service to learn more about the Collection in general.
input
Returns the request input data. Depending on the content type and method, it returns the parsed body data or the query params. \ Check out the Collection Service to learn more about the Collection in general.
uri
Returns the Uri.
request
Returns the server request.
acceptHeader
Returns the accept header instance.
Credits
- Tobias Strub
- All Contributors