From dcc66f17314a27da068f835bff6348e6e219771c Mon Sep 17 00:00:00 2001 From: Alexander Prokhorov Date: Mon, 25 Feb 2013 18:04:34 +0400 Subject: [PATCH] Added link to Packagist to readme --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index f029ba6..9b8ffdf 100644 --- a/readme.md +++ b/readme.md @@ -12,7 +12,7 @@ Features * Callback functions can be specified as closures (like `function ($v) { return $v; }`), PHP "function pointers" (either strings like `'strnatcmp'` or arrays like `array($object, 'methodName')`), string "lambdas" using various syntaxes (`'"$k = $v"'`, `'$v ==> $v+1'`, `'($v, $k) ==> $v + $k'`, `'($v, $k) ==> { return $v + $k; }'`). * Keys are as important as values. Most callback functions receive both values and the keys; transformations can be applied to both values and the keys; keys are never lost during transformation, if possible. * SPL interfaces `Iterator`, `IteratorAggregate` etc. are used throughout the code and can be used interchangeably with Enumerable. -* Composer support with autoloading +* Composer support with autoloading ([package](https://packagist.org/packages/athari/yalinqo) on Packagist). Implemented methods ===================