├── .cs.php ├── .github └── workflows │ └── build.yml ├── LICENSE ├── README.md ├── composer.json ├── phpcs.xml ├── phpstan.neon └── src ├── Converter ├── CakeValidationConverter.php ├── ValidationConverterInterface.php └── ValitronValidationValidationConverter.php ├── Encoder ├── EncoderInterface.php └── JsonEncoder.php ├── Exception └── ValidationException.php ├── Factory └── CakeValidationFactory.php ├── Middleware └── ValidationExceptionMiddleware.php ├── Regex └── ValidationRegex.php ├── Transformer ├── ErrorDetailsResultTransformer.php └── ResultTransformerInterface.php ├── ValidationError.php └── ValidationResult.php /.cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/.cs.php -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/Converter/CakeValidationConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/src/Converter/CakeValidationConverter.php -------------------------------------------------------------------------------- /src/Converter/ValidationConverterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/src/Converter/ValidationConverterInterface.php -------------------------------------------------------------------------------- /src/Converter/ValitronValidationValidationConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/src/Converter/ValitronValidationValidationConverter.php -------------------------------------------------------------------------------- /src/Encoder/EncoderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/src/Encoder/EncoderInterface.php -------------------------------------------------------------------------------- /src/Encoder/JsonEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/src/Encoder/JsonEncoder.php -------------------------------------------------------------------------------- /src/Exception/ValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/src/Exception/ValidationException.php -------------------------------------------------------------------------------- /src/Factory/CakeValidationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/src/Factory/CakeValidationFactory.php -------------------------------------------------------------------------------- /src/Middleware/ValidationExceptionMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/src/Middleware/ValidationExceptionMiddleware.php -------------------------------------------------------------------------------- /src/Regex/ValidationRegex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/src/Regex/ValidationRegex.php -------------------------------------------------------------------------------- /src/Transformer/ErrorDetailsResultTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/src/Transformer/ErrorDetailsResultTransformer.php -------------------------------------------------------------------------------- /src/Transformer/ResultTransformerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/src/Transformer/ResultTransformerInterface.php -------------------------------------------------------------------------------- /src/ValidationError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/src/ValidationError.php -------------------------------------------------------------------------------- /src/ValidationResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selective-php/validation/HEAD/src/ValidationResult.php --------------------------------------------------------------------------------