| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {
- "name": "hyperf/validation",
- "type": "library",
- "license": "MIT",
- "keywords": [
- "validation",
- "hyperf"
- ],
- "description": "hyperf validation",
- "autoload": {
- "psr-4": {
- "Hyperf\\Validation\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "HyperfTest\\Validation\\": "tests"
- }
- },
- "require": {
- "php": ">=7.2",
- "ext-swoole": ">=4.3",
- "egulias/email-validator": "^2.1",
- "hyperf/command": "~2.0.0",
- "hyperf/contract": "~2.0.0",
- "hyperf/database": "~2.0.0",
- "hyperf/devtool": "~2.0.0",
- "hyperf/di": "~2.0.0",
- "hyperf/framework": "~2.0.0",
- "hyperf/http-server": "~2.0.0",
- "hyperf/utils": "~2.0.0",
- "hyperf/translation": "~2.0.0",
- "nesbot/carbon": "^2.21",
- "psr/container": "^1.0",
- "psr/event-dispatcher": "^1.0",
- "psr/http-message": "^1.0"
- },
- "require-dev": {
- "friendsofphp/php-cs-fixer": "^2.14",
- "hyperf/db-connection": "~2.0.0",
- "hyperf/testing": "~2.0.0",
- "mockery/mockery": "^1.2"
- },
- "config": {
- "sort-packages": true
- },
- "scripts": {
- "test": "co-phpunit -c phpunit.xml --colors=always",
- "cs-fix": "php-cs-fixer fix $1"
- },
- "extra": {
- "branch-alias": {
- "dev-master": "2.0-dev"
- },
- "hyperf": {
- "config": "Hyperf\\Validation\\ConfigProvider"
- }
- }
- }
|