-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·48 lines (48 loc) · 1.08 KB
/
composer.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.08 KB
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": "ublaboo/mailing",
"type": "library",
"description": "Extension for Nette Framework: Easy & object-oriented way of sending & logging mails",
"keywords": ["mail", "mailing", "log", "nette", "extension"],
"homepage": "https://ublaboo.org/mailing",
"license": ["MIT"],
"support": {
"issues": "https://github.com/ublaboo/mailing/issues"
},
"authors": [
{
"name": "Pavel Janda",
"homepage": "http://paveljanda.com"
}
],
"autoload": {
"psr-4": {
"Ublaboo\\Mailing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ublaboo\\Mailing\\Tests\\": "tests/"
}
},
"require": {
"php": ">= 7.1",
"nette/utils": "~2.4 || ~3.0 || ~4.0",
"nette/di": "~2.4 || ~3.0",
"nette/application": "~2.4 || ~3.0",
"nette/mail": "~2.4 || ~3.0 || ~4.0",
"latte/latte": "~2.4 || ~3.0"
},
"require-dev": {
"nette/tester": "~2.0",
"mockery/mockery": "~1.0",
"tracy/tracy": "^2.4",
"phpstan/phpstan": "^1.4",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-nette": "^1.0"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}