-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathcomposer.json
More file actions
144 lines (144 loc) · 3.82 KB
/
composer.json
File metadata and controls
144 lines (144 loc) · 3.82 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "localizationteam/l10nmgr",
"type": "typo3-cms-extension",
"description": "Module for managing localization import and export",
"homepage": "https://extensions.typo3.org/extension/l10nmgr",
"authors": [
{
"name": "Kasper Skaarhoej",
"email": "kasperYYYY@typo3.com",
"role": "Developer"
},
{
"name": "Daniel Zielinski",
"email": "info@loctimize.com",
"role": "Developer",
"homepage": "https://loctimize.com"
},
{
"name": "Daniel Poetzinger",
"role": "Developer"
},
{
"name": "Fabian Seltmann",
"role": "Developer"
},
{
"name": "Andreas Otto",
"role": "Developer"
},
{
"name": "Jo Hasenau",
"email": "info@cybercraft.de",
"role": "Developer",
"homepage": "https://cybercraft.de"
},
{
"name": "Peter Russ",
"email": "pruss@uon.li",
"role": "Developer"
},
{
"name": "Stefano Kowalke",
"email": "info@arroba-it.de",
"role": "Developer",
"homepage": "https://arroba-it.de"
}
],
"license": [
"GPL-2.0-or-later"
],
"keywords": [
"TYPO3 CMS",
"L10N",
"I18N",
"T9N",
"localization",
"translation",
"internationalization",
"language"
],
"support": {
"issues": "https://github.com/CodersCare/l10nmgr/issues",
"docs": "https://docs.typo3.org/p/localizationteam/l10nmgr/main/en-us",
"source": "https://github.com/CodersCare/l10nmgr"
},
"funding": [
{
"type": "other",
"url": "https://coders.care/de/services/crowdfunding/l10nmgr-und-localizer"
}
],
"require": {
"ext-pdo": "*",
"ext-ftp": "*",
"ext-xml": "*",
"php": ">=8.1",
"typo3/cms-backend": "^11.5 || ^12.4",
"typo3/cms-core": "^11.5 || ^12.4",
"typo3/cms-fluid": "^11.5 || ^12.4",
"typo3/cms-scheduler": "^11.5 || ^12.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.1.0",
"friendsoftypo3/phpstan-typo3": "^0.9",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.10",
"ssch/typo3-rector": "^2.5",
"typo3/testing-framework": "^8.0"
},
"autoload": {
"psr-4": {
"Localizationteam\\L10nmgr\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Localizationteam\\L10nmgr\\Tests\\": "Tests"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"process-timeout": 1000,
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"platform": {
"php": "8.1.1"
}
},
"scripts": {
"phpcsFixer": ".Build/bin/php-cs-fixer",
"phpstan": ".Build/bin/phpstan",
"phpunit": ".Build/bin/phpunit",
"phpcs": ".Build/bin/phpcs",
"rector": ".Build/bin/rector",
"rector:dry": ".Build/bin/rector --dry-run",
"php:fix": "@phpcsFixer --config=Configuration/php-cs-fixer.php fix Classes Tests",
"ci:php:lint": "find *.php Classes Configuration Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:php:fixer": "@phpcsFixer --config=Configuration/php-cs-fixer.php fix --dry-run -v --show-progress=dots Classes Configuration Tests",
"ci:php:stan": "@phpstan analyze --no-progress -c phpstan.neon",
"phpstan:baseline": "@phpstan analyze --generate-baseline=phpstan-baseline.neon",
"test:unit": "@phpunit -c .Build/phpunit/UnitTests.xml Tests/Unit/",
"test:functional": "@phpunit -c .Build/phpunit/FunctionalTests.xml Tests/Functional/",
"phpcs:testphp:81": "@phpcs -p . --standard=PHPCompatibility --runtime-set testVersion 8.1 --ignore=.Build,Documentation-GENERATED-temp,public",
"phpcs:testphp:82": "@phpcs -p . --standard=PHPCompatibility --runtime-set testVersion 8.2 --ignore=.Build,Documentation-GENERATED-temp,public",
"typo3:docs:render": [
"docker compose run --rm t3docmake"
],
"typo3:docs:serve": [
"php -S 127.0.0.1:4000 -t Documentation-GENERATED-temp/Result/project/0.0.0"
]
},
"extra": {
"typo3/cms": {
"extension-key": "l10nmgr"
}
}
}