Skip to content
Snippets Groups Projects
  • Released date
  • Created date

Evidence collection

Collected 1 year ago

Release notes

Changelog:

  • fix email address validation

Release notes

Changelog:

  • switch to github-actions for CI
  • implement code climate analysis
  • execute tests on php 8.0 and add it to composer config

NOTE: php 7.0 is not tested anymore. It is still compatible but not maintained.

Release notes

Changelog

  • make validators and filters invokable

Release notes

Changelog

  • test only for integer when string is numeric (solves #17)
  • execute Field::filter() in Field::validate() to ensure validate the filtered value (solves #19)

Release notes

Changelog

  • add validator between
  • add validator date
  • allow DateTime objects in date validator
  • pass context to validator in not validator (solves #15)
  • rename Date validator to DateTime
  • add DateTime filter
  • add after validator (solves #13)
  • add validator Before (solves #12)
  • add credit card validator
  • add maestro and dinersclub
  • add inverse error for credit card validation …
  • add missing inverse errors
  • add filter ConvertCase
  • add url validator
  • add preg replace filter
  • convert boolean and null params
  • add alphanumeric validator
  • add slug validator

Release notes

Changelog

  • store errors in InvalidValue exceptions
  • added filters and validators for integer, numeric and boolean
  • catch InvalidValue exceptions in $field->filter() and return the errors in $field->getErrors()
  • added validators for ip address, is array and in array
  • added filter escape
  • implemented Gate::assert() for quick validation and filtering

Release notes

Changelog

  • added an error object for better handling (solved #1)

Release notes

Change log

  • added required attribute to field
  • added emailAddress validator
  • added pregMatch validator
  • added equals validator