-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 1.09 KB
/
composer.json
File metadata and controls
34 lines (34 loc) · 1.09 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
{
"name": "esit/valueobjects",
"description": "Bei diesem Paket handelt es sich um eine Sammlung an Wertobjekten. Mit den Wertobjekten kann primitiven Datentypen eine Bedeutung verliehen werden. Es kann so sichergestellt werden, dass es sich z.B. bei einem String um einen Geldbetrag, eine E-Mail-Adresse, IBAN, ISBN, ... handelt.",
"license": "LGPL-3.0-or-later",
"type": "library",
"authors": [
{
"name": "Patrick Froch",
"email": "info@easySolutionsIT.de",
"homepage": "https://easySolutionsIT.de",
"role": "Developer"
}
],
"support": {
"email": "info@easySolutionsIT.de"
},
"require": {
"php": "~8.1",
"contao/core-bundle": "^4.13 || ~5.0",
"ext-bcmath": "*"
},
"require-dev": {
"phpunit/phpunit": "~9.6",
"symplify/easy-coding-standard": "^12.1"
},
"autoload": {
"psr-4": {
"Esit\\Valueobjects\\": ""
}
},
"extra": {
"contao-manager-plugin": "Esit\\Valueobjects\\Classes\\Contao\\Manager\\Plugin"
}
}