forked from in2code-de/femanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
123 lines (123 loc) · 3.71 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
{
"name": "in2code/femanager",
"description": "Modern TYPO3 Frontend User Registration.",
"keywords": [
"typo3",
"form",
"frontend",
"registration",
"profile",
"sr_feuser_register",
"fe_users"
],
"homepage": "https://github.com/in2code-de/femanager",
"authors": [
{
"name": "Alex Kellner",
"email": "[email protected]"
},
{
"name": "Stefan Busemann",
"email": "[email protected]"
}
],
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"require": {
"php": "^7.2",
"ext-json": "*",
"typo3/cms-core": ">=10.0.0 <11.0.0"
},
"replace": {
"typo3-ter/femanager": "self.version"
},
"require-dev": {
"typo3/cms-adminpanel": "^10.4",
"typo3/cms-beuser": "^10.4",
"typo3/cms-dashboard": "^10.4",
"typo3/cms-extbase": "^10.4",
"typo3/cms-extensionmanager": "^10.4",
"typo3/cms-felogin": "^10.4",
"typo3/cms-filelist": "^10.4",
"typo3/cms-fluid-styled-content": "^10.4",
"typo3/cms-frontend": "^10.4",
"typo3/cms-info": "^10.4",
"typo3/cms-install": "^10.4",
"typo3/cms-recordlist": "^10.4",
"typo3/cms-rte-ckeditor": "^10.4",
"typo3/cms-scheduler": "^10.4",
"typo3/cms-setup": "^10.4",
"typo3/cms-t3editor": "^10.4",
"typo3/cms-tstemplate": "^10.4",
"typo3/cms-lowlevel": "^10.4",
"nimut/testing-framework": "^5.0",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^6.0",
"behat/behat": "^3.5",
"behat/mink-extension": "^2.3",
"behat/mink-goutte-driver": "^1.2",
"behat/mink-selenium2-driver": "^1.3",
"se/selenium-server-standalone": "^3",
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "^2.8",
"helhum/typo3-console": "^6.3",
"typo3/cms-belog": "^10.4",
"sjbr/sr-freecap": "^2.6",
"sjbr/static-info-tables": "^6.9",
"helmich/typo3-typoscript-lint": "^2.5",
"friendsofphp/php-cs-fixer": "^2.19",
"genesis/behat-fail-aid": "^3.7",
"networkteam/sentry-client": "^3.0"
},
"autoload": {
"psr-4": {
"In2code\\Femanager\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"In2code\\Femanager\\Tests\\": "Tests",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/",
"TYPO3\\CMS\\Fluid\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/fluid/Tests/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/femanager ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/femanager"
],
"test:unit": "phpunit -c phpunit.xml.dist",
"test:behaviour:docker": "behat --config Tests/Behaviour/behat.docker.yml",
"test:behaviour:ddev": "behat --config Tests/Behaviour/behat.ddev.yml --tags '~@javascript'",
"test:php:lint": "find *.php Classes Configuration Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"test:php:cs": "php-cs-fixer fix --dry-run --config=.project/tests/.php-cs-fixer.php --diff",
"test:ts:lint": "typoscript-lint -c .project/tests/typoscript-lint.yml --fail-on-warnings",
"prepare-release": [
"@extension-create-libs",
"rm -rf .Build/",
"rm -rf .ddev/",
"rm -rf .github/",
"rm -rf .project/",
"rm -rf Tests/",
"rm .gitignore",
"rm .editorconfig",
"rm .gitattributes",
"rm .php_cs.cache",
"rm .docker-compose.yml",
"rm dynamicReturnTypeMeta.json",
"rm Makefile",
"rm phpunit.xml.dist"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"extension-key": "femanager"
}
}
}