File: /var/www/html/dooblo.cccinfotech.com/wp-content/plugins/duplicator/composer.json
{
"name": "awesomemotive/duplicator-lite",
"description": "WordPress Migration & Backup Plugin",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": ">=5.3.8"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.7.2",
"wp-coding-standards/wpcs": "3.0.1",
"phpcompatibility/php-compatibility": "9.3.5"
},
"scripts": {
"phpcs": [
"./vendor/bin/phpcs --standard=./tools/ruleset_old_code.xml --cache=./tools/tmp/phpcs_old -s ",
"./vendor/bin/phpcs --standard=./tools/ruleset.xml --cache=./tools/tmp/phpcs -s "
],
"phpcbf": [
"./vendor/bin/phpcbf --standard=./tools/ruleset_old_code.xml --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 -w ",
"./vendor/bin/phpcbf --standard=./tools/ruleset.xml --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 -w "
],
"phpcs-pr-check": "./vendor/bin/phpcs --standard=./tools/ruleset_pr_checks.xml --cache=./tools/tmp/phpcs_pr_check -s ",
"plugin-check": "./vendor/bin/phpcs --standard=./tools/ruleset_plugin_check.xml -s ",
"clear-vendor": "php ./tools/vendor-cleanup.php",
"update-version": "php ./tools/update-plugin-version.php . ",
"rebuild": [
"@clear-vendor",
"composer clearcache",
"composer install"
],
"deploy": "php ./tools/deploy.php"
}
}