Skip to content

Commit 34204bb

Browse files
authored
Merge pull request #90 from lunetics/symfony_6
Symfony 6
2 parents 0489444 + 9ded473 commit 34204bb

File tree

70 files changed

+174
-144
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+174
-144
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,15 @@ jobs:
1010
strategy:
1111
matrix:
1212
symfony-version:
13-
- "3.4.*"
14-
- "4.4.*"
1513
- "5.2.*"
14+
- "6.0.*"
1615
php-version:
1716
- "7.4"
1817
- "8.0"
18+
- "8.1"
1919
operating-system:
2020
- "ubuntu-latest"
21+
2122
runs-on: ${{ matrix.operating-system }}
2223
env:
2324
COMPOSER_MEMORY_LIMIT: -1

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file, in reverse
44

55
## [0.5.0] - 2018-05-03
66

7+
### Added
8+
9+
- Support for Symfony 6
10+
- Support for PHP 8.1
11+
12+
### Deprecated
13+
14+
- Support for Symfony 3.x and 4.x (Use version v9.x)
15+
16+
## [0.5.0] - 2018-05-03
17+
718
### Added
819

920
- Allow services referenced in config to be prefixed with @ (#41)

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@
6767
"symfony/yaml" : "^3.4 || ^4.4 || ^5.2 || ^6.0",
6868
"bookdown/bookdown": "^1.1",
6969
"prooph/bookdown-template": "^0.3",
70-
"friendsofphp/php-cs-fixer": "^2.8.1",
71-
"prooph/php-cs-fixer-config": "^0.4",
70+
"friendsofphp/php-cs-fixer": "^3.5",
71+
"prooph/php-cs-fixer-config": "^0.5.0",
7272
"matthiasnoback/symfony-dependency-injection-test": "^3.1 || ^4.1",
7373
"phpstan/phpstan": "^0.12"
7474
},

src/Command/AbstractProjectionCommand.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -49,8 +49,11 @@ abstract class AbstractProjectionCommand extends Command
4949
protected $projection;
5050

5151
private ContainerInterface $projectionManagerForProjectionsLocator;
52+
5253
private ContainerInterface $projectionsLocator;
54+
5355
private ContainerInterface $projectionReadModelLocator;
56+
5457
private ContainerInterface $projectionOptionsLocator;
5558

5659
public function __construct(
@@ -108,6 +111,7 @@ protected function initialize(InputInterface $input, OutputInterface $output): v
108111
throw new RuntimeException('Projection was not created');
109112
}
110113
$output->writeln(\vsprintf('<header>Initialized projection "%s"</header>', \is_array($this->projectionName) ? $this->projectionName : [$this->projectionName]));
114+
111115
try {
112116
$state = $this->projectionManager->fetchProjectionStatus($this->projectionName)->getValue();
113117
} catch (\Prooph\EventStore\Exception\RuntimeException $e) {

src/Command/FormatsOutput.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/Command/ProjectionDeleteCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/Command/ProjectionNamesCommand.php

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -26,12 +26,17 @@ class ProjectionNamesCommand extends Command
2626
use FormatsOutput;
2727

2828
private const ARGUMENT_FILTER = 'filter';
29+
2930
private const OPTION_REGEX = 'regex';
31+
3032
private const OPTION_LIMIT = 'limit';
33+
3134
private const OPTION_OFFSET = 'offset';
35+
3236
private const OPTION_MANAGER = 'manager';
3337

3438
private ContainerInterface $projectionManagersLocator;
39+
3540
private array $projectionManagerNames;
3641

3742
public function __construct(ContainerInterface $projectionManagersLocator, array $projectionManagerNames)

src/Command/ProjectionResetCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/Command/ProjectionRunCommand.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -35,7 +35,8 @@ protected function execute(InputInterface $input, OutputInterface $output): int
3535
$keepRunning = ! $input->getOption(static::OPTION_RUN_ONCE);
3636
$output->writeln(
3737
\sprintf(
38-
'<action>Starting projection <highlight>%s</highlight>. Keep running: <highlight>%s</highlight></action>', $this->projectionName,
38+
'<action>Starting projection <highlight>%s</highlight>. Keep running: <highlight>%s</highlight></action>',
39+
$this->projectionName,
3940
$keepRunning === true ? 'enabled' : 'disabled'
4041
)
4142
);

src/Command/ProjectionStateCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/Command/ProjectionStopCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/Command/ProjectionStreamPositionsCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/DependencyInjection/Compiler/DeprecateFqcnProjectionsPass.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/DependencyInjection/Compiler/MetadataEnricherPass.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/DependencyInjection/Compiler/PluginLocatorPass.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/DependencyInjection/Compiler/PluginsPass.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/DependencyInjection/Compiler/ProjectionOptionsPass.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/DependencyInjection/Compiler/RegisterProjectionsPass.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/DependencyInjection/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/DependencyInjection/ProophEventStoreExtension.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -27,6 +27,7 @@
2727
final class ProophEventStoreExtension extends Extension
2828
{
2929
public const TAG_PROJECTION = 'prooph_event_store.projection';
30+
3031
public const TAG_PROJECTION_OPTIONS = 'prooph_event_store.projection_options';
3132

3233
public function getNamespace(): string

src/Exception/EventStoreException.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/Exception/RuntimeException.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/Factory/ActionEventEmitterFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/Factory/DefaultActionEventEmitterFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/Factory/DefaultEventStoreFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/Factory/EventStoreFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/Factory/ProjectionManagerFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/Messenger/EventStoreTransactionMiddleware.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/Projection/Options/ProjectionOptions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/Projection/Options/ProjectionOptionsFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
/**
44
* This file is part of prooph/event-store-symfony-bundle.
5-
* (c) 2014-2021 Alexander Miertsch <kontakt@codeliner.ws>
6-
* (c) 2015-2021 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2014-2022 Alexander Miertsch <kontakt@codeliner.ws>
6+
* (c) 2015-2022 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

0 commit comments

Comments
 (0)