-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.06 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
{
"name": "ely/yii2-tempmail-validator",
"description": "Yii2 validator to prevent using tempmail services or any variable domains",
"keywords": ["yii2", "email", "validation"],
"homepage": "https://github.com/elyby/yii2-tempmail-validator",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Ely.by team",
"email": "[email protected]"
},
{
"name": "ErickSkrauch",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"yiisoft/yii2": "*",
"daveearley/daves-email-validation-tool": "^1.2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"Ely\\Yii2\\": "src"
}
},
"scripts": {
"test": "phpunit"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}