astronati / wordpress-api-response-parser
Allows to map responses provided by any Wordpress API.
Installs: 3 749
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 1
Forks: 1
Open Issues: 1
Requires
- php: >=7.4
- ext-json: *
Requires (Dev)
- codacy/coverage: ^1.4
- consolidation/robo: ~1
- phpstan/phpstan: ^0.9.1
- phpunit/php-code-coverage: ^6.0
- phpunit/phpunit: ^7.0
README
Wordpress API Response Parser
Allows to map responses provided by Wordpress API.
Supported Responses
Not all responses are currently supported but we are happy to work for you if you need some of them.
NOTE: To add another response into the supported list, please file a new issue.
To do that please file a new issue.
Installation
You can install the library and its dependencies using composer
running:
$ composer require astronati/wordpress-api-response-parser
Usage
The library allows to return a model per each response and its content (post, tag, category, etc...).
Example
The following snippet can be helpful:
use WARP\Response\ResponseParser; ... // Obtain a Response $apiResponse = ['id' => 123, ...] // Save the response from a Wordpress API $response = ResponseParser::create($apiResponse, ResponseParser::CREATE_POST); ... // Get post $post = $response->getPost(); echo $post->getID(); // 123
For more details please take a look at Response.
Development
The environment requires phpunit, that has been already included in the dev-dependencies
of the
composer.json
.
Dependencies
To install all modules you just need to run following command:
$ composer install
Testing
Tests files are created in dedicates folders that replicate the src structure as follows:
.
+-- src
| +-- [folder-name]
| | +-- [file-name].php
| ...
+-- tests
| +-- [folder-name]
| | +-- [file-name]Test.php
Execute following command to run the tests suite:
$ composer test
Run what follows to see the code coverage:
$ composer coverage
License
This package is released under the MIT license.