forked from cleverage/processuibundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
87 lines (87 loc) · 2.25 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "cleverage/ui-process-bundle",
"description": "UI for cleverage/process-bundle",
"keywords": [
"process",
"task",
"etl",
"transformation",
"import",
"export",
"ui"
],
"homepage": "https://github.com/cleverage/ui-process-bundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Grégory Tonon",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Xavier Marchegay",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"CleverAge\\UiProcessBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CleverAge\\UiProcessBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"cleverage/process-bundle": "^4.0",
"doctrine/common": "^3.0",
"doctrine/dbal": "^2.9 || ^3.0",
"doctrine/doctrine-bundle": "^2.5",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "^2.9 || ^3.0",
"dragonmantank/cron-expression": "^3.4",
"easycorp/easyadmin-bundle": "^4.8",
"symfony/doctrine-messenger": "^6.4|^7.1",
"symfony/dotenv": "^6.4|^7.1",
"symfony/messenger": "^6.4|^7.1",
"symfony/runtime": "^6.4|^7.1",
"symfony/scheduler": "^6.4|^7.1",
"symfony/string": "^6.4|^7.1",
"symfony/uid": "^6.4|^7.1"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.4",
"friendsofphp/php-cs-fixer": "*",
"phpstan/extension-installer": "*",
"phpstan/phpstan": "*",
"phpstan/phpstan-doctrine": "*",
"phpstan/phpstan-symfony": "*",
"phpunit/phpunit": "<10.0",
"rector/rector": "*",
"roave/security-advisories": "dev-latest",
"symfony/browser-kit": "^6.4|^7.1",
"symfony/css-selector": "^6.4|^7.1",
"symfony/debug-bundle": "^6.4|^7.1",
"symfony/maker-bundle": "^1.31",
"symfony/web-profiler-bundle": "^6.4|^7.1",
"vincentlanglet/twig-cs-fixer": "^3.3"
},
"conflict": {
"symfony/twig-bridge": "7.2.0",
"twig/twig": "v3.15.0|v3.16.0"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true
}
}