| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "name": "death_satan/hyperf-validate",
- "type": "library",
- "license": "MIT",
- "keywords": [
- "php",
- "hyperf",
- "validate"
- ],
- "description": "Hyperf Validate",
- "autoload": {
- "psr-4": {
- "DeathSatan\\Hyperf\\Validate\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "HyperfTest\\": "tests"
- }
- },
- "require": {
- "php": ">=8.0",
- "hyperf/config": "~3.0",
- "hyperf/db-connection": "~3.0",
- "hyperf/di": "~3.0",
- "hyperf/framework": "~3.0",
- "hyperf/validation": "~3.0"
- },
- "require-dev": {
- "friendsofphp/php-cs-fixer": "^3.0",
- "hyperf/testing": "~3.0",
- "mockery/mockery": "^1.0",
- "phpstan/phpstan": "^1.0",
- "swoole/ide-helper": "^4.5"
- },
- "suggest": {
- "swow/swow": "Required to create swow components."
- },
- "minimum-stability": "dev",
- "prefer-stable": true,
- "config": {
- "optimize-autoloader": true,
- "sort-packages": true
- },
- "scripts": {
- "test": "co-phpunit -c phpunit.xml --colors=always",
- "analyse": "phpstan analyse --memory-limit 1024M -l 0 ./src",
- "cs-fix": "php-cs-fixer fix $1"
- },
- "extra": {
- "hyperf": {
- "config": "DeathSatan\\Hyperf\\Validate\\ConfigProvider"
- }
- }
- }
|