keboola / gooddata-writer-php-client
PHP Client for KBC GoodData Writer
Installs: 10 092
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 11
Forks: 1
Open Issues: 3
Requires
- guzzle/guzzle: ~3.7
Requires (Dev)
- phpunit/phpunit: ~4.5
- squizlabs/php_codesniffer: 2.*
README
Simple PHP wrapper library for Keboola GoodData Writer REST API
Installation
Library is available as composer package. To start using composer in your project follow these steps:
Install composer
curl -s http://getcomposer.org/installer | php
mv ./composer.phar ~/bin/composer # or /usr/local/bin/composer
Create composer.json file in your project root folder:
{
"require": {
"php" : ">=5.3.2",
"keboola/gooddata-writer-php-client": "~1.9"
}
}
Install package:
composer install
Add autoloader in your bootstrap script:
require 'vendor/autoload.php';
Read more in Composer documentation
Tests
Tests requires valid Storage API token and URL of API. You can set these by copying file config.template.php into config.php and filling required constants int config.php file. Other way to provide parameters is to set environment variables:
export=GOODDATA_WRITER_API_URL=https://syrup.keboola.com/gooddata-writer
export=STORAGE_API_TOKEN=YOUR_TOKEN
Tests expects master token and performs all operations.
Never run this tests on production user with real data, always create user for testing purposes!!!
When the parameters are set you can run tests by phpunit command.