-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.23 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
{
"name": "sylius/state-machine-abstraction",
"description": "Abstraction layer for State Machine used in Sylius bundles",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Jacob Tobiasz",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Sylius\\Abstraction\\StateMachine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Sylius\\Abstraction\\StateMachine\\": "tests/"
}
},
"require": {
"php": "^8.1",
"symfony/dependency-injection": "^5.4.21 || ^6.4",
"symfony/http-kernel": "^5.4.21 || ^6.4",
"symfony/workflow": "^5.4.21 || ^6.4",
"winzou/state-machine": "^0.4",
"winzou/state-machine-bundle": "^0.6"
},
"suggest": {
"twig/twig": "Access the state machine in your twig templates (^2.12|^3.3)"
},
"require-dev": {
"matthiasnoback/symfony-config-test": "^4.2",
"phpunit/phpunit": "^9.5",
"webmozart/assert": "^1.9"
},
"extra": {
"branch-alias": {
"dev-main": "1.13-dev"
},
"symfony": {
"require": "^5.4.21"
}
}
}