forked from pagemachine/hairu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
107 lines (107 loc) · 3.33 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
{
"name": "pagemachine/hairu",
"type": "typo3-cms-extension",
"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": "mbrodala@pagemachine.de"
}
],
"require": {
"php": "^7.2",
"typo3/cms-core": "^8.7.25 || ^9.5.6 || ^10.4",
"typo3/cms-extbase": "^8.7.25 || ^9.5.6 || ^10.4",
"typo3/cms-fluid": "^8.7.25 || ^9.5.6 || ^10.4",
"typo3/cms-frontend": "^8.7.25 || ^9.5.6 || ^10.4"
},
"replace": {
"typo3-ter/hairu": "self.version"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^4.2",
"codedungeon/phpunit-result-printer": "^0.28.0",
"ergebnis/composer-normalize": "^2.8",
"helmich/typo3-typoscript-lint": "^2.2",
"nimut/testing-framework": "^5.1",
"php-parallel-lint/php-console-highlighter": "^0.5.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpunit/phpunit": "^6.5",
"sclable/xml-lint": "^0.3.0",
"slevomat/coding-standard": "^6.4",
"squizlabs/php_codesniffer": "^3.0"
},
"suggest": {
"typo3/cms-saltedpasswords": "For password hashing in TYPO3v8"
},
"config": {
"sort-packages": true
},
"extra": {
"typo3/cms": {
"extension-key": "hairu",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": "web"
}
},
"autoload": {
"psr-4": {
"PAGEmachine\\Hairu\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"PAGEmachine\\Hairu\\Tests\\": "Tests/"
}
},
"scripts": {
"build": [
"@composer require --no-progress --ansi --update-with-dependencies typo3/cms-core $TYPO3_VERSION",
"@composer validate --ansi",
"@composer normalize --no-update-lock --dry-run",
"@lint",
"@test"
],
"build:cleanup": [
"git reset --hard",
"git clean -xfd"
],
"deploy:ter": [
"@build:cleanup",
"@deploy:ter:setup",
"@deploy:ter:upload"
],
"deploy:ter:setup": [
"@composer global require helhum/ter-client symfony/console:^3"
],
"deploy:ter:upload": [
"composer global exec -v -- ter-client upload --username $TYPO3_ORG_USERNAME --password $TYPO3_ORG_PASSWORD --upload-comment \"$(git tag --points-at HEAD --format='%(contents)')\" $(composer config extra.typo3/cms.extension-key) ."
],
"fix:style": "phpcbf",
"lint": [
"@lint:php",
"@lint:style",
"@lint:typoscript",
"@lint:xml"
],
"lint:php": "parallel-lint --exclude vendor --exclude web .",
"lint:style": "phpcs",
"lint:typoscript": "typoscript-lint",
"lint:xml": "xmllint --pattern '*.xlf,*.svg' Resources",
"test": [
"@test:unit"
],
"test:unit": "phpunit --colors=always"
},
"support": {
"issues": "https://github.com/pagemachine/hairu/issues",
"source": "https://github.com/pagemachine/hairu"
}
}