roelofjan-elsinga/url-language-extractor

0.2.1 2022-08-05 14:53 UTC

This package is auto-updated.

Last update: 2024-04-05 18:34:40 UTC


README

Build status StyleCI Status Code coverage Total Downloads Latest Stable Version License

This package helps you to resolve the language in a URL.

Requirements

  • php ^7.4 || >=8.0

Installation

You can require the package through Composer.

composer require roelofjan-elsinga/url-language-extractor

Usage

You can extract the language from the URL by using the following code:

$short_code = LanguageExtractor::forUrl('/page/en/content-page')
    ->setAcceptedShortCodes(['en', 'nl', 'es', 'fr'])
    ->extract();

print $short_code; // 'en'

Contributing

Do you want to contribute to this project? Great! You can contribute by working on the following things:

  • Adding additional ways to detect a language from a URL
  • Writing tests to detect edge cases
  • Filing issues for new features or bugs

Testing

You can run tests by running vendor/bin/phpunit in your terminal.