├── .github └── workflows │ └── php.yml ├── .php-cs-fixer.php ├── .styleci.yml ├── LICENSE ├── README.md ├── composer.json └── src ├── Parser.php └── functions.php /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functional-php/pattern-matching/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functional-php/pattern-matching/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functional-php/pattern-matching/HEAD/.styleci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functional-php/pattern-matching/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functional-php/pattern-matching/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functional-php/pattern-matching/HEAD/composer.json -------------------------------------------------------------------------------- /src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functional-php/pattern-matching/HEAD/src/Parser.php -------------------------------------------------------------------------------- /src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/functional-php/pattern-matching/HEAD/src/functions.php --------------------------------------------------------------------------------