-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update PHP support * Update PHPUnit support
- Loading branch information
Showing
18 changed files
with
2,126 additions
and
800 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.DS_Store | ||
composer.lock | ||
tests | ||
vendor | ||
*.php-e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,39 @@ | ||
{ | ||
"name": "jabranr/csv-parser", | ||
"type": "library", | ||
"version": "2.1.1", | ||
"description": "Parse CSV data from a file, stream or string", | ||
"keywords": ["csv", "php", "parser"], | ||
"homepage": "https://github.com/jabranr/csv-parser", | ||
"license": "MIT License", | ||
"authors": [ | ||
{ | ||
"name": "Jabran Rafique", | ||
"email": "hello@jabran.me", | ||
"homepage": "http://jabran.me" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.3.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "4.7.*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Jabran\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Jabran\\Tests\\": "test" | ||
} | ||
"name": "jabranr/csv-parser", | ||
"type": "library", | ||
"version": "3.0.0", | ||
"description": "Parse CSV data from a file, stream or string", | ||
"keywords": [ | ||
"csv", | ||
"php", | ||
"parser" | ||
], | ||
"homepage": "https://github.com/jabranr/csv-parser", | ||
"license": "MIT License", | ||
"authors": [ | ||
{ | ||
"name": "Jabran Rafique", | ||
"email": "hello@jabran.me", | ||
"homepage": "http://jabran.me" | ||
} | ||
], | ||
"scripts": { | ||
"tests": "phpunit" | ||
}, | ||
"require": { | ||
"php": ">=7.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^6.0|^7.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Jabran\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Jabran\\Tests\\": "test" | ||
} | ||
} | ||
} |
Oops, something went wrong.