forked from TYPO3GmbH/blog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
124 lines (124 loc) · 4.25 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
{
"name": "t3g/blog",
"description": "This blog extension uses TYPO3s core concepts and elements to provide a full-blown blog that users of TYPO3 can instantly understand and use.",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "TYPO3 GmbH",
"role": "Developer",
"homepage": "https://typo3.com/"
}
],
"homepage": "https://extensions.typo3.org/extension/blog/",
"support": {
"issues": "https://github.com/TYPO3GmbH/blog/issues",
"docs": "https://docs.typo3.org/typo3cms/extensions/blog/",
"source": "https://github.com/TYPO3GmbH/blog",
"slack": "https://typo3.slack.com/archives/t3g-ext-blog"
},
"autoload": {
"psr-4": {
"T3G\\AgencyPack\\Blog\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"T3G\\AgencyPack\\Blog\\Tests\\": "Tests/"
}
},
"config": {
"bin-dir": ".build/bin",
"discard-changes": true,
"sort-packages": true,
"optimize-autoloader": true,
"vendor-dir": ".build/vendor",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"branch-alias": {
"dev-master": "12.0.x-dev"
},
"typo3/cms": {
"extension-key": "blog",
"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/blog ] || ln -snvf ../../../../. .build/public/typo3conf/ext/blog"
],
"t3g:test:php:lint": [
"phplint"
],
"t3g:test:php:unit": [
"phpunit -c Build/UnitTests.xml"
],
"t3g:test:php:functional": [
"phpunit -c Build/FunctionalTests.xml"
],
"t3g:test:php:phpstan": [
"phpstan analyze --configuration Build/phpstan.neon"
],
"t3g:test:php:phpstan:baseline": [
"phpstan analyze --configuration Build/phpstan.neon --generate-baseline Build/phpstan-baseline.neon"
],
"t3g:test": [
"@t3g:test:php:lint",
"@t3g:test:php:phpstan",
"@t3g:test:php:unit",
"@t3g:test:php:functional"
],
"t3g:cgl": [
"php-cs-fixer --diff -v fix"
]
},
"suggest": {
"bk2k/bootstrap-package": "Theme for TYPO3",
"typo3/cms-fluid-styled-content": "Content rendering definition based on fluid"
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-pdo": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"typo3/cms-backend": "^11.5 || ^12.4",
"typo3/cms-core": "^11.5 || ^12.4",
"typo3/cms-extbase": "^11.5 || ^12.4",
"typo3/cms-extensionmanager": "^11.5 || ^12.4",
"typo3/cms-fluid": "^11.5 || ^12.4",
"typo3/cms-form": "^11.5 || ^12.4",
"typo3/cms-frontend": "^11.5 || ^12.4",
"typo3/cms-install": "^11.5 || ^12.4",
"typo3fluid/fluid": "^2.6"
},
"require-dev": {
"bk2k/bootstrap-package": "^13.0",
"bk2k/extension-helper": "^2.0",
"friendsofphp/php-cs-fixer": "^3.14",
"friendsoftypo3/phpstan-typo3": "^0.9.0",
"overtrue/phplint": "^3.4 || ^9.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"typo3/cms-belog": "^11.5 || ^12.4",
"typo3/cms-beuser": "^11.5 || ^12.4",
"typo3/cms-filelist": "^11.5 || ^12.4",
"typo3/cms-fluid-styled-content": "^11.5 || ^12.4",
"typo3/cms-lowlevel": "^11.5 || ^12.4",
"typo3/cms-rte-ckeditor": "^11.5 || ^12.4",
"typo3/cms-seo": "^11.5 || ^12.4",
"typo3/cms-setup": "^11.5 || ^12.4",
"typo3/cms-tstemplate": "^11.5 || ^12.4",
"typo3/testing-framework": "^7.0 || ^8.0"
}
}