-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 831 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 831 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
{
"name": "media-store-net/wp-options-manager",
"description": "A Simple Way to handle with wp_options table in your plugin or theme",
"homepage": "https://github.com/media-store-net/WpOptionsManager",
"version": "1.4.0",
"minimum-stability": "stable",
"authors": [
{
"name": "Artur Voll",
"email": "info@pcservice-voll.de"
}
],
"require": {
"php": "^5.6.37 || >=7.1 || >= 8.0"
},
"require-dev": {
"inpsyde/php-coding-standards": "^0.13",
"brain/monkey": "^2.0",
"inpsyde/monkery-test-case": "^5.0",
"phpunit/phpunit": "9.x-dev",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"MediaStoreNet\\WpOptionsManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MediaStoreNet\\WpOptionsManager\\Test\\": "tests/"
}
},
"license": "MIT"
}