forked from ClassicPress/ClassicPress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 999 Bytes
/
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
{
"name": "classicpress/classicpress",
"license": "GPL-2.0-or-later",
"description": "ClassicPress is open source software you can use to create a beautiful website, blog, or app.",
"homepage": "https://classicpress.net",
"keywords": [
"blog", "cms", "classicpress", "cp"
],
"support": {
"issues": "https://github.com/ClassicPress/ClassicPress"
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "1.0.0",
"wp-coding-standards/wpcs": "3.1.0",
"phpcompatibility/phpcompatibility-wp": "2.1.5",
"yoast/phpunit-polyfills": "3.0.0",
"phpunit/phpunit": "^9"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"process-timeout": 600
},
"scripts": {
"backport": "bin/backport-wp-commit.sh",
"phpcs": "vendor/bin/phpcs -n",
"phpcs-tests": "vendor/bin/phpcs -n tests",
"phpunit": "vendor/bin/phpunit",
"phpcompat": "vendor/bin/phpcs --standard=phpcompat.xml.dist"
}
}