├── .github └── dependabot.yml ├── .gitignore ├── LICENSE ├── composer.json ├── readme.md ├── src └── TRStringHelper.php └── tests └── TrStringTest.php /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epigra/trstringhelper/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | vendor 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epigra/trstringhelper/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epigra/trstringhelper/HEAD/composer.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epigra/trstringhelper/HEAD/readme.md -------------------------------------------------------------------------------- /src/TRStringHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epigra/trstringhelper/HEAD/src/TRStringHelper.php -------------------------------------------------------------------------------- /tests/TrStringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epigra/trstringhelper/HEAD/tests/TrStringTest.php --------------------------------------------------------------------------------