Skip to content

Commit

Permalink
Merge branch '5.4' into 6.4
Browse files Browse the repository at this point in the history
* 5.4:
  Fix autoload configs to avoid warnings when building optimized autoloaders
  • Loading branch information
fabpot committed Jun 2, 2024
2 parents c3facf1 + 75ddcbb commit 97d734f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@
"Symfony\\Bridge\\PsrHttpMessage\\": "src/Symfony/Bridge/PsrHttpMessage/",
"Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/",
"Symfony\\Bundle\\": "src/Symfony/Bundle/",
"Symfony\\Component\\": "src/Symfony/Component/"
"Symfony\\Component\\": "src/Symfony/Component/",
"Symfony\\Runtime\\Symfony\\Component\\": "src/Symfony/Component/Runtime/Internal/"
},
"files": [
"src/Symfony/Component/String/Resources/functions.php"
Expand All @@ -199,7 +200,8 @@
"src/Symfony/Component/Cache/Traits/ValueWrapper.php"
],
"exclude-from-classmap": [
"**/Tests/"
"**/Tests/",
"**/bin/"
]
},
"autoload-dev": {
Expand Down
3 changes: 2 additions & 1 deletion src/Symfony/Bridge/PhpUnit/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
"files": [ "bootstrap.php" ],
"psr-4": { "Symfony\\Bridge\\PhpUnit\\": "" },
"exclude-from-classmap": [
"/Tests/"
"/Tests/",
"/bin/"
]
},
"bin": [
Expand Down
3 changes: 2 additions & 1 deletion src/Symfony/Component/Validator/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@
"autoload": {
"psr-4": { "Symfony\\Component\\Validator\\": "" },
"exclude-from-classmap": [
"/Tests/"
"/Tests/",
"/Resources/bin/"
]
},
"minimum-stability": "dev"
Expand Down

0 comments on commit 97d734f

Please sign in to comment.