statickidz / php-google-translate-free
Google Translate Free library for PHP
Package info
github.com/statickidz/php-google-translate-free
pkg:composer/statickidz/php-google-translate-free
Fund package maintenance!
1.2.2
2024-08-22 10:28 UTC
Requires
- php: >=5.4
Requires (Dev)
- phpunit/phpunit: >=11.3.1
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
Simple PHP library for talking to Google's Translate API for free.
Eliminates IP request limitations
Installation
Install this package via Composer.
composer require statickidz/php-google-translate-free
Or edit your project's composer.json to require statickidz/php-google-translate-free and then run composer update.
"require": { "statickidz/php-google-translate-free": "^1.2.1" }
Usage
require_once ('vendor/autoload.php'); use \Statickidz\GoogleTranslate; $source = 'es'; $target = 'en'; $text = 'buenos días'; $trans = new GoogleTranslate(); $result = $trans->translate($source, $target, $text); // Good morning echo $result;