-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
156 lines (156 loc) · 4.68 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "buepro/typo3-pizpalue",
"description": "Extension to create websites using bootstrap. It builds upon the bootstrap_package from Benjamin Kott and increases functionality by supporting the following extensions: container_elements, news, eventnews, tt_address",
"license": [
"GPL-2.0-or-later"
],
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"sitepackage",
"bootstrap",
"responsive",
"frontend",
"theme",
"web",
"news",
"calendar",
"address",
"container"
],
"authors": [
{
"name": "Roman Büchler",
"email": "rb@buechler.pro",
"homepage": "https://www.buechler.pro/",
"role": "Developer"
}
],
"homepage": "https://extensions.typo3.org/extension/pizpalue",
"support": {
"issues": "https://github.com/buepro/typo3-pizpalue/issues",
"source": "https://github.com/buepro/typo3-pizpalue",
"docs": "https://docs.typo3.org/p/buepro/typo3-pizpalue/main/en-us/"
},
"require": {
"bk2k/bootstrap-package": "^15.0.0",
"buepro/typo3-pvh": "^3.0.0@dev",
"typo3/cms-core": "^12.4.22 || ^13.4"
},
"require-dev": {
"b13/container": "^3.0.0",
"buepro/typo3-container-elements": "^6.0.0@dev",
"buepro/typo3-pvh": "^3.0.0",
"buepro/typo3-user-pizpalue": "^7.0.0@dev",
"ergebnis/composer-normalize": "^2.43.0",
"friendsofphp/php-cs-fixer": "^3.62.0",
"friendsoftypo3/phpstan-typo3": "^0.9.0",
"overtrue/phplint": "^9.0.0",
"phpspec/prophecy-phpunit": "^2.2.0",
"phpstan/phpstan": "^1.11.10",
"phpstan/phpstan-deprecation-rules": "^1.2.0",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-strict-rules": "^1.6.0",
"typo3/cms-base-distribution": "^12.4 || ^13.4",
"typo3/cms-core": "^12.4",
"typo3/cms-impexp": "^12.4 || ^13.4",
"typo3/testing-framework": "^8.2.0"
},
"conflict": {
"buepro/typo3-container-elements": "<5.3"
},
"suggest": {
"buepro/typo3-container-elements": "Flexibel elements to structure the content area with container",
"buepro/typo3-easyconf": "Backend module to provide an easy website configuration",
"friendsoftypo3/tt-address": "Manage addresses",
"georgringer/eventnews": "Calendar based on extension news",
"georgringer/news": "Flexible news system"
},
"autoload": {
"psr-4": {
"Buepro\\Pizpalue\\": "Classes/",
"Buepro\\Pizpalue\\Easyconf\\": "Extensions/easyconf/Classes/",
"Buepro\\Pizpalue\\Form\\": "Extensions/form/Classes/",
"Buepro\\Pizpalue\\News\\": "Extensions/news/Classes/",
"Buepro\\Pizpalue\\Sysext\\Backend\\": "Sysext/backend/Classes/",
"Buepro\\Pizpalue\\Sysext\\Core\\": "Sysext/core/Classes/",
"Buepro\\Pizpalue\\Sysext\\Frontend\\": "Sysext/frontend/Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Buepro\\Pizpalue\\Easyconf\\Tests\\": "Extensions/easyconf/Tests/",
"Buepro\\Pizpalue\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".build/bin",
"optimize-autoloader": true,
"sort-packages": true,
"vendor-dir": ".build/vendor"
},
"extra": {
"branch-alias": {
"dev-main": "17.0.x-dev"
},
"typo3/cms": {
"extension-key": "pizpalue",
"web-dir": ".build/public"
}
},
"scripts": {
"post-autoload-dump": [
"[ -d .build/public/_assets ] || mkdir -p .build/public/typo3conf/ext/",
"[ -d .build/public/_assets ] || [ -L .build/public/typo3conf/ext/pizpalue ] || ln -snvf ../../../../. .build/public/typo3conf/ext/pizpalue",
"if [ ${IS_DDEV_PROJECT:-0} = \"true\" ]; then mkdir -p config/sites; fi",
"if [ ${IS_DDEV_PROJECT:-0} = \"true\" ] && [ ! -e \"config/sites/development\" ]; then ln -svf ../../Build/site/development config/sites/development; fi"
],
"ci": [
"@ci:static",
"@ci:tests"
],
"ci:composer:normalize": "@composer normalize --dry-run",
"ci:php:cs": [
"php-cs-fixer --diff -v --dry-run fix",
"php-cs-fixer --config=.php-cs-fixer.dist-strict.php --diff -v --dry-run fix"
],
"ci:php:lint": [
"phplint"
],
"ci:php:stan": [
"phpstan analyze --configuration Build/phpstan.neon"
],
"ci:static": [
"@ci:php:cs",
"@ci:php:lint",
"@ci:php:stan"
],
"ci:tests": [
"@ci:tests:unit",
"@ci:tests:functional"
],
"ci:tests:functional": [
"phpunit -c Build/phpunit-functional.xml"
],
"ci:tests:unit": [
"phpunit -c Build/phpunit-unit.xml"
],
"fix": [
"@fix:composer:normalize",
"@fix:php:cs"
],
"fix:composer:normalize": "@composer normalize",
"fix:php:cs": [
"php-cs-fixer --diff -v fix",
"php-cs-fixer --config=.php-cs-fixer.dist-strict.php --diff -v fix"
],
"fix:php:stan": [
"phpstan analyze --level max --configuration Build/phpstan.neon --generate-baseline Build/phpstan-baseline.neon"
]
}
}