Merge pull request #9 from williamknauss/composer-support

Composer support
This commit is contained in:
William Knauss
2014-05-16 19:37:46 -04:00
2 changed files with 19 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
vendor/
composer.lock

17
composer.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "parsecsv/php-parsecsv",
"description": "CSV data parser for PHP",
"license": "MIT",
"authors": [
{
"name": "Jim Mygrberg",
"email": "contact@jimeh.me"
}
],
"autoload": {
"classmap": ["."]
},
"require-dev": {
"phpunit/phpunit": "4.1.*"
}
}