Skip to content

Commit 1ed85ee

Browse files
authored
Merge pull request #375 from symfony-cmf/file-structure
adjust to new file structure
2 parents 3b8b534 + d49cde6 commit 1ed85ee

File tree

95 files changed

+15
-10
lines changed

Some content is hidden

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

95 files changed

+15
-10
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
phpunit.xml
22
composer.lock
33
vendor
4-
Tests/Resources/app/cache
5-
Tests/Resources/app/logs
4+
tests/Resources/app/cache
5+
tests/Resources/app/logs

composer.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,12 @@
4848
},
4949
"autoload": {
5050
"psr-4": {
51-
"Symfony\\Cmf\\Bundle\\RoutingBundle\\": ""
51+
"Symfony\\Cmf\\Bundle\\RoutingBundle\\": "src/"
52+
}
53+
},
54+
"autoload-dev": {
55+
"psr-4": {
56+
"Symfony\\Cmf\\Bundle\\RoutingBundle\\Tests\\": "tests/"
5257
}
5358
},
5459
"extra": {

phpunit.xml.dist

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@
88

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

1414
<testsuite name="phpcr">
15-
<directory>./Tests/Functional</directory>
16-
<exclude>./Tests/Functional/Doctrine/Orm</exclude>
15+
<directory>./tests/Functional</directory>
16+
<exclude>./tests/Functional/Doctrine/Orm</exclude>
1717
</testsuite>
1818

1919
<testsuite name="orm">
20-
<directory>./Tests/Functional/Doctrine/Orm</directory>
20+
<directory>./tests/Functional/Doctrine/Orm</directory>
2121
</testsuite>
2222
</testsuites>
2323

2424
<filter>
2525
<whitelist addUncoveredFilesFromWhitelist="true">
26-
<directory>.</directory>
26+
<directory>src/</directory>
2727
<exclude>
2828
<directory>Resources/</directory>
2929
<directory>Admin/</directory>
@@ -34,7 +34,7 @@
3434
</filter>
3535

3636
<php>
37-
<server name="KERNEL_DIR" value="Tests/Resources/app" />
37+
<server name="KERNEL_DIR" value="tests/Resources/app" />
3838
</php>
3939

4040
<listeners>
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)