-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.09 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
35
36
37
{
"name": "esit/cryptography",
"description": "Es handelt sich um eine Erweiterung für das Open Source CMS Contao, die es ermöglicht, Werte zu ver- und entschlüsseln.",
"license": "LGPL-3.0-or-later",
"type": "contao-bundle",
"authors": [
{
"name": "Patrick Froch",
"email": "[email protected]",
"homepage": "http://easySolutionsIT.de",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/eS-IT/cryptography/issues",
"docs": "https://github.com/eS-IT/cryptography/blob/main/README.md"
},
"readme": "README.md",
"require": {
"php": "~8.0",
"contao/core-bundle": "~4.9|^5.1",
"ext-openssl": "*"
},
"require-dev": {
"contao/test-case": "~4.9|^5.1",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Esit\\Cryptography\\": ""
}
},
"extra": {
"contao-manager-plugin": "Esit\\Cryptography\\Classes\\Contao\\Manager\\Plugin"
}
}