-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.15 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
{
"name": "quellenform/t3x-lib-jquery",
"type": "typo3-cms-extension",
"description": "Integrates the jQuery-library from CDN with a local fallback if requested library is not available. All relevant versions of jQuery (including minified and gzipped-versions) are shipped with this extension.",
"keywords": [
"TYPO3",
"extension",
"jquery",
"library",
"cdn"
],
"license": [
"GPL-3.0-or-later"
],
"homepage": "https://extensions.typo3.org/extension/lib_jquery",
"support": {
"source": "https://github.com/quellenform/t3x-lib-jquery",
"issues": "https://github.com/quellenform/t3x-lib-jquery/issues"
},
"authors": [
{
"name": "Stephan Kellermayr",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.quellenform.at/"
}
],
"require": {
"php": ">=7.2.0",
"typo3/cms-core": "^10.4 || ^11 || ^12 || ^13"
},
"autoload": {
"psr-4": {
"Quellenform\\LibJquery\\": "Classes"
}
},
"replace": {
"typo3-ter/lib_jquery": "self.version"
},
"repositories": [
{
"type": "composer",
"url": "https://composer.typo3.org/"
}
],
"extra": {
"typo3/cms": {
"extension-key": "lib_jquery"
}
}
}