-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
104 lines (104 loc) · 2.81 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
{
"name": "typo3/sitetools",
"description": "Tools for building sites faster with TYPO3.",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"site tools",
"site",
"tool"
],
"homepage": "https://github.com/TYPO3-Initiatives/sitetools",
"license": ["GPL-2.0-or-later"],
"readme": "README.md",
"authors": [
{
"name": "Simon Gilli",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/TYPO3-Initiatives/sitetools/issues",
"chat": "https://typo3.slack.com/messages/CN64ZUDA7"
},
"require": {
"php": "^7.2",
"psr/http-message": "^1.0",
"symfony/console": "^4.1",
"symfony/yaml": "^4.1",
"typo3/cms-backend": "^9.5 || ~10.0.0 || 10.0.*@dev || 10.1.*@dev",
"typo3/cms-core": "^9.5 || ~10.0.0 || 10.0.*@dev || 10.1.*@dev",
"typo3/cms-fluid": "^9.5 || ~10.0.0 || 10.0.*@dev || 10.1.*@dev",
"typo3fluid/fluid": "^2.5.2"
},
"require-dev": {
"bk2k/extension-helper": "dev-Composer-command-support",
"friendsofphp/php-cs-fixer": "^2.12.2",
"typo3/testing-framework": "^4.9 || ^5.0"
},
"replace": {
"typo3-ter/sitetools": "self.version"
},
"suggest": {
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\SiteTools\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3\\CMS\\SiteTools\\Tests\\": "Tests/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/gstypo3/extension-helper.git"
}
],
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"bin-dir": ".build/bin",
"vendor-dir": ".build/vendor"
},
"scripts": {
"test:php:lint": [
"phplint"
],
"test:php:unit": [
"phpunit -c Build/phpunit.xml"
],
"test": [
"@test:php:lint",
"@test:php:unit"
],
"cgl": [
"php-cs-fixer --diff -v fix"
],
"set-version": [
"extension-helper version:set"
],
"changelog": [
"extension-helper changelog:create"
],
"post-autoload-dump": [
"mkdir -p .build/web/typo3conf/ext/",
"[ -L .build/web/typo3conf/ext/sitetools ] || ln -snvf ../../../../. .build/web/typo3conf/ext/sitetools"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.0.x-dev"
},
"typo3/cms": {
"extension-key": "sitetools",
"app-dir": ".build",
"web-dir": ".build/web"
}
},
"archive": {
"exclude": ["/foo/bar", "baz", "/*.test", "!/foo/bar/baz"]
}
}