summaryrefslogtreecommitdiffstats
path: root/phpunit.xml
diff options
context:
space:
mode:
authorrdalverny <rdalverny@gmail.com>2022-01-22 18:54:11 +0100
committerrdalverny <rdalverny@gmail.com>2022-01-22 18:54:11 +0100
commitc27c9d1d359828a071159995689c9c3b28d99891 (patch)
tree8aa8e0e2ea11935c34cee67f2a8f44201329b7e8 /phpunit.xml
parent58ce95a255c04e1b6ecac0d794bc4dbeb23871de (diff)
downloadplanet-c27c9d1d359828a071159995689c9c3b28d99891.tar
planet-c27c9d1d359828a071159995689c9c3b28d99891.tar.gz
planet-c27c9d1d359828a071159995689c9c3b28d99891.tar.bz2
planet-c27c9d1d359828a071159995689c9c3b28d99891.tar.xz
planet-c27c9d1d359828a071159995689c9c3b28d99891.zip
Move public resources under public/ directory
Existing setups need to update their server config to point (or link to) public/ directory instead of the root of the code repo. Configuration (and password) location also changes from custom/ and admin/inc to custom/config/. That way, config and code library move out of the publicly served file tree. Apart from the change of the web root, config should be migrated seamlessly.
Diffstat (limited to 'phpunit.xml')
-rw-r--r--phpunit.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/phpunit.xml b/phpunit.xml
index 8d463d4..2a0713a 100644
--- a/phpunit.xml
+++ b/phpunit.xml
@@ -17,7 +17,9 @@
<coverage processUncoveredFiles="false">
<include>
- <directory suffix=".php">.</directory>
+ <directory suffix=".php">app</directory>
+ <directory suffix=".php">public</directory>
+ <directory suffix=".php">custom/views</directory>
</include>
<exclude>
<directory>vendor</directory>