-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
57 lines (56 loc) · 1.6 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
{
"name": "jprangenbergde/temporary-email-detection",
"type": "library",
"description": "Simple and clean detection SDK for temporary emails",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "Jens Prangenberg",
"email": "[email protected]"
}
],
"homepage": "https://temporary-email-detection.de",
"require": {
"php": "^7.4|^8.0|^8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.4.1"
},
"autoload": {
"psr-4": {
"TemporaryEmailDetection\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5.13",
"friendsofphp/php-cs-fixer": "^v3.6.0",
"phpstan/phpstan": "^0.12.99",
"phpstan/phpstan-phpunit": "^0.12.22",
"vimeo/psalm": "^4.20.0",
"psalm/plugin-phpunit": "^0.16.1",
"malukenho/mcbumpface": "^1.1.5"
},
"autoload-dev": {
"psr-4": {
"TemporaryEmailDetectionTests\\": "tests/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test",
"@analyze",
"@static-analysis"
],
"cs-check": "php-cs-fixer -vv --dry-run --using-cache=no fix",
"cs-fix": "php-cs-fixer --using-cache=no fix",
"test": "vendor/bin/phpunit --configuration phpunit.xml",
"analyze": "vendor/bin/phpstan analyse --configuration phpstan.neon.dist",
"static-analysis": "psalm --shepherd --stats"
},
"config": {
"allow-plugins": {
"malukenho/mcbumpface": true
}
}
}