An open API service indexing awesome lists of open source software.

https://github.com/mpstyle/mrequest-manager

Library to read the data coming from a POST request and mapping it in some PHP object
https://github.com/mpstyle/mrequest-manager

Last synced: 8 months ago
JSON representation

Library to read the data coming from a POST request and mapping it in some PHP object

Awesome Lists containing this project

README

          

# mrequest-manager

mrequest-manager is a library to read the data coming from a POST request and mapping it in some PHP object.

## Install

Add to you composer.json file:

```json
{
"require": {
"mpstyle/mrequest-manager": "dev-master"
}
}
```

## Usages

```php
transform( json_encode($_POST['request'], true) );
var_dump($request);

```