-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (76 loc) · 2.2 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
{
"name": "t3g/editors-choice",
"description": "Improvements for TYPO3 Editors",
"minimum-stability": "dev",
"prefer-stable": true,
"type": "typo3-cms-extension",
"license": "GPL-2.0+",
"repositories": [
{
"type": "composer",
"url": "https://composer.typo3.org/"
}
],
"support": {
"issues": "https://github.com/TYPO3GmbH/editors-choice/issues",
"source": "https://github.com/TYPO3GmbH/editors-choice.git"
},
"authors": [
{
"name": "TYPO3 GmbH",
"role": "Developer",
"homepage": "https://typo3.com/"
}
],
"require": {
"typo3/cms-backend": "^8.7 || ^9.5 || ^10.4 || 11.*.*@dev",
"typo3/cms-core": "^8.7 || ^9.5 || ^10.4 || 11.*.*@dev",
"typo3/cms-fluid": "^8.7 || ^9.5 || ^10.4 || 11.*.*@dev"
},
"autoload": {
"psr-4": {
"T3G\\AgencyPack\\EditorsChoice\\": "Classes/"
}
},
"require-dev": {
"bk2k/extension-helper": "^1.0",
"friendsofphp/php-cs-fixer": "^2.14",
"roave/security-advisories": "dev-master",
"typo3/testing-framework": "^2 || ^4.9 || ^5.0 || ^6.2",
"bk2k/bootstrap-package": "*",
"overtrue/phplint": "^1.1"
},
"scripts": {
"t3g:test:php:lint": [
"phplint"
],
"t3g:test:php:unit": [
"phpunit -c Build/UnitTests.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/editors_choice ] || ln -snvf ../../../../. .build/web/typo3conf/ext/editors_choice"
]
},
"config": {
"sort-packages": true,
"discard-changes": true,
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin"
},
"extra": {
"typo3/cms": {
"extension-key": "editors_choice",
"app-dir": ".build",
"web-dir": ".build/public"
},
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}