-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.54 KB
/
Copy pathcomposer.json
File metadata and controls
56 lines (56 loc) · 1.54 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
49
50
51
52
53
54
55
56
{
"name": "heimrichhannot/contao-multi-step-registration",
"type": "contao-bundle",
"description": "Multi-step member registration content element for Contao.",
"license": "proprietary",
"require": {
"php": "^8.4",
"codefog/tags-bundle": "^3.4",
"contao/core-bundle": "5.7.*",
"contao/manager-plugin": "^2.13",
"doctrine/dbal": "^3.8 || ^4.0",
"symfony/form": "^7.4",
"symfony/http-foundation": "^7.4",
"symfony/mailer": "^7.4",
"symfony/mime": "^7.4",
"symfony/password-hasher": "^7.4",
"symfony/security-core": "^7.4",
"symfony/translation-contracts": "^3.0",
"symfony/validator": "^7.4",
"twig/twig": "^3.0"
},
"autoload": {
"psr-4": {
"HeimrichHannot\\MultiStepRegistration\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HeimrichHannot\\MultiStepRegistration\\Tests\\": "tests/"
}
},
"extra": {
"contao-manager-plugin": "HeimrichHannot\\MultiStepRegistration\\ContaoManager\\Plugin"
},
"require-dev": {
"contao/contao-rector": "dev-main",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^12.4",
"rector/rector": "^2.4",
"symplify/easy-coding-standard": "^12.6"
},
"scripts": {
"test": "phpunit"
},
"suggest": {
"symfony/ux-turbo": "Required by the optional multi_step_registration/ux-turbo.html.twig template variant."
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": false
}
}
}