Skip to content

Commit

Permalink
Readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrajcarek committed May 4, 2017
1 parent b4f775a commit 1dd872c
Showing 1 changed file with 34 additions and 2 deletions.
36 changes: 34 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,38 @@
# NetInteractive User importer (CSV)
# NetInteractive User importer bundle (from CSV)

#### How to run tests
## Installation
Add Git repository `git@github.com:mgrajcarek/user-importer-poc.git` to your `composer.json` file:
```json
"repositories": [
{
"type": "vcs",
"url": "git@github.com:mgrajcarek/user-importer-poc.git"
}
],
```

Add `Dvs/CacheBundle` to your `composer.json` file:
```
$ composer require netinteractive/user-importer-bundle
```
Register the bundle in `app/AppKernel.php`:
```php
public function registerBundles()
{
return array(
// ...
new NetInteractive\Bundle\UserImporterBundle\NetInteractiveUserImporterBundle(),
);
}
```
## Testing
Setup the test suite using Composer:
```
$ composer install --dev
```

### PhpSpec
To run Specs (require dev dependencies)
```
$ vendor/bin/phpspec run
```

0 comments on commit 1dd872c

Please sign in to comment.