This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 2.03 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
58
59
60
61
62
63
64
{
"name": "marcel-strahl/temporary-email-validator-bundle",
"description": "add temporary email address validator for symfony",
"keywords": ["symfony", "temporary email", "email", "temporary", "validator"],
"type": "symfony-bundle",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "marcelstrahl",
"email": "[email protected]",
"role": "Maintainer",
"homepage": "https://www.marcel-strahl.de"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/Dropelikeit/temporary-email-validator-symfony/issues"
},
"autoload": {
"psr-4": {
"MarcelStrahl\\TemporaryEmailValidatorBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MarcelStrahl\\TemporaryEmailValidatorBundle\\Tests\\": "tests/"
}
},
"scripts": {
"cs-check": "php-cs-fixer -v --dry-run --using-cache=no fix",
"cs-fix": "php-cs-fixer --using-cache=no fix",
"test": "phpunit --configuration phpunit.xml.dist",
"analyze": "vendor/bin/phpstan analyse --configuration phpstan.neon.dist",
"analyze-add": "vendor/bin/phpstan analyse --configuration phpstan.neon.dist --error-format baselineNeon app/ tests/ > phpstan-baseline.neon"
},
"require": {
"php": "^7.4|^8.0|^8.1",
"doctrine/annotations": "^1.13",
"jprangenbergde/temporary-email-detection": "^1.3",
"symfony/dependency-injection": "^5.3|^5.4|^6.0",
"symfony/framework-bundle": "^5.3|^5.4|^6.0",
"symfony/translation": "^5.3|^5.4|^6.0",
"symfony/validator": "^5.3|^5.4|^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
"phpstan/phpstan": "^1.5",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-symfony": "^1.1",
"phpstan/phpstan-webmozart-assert": "^1.1",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^5.3|^5.4|^6.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"sort-packages": true
}
}