Skip to content

Commit c01b5b4

Browse files
author
Alexander Miertsch
authored
Merge pull request #20 from netiul/feature/php8
Allow PHP 8
2 parents 6f89111 + eb844f4 commit c01b5b4

38 files changed

+47
-47
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018-2019 prooph software GmbH
3+
Copyright (c) 2018-2021 prooph software GmbH
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.2",
19+
"php": "^7.2 || ^8.0",
2020
"roave/security-advisories": "dev-master",
2121
"codeliner/array-reader": "^2.0"
2222
},
2323
"require-dev": {
24-
"phpunit/phpunit": "^7.0",
25-
"prooph/php-cs-fixer-config": "^0.3",
26-
"satooshi/php-coveralls": "^1.0",
24+
"phpunit/phpunit": "^8.0 || ^9.0",
25+
"prooph/php-cs-fixer-config": "^0.4",
26+
"php-coveralls/php-coveralls": "^2.0",
2727
"malukenho/docheader": "^0.1.4"
2828
},
2929
"autoload": {

src/DocumentStore.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 the event-engine/document-store.
4-
* (c) 2018-2019 prooph software GmbH <[email protected]>
4+
* (c) 2018-2021 prooph software GmbH <[email protected]>
55
*
66
* For the full copyright and license information, please view the LICENSE
77
* file that was distributed with this source code.

src/Exception/DocumentStoreException.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-document-store.
4-
* (c) 2018-2019 prooph software GmbH <[email protected]>
4+
* (c) 2018-2021 prooph software GmbH <[email protected]>
55
*
66
* For the full copyright and license information, please view the LICENSE
77
* file that was distributed with this source code.

src/Exception/RuntimeException.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-document-store.
4-
* (c) 2018-2019 prooph software GmbH <[email protected]>
4+
* (c) 2018-2021 prooph software GmbH <[email protected]>
55
*
66
* For the full copyright and license information, please view the LICENSE
77
* file that was distributed with this source code.

src/Exception/UnknownCollection.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-document-store.
4-
* (c) 2018-2019 prooph software GmbH <[email protected]>
4+
* (c) 2018-2021 prooph software GmbH <[email protected]>
55
*
66
* For the full copyright and license information, please view the LICENSE
77
* file that was distributed with this source code.

src/FieldIndex.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-document-store.
4-
* (c) 2018-2019 prooph software GmbH <[email protected]>
4+
* (c) 2018-2021 prooph software GmbH <[email protected]>
55
*
66
* For the full copyright and license information, please view the LICENSE
77
* file that was distributed with this source code.

src/Filter/AndFilter.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-document-sore.
4-
* (c) 2018-2019 prooph software GmbH <[email protected]>
4+
* (c) 2018-2021 prooph software GmbH <[email protected]>
55
*
66
* For the full copyright and license information, please view the LICENSE
77
* file that was distributed with this source code.

src/Filter/AnyFilter.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-document-sore.
4-
* (c) 2018-2019 prooph software GmbH <[email protected]>
4+
* (c) 2018-2021 prooph software GmbH <[email protected]>
55
*
66
* For the full copyright and license information, please view the LICENSE
77
* file that was distributed with this source code.

src/Filter/AnyOfDocIdFilter.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-document-store.
4-
* (c) 2018-2019 prooph software GmbH <[email protected]>
4+
* (c) 2018-2021 prooph software GmbH <[email protected]>
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)