chencha / autosuggest
Library to quickly check and provide suggestions for words
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/chencha/autosuggest
Requires
- php: >=5.4.0
- illuminate/config: 4.2.*
- illuminate/support: 4.2.*
This package is not auto-updated.
Last update: 2025-10-07 09:09:20 UTC
README
##Autosuggest The package provides an OOP wrapper around pspell to enable suggestions
##Installation
"require": {
"chencha/autosuggest": "dev-master"
}
Next, update app/config/app.php to include a reference to this package's service provider in the providers array.
'providers' => [
'Chencha\Autosuggest\AutosuggestServiceProvider'
]
Add the alias
'aliases' => [
'Autosuggest'=>'Chencha\Autosuggest\Facades\Autosuggest'
]
##Usage
To use the package simply:
Autosuggest::check($word);
Autosuggest::suggestions($word);