├── .codeclimate.yml ├── .editorconfig ├── .gitignore ├── .htaccess ├── .travis.yml ├── Dt.php ├── LICENSE ├── Numeral.php ├── README.md ├── RUtils.php ├── Translit.php ├── Typo.php ├── TypoRules.php ├── composer.json ├── doc ├── examples │ ├── _begin.php │ ├── _end.php │ ├── dt.php │ ├── numeral.php │ ├── translit.php │ └── typo.php ├── quick-start.ru.html └── styles.css ├── struct └── TimeParams.php └── test ├── DistanceOfTimeInWordsTest.php ├── DtTest.php ├── NumeralTest.php ├── TranslitTest.php ├── TypoTest.php ├── bootstrap.php ├── data └── zarathustra.txt └── phpunit.xml /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .idea/ 3 | composer.lock 4 | vendor 5 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/Dt.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/LICENSE -------------------------------------------------------------------------------- /Numeral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/Numeral.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/README.md -------------------------------------------------------------------------------- /RUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/RUtils.php -------------------------------------------------------------------------------- /Translit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/Translit.php -------------------------------------------------------------------------------- /Typo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/Typo.php -------------------------------------------------------------------------------- /TypoRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/TypoRules.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/composer.json -------------------------------------------------------------------------------- /doc/examples/_begin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/doc/examples/_begin.php -------------------------------------------------------------------------------- /doc/examples/_end.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/doc/examples/_end.php -------------------------------------------------------------------------------- /doc/examples/dt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/doc/examples/dt.php -------------------------------------------------------------------------------- /doc/examples/numeral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/doc/examples/numeral.php -------------------------------------------------------------------------------- /doc/examples/translit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/doc/examples/translit.php -------------------------------------------------------------------------------- /doc/examples/typo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/doc/examples/typo.php -------------------------------------------------------------------------------- /doc/quick-start.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/doc/quick-start.ru.html -------------------------------------------------------------------------------- /doc/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/doc/styles.css -------------------------------------------------------------------------------- /struct/TimeParams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/struct/TimeParams.php -------------------------------------------------------------------------------- /test/DistanceOfTimeInWordsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/test/DistanceOfTimeInWordsTest.php -------------------------------------------------------------------------------- /test/DtTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/test/DtTest.php -------------------------------------------------------------------------------- /test/NumeralTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/test/NumeralTest.php -------------------------------------------------------------------------------- /test/TranslitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/test/TranslitTest.php -------------------------------------------------------------------------------- /test/TypoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/test/TypoTest.php -------------------------------------------------------------------------------- /test/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/test/bootstrap.php -------------------------------------------------------------------------------- /test/data/zarathustra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/test/data/zarathustra.txt -------------------------------------------------------------------------------- /test/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andre487/php_rutils/HEAD/test/phpunit.xml --------------------------------------------------------------------------------