Added composer.json

This commit is contained in:
shopkeeperdev
2025-10-21 15:39:18 -04:00
parent 61f40a0d7a
commit e65c9b8e80

30
composer.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "shopkeeper/module-order-items-custom",
"description": "Customizes order item columns in Magento admin - removes tax columns and adds cost column with clickable product links",
"type": "magento2-module",
"version": "1.0.0",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"authors": [
{
"name": "Shopkeeper",
"email": "taber@shopkeeper.dev"
}
],
"require": {
"php": "~7.4.0||~8.1.0||~8.2.0||~8.3.0",
"magento/framework": ">=103.0.0",
"magento/module-sales": ">=103.0.0",
"magento/module-catalog": ">=104.0.0"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Shopkeeper\\OrderItemsCustom\\": ""
}
}
}