-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
69 lines (69 loc) · 1.9 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
{
"name": "mehrwert/fal-quota",
"description": "FAL Quota for TYPO3",
"type": "typo3-cms-extension",
"license": "GPL-3.0-or-later",
"prefer-stable": true,
"authors": [
{
"name": "mehrwert intermediale kommunikation GmbH",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://extensions.typo3.org/extension/fal_quota/",
"support": {
"issues": "https://github.com/mehrwert/TYPO3-FAL-Quota/issues",
"source": "https://github.com/mehrwert/TYPO3-FAL-Quota"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"require": {
"php": "^7.4 || ^8.3",
"typo3/cms-backend": "^11.5",
"typo3/cms-core": "^11.5",
"typo3/cms-extbase": "^11.5",
"typo3/cms-extensionmanager": "^11.5",
"typo3/cms-filelist": "^11.5",
"typo3/cms-fluid": "^11.5",
"typo3/cms-scheduler": "^11.5",
"typo3fluid/fluid": "^2.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.58",
"roave/security-advisories": "dev-latest",
"ssch/typo3-rector": "^2.6",
"typo3/cms-frontend": "^11.5",
"typo3/cms-install": "^11.5"
},
"suggest": {
"ext-intl": "*"
},
"autoload": {
"psr-4": {
"Mehrwert\\FalQuota\\": "Classes/"
}
},
"scripts": {
"cs:fix": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --config=.php-cs-fixer.dist.php --verbose --using-cache=no --diff --path-mode=intersection .",
"post-autoload-dump": [
"mkdir -p .build/web/typo3conf/ext/",
"[ -L .build/web/typo3conf/ext/fal_quota ] || ln -snvf ../../../../. .build/web/typo3conf/ext/fal_quota"
]
},
"extra": {
"typo3/cms": {
"extension-key": "fal_quota",
"web-dir": ".build/web",
"app-dir": ".build"
}
}
}