publicsquare-financial / magento-payments-plugin
The Magento plugin provides a one-click install into PublicSquare's payment gateway for credit and debit card processing.
Package info
github.com/publicsquare-financial/publicsquare-magento-payments-plugin
Type:composer-plugin
pkg:composer/publicsquare-financial/magento-payments-plugin
Requires (Dev)
- codeception/codeception: ^5.1
- codeception/module-asserts: *
- codeception/module-cli: ^2.0
- codeception/module-db: ^3.1
- codeception/module-phpbrowser: ^3.0
- codeception/module-webdriver: ^4.0
- phpseclib/phpseclib: ^3.0
- phpunit/phpunit: ^10.0
- dev-master
- v0.2.1
- v0.2.0
- v0.1.14
- v0.1.13
- v0.1.12
- v0.1.11
- v0.1.10
- v0.1.9
- v0.1.8
- v0.1.7
- v0.1.6
- v0.1.5
- v0.1.4
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.0-rc1
- v0.0.22
- v0.0.21
- v0.0.20
- v0.0.19
- v0.0.18
- v0.0.17
- v0.0.16
- v0.0.15
- v0.0.14
- v0.0.13
- v0.0.12
- v0.0.11
- v0.0.10
- v0.0.9
- v0.0.8
- v0.0.7
- v0.0.6
- v0.0.5
- dev-feature/sc-81470/magento-plugin-add-config-option-to-use-split
- dev-feature/sc-81713/magento-create-custom-validator-for-element
- dev-feature/sc-80366/implement-add-new-card-flow-using-psq-vaultll
- dev-feature/sc-71677/update-magento-order-status-when-payment-is
This package is not auto-updated.
Last update: 2026-03-20 15:42:19 UTC
README
PublicSquare provides a software platform for retailers to access third-party providers for lease-to-own financing and other lending products based on a consumer's credit profile.
INSTALLATION
Manual Installation
-
extract files from an archive
-
deploy files into Magento2 folder
app/code/
Enabled Extension
- enable extension (in command line, see manual:
http://devdocs.magento.com/guides/v2.0/config-guide/cli/config-cli-subcommands.html):
$> bin/magento module:enable PublicSquare_Payments
- to make sure that the enabled module is properly registered, run 'setup:upgrade':
$> bin/magento setup:upgrade
- [if needed] re-deploy static view files:
$> bin/magento setup:static-content:deploy
Webhook Configuration
Automated Configuration
- [after v0.2.0 upgrade]
bin/magento psq:configure-webhook bin/magento cache:flush
Manual Configuration
- In the [https://portal.publicsquare.com](PublicSquare Portal) create a new webhook under Developer > Webhook with the following properties:
- URL:
{magento.hostname}/publicsquare-payments/webhook/index - Event Types:
- refund:update
- settlement:update
- URL:
- Enter the Webhook ID and Webhook Key in to the Magento Admin panel under: Stores > Configuration > Sales > Payment Methods > PublicSquare
Docker Installation
If you need a local installation of Magento2, the cleanest way is to use Docker. This repo provides an out of the box installation with just a few commands.
-
Make sure docker engine is running
-
One-liner to install Magento
$ curl -s https://raw.githubusercontent.com/markshust/docker-magento/master/lib/onelinesetup | bash -s -- magento.test 2.4.7 community
Replace 2.4.7 with the version of Magento you want to install.
Replace magento.test with the local domain you want to use.
- Open (https://magento.test)[https://magento.test] to confirm installation
$ open https://magento.test
- Seed sample data
$ bin/magento sampledata:deploy $ bin/magento setup:upgrade
Local environment using this repo (Docker + sample data)
This repository also includes a self-contained Docker setup and helper scripts to provision a full local environment (containers, Magento, this plugin, and sample data).
-
Start / provision the IT stack (first time or after reset)
# Will bring up containers, install Magento, deploy static content, # configure PublicSquare keys, and install Magento sample data. make it-complete-build
- If you don't pass any arguments,
it-install(called under the hood) will prompt for your PublicSquare PUBLIC and SECRET keys. - In CI or when scripting, you can pass the keys explicitly:
make it-complete-build <PUBLICSQUARE_PUBLIC_KEY> <PUBLICSQUARE_SECRET_KEY>
- If you don't pass any arguments,
-
Subsequent runs
-
To restart the stack without reinstalling Magento:
make it-down make it-up
-
To tear everything down and reset volumes:
make it-reset
-
Deploying plugin changes in the IT/local environment
When you change this plugin's code and want Magento to pick up the changes (DI, static content, etc.) inside the IT Docker stack, use:
make deploy
This runs bin/deploy inside the web container, which will:
- Run
composer installinside the container - Enable maintenance mode
- Clear generated code and preprocessed view files
- Run
bin/magento setup:upgrade - Recompile DI (
bin/magento setup:di:compile) - Redeploy static content (
bin/magento setup:static-content:deploy en_US -f) - Disable maintenance mode and flush caches
Use this after code changes to ensure Magento is fully rebuilt and serving updated assets.
Automated tests
Running acceptance tests locally
composer install php vendor/bin/codecept run Acceptance --steps
Running integration/acceptance tests against the IT stack
Once your IT environment is up (for example via make it-complete-build), you can execute the full Codeception test suite wired for the Docker stack with:
make it-test
To run codecept with detail breakdown of steps and debugging add these flags:
./vendor/bin/codecept run tests/Acceptance/ --steps --debug
using the configuration in codeception.yml and tests/Acceptance.suite.yml, against http://magento.test via Selenium/WebDriver.