Initial commit

This commit is contained in:
James Oakley 2025-05-24 15:26:42 +00:00
commit ce5a217ed4
10 changed files with 1080 additions and 0 deletions

26
composer.json Normal file
View file

@ -0,0 +1,26 @@
{
"name": "jro/packaging-weight",
"description": "Adds weight and cost of packaging to quotes",
"type": "magento2-module",
"require": {
"php": ">=8.1",
"magento/magento2-base": "~2.4"
},
"license": "GPL-3.0-or-later",
"homepage": "https://git.oakleys.org/JamesOakley-MagentoDev/magento-packagingweight",
"authors": [
{
"name": "James Oakley",
"email": "magentodev@m3.oakleys.org",
"homepage": "https://git.oakleys.org"
}
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Jro\\PackagingWeight\\": ""
}
}
}