8000 minor #46134 [HttpClient][Translation][Workflow] [Service] Exclude t… · symfony/symfony@8912003 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8912003

Browse files
minor #46134 [HttpClient][Translation][Workflow] [Service] Exclude tests from classmaps (danog)
This PR was squashed before being merged into the 6.1 branch. Discussion ---------- [HttpClient][Translation][Workflow] [Service] Exclude tests from classmaps | Q | A | ------------- | --- | Branch? | 6.1 | Bug fix? | yes | New feature? | no | Deprecations? | no This excludes test directories from production classmaps. Commits ------- c5880a2 [HttpClient][Translation][Workflow] [Service] Exclude tests from classmaps
2 parents 18ef471 + c5880a2 commit 8912003

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

src/Symfony/Component/Workflow/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@
3434
"symfony/event-dispatcher": "<5.4"
3535
},
3636
"autoload": {
37-
"psr-4": { "Symfony\\Component\\Workflow\\": "" }
37+
"psr-4": { "Symfony\\Component\\Workflow\\": "" },
38+
"exclude-from-classmap": [
39+
"/Tests/"
40+
]
3841
},
3942
"minimum-stability": "dev"
4043
}

src/Symfony/Contracts/HttpClient/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@
2222
"symfony/http-client-implementation": ""
2323
},
2424
"autoload": {
25-
"psr-4": { "Symfony\\Contracts\\HttpClient\\": "" }
25+
"psr-4": { "Symfony\\Contracts\\HttpClient\\": "" },
26+
"exclude-from-classmap": [
27+
"/Test/"
28+
]
2629
},
2730
"minimum-stability": "dev",
2831
"extra": {

src/Symfony/Contracts/Service/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@
2626
"symfony/service-implementation": ""
2727
},
2828
"autoload": {
29-
"psr-4": { "Symfony\\Contracts\\Service\\": "" }
29+
"psr-4": { "Symfony\\Contracts\\Service\\": "" },
30+
"exclude-from-classmap": [
31+
"/Test/"
32+
]
3033
},
3134
"minimum-stability": "dev",
3235
"extra": {

src/Symfony/Contracts/Translation/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@
2222
"symfony/translation-implementation": ""
2323
},
2424
"autoload": {
25-
"psr-4": { "Symfony\\Contracts\\Translation\\": "" }
25+
"psr-4": { "Symfony\\Contracts\\Translation\\": "" },
26+
"exclude-from-classmap": [
27+
"/Test/"
28+
]
2629
},
2730
"minimum-stability": "dev",
2831
"extra": {

0 commit comments

Comments
 (0)
0