Skip to content

Commit

Permalink
Merge pull request #19 from basz/php83-compat
Browse files Browse the repository at this point in the history
Php83 compat
  • Loading branch information
prolic authored Nov 18, 2024
2 parents aa05c1d + 633567b commit 3485197
Show file tree
Hide file tree
Showing 8 changed files with 74 additions and 74 deletions.
120 changes: 60 additions & 60 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,64 +1,64 @@
{
"name": "prooph/standard-projections",
"description": "Standard Projections for Prooph EventStore",
"homepage": "http://getprooph.org/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Alexander Miertsch",
"email": "[email protected]",
"homepage": "http://www.prooph.de"
},
{
"name": "Sascha-Oliver Prolic",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4 || ^8.0, <8.3",
"prooph/event-store": "^7.8"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.2",
"phpspec/prophecy": "^1.10.3",
"phpunit/phpunit": "^9.5.5",
"prooph/bookdown-template": "^0.2.3",
"prooph/pdo-event-store": "^1.11",
"prooph/php-cs-fixer-config": "^0.5"
},
"suggest": {
"prooph/pdo-event-store": "^1.6 for usage with MariaDB, MySQL or Postgres as event store"
},
"conflict": {
"sandrokeil/interop-config": "<1.0"
},
"autoload": {
"psr-4": {
"Prooph\\StandardProjections\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\StandardProjections\\": "tests/",
"ProophTest\\EventStore\\": "vendor/prooph/event-store/tests/"
}
"name": "prooph/standard-projections",
"description": "Standard Projections for Prooph EventStore",
"homepage": "http://getprooph.org/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Alexander Miertsch",
"email": "[email protected]",
"homepage": "http://www.prooph.de"
},
"config": {
"sort-packages": true,
"preferred-install": {
"prooph/*": "source"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
{
"name": "Sascha-Oliver Prolic",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4 || ^8.0, <8.4",
"prooph/event-store": "^7.8"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.2",
"phpspec/prophecy": "^1.10.3",
"phpunit/phpunit": "^9.5.5",
"prooph/bookdown-template": "^0.2.3",
"prooph/pdo-event-store": "^1.11",
"prooph/php-cs-fixer-config": "^0.5"
},
"suggest": {
"prooph/pdo-event-store": "^1.6 for usage with MariaDB, MySQL or Postgres as event store"
},
"conflict": {
"sandrokeil/interop-config": "<1.0"
},
"autoload": {
"psr-4": {
"Prooph\\StandardProjections\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\StandardProjections\\": "tests/",
"ProophTest\\EventStore\\": "vendor/prooph/event-store/tests/"
}
},
"config": {
"sort-packages": true,
"preferred-install": {
"prooph/*": "source"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}
4 changes: 2 additions & 2 deletions src/AllStreamProjectionRunner.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/standard-projections.
* (c) 2016-2023 prooph software GmbH <[email protected]>
* (c) 2016-2023 Sascha-Oliver Prolic <[email protected]>
* (c) 2016-2024 prooph software GmbH <[email protected]>
* (c) 2016-2024 Sascha-Oliver Prolic <[email protected]>
*
* 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/CategoryStreamProjectionRunner.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/standard-projections.
* (c) 2016-2023 prooph software GmbH <[email protected]>
* (c) 2016-2023 Sascha-Oliver Prolic <[email protected]>
* (c) 2016-2024 prooph software GmbH <[email protected]>
* (c) 2016-2024 Sascha-Oliver Prolic <[email protected]>
*
* 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/MessageNameStreamProjectionRunner.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/standard-projections.
* (c) 2016-2023 prooph software GmbH <[email protected]>
* (c) 2016-2023 Sascha-Oliver Prolic <[email protected]>
* (c) 2016-2024 prooph software GmbH <[email protected]>
* (c) 2016-2024 Sascha-Oliver Prolic <[email protected]>
*
* 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 tests/AllStreamProjectionRunnerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/standard-projections.
* (c) 2016-2023 prooph software GmbH <[email protected]>
* (c) 2016-2023 Sascha-Oliver Prolic <[email protected]>
* (c) 2016-2024 prooph software GmbH <[email protected]>
* (c) 2016-2024 Sascha-Oliver Prolic <[email protected]>
*
* 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 tests/CategoryStreamProjectionRunnerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/standard-projections.
* (c) 2016-2023 prooph software GmbH <[email protected]>
* (c) 2016-2023 Sascha-Oliver Prolic <[email protected]>
* (c) 2016-2024 prooph software GmbH <[email protected]>
* (c) 2016-2024 Sascha-Oliver Prolic <[email protected]>
*
* 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 tests/MessageNameStreamProjectionRunnerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/standard-projections.
* (c) 2016-2023 prooph software GmbH <[email protected]>
* (c) 2016-2023 Sascha-Oliver Prolic <[email protected]>
* (c) 2016-2024 prooph software GmbH <[email protected]>
* (c) 2016-2024 Sascha-Oliver Prolic <[email protected]>
*
* 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 tests/Mock/TestDomainEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

/**
* This file is part of prooph/standard-projections.
* (c) 2016-2023 prooph software GmbH <[email protected]>
* (c) 2016-2023 Sascha-Oliver Prolic <[email protected]>
* (c) 2016-2024 prooph software GmbH <[email protected]>
* (c) 2016-2024 Sascha-Oliver Prolic <[email protected]>
*
* 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 3485197

Please sign in to comment.