Skip to content

Commit a18e442

Browse files
committed
Add dependency on symfony/yaml - required for parsing yml routing files
1 parent fa9f340 commit a18e442

3 files changed

Lines changed: 242 additions & 167 deletions

File tree

.github/workflows/php.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,11 @@ jobs:
8181

8282
- name: Check code for unused dependencies in composer.json
8383
run: |
84+
# symfony/yaml is required by Symfony routing to parse yml routing files
8485
composer-unused \
8586
--excludePackage=simplesamlphp/simplesamlphp-assets-base \
86-
--excludePackage=symfony/polyfill-intl-icu
87+
--excludePackage=symfony/polyfill-intl-icu \
88+
--excludePackage=symfony/yaml
8789
8890
- name: PHP Code Sniffer
8991
run: phpcs

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@
9292
"symfony/twig-bridge": "^6.4",
9393
"symfony/var-exporter": "^6.4",
9494
"twig/intl-extra": "^3.7",
95-
"twig/twig": "^3.5"
95+
"twig/twig": "^3.5",
96+
"symfony/yaml": "^6.4"
9697
},
9798
"require-dev": {
9899
"ext-curl": "*",

0 commit comments

Comments
 (0)