forked from TYPO3GmbH/blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
112 lines (112 loc) · 3.91 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
{
"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,
"optimize-autoloader": true,
"vendor-dir": ".build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "blog",
"web-dir": ".build/web",
"app-dir": ".build"
}
},
"scripts": {
"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:unit:cover": [
"Composer\\Config::disableProcessTimeout",
"mkdir -p var/log/junit/ && phpunit -c Build/UnitTests.xml --log-junit var/log/junit/phpunit.xml --coverage-clover var/log/junit/coverage-unit.xml"
],
"t3g:test:php:functional:cover": [
"Composer\\Config::disableProcessTimeout",
"mkdir -p var/log/junit/ && .build/bin/phpunit -c Build/FunctionalTests.xml --log-junit var/log/junit/phpunit.xml --coverage-clover var/log/junit/coverage-functional.xml"
],
"t3g:test": [
"@t3g:test:php:lint",
"@t3g:test:php:unit"
],
"t3g:cgl": [
"php-cs-fixer --diff -v fix"
],
"post-autoload-dump": [
"mkdir -p .build/web/typo3conf/ext/",
"[ -L .build/web/typo3conf/ext/blog ] || ln -snvf ../../../../. .build/web/typo3conf/ext/blog"
]
},
"suggest": {
"bk2k/bootstrap-package": "Theme for TYPO3",
"typo3/cms-fluid-styled-content": "Content rendering definition based on fluid"
},
"require": {
"php": "^7.2",
"ext-json": "*",
"ext-pdo": "*",
"psr/http-message": "^1.0",
"typo3/cms-backend": "^9.5 || ^10.4",
"typo3/cms-core": "^9.5 || ^10.4",
"typo3/cms-extbase": "^9.5 || ^10.4",
"typo3/cms-extensionmanager": "^9.5 || ^10.4",
"typo3/cms-fluid": "^9.5 || ^10.4",
"typo3/cms-form": "^9.5 || ^10.4",
"typo3/cms-frontend": "^9.5 || ^10.4",
"typo3/cms-install": "^9.5 || ^10.4",
"typo3fluid/fluid": "^2.6",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"typo3/cms-belog": "^9.5 || ^10.4",
"typo3/cms-beuser": "^9.5 || ^10.4",
"typo3/cms-seo": "^9.5 || ^10.4",
"typo3/cms-filelist": "^9.5 || ^10.4",
"typo3/cms-fluid-styled-content": "^9.5 || ^10.4",
"typo3/cms-lowlevel": "^9.5 || ^10.4",
"typo3/cms-setup": "^9.5 || ^10.4",
"typo3/cms-tstemplate": "^9.5 || ^10.4",
"typo3/cms-rte-ckeditor": "^9.5 || ^10.4",
"friendsofphp/php-cs-fixer": "^2.16",
"typo3/testing-framework": "^4.15 || ^5.0 || ^6.4",
"bk2k/bootstrap-package": "*",
"bk2k/extension-helper": "^1.0",
"overtrue/phplint": "^2.0"
}
}