├── .github └── workflows │ └── test-application.yaml ├── .gitignore ├── CHANGELOG.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── CallbackSlugifier.php └── SlugifierInterface.php └── tests └── CallbackSlugifierTest.php /.github/workflows/test-application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/slugifier-api/HEAD/.github/workflows/test-application.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | composer.lock 3 | vendor 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/slugifier-api/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/slugifier-api/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/slugifier-api/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/slugifier-api/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/CallbackSlugifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/slugifier-api/HEAD/src/CallbackSlugifier.php -------------------------------------------------------------------------------- /src/SlugifierInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/slugifier-api/HEAD/src/SlugifierInterface.php -------------------------------------------------------------------------------- /tests/CallbackSlugifierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony-cmf/slugifier-api/HEAD/tests/CallbackSlugifierTest.php --------------------------------------------------------------------------------