https://github.com/sysvale/validation-rules
A Laravel library with useful custom validation rules
https://github.com/sysvale/validation-rules
Last synced: about 1 year ago
JSON representation
A Laravel library with useful custom validation rules
- Host: GitHub
- URL: https://github.com/sysvale/validation-rules
- Owner: Sysvale
- Created: 2020-11-24T19:42:42.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-04-18T18:52:11.000Z (about 2 years ago)
- Last Synced: 2025-04-24T03:47:52.074Z (about 1 year ago)
- Language: PHP
- Size: 83 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Validation Rules
A Laravel library with useful custom validation rules
## Installation
```bash
composer require sysvale/validation-rules
```
## Translations
If you wish to edit the package error messages, you can publish lang file
```bash
php artisan vendor:publish --tag="sysvale-validation-rules-messages"
```
## Development
- Set up environment
```bash
docker-composer up -d
```
- Install dependencies
```bash
./docker-exec.sh composer update
```
- Run tests
```bash
./docker-exec.sh vendor/bin/phpunit
```