justraviga/laravel-deepl

Deepl Automated translations for Laravel lang files
8,151 2
Install
composer require justraviga/laravel-deepl
Latest Version:0.1.3
PHP:^7.4|^8.0
License:MIT
Last Updated:Jun 10, 2025
Links: GitHub  ·  Packagist
Maintainer: DeDmytro

Laravel DeepL Translator

Provides access to DeepL API for Laravel projects

Stable Version Unstable Version Total Downloads License

Table of contents

Installation

To get the latest version of Laravel DeepL, simply require the project using Composer:

$ composer require justraviga/laravel-deepl

Or manually update require block of composer.json and run composer update.

{
    "require": {
        "justraviga/laravel-deepl": "^0.1"
    }
}

Using

Translate single string

use JustRaviga\Deepl\Facades\Deepl;

$translated = Deepl::api()->translate('Hello world!', 'EN', 'DE');

Create/Update lang files for specific language. It allows to complete all missing translations for specific language.

php artisan deepl:sync de

Related Packages

arcanedev/laravel-lang

Translations manager and checker for Laravel 5 based on 'caouecs/laravel4-lang'...

71,636 70