tyrellsys / cakephp-validator
This package is abandoned and no longer maintained.
No replacement package was suggested.
There is no license information available for the latest version (v5.0.0) of this package.
CakePHP4 Validator that set the validation message
Package info
github.com/tyrellsys/cakephp-validator
Type:cakephp-plugin
pkg:composer/tyrellsys/cakephp-validator
v5.0.0
2025-04-21 03:38 UTC
Requires
- php: >=8.1
- cakephp/cakephp: ^5.0.1
Requires (Dev)
- cakephp/cakephp-codesniffer: ^5.0
- phpunit/phpunit: ^10.1.0
This package is not auto-updated.
Last update: 2025-05-13 05:06:39 UTC
README
CakePHP4 Validator that set the validation message
Requirements
The master branch has the following requirements:
- CakePHP >4.0.0
- PHP 7.2 or greater
Installation
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer require tyrellsys/cakephp-validator
no need plugin load
Config
no configuration
Model validation
namespace App\Model\Table; ... class PostsTable extends Table { protected $_validatorClass = \Tyrellsys\CakePHPValidator\Validation\Validator::class; }