-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 1.84 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
{
"name": "sebastianhofer/be-permissions",
"description": "Makes Backend permissions shippable",
"type": "typo3-cms-extension",
"license": [
"GPL-3.0-or-later"
],
"authors": [
{
"name": "Sebastian Hofer",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/DrWh0286/phpsu.git"
}
],
"require": {
"php": ">=7.4.0",
"typo3/cms-core": "^11.5",
"typo3/cms-backend": "^11.5",
"typo3/cms-beuser": "^11.5",
"typo3/cms-frontend": "^11.5",
"typo3/cms-lowlevel": "^11.5",
"ext-json": "*",
"symfony/framework-bundle": "^5.4 || ^6.0",
"jfcherng/php-diff": "^6.11"
},
"autoload": {
"psr-4": {
"SebastianHofer\\BePermissions\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"SebastianHofer\\BePermissions\\Tests\\": "Tests"
}
},
"scripts": {
"grumphp-ddev:init": [
".Build/bin/grumphp git:init -c grumphp-ddev.yaml"
],
"link-extension": [
"[ -L .Build/public/typo3conf/ext/be_permissions ] || cd .Build/public/typo3conf/ext && ln -s ../../../../ be_permissions"
]
},
"extra": {
"typo3/cms": {
"extension-key": "be_permissions",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/public"
},
"pluswerk/grumphp-config": {
"auto-setting": false
},
"grumphp": {
"config-default-path": "grumphp.yml"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"phpro/grumphp": true,
"pluswerk/grumphp-config": true
}
},
"require-dev": {
"typo3/testing-framework": "^6.9",
"pluswerk/grumphp-config": "^5.0",
"helhum/typo3-console": "^6.6 || ^7.0"
}
}