Download the PHP package zumba/csv-policy without Composer
On this page you can find all versions of the php package zumba/csv-policy. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download zumba/csv-policy
More information about zumba/csv-policy
Files in zumba/csv-policy
Package csv-policy
Short Description Simple, policy-driven csv rules validation
License MIT
Homepage http://engineering.zumba.com
Informations about the package csv-policy
CsvPolicy
CsvPolicy is a simple, policy-based validation library for CSV files. Create rules for columns in a CSV file and the validator will load them, parse the file, and report rule violations.
CsvPolicy requires PHP >= 5.4
Example
Suppose you have the following business requirements for a CSV file named products.csv
that will be uploaded to your application:
- It must contain the following column names:
id
,value
- It must contain at least one of the following columns:
upc
,code
,stock
- The
id
column's values must be unique. - The
value
column must only contain numeric values
CsvPolicy allows you to model these rules as classes. Required and optional fields are handled by the Validator
class directly, so we only need to define rules for the id
column and the value
column.
CsvPolicy uses Traits for common validation operations (e.g. checking all values in a column are unique). The folowing rule will ensure that the values in the id
field are unique:
You can override the Rule::validationLogic
method to define custom validation for that column. The validator will use this method to check all of the values in the CSV for the column.
Finally, you configure your validator and use it to check if the CSV file is valid: