-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (40 loc) · 1023 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
{
"name": "jtn/laravel-validate-email-domain",
"description": "Validates email addresses belong to the given domain",
"type": "library",
"keywords": [ "laravel", "validation", "email", "email domain", "validator" ],
"require": {
"illuminate/validation": "^5.5",
"illuminate/translation": "^5.5"
},
"require-dev": {
"php": ">=7.0.0",
"phpunit/phpunit": "6.2.*"
},
"autoload": {
"psr-4": {
"Jtn\\EmailDomain\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jtn\\EmailDomain\\Tests\\": "tests/"
}
},
"scripts": {
"cs-fix": "php-cs-fixer fix .",
"test": "phpunit --colors=always"
},
"license": "Apache-2.0",
"authors": [
{
"name": "Jonathan Janssens",
"email": "jonathan.janssens@gmail.com"
}
],
"config": {
"platform": {"php": "7.0"},
"preferred-install": "dist",
"sort-packages": true
}
}