Skip to content

Commit 39ee25e

Browse files
danognicolas-grekas
authored andcommitted
[HttpClient][Translation][Workflow] [Service] Exclude tests from classmaps
1 parent 03433e9 commit 39ee25e

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

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": {

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": {

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)