2017 © Pedro Peláez
 

library dictionaryapi

On-demand definition source.

image

willskates/dictionaryapi

On-demand definition source.

  • Tuesday, January 22, 2013
  • by WillSkates
  • Repository
  • 2 Watchers
  • 0 Stars
  • 5 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

Dictionary API

A set of classes that allows a developer to be able to fetch definitions for words and terms., (*1)

NOTE: This library requires composer. You can find out more over at http://getcomposer.org. There is also a windows installer: https://github.com/johnstevenson/composer-setup or if you are using a unix system (MAC, Linux etc. ) you can find some instructions here: http://getcomposer.org/doc/00-intro.md, (*2)

Clone or download the contents of this repository onto your local machine, setup your project as you normally would and add the following to the "require" section of your composer.json file:, (*3)

"willskates/dictionaryapi": "v1.0.0"

Make sure that you also set the minimum-stability to 'dev'., (*4)

"minimum-stability": "dev"

After you have done this, run the command:, (*5)

composer install

into your command line from within the specified folder., (*6)

From then on you may use the dictionary like this:

$dictionary = new WillSkates\Dictionary();

try {
    $word = $dictionary->word('hello');

    echo $word->getDefinition(); // array(0=>'A greeting ...');
    echo $word->getFirstDefinition() // 'A greeting ...';
    echo $word->getTranslation('fr'); //Bonjour.

    echo $dictionary->word('hello'); // 'A greeting ...' (uses __toString()).
    echo $dictionary->word('hello', 'en'); // 'A greeting ...' (uses __toString()).

    echo $dictionary->word('hello')->translate('de')[0]['translation']; //Hallo :D

} catch ( WillSkates\Dictionary\Exceptions\FetchException $e ) {
    echo "Oh no, we couldnt get any information for 'hello'";
} catch ( WillSkates\Dictionary\Exceptions\ConnectionProblemException $e ) {
    echo "oh no the api is not available.";
} catch ( WillSkates\Dictionary\Exceptions\TranslationFetchException $e ) {
    echo "Just.... dont try to translate an english word into english.";
}

Test Status

Build Status, (*7)

Next

The plan is to release the ability to define and translate words first. After that's complete
I will also work towards releasing methods which allow you to view all of the words that begin with a given letter.
Those lists will also be paginated.

####Note:

    This functionality is already in the api but not planned for this phase of the wrapper, You can achieve that by using http://dictionary.stuffby.ws/letter/a for example.
    Enjoy!

The Versions

22/01 2013

dev-master

9999999-dev http://github.com/WillSkates/dictionary-api-wrapper

On-demand definition source.

  Sources   Download

BSD

The Requires

 

translation dictionary definition

22/01 2013

v1.0.1

1.0.1.0 http://github.com/WillSkates/dictionary-api-wrapper

On-demand definition source.

  Sources   Download

BSD

The Requires

 

translation dictionary definition

22/01 2013

v1.0.1-RC1

1.0.1.0-RC1 http://github.com/WillSkates/dictionary-api-wrapper

On-demand definition source.

  Sources   Download

BSD

The Requires

 

translation dictionary definition

21/01 2013

v1.0.0

1.0.0.0 http://github.com/WillSkates/dictionary-api-wrapper

On-demand definition source.

  Sources   Download

BSD

The Requires

 

translation dictionary definition