37 lines
938 B
JSON
37 lines
938 B
JSON
{
|
|
"name": "rss2cpt/podcast-rss-to-cpt",
|
|
"description": "A lightweight WordPress podcast RSS importer for custom post types.",
|
|
"type": "wordpress-plugin",
|
|
"license": "GPL-2.0-or-later",
|
|
"require": {
|
|
"php": ">=7.4"
|
|
},
|
|
"require-dev": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
|
|
"phpcompatibility/phpcompatibility-wp": "^2.1",
|
|
"php-stubs/wordpress-stubs": "^6.2",
|
|
"phpstan/phpstan": "^2.2",
|
|
"phpunit/phpunit": "^9.6",
|
|
"squizlabs/php_codesniffer": "^3.10",
|
|
"wp-coding-standards/wpcs": "^3.1"
|
|
},
|
|
"scripts": {
|
|
"lint": "phpcs",
|
|
"lint:fix": "phpcbf",
|
|
"analyse": "phpstan analyse --memory-limit=1G",
|
|
"test": "phpunit",
|
|
"check": [
|
|
"@composer validate --strict",
|
|
"@lint",
|
|
"@analyse",
|
|
"@test"
|
|
]
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
},
|
|
"sort-packages": true
|
|
}
|
|
}
|