Skip to content

Commit

Permalink
Rename vendor
Browse files Browse the repository at this point in the history
  • Loading branch information
MisatoTremor committed Nov 23, 2021
1 parent 5a3d4d4 commit ae98d51
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
23 changes: 16 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
AvroCsvBundle [![Build Status](https://github.com/jdewit/AvroCsvBundle/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/jdewit/AvroCsvBundle) [![codecov](https://codecov.io/gh/jdewit/AvroCsvBundle/branch/1.0.x/graph/badge.svg?token=71BXHZLTCH)](https://codecov.io/gh/jdewit/AvroCsvBundle)
AvroCsvBundle [![Build Status](https://github.com/MisatoTremor/AvroCsvBundle/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/MisatoTremor/AvroCsvBundle) [![codecov](https://codecov.io/gh/MisatoTremor/AvroCsvBundle/branch/1.0.x/graph/badge.svg?token=71BXHZLTCH)](https://codecov.io/gh/MisatoTremor/AvroCsvBundle)
-------------------

This bundle provides an easy way to upload data to your db using csv files with
just a few configuration parameters.
just a few configuration parameters.

This is a fork of jdewits [original code](https://github.com/jdewit/AvroCsvBundle).

Status
------
Expand Down Expand Up @@ -32,17 +34,24 @@ Installation

This bundle is listed on packagist.

Simply add it to your apps composer.json file
Download the bundle

```json
"avro/csv-bundle": "^0.4.2"
```shell
$ composer require misatotremor/csv-bundle
```

Enable the bundle in config/bundles.php as well as the dependent AvroCaseBundle:
Enable the bundle as well as the dependent AvroCaseBundle:

```php
Avro\CsvBundle\AvroCsvBundle::class => ['all' => true],
<?php
// config/bundles.php

return [
// ...
Avro\CaseBundle\AvroCaseBundle::class => ['all' => true],
Avro\CsvBundle\AvroCsvBundle::class => ['all' => true],
// ...
];
```

Configuration
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "avro/csv-bundle",
"name": "misatotremor/csv-bundle",
"type": "symfony-bundle",
"description": "Symfony2 CSV Bundle",
"keywords": ["CSV", "import", "export"],
"homepage": "http://github.com/jdewit/AvroCsvBundle",
"homepage": "http://github.com/MisatoTremor/AvroCsvBundle",
"license": "MIT",
"authors": [
{
Expand Down

0 comments on commit ae98d51

Please sign in to comment.