-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
63 lines (63 loc) · 1.96 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
{
"name": "christophlehmann/pagetreefilter",
"type": "typo3-cms-extension",
"description": "It adds a wizard like the new content element wizard that helps finding content elements and records in the page tree. With a few clicks you know where they are used. You can also see what elements are not used.",
"license": "GPL-2.0-or-later",
"homepage": "https://github.com/christophlehmann/pagetreefilter",
"authors": [
{
"name": "Christoph Lehmann",
"role": "Developer",
"email": "[email protected]"
}
],
"require": {
"typo3/cms-backend": "^13.4 || dev-main"
},
"autoload": {
"psr-4": {
"Lemming\\PageTreeFilter\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Lemming\\PageTreeFilter\\Tests\\": "Tests"
}
},
"extra": {
"typo3/cms": {
"extension-key": "pagetreefilter",
"app-dir": ".Build",
"web-dir": ".Build/Web"
}
},
"scripts": {
"prepare-release": [
"rm -rf .github"
],
"test:acceptance": [
"./Build/Scripts/runTests.sh -p 8.2 -s acceptance"
],
"phpstan": [
".Build/bin/phpstan analyze -c Build/phpstan.neon"
]
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"sort-packages": true,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": true
}
},
"require-dev": {
"codeception/codeception": "^5.0",
"codeception/module-asserts": "^3.0",
"codeception/module-webdriver": "^4.0",
"phpstan/phpstan": "^1.10",
"sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": "^0.1",
"typo3/testing-framework": "^8@dev"
}
}