Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ Install Community Store first
Register your application with square to generate Application ID / Token / Location (https://docs.connect.squareup.com/)
Install this package

## Errata
vendor/apimatic/jsonmapper/src/JsonMapper.php
May throw an exception on line 119 on some hosting configurations. Simply commenting it out seems to resolve the issue.
//$this->config = parse_ini_file($iniPath);

## Contributors
Thanks both Mirko (bulli1979) and Christian (guedeWebGate) for their help in developing this add-on.
Updated to latest API version by Jeff Paetkau Dec 2022
Also, I would like to thank Ryan (Mesuva) for the review.
Thanks guys for your input and guidance!
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"require": {
"square/connect": "*"
}
"require": {
"square/square": "24.0.0.20221116"
}
}
265 changes: 242 additions & 23 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Controller extends Package
{
protected $pkgHandle = 'community_store_square';
protected $appVersionRequired = '5.7.2';
protected $pkgVersion = '0.9.1';
protected $pkgVersion = '0.10.0';

public function on_start()
{
Expand Down
Loading