-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.2 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.2 KB
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
{
"name": "dexerto/on-demand-revalidation",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"description": "A WordPress plugin that allows for on-demand revalidation in a Next.js app.",
"require": {
"php": ">=8.2"
},
"autoload": {
"psr-4": {
"OnDemandRevalidation\\": "src/"
}
},
"authors": [
{
"name": "Dexerto",
"email": "website@dexerto.com"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.12",
"automattic/vipwpcs": "^3.0",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"wp-coding-standards/wpcs": "^3.1",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^11.5",
"yoast/phpunit-polyfills": "^4.0",
"brain/monkey": "^2.6",
"10up/wp_mock": "^0.4.2"
},
"scripts": {
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"test": "phpunit"
},
"archive": {
"exclude": [
"*.yml",
"!vendor/",
"plugin-build/",
"!.wordpress-org/"
]
}
}