Skip to content

Commit

Permalink
➖ remove sf4 event dispatcher dependency (#665)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nek- authored Sep 25, 2022
1 parent 0586f16 commit 1b392c0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,12 @@ jobs:
- name: Download dependencies
run: |
make require-all
composer require --dev --no-update pedrotroller/php-cs-custom-fixer:2.23.0
composer update --no-interaction --prefer-dist
- name: PHP-CS-Fixer
run: |
./vendor/bin/php-cs-fixer --version
./vendor/bin/php-cs-fixer fix --diff --diff-format udiff --dry-run --show-progress=none
./vendor/bin/php-cs-fixer fix --diff --dry-run --show-progress=none
psalm:
name: Psalm
Expand Down
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ docker.all-deps: docker.deps ## Install dependencies
microsoft/azure-storage-blob:^1.0 \
phpseclib/phpseclib:^2.0 \
mongodb/mongodb:^1.1 \
symfony/event-dispatcher:^4.4 \
async-aws/simple-s3:^0.1.1

.PHONY: tests
Expand Down Expand Up @@ -74,8 +73,7 @@ require-all-legacy: # kept for compatibility with the old CI config, to be remov
league/flysystem:^1.0 \
microsoft/azure-storage-blob:^1.0 \
phpseclib/phpseclib:^2.0 \
mongodb/mongodb:^1.1 \
symfony/event-dispatcher:^4.4
mongodb/mongodb:^1.1


require-all: require-all-legacy ## Install all dependencies for adapters
Expand Down
4 changes: 2 additions & 2 deletions src/Gaufrette/Adapter/DoctrineDbal.php
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ public function listKeys($prefix = '')
'dirs' => [],
'keys' => array_map(
function ($value) {
return $value['_key'];
},
return $value['_key'];
},
$keys
),
];
Expand Down

0 comments on commit 1b392c0

Please sign in to comment.