-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
61 lines (61 loc) · 1.67 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
{
"name": "php-etl/sql-plugin",
"description": "This plugin allows you to perform SQL queries in the ETL pipelines",
"type": "gyroscops-plugin",
"license": "MIT",
"authors": [
{
"name": "Grégory Planchat",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"nikic/php-parser": "^4.10",
"symfony/config": "^6.0",
"symfony/expression-language": "^6.0",
"php-etl/configurator-contracts": "0.8.*",
"php-etl/satellite-toolbox": "*",
"php-etl/fast-map-plugin": "*",
"php-etl/packaging": "*"
},
"require-dev": {
"ext-pdo": "*",
"phpunit/phpunit": "^10.0",
"php-etl/phpunit-extension": "*",
"phpstan/phpstan": "^1.10",
"php-etl/sql-flow": "*",
"friendsofphp/php-cs-fixer": "^3.0",
"mikey179/vfsstream": "^1.6",
"infection/infection": "^0.26.18",
"rector/rector": "^0.15"
},
"autoload": {
"psr-4": {
"Kiboko\\Plugin\\SQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"functional\\Kiboko\\Plugin\\SQL\\": "tests/functional/",
"functional\\Kiboko\\Plugin\\SQL\\utils\\": "tests/utils/"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.5.x-dev"
},
"gyroscops": {
"plugins": ["Kiboko\\Plugin\\SQL\\Service"]
}
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"php-http/discovery": true,
"infection/extension-installer": true
}
}
}