minor #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

#16397 for new components in 2.8 that was missing

Commits
-------

2edebbf add composer exclude-from-classmap for new 2.8 components
This commit is contained in:
Fabien Potencier 2015-11-25 05:08:23 +01:00
commit 9042dc543c
2 changed files with 8 additions and 2 deletions

View File

@ -21,7 +21,10 @@
"ext-ldap": "*"
},
"autoload": {
"psr-4": { "Symfony\\Component\\Ldap\\": "" }
"psr-4": { "Symfony\\Component\\Ldap\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"extra": {

View File

@ -39,7 +39,10 @@
"symfony/serializer": "To use Serializer metadata"
},
"autoload": {
"psr-4": { "Symfony\\Component\\PropertyInfo\\": "" }
"psr-4": { "Symfony\\Component\\PropertyInfo\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"extra": {