-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 955 Bytes
/
composer.json
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
{
"name": "arafatkn/wrest",
"version": "0.0.1",
"description": "WREST - easy to use REST API wrapper for WordPress",
"keywords": ["wp rest", "wp rest api", "wp rest api wrapper", "wordpress rest api"],
"homepage": "https://github.com/arafatkn/wrest",
"type": "library",
"license": "MIT",
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"Arafatkn\\WRest\\": "src/WRest"
}
},
"autoload-dev": {
"psr-4": {
"Arafatkn\\WRest\\Tests\\": "tests/"
}
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "^10"
},
"authors": [
{
"name": "Arafat Islam",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/arafatkn/wrest/issues",
"source": "https://github.com/arafatkn/wrest"
}
}