Skip to content

Commit 997262c

Browse files
committed
Fix deps
1 parent 607fa10 commit 997262c

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

composer-dependency-analyser.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
<?php
22

33
use ShipMonk\ComposerDependencyAnalyser\Config\Configuration;
4+
use ShipMonk\ComposerDependencyAnalyser\Config\ErrorType;
45

56
return (new Configuration())
67
->addPathToExclude(__DIR__ . '/tests')
7-
;
8+
->ignoreUnknownClasses([
9+
League\Flysystem\FileNotFoundException::class,
10+
League\Flysystem\FilesystemInterface::class,
11+
League\Flysystem\RootViolationException::class,
12+
])
13+
->ignoreErrorsOnPackage('league/flysystem-bundle', [ErrorType::UNUSED_DEPENDENCY]) // this is used to inject the filesystem service
14+
->ignoreErrorsOnPackage('setono/doctrine-orm-batcher-bundle', [ErrorType::UNUSED_DEPENDENCY]) // this is used to inject the batcher service
15+
;

composer.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,14 @@
1818
"setono/doctrine-orm-batcher": "^0.6",
1919
"setono/doctrine-orm-batcher-bundle": "^0.3.4",
2020
"spatie/enum": "^3.7",
21+
"sylius/channel": "^1.0",
22+
"sylius/channel-bundle": "^1.0",
23+
"sylius/core": "^1.0",
24+
"sylius/core-bundle": "^1.0",
25+
"sylius/inventory": "^1.0",
26+
"sylius/locale": "^1.0",
2127
"sylius/resource-bundle": "^1.6",
28+
"sylius/ui-bundle": "^1.0",
2229
"symfony/config": "^6.4 || ^7.4",
2330
"symfony/console": "^6.4 || ^7.4",
2431
"symfony/dependency-injection": "^6.4 || ^7.4",

0 commit comments

Comments
 (0)