-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·70 lines (70 loc) · 1.74 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "gemini/kk-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",
"egulias/email-validator": "^3.0",
"hyperf/contract": "~2.2.0",
"hyperf/database": "~2.2.0",
"hyperf/di": "~2.2.0",
"hyperf/framework": "~2.2.0",
"hyperf/http-server": "~2.2.0",
"hyperf/translation": "~2.2.0",
"hyperf/utils": "~2.2.0",
"kk/validation": "dev-master",
"nesbot/carbon": "^2.21",
"psr/container": "^1.0|^2.0",
"psr/event-dispatcher": "^1.0",
"psr/http-message": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.2-dev"
},
"hyperf": {
"config": "Hyperf\\Validation\\ConfigProvider"
}
},
"repositories": {
"kk": {
"type": "path",
"url": "../validation/"
}
},
"replace": {
"hyperf/validation": "2.2.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"hyperf/db-connection": "^2.2",
"hyperf/testing": "^2.2",
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"test": "co-phpunit -c phpunit.xml --colors=always",
"cs-fix": "php-cs-fixer fix $1"
}
}