Initial commit

This commit is contained in:
James Oakley 2025-05-20 14:57:40 +00:00
commit 34d112f1e4
7 changed files with 980 additions and 0 deletions

26
composer.json Normal file
View file

@ -0,0 +1,26 @@
{
"name": "jro/guest2customer",
"description": "Automatically create a customer account after guest checkout in Magento 2",
"type": "magento2-module",
"require": {
"php": ">=8.1",
"magento/magento2-base": "~2.4"
},
"license": "GPL-3.0-or-later",
"homepage": "https://git.oakleys.org/JamesOakley/magento-guest2customer",
"authors": [
{
"name": "James Oakley",
"email": "magentodev@m3.oakleys.org",
"homepage": "https://git.oakleys.org"
}
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Jro\\Guest2Customer\\": ""
}
}
}