Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
The project follows [semantic versioning](http://semver.org/). `BC` stands for a change that impacts `Backward Compatibility`.

## [Unreleased]
### Removed
* Support for `icomefromthenet/reverse-regex` dependency. Only `ilario-pierbattista/reverse-regex` is now supported for the `regex()` generator (other forks are welcome).

## [1.0.0] - 2024-12-07
### Added
* Support for PHP 8.2, 8.3, 8.4
Expand Down
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@
"suggest":
{
"phpunit/phpunit": "Standard way to run generated test cases",
"icomefromthenet/reverse-regex": "v0.0.6.3 for the regex() Generator",
"ilario-pierbattista/reverse-regex": "0.3.1 for the regex() Generator (alternative to icomefromthenet/reverse-regex) "
"ilario-pierbattista/reverse-regex": "0.5.0 for the regex() Generator"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/Generator/RegexGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class RegexGenerator implements Generator
public function __construct($expression)
{
if (!class_exists("ReverseRegex\Parser")) {
throw new BadFunctionCallException("Please install the suggested dependency icomefromthenet/reverse-regex to run this Generator.");
throw new BadFunctionCallException("Please install the suggested dependency ilario-pierbattista/reverse-regex to run this Generator.");
}
$this->expression = $expression;
}
Expand Down
Loading