forked from cleverage/process-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 2.46 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 2.46 KB
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
{
"name": "cleverage/process-bundle",
"description": "Process, import/export, transform and validate data with a simple API with Symfony3",
"keywords": [
"process",
"task",
"etl",
"transformation",
"import",
"export"
],
"homepage": "https://github.com/cleverage/process-bundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Vincent Chalnot",
"email": "vchalnot@clever-age.com",
"homepage": "http://chalnot.fr",
"role": "Lead Developer"
},
{
"name": "Valentin Clavreul",
"email": "vclavreul@clever-age.com",
"role": "Developer"
},
{
"name": "Madeline Veyrenc",
"email": "mveyrenc@clever-age.com",
"homepage": "https://github.com/mveyrenc",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"CleverAge\\ProcessBundle\\": ""
}
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"ext-dom": "*",
"ext-intl": "*",
"symfony/event-dispatcher-contracts": "~1.0|~2.0",
"psr/event-dispatcher": "1.0.0",
"psr/cache": "^1|^2|^3",
"symfony/config": "~3.0|~4.0|~5.0",
"symfony/dependency-injection": "~3.0|~4.0|~5.0",
"symfony/framework-bundle": "~3.0|~4.0|~5.0",
"symfony/expression-language": "~3.0|~4.0|~5.0",
"symfony/monolog-bundle": "~3.3",
"symfony/console": "~3.0|~4.0|~5.0",
"symfony/options-resolver": "~3.0|~4.0|~5.0",
"symfony/process": "~3.0|~4.0|~5.0",
"symfony/property-access": "~3.0|~4.0|~5.0",
"symfony/serializer": "~3.0|~4.0|~5.0",
"symfony/validator": "~3.0|~4.0|~5.0",
"symfony/yaml": "~3.0|~4.0|~5.0"
},
"require-dev": {
"phpunit/phpunit": "~6.4"
},
"suggest": {
"cleverage/doctrine-process-bundle": "Dedicated bundle for Doctrine dependencies for the process bundle",
"cleverage/flysystem-process-bundle": "Dedicated bundle for Flysystem dependencies for the process bundle",
"cleverage/rest-process-bundle": "Dedicated bundle for Rest dependencies for the process bundle",
"cleverage/soap-process-bundle": "Dedicated bundle for Soap dependencies for the process bundle",
"cleverage/enqueue-process-bundle": "Manage asynchronous events within the process bundle"
}
}