forked from YouweGit/pimcore-workflow-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·45 lines (45 loc) · 929 Bytes
/
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": "youwe/workflow-gui",
"type": "pimcore-bundle",
"license": "GPL-3.0-or-later",
"description": "Workflow Configuration UI for Pimcore",
"keywords": [
"pimcore",
"imports",
"pimcore-plugin",
"pimcore-bundle"
],
"homepage": "https://github.com/YouweGit/pimcore-workflow-gui",
"authors": [
{
"name": "Dominik Pfaffenbauer",
"email": "[email protected]",
"homepage": "https://www.pfaffenbauer.at/",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"pimcore/pimcore": "^10.0.0"
},
"autoload": {
"psr-4": {
"Youwe\\Pimcore\\WorkflowGui\\": "src/WorkflowGui"
}
},
"autoload-dev": {
"classmap": [
"src/Kernel.php"
]
},
"extra": {
"pimcore": {
"bundles": [
"Youwe\\Pimcore\\WorkflowGui\\WorkflowGuiBundle"
]
},
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}