Skip to content

Commit ab2cc88

Browse files
author
Alexander Miertsch
authored
Merge pull request #9 from netiul/feature/php8
Allow PHP 8
2 parents 2eae50e + 3726380 commit ab2cc88

15 files changed

Lines changed: 18 additions & 18 deletions

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.2",
19+
"php": "^7.2 || ^8.0",
2020
"roave/security-advisories": "dev-master",
2121
"event-engine/php-document-store": "^0.7",
2222
"event-engine/php-event-store": "^0.2",
2323
"event-engine/php-messaging": "^0.1"
2424
},
2525
"require-dev": {
26-
"phpunit/phpunit": "^7.0",
27-
"prooph/php-cs-fixer-config": "^0.3",
28-
"satooshi/php-coveralls": "^1.0",
26+
"phpunit/phpunit": "^8.0 || ^9.0",
27+
"prooph/php-cs-fixer-config": "^0.4",
28+
"php-coveralls/php-coveralls": "^2.0",
2929
"malukenho/docheader": "^0.1.4"
3030
},
3131
"autoload": {

src/AggregateStateStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* This file is part of event-engine/php-persistence.
4-
* (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4+
* (c) 2018-2021 prooph software GmbH <contact@prooph.de>
55
*
66
* For the full copyright and license information, please view the LICENSE
77
* file that was distributed with this source code.

src/DeletableState.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* This file is part of event-engine/php-persistence.
4-
* (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4+
* (c) 2018-2021 prooph software GmbH <contact@prooph.de>
55
*
66
* For the full copyright and license information, please view the LICENSE
77
* file that was distributed with this source code.

src/Exception/TransactionAlreadyStarted.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* This file is part of event-engine/php-persistence.
4-
* (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4+
* (c) 2018-2021 prooph software GmbH <contact@prooph.de>
55
*
66
* For the full copyright and license information, please view the LICENSE
77
* file that was distributed with this source code.

src/Exception/TransactionCommitFailed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* This file is part of event-engine/php-persistence.
4-
* (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4+
* (c) 2018-2021 prooph software GmbH <contact@prooph.de>
55
*
66
* For the full copyright and license information, please view the LICENSE
77
* file that was distributed with this source code.

src/Exception/TransactionException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* This file is part of event-engine/php-persistence.
4-
* (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4+
* (c) 2018-2021 prooph software GmbH <contact@prooph.de>
55
*
66
* For the full copyright and license information, please view the LICENSE
77
* file that was distributed with this source code.

src/Exception/TransactionNotStarted.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* This file is part of event-engine/php-persistence.
4-
* (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4+
* (c) 2018-2021 prooph software GmbH <contact@prooph.de>
55
*
66
* For the full copyright and license information, please view the LICENSE
77
* file that was distributed with this source code.

src/Exception/TransactionRollBackFailed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* This file is part of event-engine/php-persistence.
4-
* (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4+
* (c) 2018-2021 prooph software GmbH <contact@prooph.de>
55
*
66
* For the full copyright and license information, please view the LICENSE
77
* file that was distributed with this source code.

src/InMemoryConnection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* This file is part of event-engine/php-persistence.
4-
* (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4+
* (c) 2018-2021 prooph software GmbH <contact@prooph.de>
55
*
66
* For the full copyright and license information, please view the LICENSE
77
* file that was distributed with this source code.

src/InnerConnection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* This file is part of event-engine/php-persistence.
4-
* (c) 2018-2019 prooph software GmbH <contact@prooph.de>
4+
* (c) 2018-2021 prooph software GmbH <contact@prooph.de>
55
*
66
* For the full copyright and license information, please view the LICENSE
77
* file that was distributed with this source code.

0 commit comments

Comments
 (0)