-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
54 lines (54 loc) · 1.74 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
{
"name": "idci/step-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle that provides a step system in order to represent an highly customisable workflow",
"keywords": ["step","workflow","flow","form","path"],
"license": "MIT",
"authors": [
{
"name": "Gabriel Bondaz",
"email": "[email protected]",
"homepage": "http://www.idci-consulting.fr"
},
{
"name": "Camille SCHWARZ",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0",
"jms/serializer-bundle": ">=1.0",
"symfony/config": "^4.4|^5.3|^6.0",
"symfony/dependency-injection": "^4.4|^5.3|^6.0",
"symfony/event-dispatcher": "^4.4|^5.3|^6.0",
"symfony/form": "^4.4|^5.3|^6.0",
"symfony/http-foundation": "^4.4|^5.3|^6.0",
"symfony/http-kernel": "^4.4|^5.3|^6.0",
"symfony/options-resolver": "^4.4|^5.3|^6.0",
"symfony/security-bundle": "^4.4|^5.3|^6.0",
"symfony/templating": "^4.4|^5.3|^6.0",
"symfony/translation": "^4.4|^5.3|^6.0",
"symfony/yaml": "^4.4|^5.3|^6.0",
"twig/twig": "^2.13|^3.4.3"
},
"suggest": {
"idci/extra-form-bundle": "Allow to use a powerful configuration for forms"
},
"config": {
"platform": {
"php": "7.2"
},
"sort-packages": true
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"symfony/framework-bundle": "^4.4|^5.3|^6.0",
"symfony/security-bundle": "^4.4|^5.3|^6.0",
"symfony/twig-bundle": "^4.4|^5.3|^6.0"
},
"autoload": {
"psr-4": {
"IDCI\\Bundle\\StepBundle\\": ""
}
}
}