Skip to content

Commit

Permalink
Merge 679a9cb into 01c55b3
Browse files Browse the repository at this point in the history
  • Loading branch information
nozavroni committed Jul 22, 2018
2 parents 01c55b3 + 679a9cb commit 428fc8c
Show file tree
Hide file tree
Showing 78 changed files with 2,285 additions and 9,428 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -7,3 +7,5 @@ phpunit.xml
-1
*~
phpunit
composer.lock

7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# CHANGE LOG

## [v0.3 Release]()

* Changed CSVelte\Flavor to CSVelte\Dialect to be more consistent with CSVW
* Changed CSVelte\Taster to CSVelte\Sniffer because Taster no longer makes sense (also now more consistent with python csv package)
* Moved all Collection-related functionality into its own library (nozavroni/collect)
* Removed all CSVelte functions with the exception of `CSVelte\streamize`, which has been renamed to `CSVelte\to_stream`.

## [v0.2.2 Release]()

* Refactored CSVelte\Collection class, introducing a variety of specialized collection classes ([#141](https://github.com/nozavroni/csvelte/issues/141)).
Expand Down
19 changes: 12 additions & 7 deletions composer.json
Expand Up @@ -9,28 +9,33 @@
{
"name": "Luke Visinoni",
"email": "luke.visinoni@gmail.com",
"homepage": "https://plus.google.com/+LukeVisinoni",
"role": "Creator and Sole Developer"
"homepage": "http://luke.visinoni.net/"
}
],
"support": {
"issues": "https://github.com/nozavroni/csvelte/issues"
},
"require": {
"php": ">=5.6"
"php": "^5.6 || ^7.0",
"danielstjules/stringy": "^3.1",
"nozavroni/collect": "^0.2.1"
},
"require-dev": {
"phpunit/phpunit": "^5.4",
"mikey179/vfsStream": "^1.6",
"fzaninotto/Faker": "^1.6"
"fzaninotto/Faker": "^1.6",
"symfony/var-dumper": "^3.4"
},
"autoload": {
"psr-4": {
"CSVelte\\": ["src/CSVelte"]
"CSVelte\\": "src/CSVelte"
},
"files": ["src/CSVelte/functions.php"]
},
"autoload-dev": {
"psr-4": {
"org\\": ["vendor/mikey179/vfsStream/src/main/php"],
"CSVelteTest\\": ["tests/CSVelte"]
"org\\": "vendor/mikey179/vfsStream/src/main/php",
"CSVelteTest\\": "tests/CSVelte"
}
}
}

0 comments on commit 428fc8c

Please sign in to comment.