-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.17 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
{
"name": "wp-oop/events",
"description": "A PSR-14 wrapper for the WP hook system.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dhii",
"role": "Organisation"
},
{
"name": "Anton Ukhanev",
"email": "[email protected]",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": "^5.4 | ^7.0",
"dhii/psr-14": "^0.1",
"dhii/normalization-helper-base": "^0.1-alpha2",
"dhii/exception": "^0.1-alpha4",
"dhii/i18n-helper-base": "^0.1"
},
"require-dev": {
"10up/wp_mock": "^0.1.1",
"doctrine/instantiator": ">=1.0.5 <1.1.0",
"dhii/php-cs-fixer-config": "^0.1",
"phpunit/phpunit": "^4.8",
"ptrofimov/xpmock": "^1.1",
"dhii/stringable-interface": "^0.1"
},
"autoload": {
"psr-4": {
"Dhii\\EventManager\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dhii\\EventManager\\UnitTest\\" : "test/unit",
"Dhii\\EventManager\\FuncTest\\" : "test/functional"
}
}
}