coswat / translater
Langauge translater package for PHP.
Fund package maintenance!
coswat
v1.0.0
2023-06-24 19:09 UTC
Requires
- php: ^8.1
- guzzlehttp/guzzle: ^7.7
Requires (Dev)
- phpunit/phpunit: ^10.2
README
- coswat translater is php package to translate langauges easily without having any Api Key.
- it uses a free open source api url to translate langauges
Installation
- Install via Composer
composer require coswat/translater
Supported Langauges
- English
- Spanish
- Russian
- Arabic
- Portuguese
- German
- Hindi
- French
- Italian
- Indoneasian
- Vietnamese
Usage
Example of translating english to spanish
<?php require_once 'vendor/autoload.php'; use Coswat\Translater\Translate; $t = new Translate(); $translated = $t->string('Hello')->convert('en','es'); echo $translated; // show Hola.
License
The translater package is open-sourced software licensed under the MIT license.