php-spellchecker icon indicating copy to clipboard operation
php-spellchecker copied to clipboard

🐘🎓📝 PHP Library providing an easy way to spellcheck multiple sources of text by many spellcheckers

Results 4 php-spellchecker issues
Sort by recently updated
recently updated
newest added

when I create execute of aspell its throw an exception $spell = Aspell::create(); $response = $spell->check('mispell', ['en_US']); logger(print_r($response, true)); ![image](https://user-images.githubusercontent.com/97216934/176908951-f08e5011-7567-4234-8bd4-33153905c4a0.png) ![image](https://user-images.githubusercontent.com/97216934/176909250-432984f7-6c4b-4cea-a7de-71ce54563a0e.png) ![image](https://user-images.githubusercontent.com/97216934/176909417-36c53be0-322d-4a96-87d9-404707474990.png) ![image](https://user-images.githubusercontent.com/97216934/176909489-cbb2d6da-0906-4997-b7cf-e21b7e1ff86c.png) ![image](https://user-images.githubusercontent.com/97216934/176909711-5ed90580-3f79-48e0-968d-ef4bfeb90350.png) **PHP 8: Window 10 Laravel 9...

bug

## Description This pull request introduces a caching system based on PSR-6 contract to improve the performance. > [!NOTE] > Initial implementation introduces file system caching adapter only ## Motivation...

## Detailed description I've submitted a PR here: https://github.com/peckphp/peck/pull/51 to add caching for `aspell->check()` using Symfony's caching component. I noticed this feature is part of your roadmap and was curious...

Hi Philippe, Thanks for this awesome library. It's saved my a fair amount of time :) I just wanted to share my current workaround for using a custom dictionary with...