composer.json
{
"name": "somecoding/wp-api-wrapper",
"type": "library",
"description": "This is a Wrapper for the API provided by most Wordpress Blogs. Intended for easy crawling of a Wordpress page.",
"keywords": [
"Dwarfex",
"Wordpress",
"API",
"crawl",
"content"
],
"homepage": "https://github.com/Dwarfex/WordpressApiWrapper",
"readme": "README.md",
"license": "MIT",
"authors": [
{
"name": "Dwarfex",
"email": "dwarfex@somecoding.de",
"homepage": "https://www.somecoding.de",
"role": "Developer"
}
],
"require": {
"php": "^7.2",
"ext-json": "^1",
"guzzlehttp/guzzle": "^6.3",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0",
"psr/simple-cache": "^1.0",
"zendframework/zend-config": "^3.2",
"zendframework/zend-hydrator": "^3.0",
"zendframework/zend-servicemanager": "^3.4"
},
"require-dev": {
"phpunit/phpunit": ">=7.0",
"squizlabs/php_codesniffer": "^3.0"
},
"suggest": {
"symfony/cache": "^4.2",
"predis/predis": "^1.1",
"ext-redis": "For caching"
},
"autoload": {
"psr-4": {
"Somecoding\\WordpressApiWrapper\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Somecoding\\WordpressApiWrapper\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
},
"config": {
"sort-packages": true
}
}