Skip to content

Commit 3485197

Browse files
authored
Merge pull request #19 from basz/php83-compat
Php83 compat
2 parents aa05c1d + 633567b commit 3485197

8 files changed

+74
-74
lines changed

composer.json

Lines changed: 60 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,64 @@
11
{
2-
"name": "prooph/standard-projections",
3-
"description": "Standard Projections for Prooph EventStore",
4-
"homepage": "http://getprooph.org/",
5-
"license": "BSD-3-Clause",
6-
"authors": [
7-
{
8-
"name": "Alexander Miertsch",
9-
"email": "contact@prooph.de",
10-
"homepage": "http://www.prooph.de"
11-
},
12-
{
13-
"name": "Sascha-Oliver Prolic",
14-
"email": "saschaprolic@googlemail.com"
15-
}
16-
],
17-
"minimum-stability": "dev",
18-
"prefer-stable": true,
19-
"require": {
20-
"php": "^7.4 || ^8.0, <8.3",
21-
"prooph/event-store": "^7.8"
22-
},
23-
"require-dev": {
24-
"php-coveralls/php-coveralls": "^2.2",
25-
"phpspec/prophecy": "^1.10.3",
26-
"phpunit/phpunit": "^9.5.5",
27-
"prooph/bookdown-template": "^0.2.3",
28-
"prooph/pdo-event-store": "^1.11",
29-
"prooph/php-cs-fixer-config": "^0.5"
30-
},
31-
"suggest": {
32-
"prooph/pdo-event-store": "^1.6 for usage with MariaDB, MySQL or Postgres as event store"
33-
},
34-
"conflict": {
35-
"sandrokeil/interop-config": "<1.0"
36-
},
37-
"autoload": {
38-
"psr-4": {
39-
"Prooph\\StandardProjections\\": "src/"
40-
}
41-
},
42-
"autoload-dev": {
43-
"psr-4": {
44-
"ProophTest\\StandardProjections\\": "tests/",
45-
"ProophTest\\EventStore\\": "vendor/prooph/event-store/tests/"
46-
}
2+
"name": "prooph/standard-projections",
3+
"description": "Standard Projections for Prooph EventStore",
4+
"homepage": "http://getprooph.org/",
5+
"license": "BSD-3-Clause",
6+
"authors": [
7+
{
8+
"name": "Alexander Miertsch",
9+
"email": "contact@prooph.de",
10+
"homepage": "http://www.prooph.de"
4711
},
48-
"config": {
49-
"sort-packages": true,
50-
"preferred-install": {
51-
"prooph/*": "source"
52-
}
53-
},
54-
"scripts": {
55-
"check": [
56-
"@cs-check",
57-
"@test"
58-
],
59-
"cs-check": "php-cs-fixer fix -v --diff --dry-run",
60-
"cs-fix": "php-cs-fixer fix -v --diff",
61-
"test": "phpunit --colors=always",
62-
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
12+
{
13+
"name": "Sascha-Oliver Prolic",
14+
"email": "saschaprolic@googlemail.com"
15+
}
16+
],
17+
"minimum-stability": "dev",
18+
"prefer-stable": true,
19+
"require": {
20+
"php": "^7.4 || ^8.0, <8.4",
21+
"prooph/event-store": "^7.8"
22+
},
23+
"require-dev": {
24+
"php-coveralls/php-coveralls": "^2.2",
25+
"phpspec/prophecy": "^1.10.3",
26+
"phpunit/phpunit": "^9.5.5",
27+
"prooph/bookdown-template": "^0.2.3",
28+
"prooph/pdo-event-store": "^1.11",
29+
"prooph/php-cs-fixer-config": "^0.5"
30+
},
31+
"suggest": {
32+
"prooph/pdo-event-store": "^1.6 for usage with MariaDB, MySQL or Postgres as event store"
33+
},
34+
"conflict": {
35+
"sandrokeil/interop-config": "<1.0"
36+
},
37+
"autoload": {
38+
"psr-4": {
39+
"Prooph\\StandardProjections\\": "src/"
40+
}
41+
},
42+
"autoload-dev": {
43+
"psr-4": {
44+
"ProophTest\\StandardProjections\\": "tests/",
45+
"ProophTest\\EventStore\\": "vendor/prooph/event-store/tests/"
6346
}
47+
},
48+
"config": {
49+
"sort-packages": true,
50+
"preferred-install": {
51+
"prooph/*": "source"
52+
}
53+
},
54+
"scripts": {
55+
"check": [
56+
"@cs-check",
57+
"@test"
58+
],
59+
"cs-check": "php-cs-fixer fix -v --diff --dry-run",
60+
"cs-fix": "php-cs-fixer fix -v --diff",
61+
"test": "phpunit --colors=always",
62+
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
63+
}
6464
}

src/AllStreamProjectionRunner.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/standard-projections.
5-
* (c) 2016-2023 prooph software GmbH <contact@prooph.de>
6-
* (c) 2016-2023 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2016-2024 prooph software GmbH <contact@prooph.de>
6+
* (c) 2016-2024 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/CategoryStreamProjectionRunner.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/standard-projections.
5-
* (c) 2016-2023 prooph software GmbH <contact@prooph.de>
6-
* (c) 2016-2023 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2016-2024 prooph software GmbH <contact@prooph.de>
6+
* (c) 2016-2024 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/MessageNameStreamProjectionRunner.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/standard-projections.
5-
* (c) 2016-2023 prooph software GmbH <contact@prooph.de>
6-
* (c) 2016-2023 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2016-2024 prooph software GmbH <contact@prooph.de>
6+
* (c) 2016-2024 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.

tests/AllStreamProjectionRunnerTest.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/standard-projections.
5-
* (c) 2016-2023 prooph software GmbH <contact@prooph.de>
6-
* (c) 2016-2023 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2016-2024 prooph software GmbH <contact@prooph.de>
6+
* (c) 2016-2024 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.

tests/CategoryStreamProjectionRunnerTest.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/standard-projections.
5-
* (c) 2016-2023 prooph software GmbH <contact@prooph.de>
6-
* (c) 2016-2023 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2016-2024 prooph software GmbH <contact@prooph.de>
6+
* (c) 2016-2024 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.

tests/MessageNameStreamProjectionRunnerTest.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/standard-projections.
5-
* (c) 2016-2023 prooph software GmbH <contact@prooph.de>
6-
* (c) 2016-2023 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2016-2024 prooph software GmbH <contact@prooph.de>
6+
* (c) 2016-2024 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.

tests/Mock/TestDomainEvent.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/standard-projections.
5-
* (c) 2016-2023 prooph software GmbH <contact@prooph.de>
6-
* (c) 2016-2023 Sascha-Oliver Prolic <saschaprolic@googlemail.com>
5+
* (c) 2016-2024 prooph software GmbH <contact@prooph.de>
6+
* (c) 2016-2024 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)