forked from Dhii/wp-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.51 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
48
49
50
51
52
53
54
55
{
"name": "wp-oop/containers",
"description": "PSR-11 container implementations that wrap some WP features, for convenience and interoperability.",
"type": "library",
"license": "MIT",
"keywords": [
"container",
"di",
"dependency injection",
"wordpress"
],
"authors": [
{
"name": "Anton Ukhanev",
"email": "[email protected]",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1 | ^8.0",
"psr/container": "^1.0",
"dhii/collections-interface": "^0.3.0-alpha1"
},
"require-dev": {
"slevomat/coding-standard": "^4.0 | ^5.0 | ^6.0",
"phpunit/phpunit": "^6.0 | ^7.0 | ^8.0 | ^9.0",
"gmazzap/andrew": "^1.1",
"brain/monkey": "^2.0",
"vimeo/psalm": "^3.11.7 | ^4.0",
"johnpbloch/wordpress-core": "^5.0",
"php-stubs/wordpress-stubs": "^5.0"
},
"conflict": {
"vimeo/psalm": "4.5.1 || 4.5.0"
},
"autoload": {
"psr-4": {
"WpOop\\Containers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WpOop\\Containers\\UnitTest\\": "tests/unit",
"WpOop\\Containers\\FuncTest\\": "tests/functional",
"WpOop\\Containers\\TestHelpers\\": "tests/helpers"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}