feature: Initial commit

This commit is contained in:
Keith Solomon
2026-08-24 08:46:51 -05:00
commit 158f978021
24 changed files with 2200 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
{
"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
}
}