forked from pagemachine/hairu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 1.77 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
{
"name": "pagemachine/hairu",
"description": "Flexible login/logout form based on Extbase/Fluid",
"keywords": ["typo3", "felogin", "extbase", "fluid"],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Mathias Brodala",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/pagemachine/hairu/issues",
"source": "https://github.com/pagemachine/hairu"
},
"type": "typo3-cms-extension",
"require": {
"php": "^7.0",
"typo3/cms-core": "^8.7.25 || ^9.5.6",
"typo3/cms-extbase": "^8.7.25 || ^9.5.6",
"typo3/cms-fluid": "^8.7.25 || ^9.5.6",
"typo3/cms-frontend": "^8.7.25 || ^9.5.6",
"typo3/cms-saltedpasswords": "^8.7.25 || ^9.5.6"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^3.1",
"helmich/typo3-typoscript-lint": "^1.3",
"jakub-onderka/php-console-highlighter": "^0.3.2",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"sclable/xml-lint": "^0.2.3",
"slevomat/coding-standard": "^4.0",
"squizlabs/php_codesniffer": "^3.0"
},
"replace": {
"hairu": "self.version",
"typo3-ter/hairu": "self.version"
},
"config": {
"bin-dir": "bin",
"sort-packages": true
},
"autoload": {
"psr-4": {
"PAGEmachine\\Hairu\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "hairu",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": "web"
}
},
"scripts": {
"lint:php": "parallel-lint --exclude bin --exclude vendor --exclude web .",
"lint:typoscript": "typoscript-lint",
"lint:xml": "xmllint --pattern '*.xlf,*.svg' Resources",
"lint:style": "phpcs",
"fix:style": "phpcbf",
"lint": [
"@lint:php",
"@lint:style",
"@lint:typoscript",
"@lint:xml"
]
}
}