-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 974 Bytes
/
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
{
"name": "xu767142206/x-validated",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"hyperf",
"validated"
],
"description": "Request Data Validated For Hyperf",
"autoload": {
"psr-4": {
"XValidated\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\": "tests"
}
},
"require": {
"php": ">=8.0",
"ext-swoole": ">=4.5",
"hyperf/validation": "~3.0.0"
},
"minimum-stability": "dev",
"config": {
"sort-packages": true
},
"scripts": {
"test": "co-phpunit -c phpunit.xml --colors=always",
"analyze": "phpstan analyse --memory-limit 300M -l 0 ./src",
"cs-fix": "php-cs-fixer fix $1"
},
"extra": {
"branch-alias": {
"dev-main": "2.0-dev"
},
"hyperf": {
"config": "XValidated\\ConfigProvider"
}
}
}