-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 1.74 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
76
77
78
{
"name": "syntatis/codex-settings-provider",
"description": "Codex service provider for WordPress Settings API.",
"keywords": [
"wordpress",
"plugin",
"codex",
"service-provider",
"setting",
"rest-api"
],
"authors": [
{
"name": "Thoriq Firdaus",
"homepage": "https://github.com/tfirdaus"
}
],
"license": "GPL-3.0",
"autoload": {
"psr-4": {
"Codex\\Settings\\": "app/"
},
"files": [
"inc/utils.php"
]
},
"autoload-dev": {
"psr-4": {
"Codex\\Tests\\": [
"tests/app/",
"tests/phpunit/"
]
}
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpunit": "^9.6",
"roots/wordpress": "^6.7",
"symfony/var-dumper": "^5.4",
"syntatis/codex": "dev-main",
"syntatis/coding-standard": "^1.5",
"szepeviktor/phpstan-wordpress": "^1.3",
"wp-phpunit/wp-phpunit": "^6.7",
"yoast/phpunit-polyfills": "^3.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"phpcs:fix": "vendor/bin/phpcbf",
"phpcs": "vendor/bin/phpcs",
"phpstan": "vendor/bin/phpstan --memory-limit=512M",
"phpunit:coverage": "vendor/bin/phpunit",
"phpunit": "vendor/bin/phpunit --no-coverage",
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"roots/wordpress-core-installer": true,
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
}
}