2017 © Pedro Peláez
 

library csv-bundle

Create and manage your CSV

image

imag/csv-bundle

Create and manage your CSV

  • Wednesday, August 3, 2016
  • by BorisMorel
  • Repository
  • 1 Watchers
  • 1 Stars
  • 2,788 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 3 % Grown

The README.md

CsvBundle

Manage your csv with this bundle., (*1)

Install

  1. Download CsvBundle
  2. Enable the bundle

How get the bundle

Composer

Modify your composer.json on your project root, (*2)

``` json // {root}/composer.json, (*3)

{ [...], "require": { [...], "imag/csv-bundle": "dev-master" } }, (*4)


### Enable the Bundle ``` php <?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new IMAG\CsvBundle\IMAGCsvBundle(), ); }

Usage

Create a Csv

``` php <?php, (*5)

// Init the manager $manager = $this->get('imag_csv.manager.csv'); $manager ->setFilename('/tmp/test.csv') ->setDelimiter(',') ->setEnclosure('"') ;, (*6)

// Create a row on Csv $row = $manager->createRow(); $row ->addField('1') ->addField('2') ; $manager->addRow($row);, (*7)

// Write Csv $manager->write();, (*8)

```, (*9)

The Versions

03/08 2016

1.0.x-dev

1.0.9999999.9999999-dev http://github.com/BorisMorel/CsvBundle

Create and manage your CSV

  Sources   Download

CeCILL

The Requires

 

03/08 2016

dev-master

9999999-dev http://github.com/BorisMorel/CsvBundle

Create and manage your CSV

  Sources   Download

CeCILL

The Requires

 

03/08 2016

v1.0.2

1.0.2.0 http://github.com/BorisMorel/CsvBundle

Create and manage your CSV

  Sources   Download

CeCILL

The Requires

 

10/02 2016

v1.0.1

1.0.1.0 http://github.com/BorisMorel/CsvBundle

Create and manage your CSV

  Sources   Download

CeCILL

The Requires

 

03/10 2013

v1.0.0

1.0.0.0 http://github.com/BorisMorel/CsvBundle

Create and manage your CSV

  Sources   Download

CeCILL

The Requires