-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
45 lines (45 loc) · 1.19 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
{
"name": "friendsoftypo3/sys-action",
"type": "typo3-cms-extension",
"description": "Actions are 'programmed' admin tasks which can be performed by selected regular users from the Task Center. An action could be creation of backend users, fixed SQL SELECT queries, listing of records, direct edit access to selected records etc.",
"homepage": "https://extensions.typo3.org/extension/sys_action/",
"support": {
"docs": "https://docs.typo3.org/p/friendsoftypo3/sys-action/main/en-us/",
"issues": "https://github.com/FriendsOfTYPO3/sys_action/issues",
"source": "https://github.com/FriendsOfTYPO3/sys_action"
},
"license": ["GPL-2.0-or-later"],
"authors": [{
"name": "TYPO3 Core Team",
"email": "[email protected]",
"role": "Developer"
}],
"config": {
"sort-packages": true
},
"require": {
"typo3/cms-core": "^11.5.23",
"friendsoftypo3/taskcenter": "^11.0 || @dev"
},
"conflict": {
"typo3/cms": "*"
},
"replace": {
"typo3/cms-sys-action": "*"
},
"extra": {
"typo3/cms": {
"extension-key": "sys_action"
}
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\SysAction\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3\\CMS\\SysAction\\Tests\\": "Tests/"
}
}
}