-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
44 lines (44 loc) · 1.21 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
{
"name": "devnix/mailcheck",
"description": "Provide email suggestions based on multiple dictionaries",
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "DevNIX",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"egulias/email-validator": "^2.1",
"utopia-php/domains": "^1.1"
},
"autoload": {
"psr-4": {
"Devnix\\Mailcheck\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Devnix\\Mailcheck\\Tests\\": "tests/"
}
},
"require-dev": {
"phpstan/phpstan": "^0.12.78",
"friendsofphp/php-cs-fixer": "^2.16",
"symfony/phpunit-bridge": "^5.2"
},
"scripts": {
"lint": "./vendor/bin/php-cs-fixer fix --diff --dry-run",
"phpstan": "./vendor/bin/phpstan analyse -l 4 src tests",
"phpunit": "./vendor/bin/simple-phpunit",
"fix": "./vendor/bin/php-cs-fixer fix",
"test": [
"@composer run lint",
"@composer run phpstan",
"@composer run phpunit"
],
"import": "@php ./vendor/utopia-php/domains/data/import.php"
}
}