45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"name": "wpallstars/wp-plugin-starter-template-for-ai-coding",
|
|
"description": "A comprehensive starter template for WordPress plugins with best practices for AI-assisted development.",
|
|
"type": "wordpress-plugin",
|
|
"version": "0.1.8",
|
|
"license": "GPL-2.0-or-later",
|
|
"authors": [
|
|
{
|
|
"name": "WP All Stars",
|
|
"email": "support@wpallstars.com"
|
|
}
|
|
],
|
|
"minimum-stability": "stable",
|
|
"require": {
|
|
"php": ">=7.4"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.5",
|
|
"10up/wp_mock": "^1.0",
|
|
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
|
|
"wp-coding-standards/wpcs": "^3.0",
|
|
"phpcompatibility/phpcompatibility-wp": "^2.1"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"WPALLSTARS\\PluginStarterTemplate\\": "includes/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"classmap": [
|
|
"includes/Admin/class-admin.php"
|
|
]
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"phpcs": "phpcs --standard=WordPress",
|
|
"phpcbf": "phpcbf --standard=WordPress",
|
|
"test": "phpunit"
|
|
}
|
|
}
|