keboola/php-csvtable

CSV file class with Keboola StorageApi extensions

Installs: 13 624

Dependents: 7

Suggesters: 0

Security: 0

Stars: 0

Watchers: 19

Forks: 1

Open Issues: 0

pkg:composer/keboola/php-csvtable

2.2.0 2023-04-11 13:31 UTC

README

Description

A class that extends Keboola\CsvFile functionality by adding Keboola StorageApi Attribute and PrimaryKey variables

Usage

    use Keboola\CsvTable\Table;
	$table = new Table('name', ['id', 'column', 'names']);
    $table->writeRow(['1','row','data']);
    $table->addAttributes(['created_by' => $username]);
    $table->setPrimaryKey('id');

Result:

	id,column,names
	"1","row","data"

Development

Clone this repository and init the workspace with following command:

git clone https://github.com/keboola/php-csvtable.git
cd php-csvtable
docker-compose build
docker-compose run --rm dev composer install --no-scripts

Run the test suite using this command:

docker-compose run --rm dev composer tests

License

MIT licensed, see LICENSE file.