├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── integrate.yaml ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── src ├── CustomFormats │ └── MomentJs.php ├── FormatsInterface.php ├── Locales │ ├── ar_TN.php │ ├── ca_ES.php │ ├── cs_CZ.php │ ├── da_DK.php │ ├── de_DE.php │ ├── en_CA.php │ ├── en_GB.php │ ├── en_US.php │ ├── eo.php │ ├── es_ES.php │ ├── fa_IR.php │ ├── fi_FI.php │ ├── fr_CA.php │ ├── fr_FR.php │ ├── hu_HU.php │ ├── id_ID.php │ ├── it_IT.php │ ├── ja_JP.php │ ├── ko_KR.php │ ├── kz_KZ.php │ ├── lv_LV.php │ ├── nl_NL.php │ ├── no_NO.php │ ├── oc_LNC.php │ ├── pl_PL.php │ ├── pt_BR.php │ ├── pt_PT.php │ ├── ro_RO.php │ ├── ru_RU.php │ ├── sv_SE.php │ ├── th_TH.php │ ├── tr_TR.php │ ├── uk_UA.php │ ├── vi_VN.php │ ├── zh_CN.php │ └── zh_TW.php ├── Moment.php ├── MomentException.php ├── MomentFromVo.php ├── MomentHelper.php ├── MomentLocale.php └── MomentPeriodVo.php └── tests ├── Unit ├── MomentBritishEnglishLocaleTest.php ├── MomentCanadianEnglishLocaleTest.php ├── MomentCanadianFrenchLocaleTest.php ├── MomentEsperantoLocaleTest.php ├── MomentFrenchLocaleTest.php ├── MomentGermanLocaleTest.php ├── MomentLatvianLocaleTest.php ├── MomentPolishLocaleTest.php ├── MomentRussianLocaleTest.php ├── MomentSimilarLocaleTest.php ├── MomentTest.php ├── MomentTurkishLocaleTest.php └── MomentUkrainianLocaleTest.php ├── format.php ├── phpunit.xml ├── test.html └── test.php /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/integrate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/.github/workflows/integrate.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | vendor/ 3 | .DS_Store 4 | composer.lock 5 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/composer.json -------------------------------------------------------------------------------- /src/CustomFormats/MomentJs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/CustomFormats/MomentJs.php -------------------------------------------------------------------------------- /src/FormatsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/FormatsInterface.php -------------------------------------------------------------------------------- /src/Locales/ar_TN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/ar_TN.php -------------------------------------------------------------------------------- /src/Locales/ca_ES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/ca_ES.php -------------------------------------------------------------------------------- /src/Locales/cs_CZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/cs_CZ.php -------------------------------------------------------------------------------- /src/Locales/da_DK.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/da_DK.php -------------------------------------------------------------------------------- /src/Locales/de_DE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/de_DE.php -------------------------------------------------------------------------------- /src/Locales/en_CA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/en_CA.php -------------------------------------------------------------------------------- /src/Locales/en_GB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/en_GB.php -------------------------------------------------------------------------------- /src/Locales/en_US.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/en_US.php -------------------------------------------------------------------------------- /src/Locales/eo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/eo.php -------------------------------------------------------------------------------- /src/Locales/es_ES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/es_ES.php -------------------------------------------------------------------------------- /src/Locales/fa_IR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/fa_IR.php -------------------------------------------------------------------------------- /src/Locales/fi_FI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/fi_FI.php -------------------------------------------------------------------------------- /src/Locales/fr_CA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/fr_CA.php -------------------------------------------------------------------------------- /src/Locales/fr_FR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/fr_FR.php -------------------------------------------------------------------------------- /src/Locales/hu_HU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/hu_HU.php -------------------------------------------------------------------------------- /src/Locales/id_ID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/id_ID.php -------------------------------------------------------------------------------- /src/Locales/it_IT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/it_IT.php -------------------------------------------------------------------------------- /src/Locales/ja_JP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/ja_JP.php -------------------------------------------------------------------------------- /src/Locales/ko_KR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/ko_KR.php -------------------------------------------------------------------------------- /src/Locales/kz_KZ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/kz_KZ.php -------------------------------------------------------------------------------- /src/Locales/lv_LV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/lv_LV.php -------------------------------------------------------------------------------- /src/Locales/nl_NL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/nl_NL.php -------------------------------------------------------------------------------- /src/Locales/no_NO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/no_NO.php -------------------------------------------------------------------------------- /src/Locales/oc_LNC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/oc_LNC.php -------------------------------------------------------------------------------- /src/Locales/pl_PL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/pl_PL.php -------------------------------------------------------------------------------- /src/Locales/pt_BR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fightbulc/moment.php/HEAD/src/Locales/pt_BR.php -------------------------------------------------------------------------------- /src/Locales/pt_PT.php: -------------------------------------------------------------------------------- 1 |