carltonsoftware / tabs2-php-client
Tabs 2 PHP Client
Installs: 3 067
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 10
Forks: 1
Open Issues: 2
Requires
- php: >=5.5
- guzzlehttp/guzzle: ~6.0
- sainsburys/guzzle-oauth2-plugin: ~3.0
Requires (Dev)
- phpunit/phpunit: ^7.0
- dev-develop
- 0.0.31
- 0.0.30
- 0.0.29
- 0.0.28
- 0.0.27
- 0.0.26
- 0.0.25
- 0.0.24
- 0.0.23
- 0.0.22
- 0.0.21
- 0.0.20
- 0.0.19
- 0.0.18
- 0.0.17
- 0.0.16
- 0.0.15
- 0.0.14
- 0.0.13
- 0.0.12
- 0.0.11
- 0.0.10
- 0.0.9
- 0.0.8
- 0.0.7
- 0.0.6
- 0.0.5
- 0.0.4
- 0.0.3
- 0.0.2
- 0.0.1
- dev-feat/filter
- dev-master
- dev-quicksets
- dev-feat/TABS2-5751
- dev-feat/paypal
- dev-feat/T3T-3635
This package is auto-updated.
Last update: 2022-07-09 15:12:47 UTC
README
Getting Started
To get started with this project you will need to install the client via composer..
Installing via composer
-
Create a composer.json where you want to install the project
-
Add the following:
{ "repositories": [{ "type": "vcs", "url": "git@github.com:carltonsoftware/tabs2-php-client.git" }], "require": { "carltonsoftware/tabs2-php-client": "dev-master" } }
-
Download composer and install the repo:
curl -sS https://getcomposer.org/installer | php ./composer.phar install
-
Create a new php file in your directory and insert the following code. You should see the a property output when you run the file!
<?php require_once __DIR__ . '/vendor/autoload.php'; \tabs\apiclient\client\Client::factory( 'https://apiurl/v2/', // Api Url: this will be provided to you. // NOTE: This url should end in '/v2/' 'abc', // Api username: this will be provided to you 'def', // Api password: this will be provided to you '14_hij', // Api client key: this will be provided to you 'klm' // Api client secret: this will be provided to you ); $prop = new \tabs\apiclient\Property(1); $prop->get(); echo $prop->getName();