├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── phpstan.neon ├── phpunit.xml.dist ├── src ├── TextGenerator.php └── TextGeneratorInterface.php └── tests └── TextGeneratorTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | .idea 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liderman/php-text-generator/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liderman/php-text-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liderman/php-text-generator/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liderman/php-text-generator/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liderman/php-text-generator/HEAD/composer.lock -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- 1 | parameters: 2 | -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liderman/php-text-generator/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/TextGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liderman/php-text-generator/HEAD/src/TextGenerator.php -------------------------------------------------------------------------------- /src/TextGeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liderman/php-text-generator/HEAD/src/TextGeneratorInterface.php -------------------------------------------------------------------------------- /tests/TextGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liderman/php-text-generator/HEAD/tests/TextGeneratorTest.php --------------------------------------------------------------------------------