Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tests #47

Merged
merged 7 commits into from
Jun 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/infection.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:

- name: Infection
run: |
wget -q https://github.com/infection/infection/releases/download/0.26.18/infection.phar
wget -q https://github.com/infection/infection/releases/download/0.26.18/infection.phar.asc
wget -q https://github.com/infection/infection/releases/download/0.26.21/infection.phar
wget -q https://github.com/infection/infection/releases/download/0.26.21/infection.phar.asc
chmod +x infection.phar
./infection.phar

Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ Goal

This package aims at integration the Akeneo PHP clients into the
[Pipeline](https://github.com/php-etl/pipeline) stack. This integration is
compatible with both [Akeneo Enterprise Edition client](https://github.com/akeneo/api-php-client-ee)
and the [Akeneo Community Edition client](https://github.com/akeneo/api-php-client)
compatible with the [Akeneo client](https://github.com/akeneo/api-php-client)

Principles
---
Expand All @@ -32,7 +31,6 @@ Configuration format

```yaml
akeneo:
enterprise: false
extractor:
type: productModel
method: all
Expand All @@ -56,7 +54,6 @@ akeneo:

```yaml
akeneo:
enterprise: true
loader:
type: productModel
method: upsert
Expand Down
13 changes: 3 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,14 @@
"php-etl/satellite-toolbox": "*"
},
"require-dev": {
"phpunit/php-invoker": "*",
"johnkary/phpunit-speedtrap": "*",
"php-http/mock-client": "^1.4@dev",
"symfony/yaml": "^6.0",
"laminas/laminas-diactoros": "^2.6",
"mybuilder/phpunit-accelerator": "*",
"php-etl/pipeline-contracts": "0.4.*",
"php-etl/phpunit-extension": "0.5.x-dev",
"php-etl/bucket-contracts": "0.2.*",
"akeneo/api-php-client-ee": "^4.0",
"akeneo/api-php-client": "^9.0",
"php-etl/bucket": "*",
"guzzlehttp/psr7": "^2.0",
"php-http/message": "^1.11",
"php-http/curl-client": "^2.0",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.0",
"infection/infection": "^0.26.18",
Expand All @@ -55,7 +48,7 @@
},
"extra": {
"branch-alias": {
"dev-main": "0.6.x-dev"
"dev-main": "0.7.x-dev"
},
"gyroscops": {
"plugins": ["Kiboko\\Plugin\\Akeneo\\Service"]
Expand Down
Loading