-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
136 lines (136 loc) · 4.32 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "dmk/t3users",
"description": "Enhanced frontend user management for TYPO3. User registration, login and management in a single extension.",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"feuser",
"login",
"registration",
"log"
],
"homepage": "http://www.dmk-ebusiness.de/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Michael Wagner",
"email": "michael.wagner@dmk-ebusiness.de",
"role": "Developer"
},
{
"name": "Hannes Bochmann",
"email": "hannes.bochmann@dmk-ebusiness.de",
"role": "Developer"
},
{
"name": "René Nitzsche",
"email": "nitzsche@dmk-ebusiness.de",
"role": "Developer"
}
],
"support": {
"email": "dev@dmk-ebusiness.de",
"source": "https://github.com/DMKEBUSINESSGMBH/typo3-t3users",
"issues": "https://github.com/DMKEBUSINESSGMBH/typo3-t3users"
},
"replace": {
"typo3-ter/t3users": "self.version"
},
"require": {
"php": "^7.4 || ^8.0",
"typo3/cms-core": "^10.4.34 || ^11.5.21",
"digedag/rn-base": "^1.16"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"friendsofphp/php-cs-fixer": "^3.3",
"phpcompatibility/php-compatibility": "^9.3.5",
"nimut/testing-framework": "^6.0"
},
"autoload": {
"classmap": [
"actions/",
"controllers/",
"exceptions/",
"hooks/",
"mod/",
"models/",
"receiver/",
"search/",
"services/",
"util/",
"views/",
"xclasses/"
],
"psr-4": {"DMK\\T3users\\" : "Classes"}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"preferred-install": {
"typo3/cms": "source"
},
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"lint:php": [
"[ -e .Build/bin/parallel-lint ] || composer update",
".Build/bin/parallel-lint ./Classes ./actions ./controllers ./exceptions ./hooks ./mod ./models ./receiver ./search ./services ./tests/ ./util ./views ./xclasses/ ./*.php"
],
"lint": [
"@lint:php"
],
"test:phpcs": [
"[ -e .Build/bin/php-cs-fixer ] || composer update --ansi",
".Build/bin/php-cs-fixer fix -v --dry-run --diff --ansi"
],
"test:phpcompatibility": [
"@test:phpcompatibility:7.4",
"@test:phpcompatibility:8.0"
],
"test:phpcompatibility:7.4": [
"[ -e .Build/bin/phpcs ] || composer update",
".Build/bin/phpcs --ignore=.Build/*,Resources/Public/Javascript/* -p . --standard=.Build/vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 7.4"
],
"test:phpcompatibility:8.0": [
"[ -e .Build/bin/phpcs ] || composer update",
".Build/bin/phpcs --ignore=.Build/*,Resources/Public/Javascript/* -p . --standard=.Build/vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 8.0"
],
"test:phpunit": [
"[ -e .Build/bin/phpunit ] || composer update --ansi",
"export TYPO3_PATH_WEB=$PWD/.Build/Web && .Build/bin/phpunit -c phpunit.xml.dist --colors=always"
],
"test": [
"@test:phpcs",
"@test:phpcompatibility",
"@test:phpunit"
],
"fix:phpcs": [
"[ -e .Build/bin/php-cs-fixer ] || composer update --ansi",
".Build/bin/php-cs-fixer fix -v"
],
"fix": [
"@fix:phpcs"
]
},
"extra": {
"branch-alias": {
"dev-11.5": "11.0.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "t3users",
"web-dir": ".Build/Web",
"app-dir": ".Build"
}
}
}