├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── phpunit.php ├── phpunit.xml └── src ├── DigitText.php ├── ServiceProvider.php ├── helpers.php └── lang ├── de.php ├── en.php ├── ru.php └── uk.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://money.yandex.ru/to/410012115955701 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/DigitText/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/DigitText/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/DigitText/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/DigitText/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/DigitText/HEAD/phpunit.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/DigitText/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/DigitText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/DigitText/HEAD/src/DigitText.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/DigitText/HEAD/src/ServiceProvider.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/DigitText/HEAD/src/helpers.php -------------------------------------------------------------------------------- /src/lang/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/DigitText/HEAD/src/lang/de.php -------------------------------------------------------------------------------- /src/lang/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/DigitText/HEAD/src/lang/en.php -------------------------------------------------------------------------------- /src/lang/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/DigitText/HEAD/src/lang/ru.php -------------------------------------------------------------------------------- /src/lang/uk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-helldar/DigitText/HEAD/src/lang/uk.php --------------------------------------------------------------------------------