2017 © Pedro Peláez
 

library connect

PHP client library for the Square Connect v2 API

image

square/connect

PHP client library for the Square Connect v2 API

  • Monday, July 30, 2018
  • by sq-dge
  • Repository
  • 46 Watchers
  • 58 Stars
  • 46,642 Installations
  • PHP
  • 4 Dependents
  • 0 Suggesters
  • 18 Forks
  • 10 Open issues
  • 76 Versions
  • 19 % Grown

The README.md

Square Connect PHP SDK - RETIRED replaced by square/square-php-sdk


Build Status PHP version, (*1)

Apache-2 license

NOTICE: Square Connect PHP SDK retired

The Square Connect PHP SDK is retired (EOL) as of 2020-06-10 and will no longer receive bug fixes or product updates. To continue receiving API and SDK improvements, please follow the instructions below to migrate to the new Square PHP SDK., (*2)

The old Connect SDK documentation is available under the /docs folder., (*3)

br/, (*4)



br/, (*5)

Migrate to the Square PHP SDK

Follow the instructions below to migrate your apps from the deprecated square/connect sdk to the new library., (*6)

You need to update your app to use the Square PHP SDK instead of the Connect PHP SDK The Square PHP SDK uses the square/square identifier., (*7)

  1. On the command line, run:
$ php composer.phar require square/square

-or-, (*8)

  1. Update your composer.json:
"require": {
    ...
    "square/square": "^5.0.0",
    ...
}

Update your code

  1. Change all instances of use SquareConnect\... to use Square\....
  2. Replace SquareConnect models with the new Square equivalents
  3. Update client instantiation to follow the method outlined below.
  4. Update code for accessing response data to follow the method outlined below.
  5. Check $apiResponse->isSuccess() or $apiResponse->isError() to determine if the call was a success.

To simplify your code, we also recommend that you use method chaining to access APIs instead of explicitly instantiating multiple clients., (*9)

Client instantiation

Connect SDK, (*10)

require 'vendor/autoload.php';

use SquareConnect\Configuration;
use SquareConnect\ApiClient;

$access_token = 'YOUR_ACCESS_TOKEN';
# setup authorization
$api_config = new Configuration();
$api_config->setHost("https://connect.squareup.com");
$api_config->setAccessToken($access_token);
$api_client = new ApiClient($api_config);

Square SDK, (*11)

require 'vendor/autoload.php';

use Square\SquareClient;
use Square\Environment;

// Initialize the Square client.
$api_client = new SquareClient([
  'accessToken' => "YOUR_ACCESS_TOKEN",
  'environment' => Environment::SANDBOX
]); // In production, the environment arg is 'production'

Example code migration

As a specific example, consider the following code for creating a new payment from the following nonce:, (*12)

# Fail if the card form didn't send a value for `nonce` to the server
$nonce = $_POST['nonce'];
if (is_null($nonce)) {
  echo "Invalid card data";
  http_response_code(422);
  return;
}

With the deprecated square/connect library, this is how you instantiate a client for the Payments API, format the request, and call the endpoint:, (*13)

use SquareConnect\Api\PaymentsApi;
use SquareConnect\ApiException;

