-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
48 lines (48 loc) · 1.16 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
{
"name": "flow-php/etl",
"type": "library",
"description": "PHP ETL - Extract Transform Load - Abstraction",
"keywords": [
"etl",
"extract",
"transform",
"load"
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-json": "*",
"ext-mbstring": "*",
"flow-php/array-dot": "^0.10.0 || 1.x-dev",
"flow-php/rdsl": "^0.10.0 || 1.x-dev",
"flow-php/filesystem": "^0.10.0 || 1.x-dev",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
"webmozart/glob": "^3.0 || ^4.0",
"symfony/string": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"ramsey/uuid": "^4.5",
"symfony/uid": "^6.3 || ^7.0"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"license": "MIT",
"autoload": {
"files": [
"src/Flow/ETL/DSL/functions.php"
],
"psr-4": {
"Flow\\": [
"src/Flow"
]
}
},
"autoload-dev": {
"psr-4": {
"Flow\\": "tests/Flow"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}