djunehor / laravel-grammar
deduce part of speech of a word
2.0.0
2019-11-24 22:06 UTC
Requires
- php: ~7.0
Requires (Dev)
- illuminate/contracts: ^5.8.15|^6.0
- illuminate/database: ^5.8.15|^6.0
- illuminate/filesystem: ^5.8.15|^6.0
- illuminate/support: ^5.8.15|^6.0
- mockery/mockery: ^1.0
- orchestra/testbench: 3.8.*|4.*
- phpunit/phpunit: ^8.0
README
Laravel Grammar allows you detect the part of speech of a word. It returns an array of parts of speech a word belong to.
Installation
Step 1
You can install the package via composer:
composer require djunehor/laravel-grammar
Laravel 5.5 and above
The package will automatically register itself, so you can start using it immediately.
Laravel 5.4 and older
In Laravel version 5.4 and older, you have to add the service provider in config/app.php
file manually:
'providers' => [ // ... Djunehor\Grammar\GrammarServiceProvider::class, ];
Lumen
After installing the package, you will have to register it in bootstrap/app.php
file manually:
// Register Service Providers // ... $app->register(Djunehor\Grammar\GrammarServiceProvider::class); ];
Step 2 - Publishing files
Run:
php artisan vendor:publish --tag=laravel-grammar
This will move the migration file, seeder file and config file to your app. You can change the entries table name in config/laravel-grammar.php
Step 3 - Publishing files
- Run
php artisan migrate
to create the table. - Run
php artisan db:seed --class=LaravelGrammarSeeder
to seed table
Usage
use Djunehor\Grammar\Word;` $grammar = new Word();
Get All Parts of Speech
$partsOfSpeech = $grammar->getPartsOfSpeech(); // ['Preposition', 'Noun', 'Pronoun', 'Adverb', 'Adjective', 'Verb', 'Interjection', 'Conjunction']
Get Word part of Speech
$word = 'boy'; $partsOfSpeech = $grammar->getWordPartOfSpeech($word); // ['Noun']
Check if is noun
$word = 'boy'; $grammar = new Word($string); $isNoun = $grammar->isNoun(); // true
Using Facade
In order to use the Grammar facade:
- First add
'Grammar' => GrammarFacade::class,
to aliases inconfig/app.php
- Then use like
\Grammar::getPartsOfSpeech();
Contributing
- Fork this project
- Clone to your repo
- Make your changes and run tests
composer test
- Push and create Pull request