-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.18 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"name": "daveryan/classact",
"description": "A miniplugin for acting on Additional CSS classes per-block in the WordPress Editor",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Dave Ryan",
"homepage": "https://daveryan.co"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^12.1.4",
"yoast/phpunit-polyfills": "^4.0.0",
"brain/monkey": "^2.6.2",
"wp-coding-standards/wpcs": "^3.1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^v1.0.0",
"phpcompatibility/phpcompatibility-wp": "^2.1.6",
"php-parallel-lint/php-parallel-lint": "^v1.4.0"
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-clover=coverage.xml",
"setup-local-tests": "bash bin/install-wp-tests.sh wordpress_test root root localhost latest",
"lint": "parallel-lint --exclude vendor .",
"phpcs": "phpcs",
"phpcs:fix": "phpcbf",
"phpcompat": "phpcs -p --standard=PHPCompatibilityWP --runtime-set testVersion 7.4- ."
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload-dev": {
"psr-4": {
"ClassAct\\Tests\\": "tests/phpunit/"
}
}
}