├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src ├── IdentifierExtractor.php └── RemovePrefixPatcher.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pxlrbt/php-scoper-prefix-remover/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pxlrbt/php-scoper-prefix-remover/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pxlrbt/php-scoper-prefix-remover/HEAD/composer.json -------------------------------------------------------------------------------- /src/IdentifierExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pxlrbt/php-scoper-prefix-remover/HEAD/src/IdentifierExtractor.php -------------------------------------------------------------------------------- /src/RemovePrefixPatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pxlrbt/php-scoper-prefix-remover/HEAD/src/RemovePrefixPatcher.php --------------------------------------------------------------------------------