Skip to content

Commit 63e2bb6

Browse files
author
Alexander Miertsch
authored
Merge pull request #1 from netiul/feature/php8
Allow PHP 8
2 parents 696ccd9 + 7c530ea commit 63e2bb6

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

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-messaging": "^0.1",
2222
"event-engine/php-engine-utils": "^0.1",
2323
"psr/log": "^1.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/DevNull.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-logger.
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/EchoLogger.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-logger.
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/LogEngine.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-logger.
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/SimpleMessageEngine.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-logger.
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)