-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f0e611c
commit ccb78c1
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,21 @@ | ||
# Wordnet php wrapper | ||
|
||
<hr/> | ||
WordNet® is a large lexical database of English. Nouns, verbs, adjectives and adverbs are grouped into sets of cognitive | ||
synonyms (synsets), each expressing a distinct concept. | ||
|
||
As the result returned from wordent is in human-readable format, this library helps using the result in your php | ||
projects by converting it to objects. | ||
|
||
## Requirements | ||
|
||
<hr/> | ||
The library doesn't contain wordnet and its required to install it first. | ||
|
||
## Examples | ||
|
||
<hr/> | ||
``` | ||
Wordnet::create()->search('cat'); | ||
``` | ||
|