From 89952d4682bb70a67b2c1d9be81edf4981888221 Mon Sep 17 00:00:00 2001 From: Joshua Estes Date: Mon, 28 Oct 2024 16:19:24 -0400 Subject: [PATCH 1/3] random updates --- phpunit.xml.dist | 7 ++- src/SonsOfPHP/Bard/phpunit.xml.dist | 27 ++++++++++++ .../Bridge/Aws/Filesystem/phpunit.xml.dist | 31 +++++++++++++ .../Collections/Pager/phpunit.xml.dist | 31 +++++++++++++ .../Doctrine/DBAL/Pager/phpunit.xml.dist | 31 +++++++++++++ .../Doctrine/EventSourcing/phpunit.xml.dist | 31 +++++++++++++ .../Doctrine/ORM/Pager/phpunit.xml.dist | 31 +++++++++++++ .../LiipImagine/Filesystem/phpunit.xml.dist | 43 +++++++++++++++++++ .../Bridge/Symfony/Cqrs/phpunit.xml.dist | 43 +++++++++++++++++++ .../Symfony/EventSourcing/phpunit.xml.dist | 43 +++++++++++++++++++ .../Bridge/Twig/Money/phpunit.xml.dist | 43 +++++++++++++++++++ src/SonsOfPHP/Bundle/Cqrs/phpunit.xml.dist | 43 +++++++++++++++++++ .../FeatureToggleBundle/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/Assert/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/Cache/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/Clock/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/Container/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/Cookie/phpunit.xml.dist | 43 +++++++++++++++++++ src/SonsOfPHP/Component/Cqrs/phpunit.xml.dist | 43 +++++++++++++++++++ .../EventDispatcher/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/EventSourcing/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/FeatureToggle/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/Filesystem/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/HttpFactory/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/HttpHandler/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/HttpMessage/phpunit.xml.dist | 43 +++++++++++++++++++ src/SonsOfPHP/Component/Json/phpunit.xml.dist | 43 +++++++++++++++++++ src/SonsOfPHP/Component/Link/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/Logger/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/Mailer/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/Money/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/Pager/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/Registry/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/StateMachine/phpunit.xml.dist | 43 +++++++++++++++++++ .../Component/Version/phpunit.xml.dist | 43 +++++++++++++++++++ 35 files changed, 1392 insertions(+), 1 deletion(-) create mode 100644 src/SonsOfPHP/Bard/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Bridge/Aws/Filesystem/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Bridge/Doctrine/Collections/Pager/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Bridge/Doctrine/DBAL/Pager/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Bridge/Doctrine/EventSourcing/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Bridge/Doctrine/ORM/Pager/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Bridge/LiipImagine/Filesystem/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Bridge/Symfony/Cqrs/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Bridge/Symfony/EventSourcing/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Bridge/Twig/Money/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Bundle/Cqrs/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Bundle/FeatureToggleBundle/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/Assert/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/Cache/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/Clock/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/Container/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/Cookie/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/Cqrs/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/EventDispatcher/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/EventSourcing/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/FeatureToggle/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/Filesystem/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/HttpFactory/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/HttpHandler/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/HttpMessage/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/Json/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/Link/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/Logger/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/Mailer/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/Money/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/Pager/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/Registry/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/StateMachine/phpunit.xml.dist create mode 100644 src/SonsOfPHP/Component/Version/phpunit.xml.dist diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 38b3dfe7..83dba41d 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -7,7 +7,12 @@ bootstrap="vendor/autoload.php" cacheDirectory="build/cache/phpunit" requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + beStrictAboutCoverageMetadata="true" +> + + + + diff --git a/src/SonsOfPHP/Bard/phpunit.xml.dist b/src/SonsOfPHP/Bard/phpunit.xml.dist new file mode 100644 index 00000000..d7dcf25a --- /dev/null +++ b/src/SonsOfPHP/Bard/phpunit.xml.dist @@ -0,0 +1,27 @@ + + + + + + + + + + ./Tests/ + + + + + + src/* + + + diff --git a/src/SonsOfPHP/Bridge/Aws/Filesystem/phpunit.xml.dist b/src/SonsOfPHP/Bridge/Aws/Filesystem/phpunit.xml.dist new file mode 100644 index 00000000..a9220f36 --- /dev/null +++ b/src/SonsOfPHP/Bridge/Aws/Filesystem/phpunit.xml.dist @@ -0,0 +1,31 @@ + + + + + + + + + + ./Tests/ + + + + + + . + + + ./Tests + ./vendor + + + diff --git a/src/SonsOfPHP/Bridge/Doctrine/Collections/Pager/phpunit.xml.dist b/src/SonsOfPHP/Bridge/Doctrine/Collections/Pager/phpunit.xml.dist new file mode 100644 index 00000000..add26dc0 --- /dev/null +++ b/src/SonsOfPHP/Bridge/Doctrine/Collections/Pager/phpunit.xml.dist @@ -0,0 +1,31 @@ + + + + + + + + + + ./Tests/ + + + + + + . + + + ./Tests + ./vendor + + + diff --git a/src/SonsOfPHP/Bridge/Doctrine/DBAL/Pager/phpunit.xml.dist b/src/SonsOfPHP/Bridge/Doctrine/DBAL/Pager/phpunit.xml.dist new file mode 100644 index 00000000..c8755110 --- /dev/null +++ b/src/SonsOfPHP/Bridge/Doctrine/DBAL/Pager/phpunit.xml.dist @@ -0,0 +1,31 @@ + + + + + + + + + + ./Tests/ + + + + + + . + + + ./Tests + ./vendor + + + diff --git a/src/SonsOfPHP/Bridge/Doctrine/EventSourcing/phpunit.xml.dist b/src/SonsOfPHP/Bridge/Doctrine/EventSourcing/phpunit.xml.dist new file mode 100644 index 00000000..85113b8a --- /dev/null +++ b/src/SonsOfPHP/Bridge/Doctrine/EventSourcing/phpunit.xml.dist @@ -0,0 +1,31 @@ + + + + + + + + + + ./Tests/ + + + + + + . + + + ./Tests + ./vendor + + + diff --git a/src/SonsOfPHP/Bridge/Doctrine/ORM/Pager/phpunit.xml.dist b/src/SonsOfPHP/Bridge/Doctrine/ORM/Pager/phpunit.xml.dist new file mode 100644 index 00000000..3d423c36 --- /dev/null +++ b/src/SonsOfPHP/Bridge/Doctrine/ORM/Pager/phpunit.xml.dist @@ -0,0 +1,31 @@ + + + + + + + + + + ./Tests/ + + + + + + . + + + ./Tests + ./vendor + + + diff --git a/src/SonsOfPHP/Bridge/LiipImagine/Filesystem/phpunit.xml.dist b/src/SonsOfPHP/Bridge/LiipImagine/Filesystem/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Bridge/LiipImagine/Filesystem/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Bridge/Symfony/Cqrs/phpunit.xml.dist b/src/SonsOfPHP/Bridge/Symfony/Cqrs/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Bridge/Symfony/Cqrs/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Bridge/Symfony/EventSourcing/phpunit.xml.dist b/src/SonsOfPHP/Bridge/Symfony/EventSourcing/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Bridge/Symfony/EventSourcing/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Bridge/Twig/Money/phpunit.xml.dist b/src/SonsOfPHP/Bridge/Twig/Money/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Bridge/Twig/Money/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Bundle/Cqrs/phpunit.xml.dist b/src/SonsOfPHP/Bundle/Cqrs/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Bundle/Cqrs/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Bundle/FeatureToggleBundle/phpunit.xml.dist b/src/SonsOfPHP/Bundle/FeatureToggleBundle/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Bundle/FeatureToggleBundle/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/Assert/phpunit.xml.dist b/src/SonsOfPHP/Component/Assert/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/Assert/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/Cache/phpunit.xml.dist b/src/SonsOfPHP/Component/Cache/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/Cache/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/Clock/phpunit.xml.dist b/src/SonsOfPHP/Component/Clock/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/Clock/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/Container/phpunit.xml.dist b/src/SonsOfPHP/Component/Container/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/Container/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/Cookie/phpunit.xml.dist b/src/SonsOfPHP/Component/Cookie/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/Cookie/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/Cqrs/phpunit.xml.dist b/src/SonsOfPHP/Component/Cqrs/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/Cqrs/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/EventDispatcher/phpunit.xml.dist b/src/SonsOfPHP/Component/EventDispatcher/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/EventDispatcher/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/EventSourcing/phpunit.xml.dist b/src/SonsOfPHP/Component/EventSourcing/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/EventSourcing/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/FeatureToggle/phpunit.xml.dist b/src/SonsOfPHP/Component/FeatureToggle/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/FeatureToggle/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/Filesystem/phpunit.xml.dist b/src/SonsOfPHP/Component/Filesystem/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/Filesystem/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/HttpFactory/phpunit.xml.dist b/src/SonsOfPHP/Component/HttpFactory/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/HttpFactory/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/HttpHandler/phpunit.xml.dist b/src/SonsOfPHP/Component/HttpHandler/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/HttpHandler/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/HttpMessage/phpunit.xml.dist b/src/SonsOfPHP/Component/HttpMessage/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/HttpMessage/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/Json/phpunit.xml.dist b/src/SonsOfPHP/Component/Json/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/Json/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/Link/phpunit.xml.dist b/src/SonsOfPHP/Component/Link/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/Link/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/Logger/phpunit.xml.dist b/src/SonsOfPHP/Component/Logger/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/Logger/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/Mailer/phpunit.xml.dist b/src/SonsOfPHP/Component/Mailer/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/Mailer/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/Money/phpunit.xml.dist b/src/SonsOfPHP/Component/Money/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/Money/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/Pager/phpunit.xml.dist b/src/SonsOfPHP/Component/Pager/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/Pager/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/Registry/phpunit.xml.dist b/src/SonsOfPHP/Component/Registry/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/Registry/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/StateMachine/phpunit.xml.dist b/src/SonsOfPHP/Component/StateMachine/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/StateMachine/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + diff --git a/src/SonsOfPHP/Component/Version/phpunit.xml.dist b/src/SonsOfPHP/Component/Version/phpunit.xml.dist new file mode 100644 index 00000000..38b3dfe7 --- /dev/null +++ b/src/SonsOfPHP/Component/Version/phpunit.xml.dist @@ -0,0 +1,43 @@ + + + + + + src/SonsOfPHP/Bard/Tests + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Component/*/Tests + + + + + + + + + src/* + + + src/SonsOfPHP/*/Tests + src/SonsOfPHP/*/vendor + src/SonsOfPHP/Bridge/*/*/*/Tests + src/SonsOfPHP/Bridge/*/*/*/vendor + src/SonsOfPHP/Bridge/*/*/Tests + src/SonsOfPHP/Bridge/*/*/vendor + src/SonsOfPHP/Bundle/*/Tests + src/SonsOfPHP/Bundle/*/vendor + src/SonsOfPHP/Component/*/Tests + src/SonsOfPHP/Component/*/vendor + src/SonsOfPHP/Contract/*/vendor + + + From cad66285348099b0190e1c5f0c6cd11a518787d5 Mon Sep 17 00:00:00 2001 From: Joshua Estes Date: Mon, 28 Oct 2024 17:56:21 -0400 Subject: [PATCH 2/3] meh --- .../LiipImagine/Filesystem/phpunit.xml.dist | 52 +++++++------------ .../Runtime/FeatureToggleExtensionRuntime.php | 8 ++- 2 files changed, 27 insertions(+), 33 deletions(-) diff --git a/src/SonsOfPHP/Bridge/LiipImagine/Filesystem/phpunit.xml.dist b/src/SonsOfPHP/Bridge/LiipImagine/Filesystem/phpunit.xml.dist index 38b3dfe7..4e4e33fa 100644 --- a/src/SonsOfPHP/Bridge/LiipImagine/Filesystem/phpunit.xml.dist +++ b/src/SonsOfPHP/Bridge/LiipImagine/Filesystem/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - - + + + . + + + ./Tests + ./vendor + + diff --git a/src/SonsOfPHP/Bundle/FeatureToggleBundle/src/Twig/Runtime/FeatureToggleExtensionRuntime.php b/src/SonsOfPHP/Bundle/FeatureToggleBundle/src/Twig/Runtime/FeatureToggleExtensionRuntime.php index 29c98531..e526e51c 100644 --- a/src/SonsOfPHP/Bundle/FeatureToggleBundle/src/Twig/Runtime/FeatureToggleExtensionRuntime.php +++ b/src/SonsOfPHP/Bundle/FeatureToggleBundle/src/Twig/Runtime/FeatureToggleExtensionRuntime.php @@ -4,6 +4,7 @@ namespace SonsOfPHP\Bundle\FeatureToggleBundle\Twig\Runtime; +use SonsOfPHP\Component\FeatureToggle\Exception\FeatureNotFoundException; use SonsOfPHP\Contract\FeatureToggle\FeatureToggleProviderInterface; use Twig\Extension\RuntimeExtensionInterface; @@ -15,6 +16,11 @@ public function __construct( public function isEnabled(string $key): bool { - return $this->provider->get($key)->isEnabled(); + try { + return $this->provider->get($key)->isEnabled(); + } catch (FeatureNotFoundException) { + } + + return false; } } From 0cba4469ced5bd1058dce16b3679b108219ca680 Mon Sep 17 00:00:00 2001 From: Joshua Estes Date: Mon, 28 Oct 2024 18:12:34 -0400 Subject: [PATCH 3/3] updates --- .../Bridge/Aws/Filesystem/phpunit.xml.dist | 2 +- .../Bridge/Symfony/Cqrs/phpunit.xml.dist | 52 +++++++------------ .../Symfony/EventSourcing/phpunit.xml.dist | 52 +++++++------------ .../Bridge/Twig/Money/phpunit.xml.dist | 52 +++++++------------ src/SonsOfPHP/Bundle/Cqrs/phpunit.xml.dist | 52 +++++++------------ .../FeatureToggleBundle/phpunit.xml.dist | 48 ++++++----------- .../Component/Assert/phpunit.xml.dist | 48 +++++++---------- .../Component/Cache/phpunit.xml.dist | 48 +++++++---------- .../Component/Clock/phpunit.xml.dist | 48 +++++++---------- .../Component/Container/phpunit.xml.dist | 48 +++++++---------- .../Component/Cookie/phpunit.xml.dist | 48 +++++++---------- src/SonsOfPHP/Component/Cqrs/phpunit.xml.dist | 48 +++++++---------- .../EventDispatcher/phpunit.xml.dist | 48 +++++++---------- .../Component/EventSourcing/phpunit.xml.dist | 48 +++++++---------- .../Component/FeatureToggle/phpunit.xml.dist | 48 +++++++---------- .../Component/Filesystem/phpunit.xml.dist | 48 +++++++---------- .../Component/HttpFactory/phpunit.xml.dist | 48 +++++++---------- .../Component/HttpHandler/phpunit.xml.dist | 48 +++++++---------- .../Component/HttpMessage/phpunit.xml.dist | 48 +++++++---------- src/SonsOfPHP/Component/Json/phpunit.xml.dist | 48 +++++++---------- src/SonsOfPHP/Component/Link/phpunit.xml.dist | 48 +++++++---------- .../Component/Logger/phpunit.xml.dist | 48 +++++++---------- .../Component/Mailer/phpunit.xml.dist | 48 +++++++---------- .../Component/Money/phpunit.xml.dist | 48 +++++++---------- .../Component/Pager/phpunit.xml.dist | 48 +++++++---------- .../Component/Registry/phpunit.xml.dist | 48 +++++++---------- .../Component/StateMachine/phpunit.xml.dist | 48 +++++++---------- .../Component/Version/phpunit.xml.dist | 48 +++++++---------- 28 files changed, 493 insertions(+), 821 deletions(-) diff --git a/src/SonsOfPHP/Bridge/Aws/Filesystem/phpunit.xml.dist b/src/SonsOfPHP/Bridge/Aws/Filesystem/phpunit.xml.dist index a9220f36..2f58c80b 100644 --- a/src/SonsOfPHP/Bridge/Aws/Filesystem/phpunit.xml.dist +++ b/src/SonsOfPHP/Bridge/Aws/Filesystem/phpunit.xml.dist @@ -14,7 +14,7 @@ - + ./Tests/ diff --git a/src/SonsOfPHP/Bridge/Symfony/Cqrs/phpunit.xml.dist b/src/SonsOfPHP/Bridge/Symfony/Cqrs/phpunit.xml.dist index 38b3dfe7..b19a173d 100644 --- a/src/SonsOfPHP/Bridge/Symfony/Cqrs/phpunit.xml.dist +++ b/src/SonsOfPHP/Bridge/Symfony/Cqrs/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - - + + + . + + + ./Tests + ./vendor + + diff --git a/src/SonsOfPHP/Bridge/Symfony/EventSourcing/phpunit.xml.dist b/src/SonsOfPHP/Bridge/Symfony/EventSourcing/phpunit.xml.dist index 38b3dfe7..b99b61fe 100644 --- a/src/SonsOfPHP/Bridge/Symfony/EventSourcing/phpunit.xml.dist +++ b/src/SonsOfPHP/Bridge/Symfony/EventSourcing/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - - + + + . + + + ./Tests + ./vendor + + diff --git a/src/SonsOfPHP/Bridge/Twig/Money/phpunit.xml.dist b/src/SonsOfPHP/Bridge/Twig/Money/phpunit.xml.dist index 38b3dfe7..80f202fd 100644 --- a/src/SonsOfPHP/Bridge/Twig/Money/phpunit.xml.dist +++ b/src/SonsOfPHP/Bridge/Twig/Money/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - - + + + . + + + ./Tests + ./vendor + + diff --git a/src/SonsOfPHP/Bundle/Cqrs/phpunit.xml.dist b/src/SonsOfPHP/Bundle/Cqrs/phpunit.xml.dist index 38b3dfe7..8c86e856 100644 --- a/src/SonsOfPHP/Bundle/Cqrs/phpunit.xml.dist +++ b/src/SonsOfPHP/Bundle/Cqrs/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - - + + + . + + + ./Tests + ./vendor + + diff --git a/src/SonsOfPHP/Bundle/FeatureToggleBundle/phpunit.xml.dist b/src/SonsOfPHP/Bundle/FeatureToggleBundle/phpunit.xml.dist index 38b3dfe7..51da7a1d 100644 --- a/src/SonsOfPHP/Bundle/FeatureToggleBundle/phpunit.xml.dist +++ b/src/SonsOfPHP/Bundle/FeatureToggleBundle/phpunit.xml.dist @@ -5,39 +5,23 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - - + + + ./src + + diff --git a/src/SonsOfPHP/Component/Assert/phpunit.xml.dist b/src/SonsOfPHP/Component/Assert/phpunit.xml.dist index 38b3dfe7..8340890a 100644 --- a/src/SonsOfPHP/Component/Assert/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/Assert/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/Cache/phpunit.xml.dist b/src/SonsOfPHP/Component/Cache/phpunit.xml.dist index 38b3dfe7..f7a1eeed 100644 --- a/src/SonsOfPHP/Component/Cache/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/Cache/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/Clock/phpunit.xml.dist b/src/SonsOfPHP/Component/Clock/phpunit.xml.dist index 38b3dfe7..5f2dd1d8 100644 --- a/src/SonsOfPHP/Component/Clock/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/Clock/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/Container/phpunit.xml.dist b/src/SonsOfPHP/Component/Container/phpunit.xml.dist index 38b3dfe7..a7423589 100644 --- a/src/SonsOfPHP/Component/Container/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/Container/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/Cookie/phpunit.xml.dist b/src/SonsOfPHP/Component/Cookie/phpunit.xml.dist index 38b3dfe7..788e2165 100644 --- a/src/SonsOfPHP/Component/Cookie/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/Cookie/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/Cqrs/phpunit.xml.dist b/src/SonsOfPHP/Component/Cqrs/phpunit.xml.dist index 38b3dfe7..6f36035e 100644 --- a/src/SonsOfPHP/Component/Cqrs/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/Cqrs/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/EventDispatcher/phpunit.xml.dist b/src/SonsOfPHP/Component/EventDispatcher/phpunit.xml.dist index 38b3dfe7..95f170ff 100644 --- a/src/SonsOfPHP/Component/EventDispatcher/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/EventDispatcher/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/EventSourcing/phpunit.xml.dist b/src/SonsOfPHP/Component/EventSourcing/phpunit.xml.dist index 38b3dfe7..ac14d580 100644 --- a/src/SonsOfPHP/Component/EventSourcing/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/EventSourcing/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/FeatureToggle/phpunit.xml.dist b/src/SonsOfPHP/Component/FeatureToggle/phpunit.xml.dist index 38b3dfe7..3ef53405 100644 --- a/src/SonsOfPHP/Component/FeatureToggle/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/FeatureToggle/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/Filesystem/phpunit.xml.dist b/src/SonsOfPHP/Component/Filesystem/phpunit.xml.dist index 38b3dfe7..6cabe099 100644 --- a/src/SonsOfPHP/Component/Filesystem/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/Filesystem/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/HttpFactory/phpunit.xml.dist b/src/SonsOfPHP/Component/HttpFactory/phpunit.xml.dist index 38b3dfe7..8be04d6a 100644 --- a/src/SonsOfPHP/Component/HttpFactory/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/HttpFactory/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/HttpHandler/phpunit.xml.dist b/src/SonsOfPHP/Component/HttpHandler/phpunit.xml.dist index 38b3dfe7..e0bf6b5e 100644 --- a/src/SonsOfPHP/Component/HttpHandler/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/HttpHandler/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/HttpMessage/phpunit.xml.dist b/src/SonsOfPHP/Component/HttpMessage/phpunit.xml.dist index 38b3dfe7..905fa0ce 100644 --- a/src/SonsOfPHP/Component/HttpMessage/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/HttpMessage/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/Json/phpunit.xml.dist b/src/SonsOfPHP/Component/Json/phpunit.xml.dist index 38b3dfe7..ecfbd3a0 100644 --- a/src/SonsOfPHP/Component/Json/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/Json/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/Link/phpunit.xml.dist b/src/SonsOfPHP/Component/Link/phpunit.xml.dist index 38b3dfe7..abea91c1 100644 --- a/src/SonsOfPHP/Component/Link/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/Link/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/Logger/phpunit.xml.dist b/src/SonsOfPHP/Component/Logger/phpunit.xml.dist index 38b3dfe7..3b1a2ed1 100644 --- a/src/SonsOfPHP/Component/Logger/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/Logger/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/Mailer/phpunit.xml.dist b/src/SonsOfPHP/Component/Mailer/phpunit.xml.dist index 38b3dfe7..c72c2b44 100644 --- a/src/SonsOfPHP/Component/Mailer/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/Mailer/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/Money/phpunit.xml.dist b/src/SonsOfPHP/Component/Money/phpunit.xml.dist index 38b3dfe7..3930a414 100644 --- a/src/SonsOfPHP/Component/Money/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/Money/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/Pager/phpunit.xml.dist b/src/SonsOfPHP/Component/Pager/phpunit.xml.dist index 38b3dfe7..5e1added 100644 --- a/src/SonsOfPHP/Component/Pager/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/Pager/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/Registry/phpunit.xml.dist b/src/SonsOfPHP/Component/Registry/phpunit.xml.dist index 38b3dfe7..b733442d 100644 --- a/src/SonsOfPHP/Component/Registry/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/Registry/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/StateMachine/phpunit.xml.dist b/src/SonsOfPHP/Component/StateMachine/phpunit.xml.dist index 38b3dfe7..59581493 100644 --- a/src/SonsOfPHP/Component/StateMachine/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/StateMachine/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor + diff --git a/src/SonsOfPHP/Component/Version/phpunit.xml.dist b/src/SonsOfPHP/Component/Version/phpunit.xml.dist index 38b3dfe7..9cc3fcc1 100644 --- a/src/SonsOfPHP/Component/Version/phpunit.xml.dist +++ b/src/SonsOfPHP/Component/Version/phpunit.xml.dist @@ -5,39 +5,27 @@ backupGlobals="false" colors="true" bootstrap="vendor/autoload.php" - cacheDirectory="build/cache/phpunit" - requireCoverageMetadata="true" - beStrictAboutCoverageMetadata="true"> + failOnRisky="true" + failOnWarning="true" +> - - - src/SonsOfPHP/Bard/Tests - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Component/*/Tests - - + + + - - + + + ./Tests/ + + - - src/* - - - src/SonsOfPHP/*/Tests - src/SonsOfPHP/*/vendor - src/SonsOfPHP/Bridge/*/*/*/Tests - src/SonsOfPHP/Bridge/*/*/*/vendor - src/SonsOfPHP/Bridge/*/*/Tests - src/SonsOfPHP/Bridge/*/*/vendor - src/SonsOfPHP/Bundle/*/Tests - src/SonsOfPHP/Bundle/*/vendor - src/SonsOfPHP/Component/*/Tests - src/SonsOfPHP/Component/*/vendor - src/SonsOfPHP/Contract/*/vendor - + + . + + + ./Tests + ./vendor +