mirror of
https://ghproxy.net/https://github.com/elementor/wp2static-addon-netlify.git
synced 2025-10-03 23:51:59 +08:00
69 lines
2.3 KiB
JSON
69 lines
2.3 KiB
JSON
{
|
|
"name": "wp2static/wp2static-addon-netlify",
|
|
"description": "Netlify deployment Add-on for WP2Static.",
|
|
"homepage": "https://wp2static.com",
|
|
"license": "UNLICENSE",
|
|
"authors": [
|
|
{
|
|
"name": "Leon Stafford",
|
|
"email": "me@ljs.dev",
|
|
"homepage": "https://ljs.dev"
|
|
}
|
|
],
|
|
"type": "wordpress-plugin",
|
|
"support": {
|
|
"issues": "https://github.com/WP2Static/wp2static-addon-netlify/issues",
|
|
"forum": "https://wp2static.com/community",
|
|
"docs": "https://wp2static.com/documentation",
|
|
"source": "https://github.com/WP2Static/wp2static-addon-netlify"
|
|
},
|
|
"require": {
|
|
"php": ">=7.2",
|
|
"guzzlehttp/guzzle": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpstan/phpstan": "*",
|
|
"thecodingmachine/phpstan-strict-rules": "*",
|
|
"szepeviktor/phpstan-wordpress": "*",
|
|
"squizlabs/php_codesniffer": "*",
|
|
"phpunit/phpunit": "*",
|
|
"dealerdirect/phpcodesniffer-composer-installer": "*",
|
|
"wp-coding-standards/wpcs": "*",
|
|
"phpcompatibility/php-compatibility": "*",
|
|
"php-parallel-lint/php-parallel-lint": "*",
|
|
"wa72/url": "^0.7.1"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"WP2StaticNetlify\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"PHPStan\\WordPress\\": "tests/phpstan/",
|
|
"WP2StaticNetlify\\": "src/"
|
|
}
|
|
},
|
|
"config": {
|
|
"preferred-install": {
|
|
"*": "dist"
|
|
},
|
|
"classmap-authoritative": true
|
|
},
|
|
"scripts": {
|
|
"phpstan": "php -d memory_limit=-1 ./vendor/bin/phpstan analyse",
|
|
"phpcs": "vendor/bin/phpcs --standard=./tools/phpcs.xml --ignore='*/tests/*,*/vendor/*' .",
|
|
"phpcbf": "vendor/bin/phpcbf --standard=./tools/phpcs.xml --ignore='*/tests/*,*/vendor/*' .",
|
|
"php73": "vendor/bin/phpcs --standard=PHPCompatibility --runtime-set testVersion 7.3 --ignore='/tests/*,/vendor/*' ./",
|
|
"php74": "vendor/bin/phpcs --standard=PHPCompatibility --runtime-set testVersion 7.4 --ignore='/tests/*,/vendor/*' ./",
|
|
"lint": "vendor/bin/parallel-lint --exclude vendor .",
|
|
"test": [
|
|
"@lint",
|
|
"@phpcs",
|
|
"@php73",
|
|
"@php74",
|
|
"@phpstan"
|
|
],
|
|
"build": "/bin/sh tools/build_release.sh"
|
|
}
|
|
}
|