-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 3.01 KB
/
Copy pathcomposer.json
File metadata and controls
80 lines (80 loc) · 3.01 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
{
"name": "netresearch/nr-xliff-streaming",
"type": "typo3-cms-extension",
"description": "High-performance streaming XLIFF parser for TYPO3 supporting large translation files (10MB+) with constant memory footprint",
"keywords": [
"TYPO3",
"extension",
"XLIFF",
"parser",
"streaming",
"XMLReader",
"translation",
"localization",
"performance",
"memory-efficient"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Netresearch DTT GmbH",
"homepage": "https://www.netresearch.de",
"role": "Developer"
}
],
"homepage": "https://github.com/netresearch/t3x-nr-xliff-streaming",
"support": {
"issues": "https://github.com/netresearch/t3x-nr-xliff-streaming/issues",
"source": "https://github.com/netresearch/t3x-nr-xliff-streaming",
"docs": "https://docs.typo3.org/p/netresearch/nr-xliff-streaming/main/en-us/"
},
"require": {
"php": "^8.2 || ^8.3 || ^8.4",
"typo3/cms-core": "^14.3"
},
"require-dev": {
"typo3/coding-standards": "^0.9",
"phpunit/phpunit": "^11.0",
"netresearch/typo3-ci-workflows": "^1.8.1"
},
"autoload": {
"psr-4": {
"Netresearch\\NrXliffStreaming\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Netresearch\\NrXliffStreaming\\Tests\\": "Tests/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"a9f/fractor-extension-installer": true,
"captainhook/hook-installer": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "nr_xliff_streaming",
"web-dir": ".Build/web"
}
},
"scripts": {
"ci:cgl": ".Build/bin/php-cs-fixer fix",
"ci:test:php:cgl": ".Build/bin/php-cs-fixer fix --dry-run --diff",
"ci:test:php:phpstan": ".Build/bin/phpstan analyse",
"ci:test:php:rector": ".Build/bin/rector --dry-run",
"ci:test:php:unit": ".Build/bin/phpunit -c Build/phpunit/UnitTests.xml",
"ci:test:php:functional": ".Build/bin/phpunit -c Build/phpunit/FunctionalTests.xml",
"doc-init": "docker run --rm --pull always -v $(pwd)/Documentation:/project -t ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress",
"doc-make": "docker run --rm --pull always -v $(pwd):/project -t ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress",
"doc-watch": "docker run --rm --pull always -v $(pwd):/project -p 8000:8000 -t ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress --watch"
}
}