Skip to content

Commit

Permalink
Merge ddc6aea into 349d9df
Browse files Browse the repository at this point in the history
  • Loading branch information
fritz-gerneth committed Mar 31, 2021
2 parents 349d9df + ddc6aea commit e745764
Show file tree
Hide file tree
Showing 92 changed files with 271 additions and 207 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -12,3 +12,4 @@ nbproject
vendor
composer.lock
docs/html
.phpunit.result.cache
17 changes: 11 additions & 6 deletions .travis.yml
Expand Up @@ -3,21 +3,26 @@ language: php
matrix:
fast_finish: true
include:
- php: 7.1
- php: 7.3
env:
- DEPENDENCIES=""
- EXECUTE_CS_CHECK=true
- TEST_COVERAGE=true
- php: 7.1
- php: 7.3
env:
- DEPENDENCIES="--prefer-lowest --prefer-stable"
- php: 7.2
- php: 7.4
env:
- DEPENDENCIES=""
- php: 7.2
- php: 7.4
env:
- DEPENDENCIES="--prefer-lowest --prefer-stable"
- php: 8.0
env:
- DEPENDENCIES=""
- php: 8.0
env:
- DEPENDENCIES="--prefer-lowest --prefer-stable"

cache:
directories:
- $HOME/.composer/cache
Expand All @@ -31,7 +36,7 @@ before_script:
- composer update --prefer-dist $DEPENDENCIES

script:
- if [[ $TEST_COVERAGE == 'true' ]]; then php -dzend_extension=xdebug.so ./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml; else ./vendor/bin/phpunit; fi
- if [[ $TEST_COVERAGE == 'true' ]]; then XDEBUG_MODE=coverage php -dzend_extension=xdebug.so ./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml; else ./vendor/bin/phpunit; fi
- if [[ $EXECUTE_CS_CHECK == 'true' ]]; then ./vendor/bin/php-cs-fixer fix -v --diff --dry-run; fi

after_success:
Expand Down
6 changes: 3 additions & 3 deletions LICENSE.txt
@@ -1,5 +1,5 @@
Copyright (c) 2013-2019, Alexander Miertsch
Copyright (c) 2015-2019, Sascha-Oliver Prolic
Copyright (c) 2013-2021, Alexander Miertsch
Copyright (c) 2015-2021, Sascha-Oliver Prolic
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand All @@ -25,4 +25,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -2,7 +2,7 @@

PHP 7.1+ lightweight message bus supporting CQRS and Micro Services

[![Build Status](https://travis-ci.org/prooph/service-bus.png?branch=master)](https://travis-ci.org/prooph/service-bus)
[![Build Status](https://travis-ci.com/prooph/service-bus.png?branch=master)](https://travis-ci.com/prooph/service-bus)
[![Coverage Status](https://coveralls.io/repos/prooph/service-bus/badge.svg?branch=master&service=github)](https://coveralls.io/github/prooph/service-bus?branch=master)
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/prooph/improoph)

Expand Down
9 changes: 5 additions & 4 deletions composer.json
Expand Up @@ -23,14 +23,15 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1",
"php": "^7.3 | ^8.0",
"prooph/common" : "^4.0.0"
},
"require-dev": {
"react/promise" : "^2.4.1",
"phpunit/phpunit": "^6.0",
"phpspec/prophecy": "^1.7",
"prooph/php-cs-fixer-config": "^0.3",
"phpunit/phpunit": "^9.3",
"phpspec/prophecy": "^1.9",
"phpspec/prophecy-phpunit": "^2.0",
"prooph/php-cs-fixer-config": "^0.4",
"satooshi/php-coveralls": "^1.0",
"psr/container": "^1.0",
"sandrokeil/interop-config": "^2.0.1",
Expand Down
4 changes: 2 additions & 2 deletions config/prooph_service_bus.config.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions config/services.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions examples/quick-start.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
11 changes: 5 additions & 6 deletions phpunit.xml.dist
Expand Up @@ -8,16 +8,15 @@
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="vendor/autoload.php"
>
<testsuite name="Prooph Service Bus Test Suite">
<directory>./tests</directory>
</testsuite>

<filter>
<whitelist>
<coverage>
<include>
<directory>./src/</directory>
</whitelist>
</filter>
</phpunit>
</include>
</coverage>
</phpunit>
4 changes: 2 additions & 2 deletions src/Async/AsyncMessage.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Async/MessageProducer.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/CommandBus.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Container/AbstractBusFactory.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Container/CommandBusFactory.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Container/EventBusFactory.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Container/Plugin/Guard/FinalizeGuardFactory.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Container/Plugin/Guard/RouteGuardFactory.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Container/QueryBusFactory.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/EventBus.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Exception/CommandDispatchException.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Exception/EventListenerException.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Exception/InvalidArgumentException.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Exception/MessageDispatchException.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Exception/RuntimeException.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Exception/ServiceBusException.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/MessageBus.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Plugin/AbstractPlugin.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Plugin/Guard/AuthorizationService.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Plugin/Guard/FinalizeGuard.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Plugin/Guard/RouteGuard.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Plugin/Guard/UnauthorizedException.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
4 changes: 2 additions & 2 deletions src/Plugin/InvokeStrategy/FinderInvokeStrategy.php
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/service-bus.
* (c) 2014-2019 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2019 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down

0 comments on commit e745764

Please sign in to comment.