-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
52 lines (52 loc) · 1.18 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
{
"name": "bentools/etl",
"description": "PHP ETL (Extract / Transform / Load) implementation, with very few dependencies.",
"type": "library",
"require": {
"php": ">=8.2",
"psr/event-dispatcher": "^1.0",
"psr/log": "^3.0",
"symfony/options-resolver": "@stable",
"thecodingmachine/safe": "^2.5"
},
"require-dev": {
"bentools/iterable-functions": "^2.1",
"doctrine/orm": "^2.16",
"friendsofphp/php-cs-fixer": "^3.35",
"mockery/mockery": "^1.6",
"monolog/monolog": "^3.5",
"pestphp/pest": "^2.24",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-mockery": "^1.1",
"react/stream": "^1.3",
"symfony/var-dumper": "*"
},
"license": "MIT",
"autoload": {
"psr-4": {
"BenTools\\ETL\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"BenTools\\ETL\\Tests\\": "tests/"
}
},
"scripts": {
"ci:check": [
"vendor/bin/php-cs-fixer fix",
"vendor/bin/phpstan analyse",
"vendor/bin/pest --coverage"
]
},
"minimum-stability": "stable",
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}