-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.11 KB
/
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
39
40
41
42
43
44
45
46
47
{
"name": "ironbound/wp-api-idempotence",
"description": "Allow API clients to specify an idempotency key for API requests.",
"type": "project",
"minimum-stability": "dev",
"license": "GPLv2",
"authors": [
{
"name": "Timothy Jacobs",
"email": "[email protected]"
}
],
"require": {
"ironbound/db": "^2.0.0",
"yoast/whip": "^1.0.0",
"php": ">=5.4.0|>=7.0.1",
"php-di/php-di": "^4.0.0",
"doctrine/annotations": "1.2.0",
"doctrine/cache": "~1.5.4",
"doctrine/collections": "~1.3.0",
"zendframework/zend-code": "~2.4.11",
"zendframework/zend-eventmanager": "~2.4.11",
"brightnucleus/dependencies": "^0.3.1",
"gregwar/formidable": "^1.1",
"twig/twig": "^1.33"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/TimothyBJacobs/Formidable"
}
],
"require-dev": {
"phpunit/phpunit": "^4.8|^5.7"
},
"autoload": {
"psr-4": {
"IronBound\\WP_API_Idempotence\\": "src/",
"IronBound\\WP_API_Idempotence\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "5.4.0"
}
}
}