-
Notifications
You must be signed in to change notification settings - Fork 71
/
composer.json
55 lines (55 loc) · 1.53 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
{
"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": {
"php": "^7.4 || ^8.0",
"silverstripe/cms": "^4",
"silverstripe/framework": "^4.13",
"silverstripe/admin": "^1",
"silverstripe/versioned": "^1",
"symfony/yaml": "^3 || ^4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3"
},
"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/php/",
"Symbiote\\AdvancedWorkflow\\Tests\\Behat\\": "tests/behat/"
}
},
"replace": {
"silverstripe/advancedworkflow": "self.version"
},
"minimum-stability": "dev",
"prefer-stable": true
}