Skip to content

Commit 97d734f

Browse files
committed
Merge branch '5.4' into 6.4
* 5.4: Fix autoload configs to avoid warnings when building optimized autoloaders
2 parents c3facf1 + 75ddcbb commit 97d734f

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

composer.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,8 @@
190190
"Symfony\\Bridge\\PsrHttpMessage\\": "src/Symfony/Bridge/PsrHttpMessage/",
191191
"Symfony\\Bridge\\Twig\\": "src/Symfony/Bridge/Twig/",
192192
"Symfony\\Bundle\\": "src/Symfony/Bundle/",
193-
"Symfony\\Component\\": "src/Symfony/Component/"
193+
"Symfony\\Component\\": "src/Symfony/Component/",
194+
"Symfony\\Runtime\\Symfony\\Component\\": "src/Symfony/Component/Runtime/Internal/"
194195
},
195196
"files": [
196197
"src/Symfony/Component/String/Resources/functions.php"
@@ -199,7 +200,8 @@
199200
"src/Symfony/Component/Cache/Traits/ValueWrapper.php"
200201
],
201202
"exclude-from-classmap": [
202-
"**/Tests/"
203+
"**/Tests/",
204+
"**/bin/"
203205
]
204206
},
205207
"autoload-dev": {

src/Symfony/Bridge/PhpUnit/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
"files": [ "bootstrap.php" ],
3333
"psr-4": { "Symfony\\Bridge\\PhpUnit\\": "" },
3434
"exclude-from-classmap": [
35-
"/Tests/"
35+
"/Tests/",
36+
"/bin/"
3637
]
3738
},
3839
"bin": [

src/Symfony/Component/Validator/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@
5656
"autoload": {
5757
"psr-4": { "Symfony\\Component\\Validator\\": "" },
5858
"exclude-from-classmap": [
59-
"/Tests/"
59+
"/Tests/",
60+
"/Resources/bin/"
6061
]
6162
},
6263
"minimum-stability": "dev"

0 commit comments

Comments
 (0)