Skip to content

Commit f0b0390

Browse files
committed
bug #108 fix: add missing filesystem dependency for link script (chr-hertel)
This PR was merged into the main branch. Discussion ---------- fix: add missing filesystem dependency for link script | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | Docs? | no | Issues | | License | MIT should work now Commits ------- 2d874e3 fix: add missing filesystem dependency for link script
2 parents 08c08e6 + 2d874e3 commit f0b0390

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"require-dev": {
99
"php": ">=8.2",
1010
"php-cs-fixer/shim": "^3.75",
11-
"symfony/finder": "^6.4|^7.0",
12-
"symfony/process": "^6.4|^7.0"
11+
"symfony/finder": "^6.4 || ^7.0",
12+
"symfony/filesystem": "^6.4 || ^7.0"
1313
},
1414
"config": {
1515
"sort-packages": true

link

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ require __DIR__.'/vendor/autoload.php';
1515
use Symfony\Component\Filesystem\Filesystem;
1616

1717
/**
18-
* Links dependencies of a project to a local clone of the main symfony/symfony GitHub repository.
18+
* Links dependencies of a project to a local clone of the main symfony/ai GitHub repository.
1919
*
2020
* @author Kévin Dunglas <[email protected]>
2121
*/

0 commit comments

Comments
 (0)