$payments_api = new PaymentsApi($api_client);
$request_body = array (
  "source_id" => $nonce,
  "amount_money" => array (
    "amount" => 100,
    "currency" => "USD"
  ),
  "idempotency_key" => uniqid()
);
try {
  $result = $payments_api->createPayment($request_body);
  echo "

";
  print_r($result);
  echo "
"; } catch (ApiException $e) { echo "Caught exception!<br/>"; print_r("<strong>Response body:</strong><br/>"); echo "
"; var_dump($e->getResponseBody()); echo "
"; echo "<br/><strong>Response headers:</strong><br/>"; echo "
"; var_dump($e->getResponseHeaders()); echo "
"; }

Now consider equivalent code using the new square/square library:, (*14)

require 'vendor/autoload.php';

use Square\Environment;
use Square\Exceptions\ApiException;
use Square\SquareClient;
use Square\Models\CreatePaymentRequest;
use Square\Models\Money;

$payments_api = $api_client->getPaymentsApi();

$money = new Money();
$money->setAmount(100);
$money->setCurrency('USD');
$create_payment_request = new CreatePaymentRequest($nonce, uniqid(), $money);
try {
  $response = $payments_api->createPayment($create_payment_request);
  if ($response->isError()) {
    echo 'Api response has Errors';
    $errors = $response->getErrors();
    exit();
  }
  echo '

';
  print_r($response);
  echo '
'; } catch (ApiException $e) { echo 'Caught exception!<br/>'; exit(); }

That's it!, (*15)

br/, (*16)


br/, (*17)

Ask the community

Please join us in our Square developer community if you have any questions!, (*18)

The Versions

30/07 2018

dev-release/2.20180712.1

dev-release/2.20180712.1 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

12/07 2018

dev-master

9999999-dev https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache-2.0 Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

12/07 2018

2.20180712.0

2.20180712.0.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

12/07 2018

dev-release/2.20180712.0

dev-release/2.20180712.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

12/07 2018

dev-ssung/2.20180712.0

dev-ssung/2.20180712.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

28/06 2018

2.9.0

2.9.0.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

28/06 2018

dev-release/2.9.0

dev-release/2.9.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

16/06 2018

dev-release/2.8.0

dev-release/2.8.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

15/06 2018

dev-ssung/update_travis_credentials

dev-ssung/update_travis_credentials https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

24/05 2018

2.8.0

2.8.0.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

24/04 2018

2.7.0

2.7.0.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

23/04 2018

dev-release/2.7.0

dev-release/2.7.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

29/03 2018

2.6.1

2.6.1.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

29/03 2018

dev-release/2.6.1

dev-release/2.6.1 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

28/03 2018

2.6.0

2.6.0.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

27/03 2018

dev-release/2.6.0

dev-release/2.6.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

27/02 2018

dev-update-composer-license-id

dev-update-composer-license-id https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

20/11 2017

dev-release/2.5.1

dev-release/2.5.1 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

13/11 2017

2.5.1

2.5.1.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

02/11 2017

2.5.0

2.5.0.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

02/11 2017

dev-release/2.5.0

dev-release/2.5.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

13/10 2017

dev-release/2.4.1

dev-release/2.4.1 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

13/10 2017

dev-travis-ci/yang/remove-readonly-from-model

dev-travis-ci/yang/remove-readonly-from-model https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

30/09 2017

dev-release/2.4.0

dev-release/2.4.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

29/09 2017

dev-travis-ci/tristans/php-readme-fix

dev-travis-ci/tristans/php-readme-fix https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

27/09 2017

dev-travis-ci/alec-hardcode-locations-example-in-READMEs

dev-travis-ci/alec-hardcode-locations-example-in-READMEs https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

27/09 2017

dev-travis-ci/feature/improve-readme-sample-code

dev-travis-ci/feature/improve-readme-sample-code https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

27/09 2017

2.4.0

2.4.0.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

27/09 2017

dev-travis-ci/sdk-2.4

dev-travis-ci/sdk-2.4 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

20/09 2017

dev-travis-ci/alec-bump-sdk-versions-to-2.3.2

dev-travis-ci/alec-bump-sdk-versions-to-2.3.2 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

15/09 2017

dev-release/2.3.1

dev-release/2.3.1 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

15/09 2017

dev-release/2.3.2

dev-release/2.3.2 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

15/09 2017

2.3.1

2.3.1.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

15/09 2017

dev-travis-ci/sdk-2.3.1

dev-travis-ci/sdk-2.3.1 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

13/09 2017

2.3.0

2.3.0.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

13/09 2017

dev-release/2.3.0

dev-release/2.3.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

13/09 2017

dev-travis-ci/sdk-2.3.0

dev-travis-ci/sdk-2.3.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

06/09 2017

dev-travis-ci/feature/add-order-apis

dev-travis-ci/feature/add-order-apis https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

14/08 2017

2.2.1

2.2.1.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

11/08 2017

dev-release/2.2.1

dev-release/2.2.1 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

11/08 2017

dev-travis-ci/jpm/prepare-release-2.2.1

dev-travis-ci/jpm/prepare-release-2.2.1 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

11/08 2017

dev-travis-ci/tristans/fix-interger-typo

dev-travis-ci/tristans/fix-interger-typo https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

11/08 2017

dev-travis-ci/tristans/update-csharp-readme

dev-travis-ci/tristans/update-csharp-readme https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

10/08 2017

dev-release/2.2.0

dev-release/2.2.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

08/08 2017

dev-travis-ci/jpm/document-php-property-getters-setters

dev-travis-ci/jpm/document-php-property-getters-setters https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

31/07 2017

dev-travis-ci/feature/add-orders-api

dev-travis-ci/feature/add-orders-api https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

31/07 2017

dev-alec-order-api-tests

dev-alec-order-api-tests https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

07/07 2017

dev-travis-ci/yonpols/add-v1-pagination-support

dev-travis-ci/yonpols/add-v1-pagination-support https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

27/06 2017

dev-travis-ci/tristans/add-install-instructions

dev-travis-ci/tristans/add-install-instructions https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

22/06 2017

dev-travis-ci/fixes/python-readme

dev-travis-ci/fixes/python-readme https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

22/06 2017

2.2.0

2.2.0.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

22/06 2017

dev-travis-ci/fixes/push-scripts

dev-travis-ci/fixes/push-scripts https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

22/06 2017

dev-travis-ci/release/2.2.0

dev-travis-ci/release/2.2.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

21/06 2017

dev-tristans/add-recurring-example

dev-tristans/add-recurring-example https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

21/06 2017

dev-release/2.1.1

dev-release/2.1.1 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

21/06 2017

dev-travis-ci/tristans/update-php-templates

dev-travis-ci/tristans/update-php-templates https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.4
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

19/06 2017

dev-travis-ci/tristans/fix-payment-model

dev-travis-ci/tristans/fix-payment-model https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

17/06 2017

dev-travis-ci/sdk-2.2.0

dev-travis-ci/sdk-2.2.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

14/06 2017

dev-tristans/update-contributions

dev-tristans/update-contributions https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

13/06 2017

dev-tristans/add-sandbox-dashboard-sample

dev-tristans/add-sandbox-dashboard-sample https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

30/05 2017

dev-release/2.1.0

dev-release/2.1.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

23/05 2017

2.1.0

2.1.0.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

22/05 2017

dev-release/2.0.2

dev-release/2.0.2 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

05/05 2017

dev-tristans/add-2.1-install-instructions

dev-tristans/add-2.1-install-instructions https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

29/03 2017

dev-travis-ci/api-3.0

dev-travis-ci/api-3.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

15/03 2017

dev-tristans/update-tests

dev-tristans/update-tests https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

13/03 2017

dev-release/3.0.0

dev-release/3.0.0 https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

13/03 2017

dev-travis-ci/feature/oauth-security-definitions

dev-travis-ci/feature/oauth-security-definitions https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

10/03 2017

dev-travis-ci/tristans/more-verbose-commit-messages

dev-travis-ci/tristans/more-verbose-commit-messages https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

04/03 2017

dev-tristans/add-samples

dev-tristans/add-samples https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

25/02 2017

dev-tristans/add-tests-travis

dev-tristans/add-tests-travis https://github.com/square/connect-php-sdk

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

01/02 2017

2.0.2

2.0.2.0 http://swagger.io

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

25/01 2017

dev-dge/2.0.1

dev-dge/2.0.1 http://swagger.io

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

25/01 2017

2.0.1

2.0.1.0 http://swagger.io

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

20/05 2016

2.0.0.1

2.0.0.1 http://swagger.io

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk

30/03 2016

2.0.0

2.0.0.0 http://swagger.io

PHP client library for the Square Connect v2 API

  Sources   Download

Apache V2

The Requires

  • php >=5.3.3
  • ext-curl *
  • ext-json *
  • ext-mbstring *

 

The Development Requires

api php swagger sdk