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
- Host: GitHub
- URL: https://github.com/mpstyle/mrequest-manager
- Owner: MpStyle
- Created: 2016-04-22T15:24:47.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-22T15:25:27.000Z (almost 10 years ago)
- Last Synced: 2025-06-25T13:48:06.779Z (9 months ago)
- Language: PHP
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
```