Download the PHP package storagemadeeasy/contentdetectors without Composer

On this page you can find all versions of the php package storagemadeeasy/contentdetectors. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package contentdetectors

Content Detectors

This is a PHP package created by the Storage Made Easy team, that provides built in detectors to find specific types of content within a given content string

These content detectors are used as part of Storage Made Easy's Content Detection and PII Discovery features. Changes made here are pulled in up-stream to the Enterprise File Fabric.

Requirements

Using this library

Usage

``

Available Content Detectors

There are a number of detectors that this package supports. A list of connectors can be found in the src/Detectors directory.

Selecting Content Detectors in code

You do not have to use all of the content detectors that ship with this package. The DetectionManager class provides some methods for enabling and disabling some of the available content detectors.

The following is an example of the DetectionManager class interface.

``

Contributing to the project

All contributions to this project are welcome, and should be done through Pull Requests.

To contribute you'll first need to clone the repository.

`

Move into the code directory

Install Composer dependencies

To create a new Detector, open up the src/Detectors directory. Find an example detector like the Germany Passport detector (located at src/Detectors/Germany/Passoport.php), and clone this. We aim to keep all detectors under a specific group to make them easier to find, for example the Germany, UK or Bank groups.

Any detector that you make should implement the DetectorInterface. This specifies two methods, getRegularExpression and validateMatch.

The getRegularExpression method of your detector is called by the DetectionManager and should return a PCRE compatible regular expression. This regular expression is used to identify either exact or potential matches. You need to supply the Regular Expression flags. An example of this method for Credit Cards could be implemented as:

``

The validateMatch method is used as a callback for each match that is identified from the regular expression. This method provides you with an opportunity to validate the data that is matched. For example in the Credit Card context, you could use this to validate that the 13 to 19 digits that matched the regular expression is an actual credit card. In this method you can call external methods and services to validate the data. An example of using an external library would be:

``

In the example above, we are using an external library to validate the Credit Card, and then we are also supplying some additional metadata along with the match. In our case, when we find a Credit Card, we return a 'type' field that tells the client what type of Credit Card it is, e.g. Visa or Matercard.


All versions of contentdetectors with dependencies

PHP Build Version
Package Version
Requires bystones/nhs-validator Version dev-master
cmpayments/iban Version dev-master
inacho/php-credit-card-validator Version ^1.0
giggsey/libphonenumber-for-php Version ^8.9
skilla/validator-cif-nif-nie Version 1.0.6
dprmc/cusip Version dev-master
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package storagemadeeasy/contentdetectors contains the following files

Loading the files please wait ....