2017 © Pedro Peláez
 

library php-client

RebaseData API client for PHP

image

rebasedata/php-client

RebaseData API client for PHP

  • Tuesday, March 20, 2018
  • by rebasedata
  • Repository
  • 1 Watchers
  • 1 Stars
  • 177 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 146 % Grown

The README.md

rebasedata-php-client

Attention

THIS IS THE OLD VERSION OF THE REBASEDATA PHP-CLIENT LIBRARY. THE NEW VERSION CAN BE FOUND HERE: https://github.com/rebasedata/php-client, (*1)

Installation via Composer

The recommended method to install is through Composer., (*2)

  1. Add rebasedata/php-client as a dependency in your project's composer.json:, (*3)

    {
        "require": {
            "rebasedata/php-client": "*"
        }
    }
    
  2. Download and install Composer:, (*4)

    curl -s http://getcomposer.org/installer | php
    
  3. Install your dependencies:, (*5)

    php composer.phar install
    
  4. Require Composer's autoloader, (*6)

    Composer also prepares an autoloader file that helps to autoload the libraries it downloads. To use it, just add the following line to your application:, (*7)

    <?php
    
    require 'vendor/autoload.php';
    
    use RebaseData\Client;
    
    $client = new Client('freemium');
    

    You can find out more about Composer at getcomposer.org., (*8)

Example

The following code is an example on how to convert a Microsoft Access ACCDB file to a ZIP-archive of CSV files. You can replace 'freemium' with the Customer Key that you purchased., (*9)

use RebaseData\Client;

$client = new Client('freemium');

$inputFiles = ['/tmp/access.accdb'];

$outputFile = $client->convertAndReceiveZip($inputFiles);

echo "Conversion successful, check out $outputFile!\n";

License

This code is licensed under the MIT license., (*10)

The Versions

20/03 2018

dev-master

9999999-dev

RebaseData API client for PHP

  Sources   Download

MIT

The Requires

 

13/03 2018

v0.0.2

0.0.2.0

RebaseData API client for PHP

  Sources   Download

MIT

The Requires

 

25/02 2018

v0.0.1

0.0.1.0

RebaseData API client for PHP

  Sources   Download

MIT

The Requires