You've already forked wc-composable-product
All checks were successful
- Upgrade PHPUnit 9.6 → 10, update phpunit.xml.dist schema - Add PHPCS 3.13 with WordPress-Extra + PHPCompatibilityWP standards - PHPCBF auto-fix + manual fixes for full WPCS compliance - Add phpcs job to release workflow (parallel with lint) - Pin composer platform to PHP 8.3 to prevent incompatible dep locks Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "magdev/wc-composable-product",
|
|
"description": "WooCommerce plugin for user composable products",
|
|
"type": "wordpress-plugin",
|
|
"license": "GPL-3.0-or-later",
|
|
"authors": [
|
|
{
|
|
"name": "Marco Graetsch",
|
|
"email": "magdev3.0@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=8.3",
|
|
"twig/twig": "^3.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Magdev\\WcComposableProduct\\": "includes/"
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"brain/monkey": "^2.7",
|
|
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
|
|
"mockery/mockery": "^1.6",
|
|
"phpcompatibility/phpcompatibility-wp": "*",
|
|
"phpunit/phpunit": "^10.0",
|
|
"squizlabs/php_codesniffer": "^3.7",
|
|
"wp-coding-standards/wpcs": "^3.0"
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Magdev\\WcComposableProduct\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
},
|
|
"platform": {
|
|
"php": "8.3.0"
|
|
}
|
|
}
|
|
}
|