-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (64 loc) · 2 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "notus.sh/wp-static-options",
"description": "Set WordPress and plugins options through configuration files instead of the wp_options table.",
"homepage": "https://github.com/notus-sh/wp-static-options",
"version": "1.1.2",
"license": "Apache-2.0",
"type": "wordpress-muplugin",
"keywords": ["plugin", "mu-plugin", "must-use", "wordpress", "bedrock"],
"support": {
"source": "https://github.com/notus-sh/wp-static-options",
"doc": "https://github.com/notus-sh/wp-static-options",
"issues": "https://github.com/notus-sh/wp-static-options/issues"
},
"authors": [
{
"name": "Gaël-Ian Havard",
"email": "gael-ian@notus.sh",
"homepage": "https://notus.sh",
"role": "Developer"
}
],
"require": {
"hassankhan/config": "^2.2.0",
"webmozart/glob": "^4.1.0"
},
"autoload": {
"psr-4": {
"WPStaticOptions\\": "src/"
},
"files": [
"src/function.php"
]
},
"archive": {
"exclude": ["/dev", "/tests", "/tmp", "/vendor", ".gitignore"]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"preferred-install": "dist"
},
"extra": { "wordpress-install-dir": "vendor/roots/wordpress" },
"require-dev": {
"symfony/yaml": "~5.2",
"phpunit/phpunit": "~9.5",
"squizlabs/php_codesniffer": "~3.5",
"phpmd/phpmd": "~2.9",
"roots/wordpress": "~5.6"
},
"autoload-dev": {
"psr-4": {
"WPStaticOptions\\Tests\\Unit\\": "tests/unit/",
"WPStaticOptions\\Tests\\Integration\\": "tests/integration/"
}
},
"scripts": {
"lint": "phpcs --standard=dev/config/phpcs.xml",
"phpmd": "phpmd ./ text dev/config/phpmd.xml --exclude dev/,tests/data,tmp/,vendor/",
"tests": "phpunit --configuration dev/config/phpunit.xml --cache-result-file=tmp/.phpunit.result.cache --verbose",
"tests-unit": "@composer run test --testsuite unit",
"tests-integration": "@composer run test --testsuite integration"
}
}