Skip to content

Commit

Permalink
Merge branch 'master' into navigation-discovery-improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Nov 6, 2023
2 parents f11b5eb + 96b1232 commit ad97ba7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion packages/framework/src/Foundation/HydeKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class HydeKernel implements SerializableContract
use Serializable;
use Macroable;

final public const VERSION = '1.3.2';
final public const VERSION = '1.3.3';

protected static self $instance;

Expand Down
2 changes: 1 addition & 1 deletion packages/framework/src/Pages/DocumentationPage.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static function home(): ?Route

public static function homeRouteName(): string
{
return static::baseRouteKey().'/index';
return unslash(static::baseRouteKey().'/index');
}

/** @see https://hydephp.com/docs/1.x/documentation-pages#automatic-edit-page-button */
Expand Down
17 changes: 9 additions & 8 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
backupStaticProperties="false"
bootstrap="vendor/autoload.php"
colors="true"
cacheDirectory=".phpunit.result.cache"
stopOnFailure="false"
processIsolation="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd">
<testsuites>
<testsuite name="FeatureHyde">
<directory suffix="Test.php">./packages/hyde/tests</directory>
Expand All @@ -25,13 +25,14 @@
<directory suffix="Test.php">./packages/realtime-compiler/tests</directory>
</testsuite>
</testsuites>
<coverage>
<coverage/>
<php>
<env name="ENV" value="testing"/>
</php>
<source>
<include>
<directory suffix=".php">./packages/framework/src</directory>
<directory suffix=".php">./packages/publications/src</directory>
</include>
</coverage>
<php>
<env name="ENV" value="testing"/>
</php>
</source>
</phpunit>

0 comments on commit ad97ba7

Please sign in to comment.