-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (36 loc) · 970 Bytes
/
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
{
"name": "tecpresso/laravel-allow-non-rfc-compliant-email-patch",
"description": "Allow non-rfc compliant email (ex. example..@example.com)",
"type": "library",
"require": {
"illuminate/support": ">=5.5.0||6.0.0||7.0.0",
"php" : ">=7.0",
"swiftmailer/swiftmailer": "~5.4|~6.0"
},
"require-dev": {
"phpunit/phpunit": ">=6.5 || >=7.1 || >=8.0",
"orchestra/testbench": ">=3.5 || >=4.0"
},
"license": "MIT",
"authors": [
{
"name": "mikkame",
"email": "matchasoft.jp@gmail.com"
}
],
"autoload": {
"psr-4": {
"Tecpresso\\AllowNonRfcComplaintEmailPatch\\": "src/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Tecpresso\\AllowNonRfcComplaintEmailPatch\\AllowNonRfcComplaintEmailPatchServiceProvidor"
]
}
}
}