Download the PHP package mage2pro/square-php-sdk without Composer

On this page you can find all versions of the php package mage2pro/square-php-sdk. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package square-php-sdk

Connect v2 PHP SDK

This repository contains a generated PHP client SDK for the Square Connect APIs v2. Check out our API specification repository for the specification and template files we used to generate this.

If you are looking for a sample e-commerce application using these APIs, check out the connect-api-examples repository.

To learn more about the Square APIs in general, head on over to the Square API documentation

Requirements

Installing

With Composer

The PHP SDK is available on Packagist. To add it to Composer, simply run:

Or add this line under "require" to your composer.json:

And then install your composer dependencies with

From GitHub

Clone this repository, or download the zip into your project's folder and then add the following line in your code:

Note: you might have to change the path depending on your project's folder structure.

Usage

There are five main objects that you'll be using, depending on what you want to do, each one is explained in more detail below.

Locations

You'll need to list locations for your square account before doing most API calls because the location_id is a in the url for most endpoints.

List Locations

Response: \SquareConnect\Model\ListLocationsResponse

See all the functions you can use with the ->getLocations() response in the location model

Customers

Customers are end-users of a business and can be associated with transactions.

List Customers

Response: \SquareConnect\Model\ListCustomersResponse

See all the functions you can use with the ->getCustomers() response in the customer model.

Create Customer

Response: \SquareConnect\Model\CreateCustomersResponse

See all the functions you can use with the ->getCustomer() response in the customer model.

Retrieve Customer

Response: \SquareConnect\Model\RetrieveCustomerResponse

See all the functions you can use with the ->getCustomer() response in the customer model. Update Customer

Response: \SquareConnect\Model\UpdateCustomerResponse

See all the functions you can use with the ->getCustomer() response in the customer model

Delete Customer

Response: \SquareConnect\Model\DeleteCustomerResponse

Customers Cards

Customers Cards on file allow merchants to charge customers without them providing their credit card every time. Learn more here: Saving Customer Information

Create Customer Card

Response: \SquareConnect\Model\CreateCustomerCardResponse

See all the functions you can use with the ->getCard() response in the card model

Delete Customer Card

Response: \SquareConnect\Model\DeleteCustomerCardResponse

Transactions

List Transactions

Response: \SquareConnect\Model\ListTransactionsResponse

See all the functions you can use with the ->getTransactions() response in the transaction model

Charge (Create Transaction)

Response: \SquareConnect\Model\ChargeResponse

See all the functions you can use with the ->getTransactions() response in the transaction model

Retrieve Transaction

Response: \SquareConnect\Model\RetrieveTransactionResponse

See all the functions you can use with the ->getTransactions() response in the transaction model

Capture Transaction Charges a card that was previously authorized. See delayed capture transactions for more information.

Response: \SquareConnect\Model\CaptureTransactionResponse

Void Transaction Voids a previous card authorization. See delayed capture transactions for more information.

Response: \SquareConnect\Model\VoidTransactionResponse

Refunds

List Refunds

Response: \SquareConnect\Model\ListRefundsResponse

Create Refund

Response: \SquareConnect\Model\CreateRefundResponse

Contributing

Send bug reports, feature requests, and code contributions to the API specifications repository, as this repository contains only the generated SDK code. If you notice something wrong about this SDK in particular, feel free to raise an issue here.

License


All versions of square-php-sdk with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.3
ext-curl Version *
ext-json Version *
ext-mbstring Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mage2pro/square-php-sdk contains the following files

Loading the files please wait ....