forked from php-etl/satellite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
125 lines (125 loc) · 4.44 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "php-etl/satellite",
"description": "This library aims at building and running lambda PHP functions",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kiboko SAS",
"homepage": "http://kiboko.fr"
},
{
"name": "Grégory Planchat",
"email": "gregory@kiboko.fr"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"ext-json": "*",
"psr/log": "^3.0",
"symfony/console": "^6.0",
"symfony/process": "^6.0",
"symfony/config": "^6.0",
"symfony/yaml": "^6.0",
"symfony/dependency-injection": "^6.0",
"nikic/php-parser": "^4.10",
"symfony/http-client": "^6.0",
"nyholm/psr7": "^1.5",
"psr/http-client": "^1.0",
"react/promise": "^2.9",
"symfony/dotenv": "^6.0",
"php-etl/packaging": "*",
"php-etl/configurator-contracts": "0.8.*",
"php-etl/satellite-toolbox": "*",
"php-etl/pipeline-console-runtime": "*",
"php-etl/gyroscops-api-client": "*",
"php-etl/dockerfile": "*",
"php-etl/pipeline": "*",
"php-etl/workflow-console-runtime": "*",
"composer/composer": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpspec/phpspec": "^7.3",
"phpstan/phpstan": "^1.10",
"infection/infection": "^0.26.18",
"friends-of-phpspec/phpspec-code-coverage": "*",
"fakerphp/faker": "^1.9",
"justinrainbow/json-schema": "^5.2",
"rector/rector": "^0.15",
"php-etl/phpunit-extension": "*",
"php-etl/akeneo-expression-language": "*",
"php-etl/array-expression-language": "*",
"php-etl/string-expression-language": "*",
"php-etl/fast-map-plugin": "*",
"php-etl/akeneo-plugin": "*",
"php-etl/csv-plugin": "*",
"php-etl/spreadsheet-plugin": "*",
"php-etl/sql-plugin": "*",
"php-etl/sylius-plugin": "*",
"mikey179/vfsstream": "^1.6"
},
"autoload": {
"psr-4": {
"Kiboko\\Component\\Satellite\\": "src/"
},
"files": [
"src/attributes.php"
]
},
"autoload-dev": {
"psr-4": {
"unit\\Kiboko\\Component\\Satellite\\": "tests/unit/",
"functional\\Kiboko\\Component\\Satellite\\": "tests/functional/",
"integration\\Kiboko\\Component\\Satellite\\": "tests/integration/",
"schema\\Kiboko\\Component\\Satellite\\": "tests/schema/"
}
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"php-http/discovery": true,
"infection/extension-installer": true
}
},
"bin": ["bin/satellite", "bin/cloud"],
"extra": {
"branch-alias": {
"dev-main": "0.6.x-dev"
},
"gyroscops": {
"adapters": [
"Kiboko\\Component\\Satellite\\Adapter\\Docker\\Factory",
"Kiboko\\Component\\Satellite\\Adapter\\Filesystem\\Factory",
"Kiboko\\Component\\Satellite\\Adapter\\Tar\\Factory"
],
"runtimes": [
"Kiboko\\Component\\Satellite\\Runtime\\Api\\Factory",
"Kiboko\\Component\\Satellite\\Runtime\\HttpHook\\Factory",
"Kiboko\\Component\\Satellite\\Runtime\\Pipeline\\Factory",
"Kiboko\\Component\\Satellite\\Runtime\\Workflow\\Factory"
],
"plugins": [
"Kiboko\\Component\\Satellite\\Feature\\Logger\\Service",
"Kiboko\\Component\\Satellite\\Feature\\State\\Service",
"Kiboko\\Component\\Satellite\\Feature\\Rejection\\Service",
"Kiboko\\Component\\Satellite\\Plugin\\Custom\\Service",
"Kiboko\\Component\\Satellite\\Plugin\\Stream\\Service",
"Kiboko\\Component\\Satellite\\Plugin\\SFTP\\Service",
"Kiboko\\Component\\Satellite\\Plugin\\FTP\\Service",
"Kiboko\\Component\\Satellite\\Plugin\\Batching\\Service",
"Kiboko\\Component\\Satellite\\Plugin\\Filtering\\Service"
]
}
},
"scripts": {
"post-install-cmd": [
"Kiboko\\Component\\Satellite\\ComposerScripts::postInstall"
],
"post-update-cmd": [
"Kiboko\\Component\\Satellite\\ComposerScripts::postUpdate"
]
}
}