├── .gitignore ├── .gitlab-ci.yml ├── .styleci.yml ├── LICENSE ├── changelog.md ├── composer.json ├── config └── localizationhelper.php ├── contributing.md ├── docs └── index.md ├── gitattributes ├── license.md ├── phpunit.xml.dist ├── readme.md ├── src ├── Contracts │ └── LocalizationHelper.php ├── Facades │ └── LocalizationHelper.php ├── LocalizationHelper.php ├── LocalizationHelperServiceProvider.php └── helpers.php └── tests ├── TestCase.php └── UsageTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | .idea 4 | /tests/report -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/changelog.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/composer.json -------------------------------------------------------------------------------- /config/localizationhelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/config/localizationhelper.php -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/contributing.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/docs/index.md -------------------------------------------------------------------------------- /gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/gitattributes -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/license.md -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/readme.md -------------------------------------------------------------------------------- /src/Contracts/LocalizationHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/src/Contracts/LocalizationHelper.php -------------------------------------------------------------------------------- /src/Facades/LocalizationHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/src/Facades/LocalizationHelper.php -------------------------------------------------------------------------------- /src/LocalizationHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/src/LocalizationHelper.php -------------------------------------------------------------------------------- /src/LocalizationHelperServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/src/LocalizationHelperServiceProvider.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/src/helpers.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/UsageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awes-io/localization-helper/HEAD/tests/UsageTest.php --------------------------------------------------------------------------------