2017-25 © Pedro Peláez
 

library stop-words

A library for managing and filtering text with stop words

image

axisofstevil/stop-words

A library for managing and filtering text with stop words

  • Monday, July 25, 2016
  • by stevenmaguire
  • Repository
  • 3 Watchers
  • 8 Stars
  • 55,451 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 6 % Grown

The README.md

A library for managing and filtering text with stop words

Latest Version on Packagist Tests Total Downloads, (*1)

Installation

You can install the package via composer:, (*2)

composer require axisofstevil/stop-words

Usage

$filter = new Axisofstevil\StopWords\Filter();
echo $filter->cleanText('A Walk to Remember'); // 'Walk Remember'

$filter->setWords(array('a','walk','to'));
echo $filter->cleanText('A Walk to Remember'); // 'Remember'

$filter->mergeWords(array('remember'));
echo $filter->cleanText('A Walk to Remember'); // ''

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently., (*3)

Contributing

Please see CONTRIBUTING for details., (*4)

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities., (*5)

Credits

License

The MIT License (MIT). Please see License File for more information., (*6)

The Versions

25/07 2016

dev-master

9999999-dev https://github.com/axisofstevil/stop-words

A library for managing and filtering text with stop words

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

filtering package stop words

29/12 2014

0.1.0

0.1.0.0 https://github.com/axisofstevil/stop-words

A library for managing and filtering text with stop words

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

filtering package stop words