Skip to content

Commit 6d0e05c

Browse files
committed
added the new Composer exclude-from-classmap option
1 parent 05c2ecc commit 6d0e05c

File tree

9 files changed

+36
-9
lines changed

9 files changed

+36
-9
lines changed

src/Symfony/Bridge/PhpUnit/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@
2323
},
2424
"autoload": {
2525
"files": [ "bootstrap.php" ],
26-
"psr-4": { "Symfony\\Bridge\\PhpUnit\\": "" }
26+
"psr-4": { "Symfony\\Bridge\\PhpUnit\\": "" },
27+
"exclude-from-classmap": [
28+
"/Tests/"
29+
]
2730
},
2831
"minimum-stability": "dev",
2932
"extra": {

src/Symfony/Bundle/DebugBundle/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@
3131
"symfony/dependency-injection": "For using as a service from the container"
3232
},
3333
"autoload": {
34-
"psr-4": { "Symfony\\Bundle\\DebugBundle\\": "" }
34+
"psr-4": { "Symfony\\Bundle\\DebugBundle\\": "" },
35+
"exclude-from-classmap": [
36+
"/Tests/"
37+
]
3538
},
3639
"minimum-stability": "dev",
3740
"extra": {

src/Symfony/Component/Asset/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@
2525
"symfony/http-foundation": "~2.4"
2626
},
2727
"autoload": {
28-
"psr-4": { "Symfony\\Component\\Asset\\": "" }
28+
"psr-4": { "Symfony\\Component\\Asset\\": "" },
29+
"exclude-from-classmap": [
30+
"/Tests/"
31+
]
2932
},
3033
"minimum-stability": "dev",
3134
"extra": {

src/Symfony/Component/ExpressionLanguage/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
"php": ">=5.3.9"
2020
},
2121
"autoload": {
22-
"psr-4": { "Symfony\\Component\\ExpressionLanguage\\": "" }
22+
"psr-4": { "Symfony\\Component\\ExpressionLanguage\\": "" },
23+
"exclude-from-classmap": [
24+
"/Tests/"
25+
]
2326
},
2427
"minimum-stability": "dev",
2528
"extra": {

src/Symfony/Component/Security/Acl/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@
3030
"doctrine/dbal": "For using the built-in ACL implementation"
3131
},
3232
"autoload": {
33-
"psr-4": { "Symfony\\Component\\Security\\Acl\\": "" }
33+
"psr-4": { "Symfony\\Component\\Security\\Acl\\": "" },
34+
"exclude-from-classmap": [
35+
"/Tests/"
36+
]
3437
},
3538
"minimum-stability": "dev",
3639
"extra": {

src/Symfony/Component/Security/Core/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@
3535
"ircmaxell/password-compat": "For using the BCrypt password encoder in PHP <5.5"
3636
},
3737
"autoload": {
38-
"psr-4": { "Symfony\\Component\\Security\\Core\\": "" }
38+
"psr-4": { "Symfony\\Component\\Security\\Core\\": "" },
39+
"exclude-from-classmap": [
40+
"/Tests/"
41+
]
3942
},
4043
"minimum-stability": "dev",
4144
"extra": {

src/Symfony/Component/Security/Csrf/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@
2626
"symfony/http-foundation": "For using the class SessionTokenStorage."
2727
},
2828
"autoload": {
29-
"psr-4": { "Symfony\\Component\\Security\\Csrf\\": "" }
29+
"psr-4": { "Symfony\\Component\\Security\\Csrf\\": "" },
30+
"exclude-from-classmap": [
31+
"/Tests/"
32+
]
3033
},
3134
"minimum-stability": "dev",
3235
"extra": {

src/Symfony/Component/Security/Http/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@
3232
"symfony/routing": "For using the HttpUtils class to create sub-requests, redirect the user, and match URLs"
3333
},
3434
"autoload": {
35-
"psr-4": { "Symfony\\Component\\Security\\Http\\": "" }
35+
"psr-4": { "Symfony\\Component\\Security\\Http\\": "" },
36+
"exclude-from-classmap": [
37+
"/Tests/"
38+
]
3639
},
3740
"minimum-stability": "dev",
3841
"extra": {

src/Symfony/Component/VarDumper/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@
2323
},
2424
"autoload": {
2525
"files": [ "Resources/functions/dump.php" ],
26-
"psr-4": { "Symfony\\Component\\VarDumper\\": "" }
26+
"psr-4": { "Symfony\\Component\\VarDumper\\": "" },
27+
"exclude-from-classmap": [
28+
"/Tests/"
29+
]
2730
},
2831
"minimum-stability": "dev",
2932
"extra": {

0 commit comments

Comments
 (0)