├── .github └── workflows │ └── php.yml ├── .gitignore ├── .nvmrc ├── .prettierrc.js ├── LICENSE.txt ├── README.md ├── composer.json ├── composer.lock ├── package.json ├── readme.txt ├── syllable-hyphenator.php └── syllable-hyphenator.png /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joppuyo/syllable-hyphenator/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /vendor -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 12.18.3 -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joppuyo/syllable-hyphenator/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joppuyo/syllable-hyphenator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joppuyo/syllable-hyphenator/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joppuyo/syllable-hyphenator/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joppuyo/syllable-hyphenator/HEAD/composer.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joppuyo/syllable-hyphenator/HEAD/package.json -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joppuyo/syllable-hyphenator/HEAD/readme.txt -------------------------------------------------------------------------------- /syllable-hyphenator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joppuyo/syllable-hyphenator/HEAD/syllable-hyphenator.php -------------------------------------------------------------------------------- /syllable-hyphenator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joppuyo/syllable-hyphenator/HEAD/syllable-hyphenator.png --------------------------------------------------------------------------------