8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29fd100 commit 34eff7cCopy full SHA for 34eff7c
.gitignore
@@ -1,3 +1,6 @@
1
+vendor
2
+composer.lock
3
+
4
# IDE specific project files
5
.nbproject
6
*.iml
composer.json
@@ -0,0 +1,23 @@
+{
+ "name": "nerdery/csv-bundle",
+ "description": "Symfony bundle for handling CSV files.",
+ "keywords": ["csv"],
+ "homepage": "https://github.com/thenerdery/csv-bundle",
+ "type": "symfony-bundle",
7
+ "license": "BSD-2-Clause",
8
+ "minimum-stability": "dev",
9
+ "authors": [
10
+ {
11
+ "name": "Thomas Houfek",
12
+ "email": "thomas.houfek@nerdery.com"
13
+ }
14
+ ],
15
+ "require": {
16
+ "php": ">=5.3.0",
17
+ "symfony/symfony": ">=2.1.0"
18
+ },
19
+ "autoload": {
20
+ "psr-0": { "Nerdery\\CsvBundle": "" }
21
22
+ "target-dir": "Nerdery/CsvBundle"
23
+}
0 commit comments