-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.29 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
{
"name": "leo108/email-fake-filter",
"type": "library",
"description": "Email Fake Filter is a PHP library that allows you to check if an email address is a disposable/one-time email address.",
"authors": [
{
"name": "leo108",
"email": "[email protected]"
}
],
"license": "MIT",
"autoload": {
"psr-4": {
"EmailFakeFilter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EmailFakeFilter\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"phpstan/phpstan": "^1.10",
"thecodingmachine/phpstan-safe-rule": "^1.2",
"thecodingmachine/phpstan-strict-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/extension-installer": "^1.3",
"spatie/phpunit-snapshot-assertions": "^5.0",
"laravel/pint": "^1.10"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"phpstan": "XDEBUG_MODE=off vendor/bin/phpstan analyse --memory-limit=4096M",
"phpunit": "vendor/bin/phpunit",
"pint": "vendor/bin/pint"
}
}