PHPackages                             orzcc/oxfordapi-wrapper - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. orzcc/oxfordapi-wrapper

ActiveLibrary[HTTP &amp; Networking](/categories/http)

orzcc/oxfordapi-wrapper
=======================

A PHP/Laravel Wrapper for oxford dictionary API

1.2.2(4y ago)069MITPHP

Since Jan 19Pushed 4y agoCompare

[ Source](https://github.com/orzcc/oxfordapi-wrapper)[ Packagist](https://packagist.org/packages/orzcc/oxfordapi-wrapper)[ RSS](/packages/orzcc-oxfordapi-wrapper/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (1)Versions (16)Used By (0)

oxfordapi-wrapper
=================

[](#oxfordapi-wrapper)

A PHP/Laravel Wrapper for oxford dictionary API

Installation
------------

[](#installation)

First, install the package through Composer.

```
composer require inani/oxfordapi-wrapper
```

Then include the service provider inside config/app.php.

```
'providers' => [
    ...
    Inani\OxfordApiWrapper\OxfordWrapperServiceProvider::class,
    ...
];
```

At least set up in the env file

```
OXFORD_API_BASE_URI =
OXFORD_APP_ID =
OXFORD_APP_KEY =
```

make a new instance

```
// Make it or pass it as argument
$oxford = app(Inani\OxfordApiWrapper\OxfordWrapper::class);
```

How to use
----------

[](#how-to-use)

### Translation

[](#translation)

```
// look for the translation from a language to an other, returns a parser
$parser =$oxford->lookFor('balablabla')
                ->from('en')
                ->to('es')
                ->translate();

// get array of translations
$translations = $parser->get();

// get array of [example => [translations]]
$examples = $parser->getExamples();
```

### Definitions

[](#definitions)

```
// look for the definitions of a word, returns a parser
$parser =$oxford->lookFor('balablabla')
                ->define();

// get array of definitions
$definitions = $parser->get();
```

### Examples

[](#examples)

```
// look for the examples of a word, returns a parser
$parser =$oxford->lookFor('balablabla')
                ->examples();

// get array of examples
$definitions = $parser->get();
```

### Thesaurus

[](#thesaurus)

```
// You can try all combinations
$res = $oxford->lookFor('happy')
               ->synonym()
               ->antonym()
               ->fetch();

// results will be related to (syno or anto)
// get synonyms and/or antonyms
$res->get();
// get only antonyms or null if not specfied in fetch
$res->antonyms();
//get only synonyms or null if not specfied in fetch
$res->synonyms();
```

### Phonetics

[](#phonetics)

```
$res = $oxford->lookFor('ace')
               ->talk();

// get the array of result
$res->get();
// get the link to the audio file of pronunciation
$res->speak();
//get the spelling
$res->spell();
//get the notation
$res->notation();
```

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity71

Established project with proven stability

 Bus Factor1

Top contributor holds 63.6% of commits — single point of failure

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 ~140 days

Recently: every ~0 days

Total

14

Last Release

1584d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9fcbc9d87e31e6370d6b5f4913850894ef922c16a5276a55c8d43453e146b6e1?d=identicon)[orzcc](/maintainers/orzcc)

---

Top Contributors

[![akiyamaSM](https://avatars.githubusercontent.com/u/12276076?v=4)](https://github.com/akiyamaSM "akiyamaSM (21 commits)")[![orzcc](https://avatars.githubusercontent.com/u/402270?v=4)](https://github.com/orzcc "orzcc (12 commits)")

---

Tags

laravelGuzzleOxford Dictionary

### Embed Badge

![Health badge](/badges/orzcc-oxfordapi-wrapper/health.svg)

```
[![Health](https://phpackages.com/badges/orzcc-oxfordapi-wrapper/health.svg)](https://phpackages.com/packages/orzcc-oxfordapi-wrapper)
```

###  Alternatives

[kozz/laravel-guzzle-provider

Guzzle 5/6 Service Provider for Laravel

621.1M2](/packages/kozz-laravel-guzzle-provider)[inani/oxfordapi-wrapper

A PHP/Laravel Wrapper for oxford dictionary API

281.7k](/packages/inani-oxfordapi-wrapper)[brightfish/caching-guzzle

Cache HTTP responses through Guzzle middleware

1031.5k](/packages/brightfish-caching-guzzle)[behamin/service-proxy

for proxy or sending requests to other services with useful utilities

102.2k](/packages/behamin-service-proxy)

PHPackages © 2026

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