-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 946 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
40
41
42
43
44
{
"name": "granam/mautic-czech-vocative-bundle",
"license": "MIT",
"description": "Modifier for first names to convert their base form to vocative in czech",
"type": "mautic-plugin",
"keywords": [
"mautic",
"plugin",
"integration",
"vocative",
"salutation",
"czech"
],
"extra": {
"install-directory-name": "GranamCzechVocativeBundle"
},
"autoload": {
"psr-4": {
"MauticPlugin\\GranamCzechVocativeBundle\\": "."
}
},
"autoload-dev": {
"psr-4": {
"MauticPlugin\\GranamCzechVocativeBundle\\Tests\\": "Tests"
}
},
"require": {
"php": ">=7.4",
"granam/czech-vocative": "^2.2",
"mautic/core-lib": ">=3.0"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"mockery/mockery": "~1.0",
"rector/rector": "^0.14.2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"symfony/flex": true
}
}
}