-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
140 lines (140 loc) · 4 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
137
138
139
140
{
"name": "oliverklee/realty",
"description": "TYPO3 extension that provides a plugin that displays realty objects (properties, real estate), including an image gallery for each object.",
"type": "typo3-cms-extension",
"keywords": [
"realty",
"renting",
"housing",
"real estate",
"property",
"properties"
],
"homepage": "https://www.oliverklee.de/typo3-services/typo3-extensions/realty-manager.html",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Oliver Klee",
"email": "[email protected]",
"homepage": "https://www.oliverklee.de",
"role": "developer"
}
],
"support": {
"issues": "https://github.com/oliverklee/ext-realty/issues",
"source": "https://github.com/oliverklee/ext-realty"
},
"require": {
"php": "^5.5.0 || ~7.0.0 || ~7.1.0 || ~7.2.0",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-posix": "*",
"ext-zip": "*",
"digedag/rn-base": "^1.4.5",
"dmk/mkforms": "^9.5.1",
"oliverklee/oelib": "^2.3.5 || ^3.6.4",
"sjbr/static-info-tables": "^6.4",
"typo3/cms-backend": "^7.6 || ^8.7",
"typo3/cms-core": "^7.6.23 || ^8.7.9",
"typo3/cms-extbase": "^7.6 || ^8.7",
"typo3/cms-fluid": "^7.6 || ^8.7",
"typo3/cms-frontend": "^7.6 || ^8.7",
"typo3/cms-lang": "^7.6 || ^8.7",
"typo3/cms-scheduler": "^7.6 || ^8.7"
},
"require-dev": {
"helhum/typo3-console": "^4.9.6",
"helmich/typo3-typoscript-lint": "^1.5.0",
"mikey179/vfsstream": "^1.6.8",
"nimut/testing-framework": "^2.0.3",
"oliverklee/phpunit": "^5.7.27",
"phpspec/prophecy": "^1.9.0",
"phpunit/phpunit": "^5.7.27"
},
"conflict": {
"sjbr/static-info-tables": "6.7.1"
},
"replace": {
"typo3-ter/realty": "self.version"
},
"autoload": {
"classmap": [
"Classes",
"Ajax",
"lib",
"Mapper",
"Model",
"pi1"
]
},
"autoload-dev": {
"classmap": [
"Tests"
]
},
"prefer-stable": true,
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"process-timeout": 1000,
"vendor-dir": ".Build/vendor",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"helhum/typo3-console-plugin": true
}
},
"scripts": {
"ci:php:lint": "find *.php Ajax/ Configuration/ lib/ Mapper/ Model/ pi1/ Tests/ -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:php:stan": "tools/phpstan --no-progress",
"ci:ts:lint": ".Build/vendor/bin/typoscript-lint -c Configuration/TsLint.yml --ansi -n --fail-on-warnings -vvv Configuration/TypoScript/",
"ci:tests:unit": ".Build/vendor/bin/phpunit -c .Build/vendor/nimut/testing-framework/res/Configuration/UnitTests.xml Tests/Unit/",
"ci:tests:unit-legacy": "$RUN_TESTS_COMMAND Tests/LegacyUnit/",
"ci:tests:functional": "find 'Tests/Functional' -wholename '*Test.php' | parallel --gnu 'echo; echo \"Running functional test suite {}\"; .Build/vendor/bin/phpunit -c .Build/vendor/nimut/testing-framework/res/Configuration/FunctionalTests.xml {}';",
"ci:tests": [
"@ci:tests:unit",
"@ci:tests:unit-legacy",
"@ci:tests:functional"
],
"ci:static": [
"@ci:php:lint",
"@ci:ts:lint"
],
"ci:dynamic": [
"@ci:tests"
],
"ci": [
"@ci:static",
"@ci:dynamic"
],
"link-extension": [
"@php -r 'is_dir($extFolder=__DIR__.\"/.Build/public/typo3conf/ext/\") || mkdir($extFolder, 0777, true);'",
"@php -r 'file_exists($extFolder=__DIR__.\"/.Build/public/typo3conf/ext/realty\") || symlink(__DIR__,$extFolder);'"
],
"phpstan:baseline": "tools/phpstan --generate-baseline=phpstan-baseline.neon",
"post-autoload-dump": [
"@link-extension"
]
},
"scripts-descriptions": {
"ci": "Runs all dynamic and static code checks.",
"ci:php:stan": "Checks the types with PHPStan.",
"ci:static": "Runs all static code analysis checks for the code.",
"phpstan:baseline": "Updates the PHPStan baseline file to match the code."
},
"extra": {
"branch-alias": {
"dev-main": "3.0.x-dev"
},
"typo3/cms": {
"extension-key": "realty",
"web-dir": ".Build/public"
},
"helhum/typo3-console": {
"install-extension-dummy": "0"
}
}
}