-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
114 lines (114 loc) · 3.47 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
{
"name": "netresearch/nr-textdb",
"type": "typo3-cms-extension",
"description": "Allows you to edit the translations in the back end",
"license": [
"AGPL-3.0-or-later"
],
"authors": [
{
"name": "Thomas Schöne",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.netresearch.de/"
},
{
"name": "Axel Seemann",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.netresearch.de/"
},
{
"name": "Tobias Hein",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.netresearch.de/"
},
{
"name": "Rico Sonntag",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.netresearch.de/"
}
],
"require": {
"ext-zip": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"typo3/cms-core": "^12.4",
"typo3/cms-backend": "^12.4",
"typo3/cms-extbase": "^12.4",
"typo3/cms-extensionmanager": "^12.4"
},
"require-dev": {
"typo3/testing-framework": "^6.0 || ^7.0 || ^8.0",
"friendsofphp/php-cs-fixer": "^3.1",
"friendsoftypo3/phpstan-typo3": "^0.9",
"overtrue/phplint": "^3.4 || ^9.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/phpstan-deprecation-rules": "^1.1",
"ssch/typo3-rector": "^2.0"
},
"suggest": {
"netresearch/nr-sync": "*"
},
"autoload": {
"psr-4": {
"Netresearch\\NrTextdb\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Netresearch\\NrTextdb\\Tests\\": "Tests"
}
},
"config": {
"bin-dir": ".build/bin",
"vendor-dir": ".build/vendor",
"discard-changes": true,
"sort-packages": true,
"optimize-autoloader": true,
"platform-check": false,
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "nr_textdb",
"web-dir": ".build/public"
},
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"scripts": {
"ci:test:php:lint": [
"phplint --configuration Build/.phplint.yml"
],
"ci:test:php:unit": [
"XDEBUG_MODE=coverage phpunit -c Build/UnitTests.xml"
],
"ci:test:php:phpstan": [
"phpstan analyze --configuration Build/phpstan.neon --memory-limit=-1"
],
"ci:test:php:phpstan:baseline": [
"phpstan analyze --configuration Build/phpstan.neon --memory-limit=-1 --generate-baseline Build/phpstan-baseline.neon --allow-empty-baseline"
],
"ci:test:php:rector": [
"rector process --config Build/rector.php --dry-run"
],
"ci:test": [
"@ci:test:php:lint",
"@ci:test:php:phpstan",
"@ci:test:php:rector",
"@ci:test:php:unit"
],
"ci:cgl": [
"php-cs-fixer fix --config Build/.php-cs-fixer.dist.php --diff --verbose --cache-file .build/.php-cs-fixer.cache"
]
}
}