lqt / loqate-integration
Performs address capture and data validation (email, phone number and address) using Loqate API.
Package info
github.com/loqate/loqate-magento
Language:JavaScript
Type:magento2-module
pkg:composer/lqt/loqate-integration
Requires
- dev-master
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.1.16
- 1.1.14
- 1.1.13
- 1.1.12
- 1.1.11
- 1.1.10
- 1.1.8
- 1.1.7
- dev-ci/LOQ-14875-generate-zip
- dev-fix/docs-update
- dev-ci/LOQ-14874
- dev-fix/LOQ-13123
- dev-refactor/NO-LOQ-divide-capturejs
- dev-fix/LOQ014490-hyva-compatibility
- dev-fix/LOQ-13038-fix-save-billing-address
- dev-fix/NO-LOA-update-devcontainers
- dev-Minor-tweaks-to-dev-container-config
- dev-LOQ-11376-Version-bump
- dev-infra
This package is auto-updated.
Last update: 2026-05-06 13:47:37 UTC
README
What is the Loqate API Integration?
Performs address capture and data validation (email, phone number and address) using Loqate API.
Download
Download via composer
Request composer to fetch the module:
composer require loqate-integration/adobe
Manual Download
Download & copy the git content to /app/code/Loqate/ApiIntegration.
Install
Please run the following commands after you download the module.
php bin/magento module:enable Loqate_ApiIntegration
php bin/magento setup:upgrade
php bin/magento setup:di:compile
Configuration Instructions
The configuration for the module is located under Stores -> Configuration -> Loqate.
Magento 2 DevContainer Setup
This repository includes a devcontainer for rapid Magento 2 extension development.
Quick Start
- Create a devcontainer.env: Before opening the devcontainer you will need to create a
devcontainer.envfile which you can copy fromdevcontainer.env.example. - Open in VS Code: Use the "Reopen in Container" command (requires the Remote - Containers extension).
- Wait for Setup: The devcontainer will build, install dependencies, and set up Magento 2 automatically.
- Access Magento:
- Storefront: http://localhost:8080
- Admin: http://localhost:8080/admin
- Default admin user:
admin/admin123
- Live Extension Development: Your extension source is mounted into the running Magento instance. Changes are reflected immediately after running
bin/magento setup:upgradeand clearing cache.
Services
- PHP-FPM (8.1)
- Nginx
- MySQL 8
- Opensearch
- Redis
Notes
- The first startup may take several minutes (Magento install, Composer, DB setup).
- The extension is symlinked into
app/code/Loqate/ApiIntegration. - To re-run setup, use
.devcontainer/setup-magento.shinside the container. - If you have any DNS issues, you will need to copy your Zscaler certificate into the PHP container - see the Zscaler workaround comment in the
Dockerfile.
Useful helpers
php -r '$e=include "app/etc/env.php"; $d=$e["db"]["connection"]["default"]; printf("mysql -h%s -u%s -p%s %s\n",$d["host"],$d["username"],$d["password"],$d["dbname"]);'Will extract the command to access mysql within the devcontainer, currently that command ismysql -hdb -umagento -pmagento magentobin/magento config:showwill list all of the config currently set in the instance, this can be set withbin/magento config:set <PATH> <VALUE>
Deployment
Releasing a new version requires two separate deployments: one to the Adobe Marketplace and one via Composer. Before proceeding with either, update the version number in both composer.json and etc/module.xml to reflect the new release, then commit and push the change.
Adobe Marketplace
- Create a zip archive of the module directory. Ensure that
.devcontainer/devcontainer.envis excluded, as it contains sensitive credentials. The following command will produce a clean archive:zip -r loqate-integration.zip . -x "*.git*" -x ".devcontainer/devcontainer.env" -x ".devcontainer/zscaler.crt"
- Log in to your Adobe account at account.magento.com.
- Navigate to the extension versions page on the Adobe Commerce Developer Portal.
- Upload the zip archive.
- Adobe will automatically process and scan the submission. This can take up to 3 days.
- If the scan fails, review the provided feedback, address the reported issues, and resubmit.
- If the scan passes, the extension will be published to the marketplace within the hour.
Composer
- Create a new Git tag in GitHub matching the release version number (e.g.
2.0.4) and push it:git tag 2.0.4 git push origin 2.0.4
- Composer will automatically detect the new tag and make the release available.