-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
68 lines (68 loc) · 1.8 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
{
"name": "hoogi91/access-restriction",
"type": "typo3-cms-extension",
"description": "protect access to pages or content elements via frontend groups that are only added when specific access restrictions are matching",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Thorsten Hogenkamp",
"email": "[email protected]",
"homepage": "https://www.hogenkamp-bocholt.de",
"role": "Developer"
},
{
"name": "UDG Rhein-Main GmbH",
"homepage": "https://www.udg.de",
"role": "Contributor"
}
],
"require": {
"php": "~7.4.0 || ~8.0.0 || ~8.1.0",
"typo3/cms-frontend": "^10.4 || ^11.5"
},
"require-dev": {
"helhum/typo3-console": "^6.7 || ^7.1",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.5",
"typo3/minimal": "^10.4 || ^11.5",
"typo3/testing-framework": "^6.14",
"vimeo/psalm": "^5.1"
},
"autoload": {
"psr-4": {
"Hoogi91\\AccessRestriction\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Hoogi91\\AccessRestriction\\Tests\\": "Tests/"
}
},
"config": {
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
],
"prepare-release": [
"rm -rf .github/ Tests/",
"rm -f .gitattributes .gitignore .editorconfig composer.lock"
]
},
"extra": {
"typo3/cms": {
"extension-key": "access_restriction",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/web"
}
}
}