-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
78 lines (78 loc) · 1.94 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
{
"name": "fab2s/yaetl",
"description": "Widely Extended Nodal Extract-Transform-Load ETL Workflow AKA NEJQTL or Nodal-Extract-Join-Qualify-Tranform-Load",
"type": "library",
"authors": [{
"name": "Fabrice de Stefanis"
}],
"support": {
"issues": "https://github.com/fab2s/YaEtl/issues",
"source": "https://github.com/fab2s/YaEtl"
},
"keywords": [
"Extract-Transform-Load",
"ETL",
"Fluent",
"symfony",
"laravel",
"PHP",
"Nodal",
"Extract",
"Join",
"Qualify",
"Transform",
"Load",
"WorkFlow",
"Branch",
"Serializable",
"Data-Processing"
],
"license": [
"MIT"
],
"require": {
"php": "^7.2|^8.0",
"fab2s/nodalflow": "^2.0.5",
"fab2s/opinhelpers": "^1.0"
},
"require-dev": {
"ext-pdo": "*",
"phpunit/phpunit": "^9.0|^8.0|^7.5",
"symfony/console": "^6.0|^5.0|^4.0|^3.4|^2.8",
"symfony/event-dispatcher": "^6.0|^5.0|^4.0|^3.4|^2.8",
"orchestra/testbench": "^7.0|^6.0|^5.0|^4.0",
"friendsofphp/php-cs-fixer": "^3.0|^2.0"
},
"suggest": {
"symfony/console": "To use ProgressBarSubscriber",
"laravel/laravel": "To use Laravel (The awesome) implementations"
},
"autoload": {
"psr-4": {
"fab2s\\YaEtl\\": "src"
},
"files": [
"src/support/deprecated.php"
]
},
"autoload-dev": {
"psr-4": {
"fab2s\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev",
"dev-1.x": "1.x-dev"
}
},
"scripts": {
"post-update-cmd": [
"rm -f .*.cache"
],
"post-install-cmd": [
"rm -f .*.cache"
],
"fix": "php-cs-fixer fix --config=./.php-cs-fixer.dist.php -vvv"
}
}