-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
111 lines (111 loc) · 2.53 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
{
"name": "sypets/redirects-helper",
"type": "typo3-cms-extension",
"description": "Redirects helper",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Sybille Peters",
"email": "[email protected]",
"role": "Developer"
}
],
"config": {
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"preferred-install": {
"typo3/cms-core": "source"
}
},
"require": {
"php": ">=7.3.0",
"typo3/cms-core": "^10.4.0",
"typo3/cms-redirects": "^10.4.0"
},
"suggest": {
},
"conflict": {
"typo3/cms": "*"
},
"extra": {
"typo3/cms": {
"extension-key": "redirects_helper",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
},
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"Sypets\\RedirectsHelper\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Sypets\\RedirectsHelper\\Tests\\": "Tests/",
"TYPO3\\CMS\\Core\\Tests\\": ".Build/Web/typo3/sysext/core/Tests/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0.2",
"jangregor/phpstan-prophecy": "^0.8.1",
"phpspec/prophecy": "^1.14.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12.82",
"phpstan/phpstan-deprecation-rules": "^0.12.6",
"phpstan/phpstan-phpunit": "^0.12.22",
"phpunit/phpunit": "^8",
"rector/rector": "^0.11.52",
"saschaegerer/phpstan-typo3": "^0.13.3",
"schnitzler/phpstan-typo3-extbase": "^0.1.0",
"symplify/phpstan-rules": "^9.3",
"typo3/testing-framework": "^6.11.3"
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
],
"ci:composerinstall": [
"Build/Scripts/runTests.sh -p 7.4 -s composerInstallMax"
],
"ci:composervalidate": [
"Build/Scripts/runTests.sh -p 7.4 -s composerValidate"
],
"ci:phpcgl:check": [
"Build/Scripts/runTests.sh -p 7.4 -s cgl -n"
],
"ci:phpcgl:fix": [
"Build/Scripts/runTests.sh -p 7.4 -s cgl"
],
"ci:cgl:check": [
"@ci:phpcgl:check"
],
"ci:phplint": [
"echo 'tbd'"
],
"ci:phpstan": [
"Build/Scripts/runTests.sh -p 7.4 -s phpstan -e \"-c ../phpstan.neon\""
],
"ci:phpunit": [
"Build/Scripts/runTests.sh -p 7.4 -s unit"
],
"ci:phpfunctional": [
"Build/Scripts/runTests.sh -p 7.4 -s functional"
],
"ci:check": [
"@ci:composerinstall",
"@ci:composervalidate",
"@ci:cgl:check",
"@ci:phplint",
"@ci:phpstan"
],
"ci:cleanup": [
"rm -rf .Build;rm composer.lock;composer config --unset platform.php;composer config --unset platform"
]
}
}