Skip to content

Commit 49f25e2

Browse files
author
Julian Finkler
committed
CS fixed, copyright updated and changelog updated
1 parent af68736 commit 49f25e2

15 files changed

+24
-18
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 2.0.0 (22 Mar 2022)
4+
5+
- Added PHP8 support
6+
- Dropped pre PHP 7.4 support
7+
- Added SCA
8+
39
## 1.0.1 (21 Aug 2019)
410

511
Bugfixes

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) 2019 mintware.de, Julian Finkler <julian@mintware.de>
3+
Copyright (c) 2019-2022 mintware.de, Julian Finkler <julian@mintware.de>
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
@@ -38,12 +38,12 @@
3838
},
3939
"scripts": {
4040
"fix-cs": [
41-
"./vendor/bin/php-cs-fixer fix ./src/ --using-cache=no --rules=@PSR2",
42-
"./vendor/bin/php-cs-fixer fix ./tests/ --using-cache=no --rules=@PSR2"
41+
"./vendor/bin/php-cs-fixer fix ./src/ --using-cache=no --rules=@PSR12",
42+
"./vendor/bin/php-cs-fixer fix ./tests/ --using-cache=no --rules=@PSR12"
4343
],
4444
"fix-cs:dry-run": [
45-
"./vendor/bin/php-cs-fixer fix ./src/ --using-cache=no --rules=@PSR2 --dry-run",
46-
"./vendor/bin/php-cs-fixer fix ./tests/ --using-cache=no --rules=@PSR2 --dry-run"
45+
"./vendor/bin/php-cs-fixer fix ./src/ --using-cache=no --rules=@PSR12 --dry-run",
46+
"./vendor/bin/php-cs-fixer fix ./tests/ --using-cache=no --rules=@PSR12 --dry-run"
4747
],
4848
"phpstan": [
4949
"./vendor/bin/phpstan"

phpunit.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!--
33
~ This file is part of the Streams package.
44
~
5-
~ Copyright 2019 by Julian Finkler <julian@mintware.de>
5+
~ Copyright 2019-2022 by Julian Finkler <julian@mintware.de>
66
~
77
~ For the full copyright and license information, please read the LICENSE
88
~ file that was distributed with this source code.

src/FileStream.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* This file is part of the Streams package.
44
*
5-
* Copyright 2019 by Julian Finkler <julian@mintware.de>
5+
* Copyright 2019-2022 by Julian Finkler <julian@mintware.de>
66
*
77
* For the full copyright and license information, please read the LICENSE
88
* file that was distributed with this source code.

src/InputStream.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* This file is part of the Streams package.
44
*
5-
* Copyright 2019 by Julian Finkler <julian@mintware.de>
5+
* Copyright 2019-2022 by Julian Finkler <julian@mintware.de>
66
*
77
* For the full copyright and license information, please read the LICENSE
88
* file that was distributed with this source code.

src/MemoryStream.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* This file is part of the Streams package.
44
*
5-
* Copyright 2019 by Julian Finkler <julian@mintware.de>
5+
* Copyright 2019-2022 by Julian Finkler <julian@mintware.de>
66
*
77
* For the full copyright and license information, please read the LICENSE
88
* file that was distributed with this source code.

src/OutputStream.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* This file is part of the Streams package.
44
*
5-
* Copyright 2019 by Julian Finkler <julian@mintware.de>
5+
* Copyright 2019-2022 by Julian Finkler <julian@mintware.de>
66
*
77
* For the full copyright and license information, please read the LICENSE
88
* file that was distributed with this source code.

src/ResourceStream.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* This file is part of the Streams package.
44
*
5-
* Copyright 2019 by Julian Finkler <julian@mintware.de>
5+
* Copyright 2019-2022 by Julian Finkler <julian@mintware.de>
66
*
77
* For the full copyright and license information, please read the LICENSE
88
* file that was distributed with this source code.

tests/FileStreamTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* This file is part of the Streams package.
44
*
5-
* Copyright 2019 by Julian Finkler <julian@mintware.de>
5+
* Copyright 2019-2022 by Julian Finkler <julian@mintware.de>
66
*
77
* For the full copyright and license information, please read the LICENSE
88
* file that was distributed with this source code.

0 commit comments

Comments
 (0)