├── LICENSE ├── composer.json ├── phpunit.xml.dist └── src ├── ErrorHandler.php ├── Factory.php ├── Interfaces ├── ErrorHandlerInterface.php ├── RegexRuntimeInterface.php └── SandboxInterface.php ├── RegexException.php ├── RegexGuard.php └── Sandbox.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/regex-guard/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/regex-guard/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/regex-guard/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/regex-guard/HEAD/src/ErrorHandler.php -------------------------------------------------------------------------------- /src/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/regex-guard/HEAD/src/Factory.php -------------------------------------------------------------------------------- /src/Interfaces/ErrorHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/regex-guard/HEAD/src/Interfaces/ErrorHandlerInterface.php -------------------------------------------------------------------------------- /src/Interfaces/RegexRuntimeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/regex-guard/HEAD/src/Interfaces/RegexRuntimeInterface.php -------------------------------------------------------------------------------- /src/Interfaces/SandboxInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/regex-guard/HEAD/src/Interfaces/SandboxInterface.php -------------------------------------------------------------------------------- /src/RegexException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/regex-guard/HEAD/src/RegexException.php -------------------------------------------------------------------------------- /src/RegexGuard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/regex-guard/HEAD/src/RegexGuard.php -------------------------------------------------------------------------------- /src/Sandbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcioAlmada/regex-guard/HEAD/src/Sandbox.php --------------------------------------------------------------------------------