forked from symbiote/silverstripe-advancedworkflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.39 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
{
"name": "symbiote/silverstripe-advancedworkflow",
"description": "Adds configurable workflow support to the CMS, with a GUI for creating custom workflow definitions.",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "advancedworkflow", "workflow"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Marcus Nyeholt",
"email": "[email protected]"
},
{
"name": "Andrew Short",
"email": "[email protected]"
}
],
"require": {
"silverstripe/cms": "^4",
"silverstripe/framework": "^4",
"silverstripe/admin": "^1",
"silverstripe/versioned": "^1",
"symfony/yaml": "~3.2"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"extra": {
"expose": [
"client/dist",
"client/lang",
"images"
]
},
"suggest": {
"symbiote/silverstripe-queuedjobs": "Allow automated workflow transitions with queued system jobs"
},
"autoload": {
"psr-4": {
"Symbiote\\AdvancedWorkflow\\": "src/",
"Symbiote\\AdvancedWorkflow\\Tests\\": "tests/"
}
},
"replace": {
"silverstripe/advancedworkflow": "self.version"
},
"minimum-stability": "dev",
"prefer-stable": true
}