Skip to content
This repository was archived by the owner on Sep 16, 2021. It is now read-only.

Commit 02fd1db

Browse files
committed
Use the new bundle structure
1 parent b2a1627 commit 02fd1db

File tree

70 files changed

+11
-9
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+11
-9
lines changed

composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,12 @@
3333
},
3434
"autoload": {
3535
"psr-4": {
36-
"Symfony\\Cmf\\Bundle\\MenuBundle\\": ""
36+
"Symfony\\Cmf\\Bundle\\MenuBundle\\": "src/"
37+
}
38+
},
39+
"autoload-dev": {
40+
"psr-4": {
41+
"Symfony\\Cmf\\Bundle\\MenuBundle\\Tests\\": "tests/"
3742
}
3843
},
3944
"extra": {

phpunit.xml.dist

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,20 @@
88

99
<testsuites>
1010
<testsuite name="Symfony CmfMenuBundle Test Suite">
11-
<directory>./Tests/Unit</directory>
11+
<directory>./tests/Unit</directory>
1212
</testsuite>
1313

1414
<testsuite name="phpcr">
15-
<directory>./Tests/Functional</directory>
15+
<directory>./tests/Functional</directory>
1616
</testsuite>
1717
</testsuites>
1818

1919
<filter>
2020
<whitelist addUncoveredFilesFromWhitelist="true">
21-
<directory>.</directory>
21+
<directory>src</directory>
2222
<exclude>
2323
<file>*Bundle.php</file>
2424
<directory>Resources/</directory>
25-
<directory>Admin/</directory>
26-
<directory>Tests/</directory>
27-
<directory>vendor/</directory>
2825
</exclude>
2926
</whitelist>
3027
</filter>
@@ -34,7 +31,7 @@
3431
</listeners>
3532

3633
<php>
37-
<server name="KERNEL_DIR" value="Tests/Resources/app" />
34+
<server name="KERNEL_DIR" value="tests/Resources/app" />
3835
</php>
3936

4037
</phpunit>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)