cucumber/tag-expressions

Cucumber Tag Expressions parser

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

pkg:composer/cucumber/tag-expressions

v7.0.0 2025-05-25 12:25 UTC

This package is not auto-updated.

Last update: 2025-10-11 13:47:19 UTC


README

This is a PHP implementation of the Cucumber Tag Expressions parser

Requirements

  • PHP 8.1

Installation

Install using composer.

composer require cucumber/tag-expressions

Usage

use Cucumber\TagExpressions\TagExpressionParser;

$expression = TagExpressionParser::parse('@smoke and not @ui');

$result = $expression->evaluate(['@smoke', '@cli'])