-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (57 loc) · 1.52 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
{
"name": "kdn/yii2-domain-validator",
"description": "Domain name validator for Yii 2.",
"type": "yii2-extension",
"keywords": [
"yii2",
"extension",
"validator",
"domain"
],
"readme": "./README.md",
"license": "MIT",
"authors": [
{
"name": "Dmitry Kulikov",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/dmitry-kulikov/yii2-domain-validator/issues",
"source": "https://github.com/dmitry-kulikov/yii2-domain-validator"
},
"require": {
"php": ">=5.4.0",
"ext-ctype": "*",
"ext-mbstring": "*",
"yiisoft/yii2": "2.*"
},
"require-dev": {
"phpunit/phpunit": ">=4.0 <10.0",
"phpunit/php-invoker": ">=1.0 <4.0"
},
"suggest": {
"ext-intl": "this extension is needed for IDN support and to run all tests, otherwise some tests will be skipped",
"ext-runkit": "this extension is needed to run all tests, otherwise some tests will be skipped"
},
"autoload": {
"psr-4": {
"kdn\\yii2\\validators\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"kdn\\yii2\\validators\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"fxp-asset": {
"pattern-skip-version": "(-build|-patch)",
"vcs-driver-options": {
"github-no-api": true
}
}
}
}