Skip to content

Commit a6144a1

Browse files
committed
Initial commit
0 parents  commit a6144a1

File tree

10 files changed

+5056
-0
lines changed

10 files changed

+5056
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

composer.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"name": "php-etl/magento-v2-extractors",
3+
"autoload": {
4+
"psr-4": {
5+
"Kiboko\\Magento\\V2\\Extractor\\": "src/"
6+
}
7+
},
8+
"autoload-dev": {
9+
"psr-4": {
10+
"Tests\\Kiboko\\Magento\\V2\\Extractor\\": "tests/"
11+
}
12+
},
13+
"authors": [
14+
{
15+
"name": "Grégory Planchat",
16+
"email": "gregory@kiboko.fr"
17+
}
18+
],
19+
"require": {
20+
"php": "^8.1",
21+
"php-etl/pipeline-contracts": "^0.3.3",
22+
"psr/log": "^3.0",
23+
"php-etl/magento-v2-api-client": "0.1.x-dev",
24+
"nyholm/psr7": "^1.5",
25+
"php-etl/bucket": "^0.2.0",
26+
"php-http/guzzle7-adapter": "^1.0"
27+
},
28+
"minimum-stability": "dev",
29+
"prefer-stable": true,
30+
"extra": {
31+
"branch-alias": {
32+
"dev-main": "0.1.x-dev"
33+
}
34+
},
35+
"require-dev": {
36+
"phpunit/phpunit": "^9.5",
37+
"php-etl/phpunit-extension": "^0.4.0"
38+
},
39+
"config": {
40+
"bin-dir": "bin"
41+
}
42+
}

0 commit comments

Comments
 (0)