This repository was archived by the owner on Nov 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.41 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"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
}
}