Download the PHP package nimayneb/yawl without Composer

On this page you can find all versions of the php package nimayneb/yawl. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package yawl

YAWL - Yet another wildcard library

Build Status

This is a library with classes for any wildcard implementation that finds pattern with * (asterisk) and ? (query) token.

Problem

Without regular expression extension (named ext-pcre - before PHP 5.3) you have no wildcard support within PHP.

See https://www.php.net/manual/en/pcre.installation.php.

The known wildcard behavior (see Wildcard character (@Wikipedia)) is limited for a good implementation.

A small remedy?

We need a kind of "compiled" and "cached" pattern. The implementation of regular expression like preg_match has a huge performance. We lost these advantage as of PHP 7.0, because of just-in-time compiled pcre pattern!

Table of content

  1. Benchmark
  2. Wildcard variants
  3. Possible valid pattern
  4. Invalid pattern
  5. Escaping
  6. Repeating phrases
  7. Caching
  8. Wish list
  9. Appendix

API:

  1. Matcher (for use of single calls)
  2. Performer (for use of multiple calls)
  3. Converter (for use of regular expression)

Benchmark

When we benchmark several methods to match a fitting phrase (1000 random strings), we have a good results without "regular expressions":

Single Byte:

Benchmark Time Reference Difference
WildcardPerformer 0.00353789 100 % -
preg_match 0.01223898 71 % 71 %
WildcardMatcher 0.01635289 25 % 78 %

Multi Byte (like Unicode):

Benchmark Time Reference Difference
WildcardPerformer 0.00660086 100 % -
mb_ereg_match 0.01290488 48 % 48 %
WildcardMatcher 0.03252506 60 % 79 %

Internal PHP functions comparison

Function WildcardMatcher WildcardPerformer
strlen 9 5 (-4)
substr 5 4 (-1)
strpos 5 1 (-4)
chr 2 2 (0)
Conditions 57 13 (-44)

Wildcard variants

!= character == 1 character >= 2 characters Token
0 0 0 (invalid)
0 0 1 ??... / ??...*
0 1 0 ?
0 1 1 **
1 0 0 (empty string)
1 0 1 ??** (draft)
1 1 0 ?*
1 1 1 *

Possible valid pattern

    ??      (2 characters)
    ???*  (2-3 characters)

Invalid pattern

    ***
    ?**
    ?*?
    *?

Escaping

    \\
    \?
    \*

Please note of this escaping scenarios:

Subject Pattern Explanation
search\\* *\\* matches search\ with wildcard, then matches escaped *
search\\* *\\\\* matches search with wildcard, then matches escaped \, then matches * with wildcard
search\\* *\\\\\\* matches search with wildcard, then matches escaped \, then matches escaped *
search\\* *\\\\\\\\* matches search with wildcard, then matches escaped \, then not matches escaped \ - ignore rest of *

Further explanation:

programmatic internal after escaping
\\ \ \
\\\\ \\ \

Repeating phrases

The asterisk (*) has a problem finding the right position. If several identical phrases can be found in a string, the search must take place in all positions to find the pattern.

 Search: *is?ue (where is "*is")
Subject: this is an asterisk issue
 Founds:   ^  ^          ^   ^

The simplest solution is to break down the pattern recursively, but it should be not recursively.

Caching

The regular expression extension has a caching and compiling strategy to improve performance. The second time the same pattern is called, a tremendous increase in performance is achieved.

To help us to improve also performance, we use a simple key-value caching.

    protected array $cachedResults = [];

    public function match(string $subject): bool
    {
        return $this->cachedResults[$subject] ?? $this->cachedResults[$subject] = $this->computePhrases($subject, 0);
    }

This is not a preferred solution.

Wish list

Appendix

Common Algorithms:

Non-recursive Algorithms:

Recursive Algorithms:

PDepend


All versions of yawl with dependencies

PHP Build Version
Package Version
Requires php Version ^7.4.0
ext-mbstring Version *
nimayneb/benchmark Version 1.0.1
phpmd/phpmd Version ^2.8
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package nimayneb/yawl contains the following files

Loading the files please wait ....