revinate / sequence
A functional programming library for PHP
Installs: 25 038
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 52
Forks: 4
Open Issues: 1
Requires
- php: >=7
- ext-json: *
- ext-mbstring: *
- react/partial: ~2.0
- revinate/php-getter-setter: 1.0.0
Requires (Dev)
- phpunit/phpunit: ^6.5
- dev-master
- 1.0.0
- v1.0.0-beta4
- v1.0.0-beta3
- v1.0.0-beta2
- v1.0.0-beta
- 0.4.6
- 0.4.5
- 0.4.4
- 0.4.3
- 0.4.2
- 0.4.1
- 0.4.0
- 0.3.9
- 0.3.8
- 0.3.7
- 0.3.6
- 0.3.5
- 0.3.4
- 0.3.3
- 0.3.2
- 0.3.1
- 0.2.5
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.4
- 0.1.3
- v0.1.0
- dev-php-getter-setter-update
- dev-php7.4_compat
- dev-addFilterOutAndFilterKeysOutFunctions
- dev-makeFnPluckWorkForMultidimensionalArraysAndObjects
This package is not auto-updated.
Last update: 2025-03-29 20:48:29 UTC
README
This library makes it easier to use functional style programming in PHP
PHP Backward Compatibility
As we move our codebase forward, it is no longer possible for us to support older versions of PHP. With release version 1.0 and onward, we will stop supporting PHP 5.3 and PHP 5.4.
Quick Example
Install the package via composer by adding this section to the composer.json file:
"require": { "revinate/sequence": "~0.4" },
This is a tiny script to get a feeling of how Sequence works.
<?php require_once __DIR__.'/vendor/autoload.php'; use Revinate\Sequence\Sequence; $dataSet = array(1, 2, 3, 4, 5); $seq = Sequence::make($dataSet); // At this point you have a sequence and you can do bunch of cool sequence stuff with it $even = $seq->filter(static function($n) { return $n%2 == 0; }); // nothing is evaluated here because of lazy loading foreach($even as $num) { echo "$num\n"; } $twice = $seq->map(static function($n) { return $n * 2; }); foreach($twice as $num) { echo "$num\n"; }
and the output of this program will be:
2
4
2
4
6
8
10
This is just a tiny bit of all the things that can be accomplished with Sequence. For a more detailed documentation, see Wiki
How to get involved
First clone the repo and install the dependencies
git clone https://github.com/revinate/sequence.git composer install
and then run the tests:
phpunit
That's all you need to start working on Sequence. Please, include tests in your pull requests.