Releases: webmozarts/glob
Releases · webmozarts/glob
3.2.0
- added support for
?
which matches any character
- added support for character classes
[abc]
which match any of the specified
characters
- added support for inverted character classes
[^abc]
which match any but
the specified characters
3.1.1
- fixed minimum versions in composer.json
3.1.0
- added
TestUtil
class
- fixed normalizing of slashes on Windows
3.0.0
RecursiveDirectoryIterator
now inherits from \RecursiveDirectoryIterator
for performance reasons. Support for seek()
was removed on PHP versions
< 5.5.23 or < 5.6.7
- made
Glob
final
2.0.1
- upgraded to webmozart/path-util 2.0
2.0.0
- restricted
**
to be used within two separators only: /**/
. This improves
performance while maintaining equal expressiveness
- added support for stream wrappers
1.0.0
- added support for sets:
{ab,cd}
1.0.0-beta3
- fixed installation on Windows
1.0.0-beta2
- implemented Ant-like globbing:
*
does not match directory separators
anymore, but **
does
- escaping must now be explicitly enabled by passing the flag
Glob::ESCAPE
to any of the Glob
methods
- fixed: replaced fatal error by
InvalidArgumentException
when globs are
not absolute
1.0.0-beta
Released version "1.0.0-beta"