PHPackages                             jcorry/gootranslate - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. jcorry/gootranslate

AbandonedLibrary

jcorry/gootranslate
===================

Simple API wrapper for Google Translate (REST) API

v0.0.4(10y ago)12881[1 PRs](https://github.com/jcorry/gootranslate/pulls)DBADPHPPHP ~5.5|~7.0

Since Mar 23Pushed 10y ago2 watchersCompare

[ Source](https://github.com/jcorry/gootranslate)[ Packagist](https://packagist.org/packages/jcorry/gootranslate)[ Docs](https://github.com/Jcorry/GooTranslate)[ RSS](/packages/jcorry-gootranslate/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (4)Dependencies (9)Versions (4)Used By (0)

GooTranslate
============

[](#gootranslate)

[![Latest Version on Packagist](https://camo.githubusercontent.com/31bbfc086d9ed7e7123f33288ce4894422df7e46a05cce2380ed6b2d8a1797d5/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f4a636f7272792f476f6f5472616e736c6174652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/Jcorry/GooTranslate)[![Software License](https://camo.githubusercontent.com/32d67d39db3f3b7925907d689775a7180844f5e8f1ce5c712efaff827d9971b0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f4a636f7272792f476f6f5472616e736c6174652e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/b2bc24a3bf673af6572f5686db4bc9bcac6e85f52bb491e973c914c274bb5941/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6a636f7272792f676f6f7472616e736c6174652f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/jcorry/gootranslate)[![Quality Score](https://camo.githubusercontent.com/75a0f748727a4c36348349b8a47f90aa7aaa3a8e39b74d367d707df36aed0511/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f4a636f7272792f476f6f5472616e736c6174652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/Jcorry/GooTranslate)[![Total Downloads](https://camo.githubusercontent.com/86411ed4c7f197e878655f4d39085893e47318417e0e5e28820380cc72cf0d06/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f4a636f7272792f476f6f5472616e736c6174652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/Jcorry/GooTranslate)

Simple wrapper for Google Translate (REST) API. Includes a Laravel 5 Service Provider and Facade.

Install
-------

[](#install)

Via Composer

```
$ composer require jcorry/gootranslate
```

Or `require : { "jcorry/gootranslate": "dev-master" }`

Add your Google API key to .env

```
GOOGLE_API_KEY=YOUR-KEY-VALUE-HERE

```

Add provider to your app/config/app.php providers:

```
Jcorry\GooTranslate\GooTranslateServiceProvider::class

```

Optional (recommended)
======================

[](#optional-recommended)

Add alias to app/config/app.php to use facade

```
'GooTranslate' => Jcorry\GooTranslate\GooTranslateFacade::class

```

Usage
-----

[](#usage)

List available languages...

```
GooTranslate::languages();

```

Translate

```
GooTranslate::translate('Here is a string to translate', 'zu');

```

Results in...

```
```
[
    {#644
        +"translatedText": "Nasi string ukuhumusha",
        +"detectedSourceLanguage": "en",
    },
]

```

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [John Corry](https://github.com/:author_username)
- [All Contributors](../../contributors)

License
-------

[](#license)

The DBAD License (DBAD). Please see [License File](LICENSE.md) for more information.

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community5

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~6 days

Total

4

Last Release

3682d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/51d8aa22e2e3d326ccbdc7258347cae4c0e079b84cb2605b9042838223e2fbeb?d=identicon)[jcorry](/maintainers/jcorry)

---

Tags

jcorryGooTranslate

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/jcorry-gootranslate/health.svg)

```
[![Health](https://phpackages.com/badges/jcorry-gootranslate/health.svg)](https://phpackages.com/packages/jcorry-gootranslate)
```

###  Alternatives

[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[stechstudio/laravel-zipstream

A fast and simple streaming zip file downloader for Laravel.

4633.7M3](/packages/stechstudio-laravel-zipstream)[laravel-notification-channels/microsoft-teams

A Laravel Notification Channel for Microsoft Teams

1603.0M7](/packages/laravel-notification-channels-microsoft-teams)[spatie/laravel-export

Create a static site bundle from a Laravel app

646127.9k5](/packages/spatie-laravel-export)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

226102.4k](/packages/erag-laravel-disposable-email)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
