-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
100 lines (100 loc) · 2.72 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
{
"name": "ssch/t3-tactician",
"type": "typo3-cms-extension",
"description": "Wrapper for tactician",
"license": "GPL-2.0+",
"homepage": "http://www.schreibersebastian.de",
"keywords": [
"tactician",
"commandbus"
],
"authors": [
{
"name": "Sebastian Schreiber",
"email": "[email protected]",
"role": "Developer",
"homepage": "http://www.schreibersebastian.de"
}
],
"require": {
"php": "^7.4 || ^8.0",
"typo3/cms-core": "^10.4 || ^11.5 || ^12.0",
"typo3/cms-extbase": "^10.4 || ^11.5 || ^12.0",
"league/tactician": "^1.0",
"league/tactician-container": "^2.0"
},
"require-dev": {
"symplify/easy-coding-standard": "^11.1",
"rector/rector": "^0.18.1",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.2",
"phpstan/phpstan-strict-rules": "^1.4",
"saschaegerer/phpstan-typo3": "^1.8",
"jangregor/phpstan-prophecy": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.2",
"typo3/testing-framework": "^6.16",
"helhum/typo3-console": "^7.1"
},
"replace": {
"typo3-ter/t3-tactician": "self.version"
},
"autoload": {
"psr-4": {
"Ssch\\T3Tactician\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Ssch\\T3Tactician\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"preferred-install": {
"typo3/cms": "source",
"typo3/cms-core": "source",
"*": "dist"
},
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/t3_tactician ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/t3_tactician"
],
"analyze": "phpstan analyse --ansi --memory-limit=-1",
"test-php-lint": [
".Build/bin/parallel-lint ./Classes/",
".Build/bin/parallel-lint ./Configuration/TCA/",
".Build/bin/parallel-lint ./Tests/"
],
"lint-php": "parallel-lint Tests Classes Configuration",
"check-style": "ecs check --ansi",
"fix-style": [
"ecs check --fix --ansi"
],
"test-unit": [
".Build/bin/phpunit --configuration Tests/Build/UnitTests.xml"
],
"test-functional": [
".Build/bin/phpunit --configuration Tests/Build/FunctionalTests.xml"
]
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
},
"typo3/cms": {
"extension-key": "t3_tactician",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}