-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit fc25e8f Author: Peter Csajtai <[email protected]> Date: Mon Apr 1 18:12:50 2024 +0200 Update README.md commit aa964fd Author: Peter Csajtai <[email protected]> Date: Mon Apr 1 17:56:40 2024 +0200 Update Version.php commit 9e3303a Author: Peter Csajtai <[email protected]> Date: Sun Mar 31 23:23:21 2024 +0200 Update README.md commit dda776a Author: Peter Csajtai <[email protected]> Date: Sun Mar 31 22:29:48 2024 +0200 Update ci.yml commit f3f6319 Author: Peter Csajtai <[email protected]> Date: Sun Mar 31 22:26:31 2024 +0200 Fix report errors commit 2050543 Author: Peter Csajtai <[email protected]> Date: Sun Mar 31 22:23:05 2024 +0200 Reformat, fix phpunit execution commit 5b1a770 Author: Peter Csajtai <[email protected]> Date: Sun Mar 31 22:12:08 2024 +0200 Update composer.json commit 23e2e63 Author: Peter Csajtai <[email protected]> Date: Sun Mar 31 21:48:12 2024 +0200 Add tests report commit 9c90e15 Author: Peter Csajtai <[email protected]> Date: Sun Mar 31 21:38:38 2024 +0200 Add sonarcloud analysis commit eb9141a Author: Peter Csajtai <[email protected]> Date: Sun Mar 31 21:15:45 2024 +0200 Update to PHP 8
- Loading branch information
Showing
27 changed files
with
235 additions
and
309 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,13 @@ | ||
<phpunit | ||
backupGlobals="false" | ||
backupStaticAttributes="false" | ||
bootstrap="vendor/autoload.php" | ||
colors="true" | ||
convertErrorsToExceptions="true" | ||
convertNoticesToExceptions="true" | ||
convertWarningsToExceptions="true" | ||
beStrictAboutTestsThatDoNotTestAnything="true" | ||
beStrictAboutOutputDuringTests="true" | ||
processIsolation="false" | ||
stopOnFailure="false"> | ||
<testsuites> | ||
<testsuite name="Unit Tests"> | ||
<directory>tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<filter> | ||
<whitelist processUncoveredFilesFromWhitelist="true"> | ||
<directory suffix=".php">src</directory> | ||
</whitelist> | ||
</filter> | ||
</phpunit> | ||
<?xml version="1.0"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutOutputDuringTests="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false"> | ||
<testsuites> | ||
<testsuite name="Unit Tests"> | ||
<directory>tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<source> | ||
<include> | ||
<directory suffix=".php">src</directory> | ||
</include> | ||
</source> | ||
</phpunit> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
sonar.projectKey=z4kn4fein_php-semver | ||
sonar.organization=z4kn4fein | ||
sonar.sources=src | ||
sonar.tests=tests | ||
|
||
sonar.php.tests.reportPath=tests.xml | ||
sonar.php.coverage.reportPaths=coverage.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace z4kn4fein\SemVer\Constraints; | ||
|
||
/** | ||
|
Oops, something went wrong.