-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.17 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
{
"repositories": [
{
"type": "path",
"url": "packages/*"
}
],
"name": "schreibersebastian/typo3-rector-demo",
"description": "Demo for typo3-rector",
"type": "project",
"require": {
"typo3/minimal": "^9.0",
"ssch/legacy-extension": "^1.0"
},
"config": {
"sort-packages": true
},
"license": "MIT",
"authors": [
{
"name": "Sebastian Schreiber",
"email": "breakpoint@schreibersebastian.de"
}
],
"extra": {
"typo3/cms": {
"web-dir": "public"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"typo3/testing-framework": "^4.0",
"ssch/custom-rectors": "^1.0",
"symplify/easy-coding-standard": "^9.0"
},
"scripts": {
"check-style": "vendor/bin/ecs check --ansi",
"fix-style": "vendor/bin/ecs check --fix --ansi",
"rector": "vendor/bin/typo3-rector rectify --dry-run --ansi"
},
"autoload-dev": {
"psr-4": {
"Ssch\\LegacyExtension\\Tests\\": "packages/legacy_extension/Tests"
}
}
}