-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.58 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.58 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
50
51
52
53
54
55
56
57
58
59
{
"name": "automattic/wp-super-cache",
"description": "A very fast caching engine for WordPress that produces static html files.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"require-dev": {
"yoast/phpunit-polyfills": "^4.0.0",
"automattic/phpunit-select-config": "^1.0.4",
"phan/phan": "^5.4",
"php-stubs/wordpress-stubs": "^6.8",
"php-stubs/wp-cli-stubs": "^2.10",
"automattic/jetpack-codesniffer": "^4.0",
"sirbrillig/phpcs-changed": "^2.11"
},
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {
"phpcs": [
"./tools/phpcs-wrapper.sh --standard=.phpcs.xml.dist ."
],
"phpcbf": [
"./tools/phpcbf-wrapper.sh --standard=.phpcs.xml.dist ."
],
"lint": [
"./tools/run-phpcs-changed.sh"
],
"lint-fix": [
"./tools/run-phpcbf-changed.sh"
],
"phpunit": [
"phpunit-select-config phpunit.#.xml.dist --colors=always"
],
"test-coverage": [
"php -dpcov.directory=. ./vendor/bin/phpunit-select-config phpunit.#.xml.dist --coverage-php \"$COVERAGE_DIR/php.cov\""
],
"test-php": [
"@composer phpunit"
],
"test-e2e": [
"cd tests/e2e && pnpm i && pnpm env:up && pnpm test:run"
],
"build-production": "echo 'Add your build step to composer.json, please!'",
"build-development": "echo 'Add your build step to composer.json, please!'"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"wp-plugin-slug": "wp-super-cache"
},
"config": {
"autoloader-suffix": "6fe342bc02f0b440f7b3c8d8ade42286_super_cacheⓥ4_0_0_alpha",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}