forked from leomarquine/php-etl
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
66 lines (66 loc) · 2.05 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
{
"name": "wizaplace/php-etl",
"description": "Extract, Transform and Load data using this PHP written migration library.",
"keywords": ["etl", "extract", "transform", "load", "extraction", "transformation", "data", "symfony"],
"license": "MIT",
"authors": [
{
"name": "Wizaplace DevTeam ",
"email": "[email protected]"
},
{
"name": "Leonardo Marquine",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true
}
},
"require": {
"php": "~8.1",
"softcreatr/jsonpath": "^0.7.2"
},
"autoload": {
"psr-4": {
"Wizaplace\\Etl\\": "src/"
}
},
"require-dev": {
"ext-PDO": "*",
"ext-json": "*",
"ext-pdo_sqlite": "*",
"ext-xmlreader": "*",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.100",
"phpstan/phpstan-deprecation-rules": "^0.12.6",
"phpstan/phpstan-strict-rules": "^0.12.11",
"phpunit/phpunit": ">=8"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"suggest": {
"ext-PDO": "Required for various extractors and loaders. Most users will want this.",
"ext-json": "Required for JSON extractor and JSON Encode/Decode transformers.",
"ext-pdo_mysql": "Required to work with MySQL databases.",
"ext-pdo_pgsql": "Required to work with PostgreSQL databases.",
"ext-pdo_sqlite": "Required to work with SQLite databases.",
"ext-pdo_sqlsrv": "Required to work with MS SQL Server databases.",
"ext-xmlreader": "Required for XML extractor."
},
"scripts": {
"scan": [
"phpstan --memory-limit=256M analyze"
],
"test": "phpunit",
"check": ["@scan", "@test"]
},
"minimum-stability": "dev",
"prefer-stable": true
}