-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 864 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 864 Bytes
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
{
"name": "rebelcode/wp-plugin-sdk",
"description": "An SDK used by RebelCode to build WordPress plugins.",
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "RebelCode",
"email": "dev@rebelcode.com",
"role": "Developer"
}
],
"require": {
"php": ">= 7.2",
"ext-json": "*",
"dhii/services": "^0.1.1-alpha3",
"dhii/containers": "^v0.1.4",
"psr/container": "^1.1.1"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"roots/wordpress-no-content": ">= 6.0",
"brain/monkey": "^2.6",
"mockery/mockery": "1.3.x-dev",
"mikey179/vfsstream": "2.0.x-dev"
},
"autoload": {
"psr-4": {
"RebelCode\\WpSdk\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"RebelCode\\WpSdk\\Tests\\": "./tests"
}
},
"scripts": {
"test": "phpunit"
}
}