forked from elementor/elementor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1.25 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
{
"name": "elementor/elementor",
"description": "WordPress website builder, with no limits of design. A website builder that delivers high-end page designs and advanced capabilities, never before seen on WordPress.",
"type": "project",
"license": "GNU General Public License v3.0",
"minimum-stability": "stable",
"require": {
"php": ">=7.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"matipojo/elementor-editor-testing": "0.0.2",
"justinrainbow/json-schema": "^5.2",
"phpunit/phpunit": "^5|^6|^7",
"squizlabs/php_codesniffer": "^3.6",
"wp-coding-standards/wpcs": "^2.3",
"yoast/phpunit-polyfills": "^1.0",
"thor-juhasz/phpunit-coverage-check": "^0.3.0"
},
"scripts": {
"lint": "phpcs --standard=ruleset.xml",
"test": "phpunit",
"test:install": "bash ./bin/install-wp-tests-local.sh",
"coverage": "composer run coverage:test && composer run coverage:check",
"coverage:test": "phpdbg -qrr vendor/phpunit/phpunit/phpunit --coverage-clover coverage-report/clover.xml",
"coverage:check": "phpunit-coverage-check -t 54 coverage-report/clover.xml"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"authors": [
{
"name": "Elementor team"
}
]
}