1
0
Fork 0
mirror of https://github.com/elementor/hello-theme.git synced 2026-07-26 12:26:54 +08:00
hello-theme/composer.json
Hein van Vlastuin 6f5744ede1
Some checks are pending
Build / Build theme (push) Waiting to run
Lint / ESLint (push) Waiting to run
Lint / PHPCS (push) Waiting to run
PHPUnit / File Diff (push) Waiting to run
PHPUnit / PHPUnit - WordPress 6.5 - PHP version 7.4 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress 6.6 - PHP version 7.4 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress latest - PHP version 7.4 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress nightly - PHP version 7.4 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress 6.5 - PHP version 8.0 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress 6.6 - PHP version 8.0 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress latest - PHP version 8.0 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress nightly - PHP version 8.0 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress 6.5 - PHP version 8.1 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress 6.6 - PHP version 8.1 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress latest - PHP version 8.1 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress nightly - PHP version 8.1 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress 6.5 - PHP version 8.2 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress 6.6 - PHP version 8.2 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress latest - PHP version 8.2 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress nightly - PHP version 8.2 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress 6.5 - PHP version 8.3 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress 6.6 - PHP version 8.3 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress latest - PHP version 8.3 (push) Blocked by required conditions
PHPUnit / PHPUnit - WordPress nightly - PHP version 8.3 (push) Blocked by required conditions
PHPUnit / PHPUnit - Test Results (push) Blocked by required conditions
Internal: Conditionally load Elementor admin top bar hooks in Hello Theme [TMZ-1016] (#616)
2026-02-09 09:46:01 +02:00

32 lines
1.3 KiB
JSON

{
"name": "elementor/hello-theme",
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"wp-coding-standards/wpcs": "^2.3",
"phpunit/phpunit": "^9.6.33",
"elementor/elementor-editor-testing": "0.0.3",
"yoast/phpunit-polyfills": "^1.0.1",
"thor-juhasz/phpunit-coverage-check": "^0.3.0"
},
"require": {
"elementor/wp-notifications-package": "1.2.*"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "7.4.33"
}
},
"scripts": {
"lint": "phpcs --extensions=php --standard=./phpcs.xml --ignore=node_modules,vendor,assets,tmp -p .",
"lint:fix": "vendor/bin/phpcbf --extensions=php --standard=./phpcs.xml --ignore=node_modules,vendor,assets,tmp .",
"test": "phpunit --testsuite hello-elementor",
"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 --testsuite hello-elementor --coverage-clover coverage-report/clover.xml",
"coverage:check": "phpunit-coverage-check -t 20 coverage-report/clover.xml"
}
}