Skip to content
This repository was archived by the owner on Jul 28, 2022. It is now read-only.

Commit 19b42cb

Browse files
core23greg0ire
authored andcommitted
Refactor folder structure
1 parent 6597e82 commit 19b42cb

File tree

117 files changed

+12
-22
lines changed

Some content is hidden

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

117 files changed

+12
-22
lines changed

.gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.* export-ignore
22
*.md export-ignore
33
Tests/* export-ignore
4-
Resources/doc/* export-ignore
4+
docs/* export-ignore

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/build
2-
/Resources/doc/_build
2+
/docs/_build
33
/vendor
44
.php_cs.cache
55
composer.lock

.travis/install_docs.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env sh
22
set -ev
33

4-
pip install -r Resources/doc/requirements.txt --user
4+
pip install -r docs/requirements.txt --user

CONTRIBUTING.md

+3-3

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ test:
1919
phpunit -c phpunit.xml.dist --coverage-clover build/logs/clover.xml
2020

2121
docs:
22-
cd Resources/doc && sphinx-build -W -b html -d _build/doctrees . _build/html
22+
cd docs && sphinx-build -W -b html -d _build/doctrees . _build/html

composer.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,10 @@
5656
"sonata-project/admin-bundle": "<3.1"
5757
},
5858
"autoload": {
59-
"psr-4": { "Sonata\\NotificationBundle\\": "" },
60-
"exclude-from-classmap": [
61-
"Tests/"
62-
]
59+
"psr-4": { "Sonata\\NotificationBundle\\": "src/" }
6360
},
6461
"autoload-dev": {
65-
"psr-4": { "Sonata\\NotificationBundle\\Tests\\": "Tests/" }
62+
"psr-4": { "Sonata\\NotificationBundle\\Tests\\": "tests/" }
6663
},
6764
"extra": {
6865
"branch-alias": {
File renamed without changes.
File renamed without changes.

Resources/doc/conf.py docs/conf.py

File renamed without changes.
File renamed without changes.

phpunit.xml.dist

+3-10
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,17 @@
99
processIsolation="false"
1010
stopOnFailure="false"
1111
syntaxCheck="false"
12-
bootstrap="Tests/bootstrap.php"
12+
bootstrap="tests/bootstrap.php"
1313
>
1414
<testsuites>
1515
<testsuite name="NotificationBundle Test Suite">
16-
<directory>./Tests</directory>
16+
<directory suffix="Test.php">./tests/</directory>
1717
</testsuite>
1818
</testsuites>
1919

2020
<filter>
2121
<whitelist>
22-
<directory>./</directory>
23-
<exclude>
24-
<directory>./Tests/</directory>
25-
<directory>./DataFixtures/</directory>
26-
<directory>./Resources/</directory>
27-
<directory>./vendor/</directory>
28-
<directory>./coverage/</directory>
29-
</exclude>
22+
<directory suffix=".php">./src/</directory>
3023
</whitelist>
3124
</filter>
3225

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)