You've already forked wc-composable-product
- 57 unit tests covering ProductType, StockManager, CartHandler, Plugin, Admin/ProductData, Admin/Settings using Brain Monkey + Mockery - WooCommerce class stubs for testing without WP installation - PHP lint and test jobs in release workflow (test gate blocks release) - PSR-4 namespace change: WC_Composable_Product -> Magdev\WcComposableProduct - PascalCase filenames for all classes under includes/ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
36 lines
834 B
JSON
36 lines
834 B
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",
|
|
"mockery/mockery": "^1.6",
|
|
"phpunit/phpunit": "^9.6"
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Magdev\\WcComposableProduct\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"sort-packages": true
|
|
}
|
|
}
|