-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 994 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
37
38
39
{
"name": "byrokrat/giroappmailerplugin",
"description": "Mailer plugin for GiroApp",
"keywords": ["giroapp"],
"homepage": "https://github.com/byrokrat/giroapp-mailer-plugin",
"type": "project",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Hannes Forsgård",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"byrokrat\\giroapp\\Mailer\\": ["src/"]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "7.4.0"
}
},
"require": {
"php": "^7.4 || ^8.0",
"ext-intl": "*",
"pimple/pimple": "^3.0",
"genkgo/mail": "^2.2",
"hkod/frontmatter": "^1",
"mustache/mustache": "^2.5",
"symfony/yaml": "^5"
},
"require-dev": {
"byrokrat/giroapp": "^1@beta",
"roave/security-advisories": "dev-latest"
}
}