This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
63 lines (63 loc) · 2.05 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
{
"name": "romm/formz",
"type": "typo3-cms-extension",
"description": "Manage your forms easily with powerful tools: TypoScript based validation, Fluid view helpers, a whole JavaScript API, and more. Use pre-defined layouts for Twitter Bootstrap and Foundation to build nice-looking forms in minutes. Need to build a basic form with only two fields? Need to build a huge registration form with dozens of fields? Use FormZ, it will live up to your expectations! Visit typo3-formz.com for more information.",
"keywords": [
"typo3",
"forms",
"flexibility"
],
"homepage": "http://typo3-formz.com/",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Romain Canon",
"email": "romain.hydrocanon@gmail.com"
}
],
"require": {
"php": ">=5.5",
"romm/configuration-object": "^1.6",
"typo3/cms": "^6.2 || ^7.6.13 || ^8.7.0"
},
"require-dev": {
"mikey179/vfsStream": "^1.6",
"phpunit/phpunit": "^4.7 || ^5.6",
"satooshi/php-coveralls": "^1.0",
"nimut/testing-framework": "^1.0"
},
"autoload": {
"psr-4": {
"Romm\\Formz\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Romm\\Formz\\Tests\\": "Tests",
"Romm\\ConfigurationObject\\Tests\\": ".Build/Web/typo3conf/ext/configuration_object/Tests",
"TYPO3\\Components\\TestingFramework\\": ".Build/vendor/typo3/cms/components/testing_framework/Classes/",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/core/Tests/",
"TYPO3\\CMS\\Fluid\\Tests\\": ".Build/vendor/typo3/cms/typo3/sysext/fluid/Tests/"
}
},
"replace": {
"formz": "self.version",
"typo3-ter/formz": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/formz ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/formz"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}