Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ matrix:
- DEPENDENCIES=""
- EXECUTE_CS_CHECK=true
- TEST_COVERAGE=true
- php: 8.0
env:
- DEPENDENCIES=""
- EXECUTE_CS_CHECK=true
- TEST_COVERAGE=true

cache:
directories:
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
}
],
"require": {
"php": "^7.4",
"php": "^7.4 || ^8.0",
"roave/security-advisories": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"prooph/php-cs-fixer-config": "^0.3",
"phpunit/phpunit": "^8.0 || ^9.0",
"prooph/php-cs-fixer-config": "^0.4",
"php-coveralls/php-coveralls": "^2.2",
"malukenho/docheader": "^0.1.4"
},
Expand Down
2 changes: 1 addition & 1 deletion src/DataConverter.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/ImmutableRecord.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/ImmutableRecordDataConverter.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/ImmutableRecordLogic.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/SpecialKeySupport.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[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/ImmutableRecordDataConverterTest.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand All @@ -20,7 +20,7 @@ final class ImmutableRecordDataConverterTest extends TestCase
{
private $data = [];

protected function setUp()
protected function setUp(): void
{
parent::setUp();

Expand Down
4 changes: 2 additions & 2 deletions tests/ImmutableRecordLogicTest.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down Expand Up @@ -30,7 +30,7 @@ final class ImmutableRecordLogicTest extends TestCase
{
private $data = [];

protected function setUp()
protected function setUp(): void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/ImmutableItem.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/ImmutableRecordWithNoTypes.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/ImmutableRecordWithTypedGetters.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/RecordWithSpecialKey.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/RecordWithStringList.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/TypeHintedImmutableRecord.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/TypeHintedImmutableRecordWithValueObjects.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/ValueObject/Access.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/ValueObject/ItemList.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/ValueObject/Name.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/ValueObject/Percentage.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/ValueObject/Type.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/ValueObject/Version.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* This file is part of event-engine/php-data.
* (c) 2018-2020 prooph software GmbH <[email protected]>
* (c) 2018-2021 prooph software GmbH <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand Down