forked from TYPO3-CMS/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
123 lines (123 loc) · 3.59 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "typo3/cms-core",
"type": "typo3-cms-framework",
"description": "The core library of TYPO3.",
"homepage": "https://typo3.org",
"license": ["GPL-2.0-or-later"],
"authors": [{
"name": "TYPO3 Core Team",
"email": "[email protected]",
"role": "Developer"
}],
"support": {
"chat": "https://typo3.org/help",
"docs": "https://docs.typo3.org",
"issues": "https://forge.typo3.org",
"source": "https://github.com/typo3/typo3"
},
"config": {
"sort-packages": true
},
"require": {
"php": "^7.4 || ^8.0",
"ext-PDO": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-pcre": "*",
"ext-session": "*",
"ext-xml": "*",
"composer-runtime-api": "^2.1",
"bacon/bacon-qr-code": "^2.0",
"christian-riesen/base32": "^1.6",
"doctrine/annotations": "^1.11",
"doctrine/dbal": "^2.13.4",
"doctrine/event-manager": "^1.0.0",
"doctrine/instantiator": "^1.4",
"doctrine/lexer": "^1.2.1",
"egulias/email-validator": "^3.1",
"enshrined/svg-sanitize": "^0.14.1",
"guzzlehttp/guzzle": "^7.3.0",
"guzzlehttp/psr7": "^1.7.0 || ^2.0",
"lolli42/finediff": "^1.0",
"masterminds/html5": "^2.7",
"nikic/php-parser": "^4.10.4",
"psr/container": "^1.1 || ^2.0",
"psr/event-dispatcher": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^1.0",
"symfony/config": "^5.3.0",
"symfony/console": "^5.3.0",
"symfony/dependency-injection": "^5.3.0",
"symfony/event-dispatcher-contracts": "^1.1 || ^2.0",
"symfony/expression-language": "^5.3.0",
"symfony/filesystem": "^5.3.0",
"symfony/finder": "^5.3.0",
"symfony/http-foundation": "^5.3.0",
"symfony/mailer": "^5.3.0",
"symfony/mime": "^5.3.0",
"symfony/polyfill-intl-icu": "^1.6",
"symfony/polyfill-intl-idn": "^1.10",
"symfony/polyfill-intl-normalizer": "^1.22",
"symfony/polyfill-mbstring": "^1.16",
"symfony/polyfill-php80": "^1.23.1",
"symfony/polyfill-php81": "^1.23",
"symfony/rate-limiter": "^5.3",
"symfony/routing": "^5.3.0",
"symfony/yaml": "^5.3.0",
"typo3/class-alias-loader": "^1.0",
"typo3/cms-cli": "^3.1",
"typo3/cms-composer-installers": "^2.0 || ^3.0",
"typo3/html-sanitizer": "^2.0.11",
"typo3/phar-stream-wrapper": "^3.1.7",
"typo3/symfony-psr-event-dispatcher-adapter": "^1.0 || ^2.0",
"typo3fluid/fluid": "^2.7.0"
},
"suggest": {
"ext-fileinfo": "Used for proper file type detection in the file abstraction layer",
"ext-gd": "GDlib/Freetype is required for building images with text (GIFBUILDER) and can also be used to scale images",
"ext-intl": "TYPO3 with unicode-based filesystems",
"ext-mysqli": "",
"ext-openssl": "OpenSSL is required for sending SMTP mails over an encrypted channel endpoint",
"ext-zip": "",
"ext-zlib": "TYPO3 uses zlib for amongst others output compression and un/packing t3x extension files"
},
"conflict": {
"hoa/core": "*",
"typo3/cms": "*"
},
"replace": {
"typo3/cms-lang": "*",
"typo3/cms-saltedpasswords": "*",
"typo3/cms-sv": "*"
},
"provide": {
"psr/http-factory-implementation": "1.0",
"psr/http-message-implementation": "1.0"
},
"extra": {
"branch-alias": {
"dev-master": "11.5.x-dev"
},
"typo3/cms": {
"Package": {
"serviceProvider": "TYPO3\\CMS\\Core\\ServiceProvider",
"protected": true,
"partOfFactoryDefault": true,
"partOfMinimalUsableSystem": true
},
"extension-key": "core"
}
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\Core\\": "Classes/"
},
"classmap": ["Resources/PHP/"],
"files": ["Resources/PHP/GlobalDebugFunctions.php"]
}
}