s9e/regexp-builder
Library that generates regular expressions that match a list of strings.
2.1.0
2.5M downloads/mo
#2746 most downloaded on Packagist
s9e/RegexpBuilder
What this package is like to depend on
Last release 4 years ago
no release in 18 months
Release timing varies
gaps range from 2 weeks to 1.3 years
Rarely documented
notes for 3 of 14 stable releases
Nothing withdrawn
no release was ever pulled
10 years old
18 releases · first in 2016
0 releases in the last 12 months
see the full history below
Release timeline
18 releases · Sep 2016 to Feb 2023Releases
latest 18-
2.1.021 Feb 2023 -
2.0.008 Sep 2022Release notes
Open source →See UPGRADING.md for backward-incompatible changes and CHANGES.md for an overview of functional changes.
-
2.0.0-rc108 Sep 2022 pre-releaseNothing published for this version
-
2.0.0-beta.315 Aug 2022 pre-release -
2.0.0-beta.207 Aug 2022 pre-releaseNothing published for this version
-
2.0.0-beta.105 Apr 2022 pre-releaseRelease notes
Open source →PHP requirements have been bumped to 8.1.
⚠ Change in behaviour: alternations at the root level of the generated expression are not put in a non-capturing group anymore. This change is only relevant if the generated expression is used as part of a bigger regexp. The old behaviour can be restored at runtime via the
$builder->standaloneproperty. See below for an example.$builder = new s9e\RegexpBuilder\Builder; var_dump($builder->build(['foo', 'bar', 'baz'])); $builder->standalone = false; var_dump($builder->build(['foo', 'bar', 'baz']));
string(10) "ba[rz]|foo" string(14) "(?:ba[rz]|foo)" -
1.4.605 Mar 2022Nothing published for this version
-
1.4.528 Apr 2021Nothing published for this version
-
1.4.408 Jan 2020Release notes
Open source →This release fixes a typo that caused left square brackets to be incorrectly interpreted as right square brackets, as well as a typing error on PHP 7.4.
-
1.4.326 Apr 2019Nothing published for this version
-
1.4.228 Oct 2018Nothing published for this version
-
1.4.109 Jan 2018Nothing published for this version
-
1.4.005 Jan 2018Nothing published for this version
-
1.3.030 Oct 2016Nothing published for this version
-
1.2.014 Oct 2016Nothing published for this version
-
1.1.018 Sep 2016Nothing published for this version
-
1.0.114 Sep 2016Nothing published for this version
-
1.0.005 Sep 2016Nothing published for this version