-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1022 Bytes
/
composer.json
File metadata and controls
48 lines (48 loc) · 1022 Bytes
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
{
"name": "webchemistry/emails",
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.3",
"nette/utils": "^3.0 || ^4.0"
},
"autoload": {
"psr-4": {
"WebChemistry\\Emails\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "phpstan analyse --memory-limit=1G",
"tests": "phpunit tests"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"symfony/http-client": "^7.2",
"mailgun/mailgun-php": "^4.3",
"nyholm/psr7": "^1.8",
"aws/aws-sdk-php": "^3.338",
"doctrine/orm": "^3.3",
"doctrine/dbal": "^3.6",
"phpunit/phpunit": "^11.5",
"webchemistry/disposable-emails": "^1.0",
"guzzlehttp/psr7": "^2.7",
"symfony/clock": "^7.2",
"nette/di": "^3.2",
"symfony/console": "^7.2",
"symfony/event-dispatcher": "^7.2",
"nette/application": "^3.2",
"symfony/http-kernel": "^7.2",
"symfony/config": "^7.2",
"symfony/dependency-injection": "^7.2"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}