-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 1.07 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
{
"name": "phant/email-sender",
"description": "Manage email sending easily",
"license": "MIT",
"keywords": ["email sender manager", "email sender component", "email sender service", "email sender", "email check", "email checker", "email verify", "email verifier", "email validation"],
"authors": [
{
"name": "Lenny ROUANET",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"phant/data-structure": "4.*",
"phant/domain-name": "2.*",
"guzzlehttp/guzzle": "^7.4",
"twig/twig": "^3.8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer fix ./ --rules=@PSR12",
"analyse": "vendor/bin/phpstan analyse component --memory-limit=4G",
"test": "vendor/bin/phpunit test --testdox"
},
"autoload": {
"psr-4": {
"Phant\\EmailSender\\": "component/"
}
}
}