Skip to content

Commit 9042dc5

Browse files
committed
minor symfony#16655 add composer exclude-from-classmap for new 2.8 components (Tobion)
This PR was merged into the 2.8 branch. Discussion ---------- add composer exclude-from-classmap for new 2.8 components | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | n/a | License | MIT | Doc PR | n/a symfony#16397 for new components in 2.8 that was missing Commits ------- 2edebbf add composer exclude-from-classmap for new 2.8 components
2 parents 09e896c + 2edebbf commit 9042dc5

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

src/Symfony/Component/Ldap/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@
2121
"ext-ldap": "*"
2222
},
2323
"autoload": {
24-
"psr-4": { "Symfony\\Component\\Ldap\\": "" }
24+
"psr-4": { "Symfony\\Component\\Ldap\\": "" },
25+
"exclude-from-classmap": [
26+
"/Tests/"
27+
]
2528
},
2629
"minimum-stability": "dev",
2730
"extra": {

src/Symfony/Component/PropertyInfo/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@
3939
"symfony/serializer": "To use Serializer metadata"
4040
},
4141
"autoload": {
42-
"psr-4": { "Symfony\\Component\\PropertyInfo\\": "" }
42+
"psr-4": { "Symfony\\Component\\PropertyInfo\\": "" },
43+
"exclude-from-classmap": [
44+
"/Tests/"
45+
]
4346
},
4447
"minimum-stability": "dev",
4548
"extra": {

0 commit comments

Comments
 (0)