-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
composer.json
109 lines (109 loc) · 2.84 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "evoweb/sf-register",
"type": "typo3-cms-extension",
"description": "Frontend User Registration: Offers the possibility to maintain the fe_user data in frontend.",
"homepage": "https://www.evoweb.de",
"license": [
"GPL-2.0-or-later"
],
"keywords": [
"TYPO3 CMS",
"User registration",
"Frontend",
"Edit user data",
"Double-optin",
"Delete account",
"Resend optin mail"
],
"support": {
"source": "https://github.com/evoWeb/sf_register",
"issues": "https://github.com/evoWeb/sf_register/issues",
"docs": "https://docs.typo3.org/p/evoweb/sf-register/main/en-us/"
},
"config": {
"vendor-dir": "Build/vendor",
"bin-dir": "bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"require": {
"php": "^8.1",
"typo3/cms-backend": "^13.2 || 13.3.x-dev || dev-main",
"typo3/cms-core": "^13.2 || 13.3.x-dev || dev-main",
"typo3/cms-extbase": "^13.2 || 13.3.x-dev || dev-main",
"typo3/cms-fluid": "^13.2 || 13.3.x-dev || dev-main",
"typo3/cms-frontend": "^13.2 || 13.3.x-dev || dev-main",
"doctrine/annotations": "^1.13.3 || ^2.0",
"doctrine/dbal": "^4.1",
"psr/event-dispatcher": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^2.0 || ^3.0",
"symfony/console": "^7.1",
"webmozart/assert": "^1.11.0"
},
"require-dev": {
"typo3/cms-install": "^13.2 || 13.3.x-dev || dev-main",
"friendsofphp/php-cs-fixer": "^3.64.0",
"friendsoftypo3/phpstan-typo3": "^0.9.0",
"phpstan/phpstan": "^1.12.5",
"phpunit/phpunit": "^11.0.3",
"typo3/testing-framework": "dev-main"
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"evoweb/recaptcha": "^14.0",
"sjbr/static-info-tables": "dev-master",
"typo3/cms-install": "^13.2 || 13.3.x-dev || dev-main"
},
"extra": {
"typo3/cms": {
"extension-key": "sf_register",
"app-dir": "Build",
"web-dir": "Build/Web"
}
},
"scripts": {
"prepare-release": [
"rm -rf .Build",
"rm -rf .github",
"rm -rf Tests",
"rm .gitattributes",
"rm .gitignore",
"sed -i \"s/version' => '.*'/version' => '$(echo ${GITHUB_REF} | cut -d / -f 3)'/\" ext_emconf.php\n"
],
"post-install-cmd": [
"ln -sf vendor/typo3/testing-framework/Resources/Core/Build/ Build/phpunit;"
],
"post-update-cmd": [
"@post-install-cmd"
],
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"autoload": {
"psr-4": {
"Evoweb\\SfRegister\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Evoweb\\SfRegister\\Tests\\": "Tests/"
}
},
"repositories": {
"sr-freecap": {
"url": "https://github.com/garbast/sr-freecap.git",
"type": "git"
},
"static_info_tables": {
"url": "https://github.com/garbast/static_info_tables.git",
"type": "git"
}
}
}