Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: License year #20

Merged
merged 2 commits into from Jan 30, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .php-cs-fixer.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/**
* Copyright (c) 2020-2022 Andreas Möller
* Copyright (c) 2022 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
Expand All @@ -17,7 +17,7 @@
$license = License\Type\MIT::markdown(
__DIR__ . '/LICENSE.md',
License\Range::since(
License\Year::fromString('2020'),
License\Year::fromString('2022'),
new \DateTimeZone('UTC'),
),
License\Holder::fromString('Andreas Möller'),
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
@@ -1,6 +1,6 @@
# The MIT License (MIT)

Copyright (c) 2020-2022 Andreas Möller
Copyright (c) 2022 Andreas Möller

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
documentation files (the _Software_), to deal in the Software without restriction, including without limitation the
Expand Down
2 changes: 1 addition & 1 deletion src/Exception/Exception.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/**
* Copyright (c) 2020-2022 Andreas Möller
* Copyright (c) 2022 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/Exception/InvalidJsonPointer.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/**
* Copyright (c) 2020-2022 Andreas Möller
* Copyright (c) 2022 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/Exception/InvalidReferenceToken.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/**
* Copyright (c) 2020-2022 Andreas Möller
* Copyright (c) 2022 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/JsonPointer.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/**
* Copyright (c) 2020-2022 Andreas Möller
* Copyright (c) 2022 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/JsonPointers.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/**
* Copyright (c) 2020-2022 Andreas Möller
* Copyright (c) 2022 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/Pattern.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/**
* Copyright (c) 2020-2022 Andreas Möller
* Copyright (c) 2022 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion src/ReferenceToken.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/**
* Copyright (c) 2020-2022 Andreas Möller
* Copyright (c) 2022 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/Exception/InvalidJsonPointerTest.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/**
* Copyright (c) 2020-2022 Andreas Möller
* Copyright (c) 2022 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/Exception/InvalidReferenceTokenTest.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/**
* Copyright (c) 2020-2022 Andreas Möller
* Copyright (c) 2022 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/JsonPointerTest.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/**
* Copyright (c) 2020-2022 Andreas Möller
* Copyright (c) 2022 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/JsonPointersTest.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/**
* Copyright (c) 2020-2022 Andreas Möller
* Copyright (c) 2022 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/PatternTest.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/**
* Copyright (c) 2020-2022 Andreas Möller
* Copyright (c) 2022 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/ReferenceTokenTest.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/**
* Copyright (c) 2020-2022 Andreas Möller
* Copyright (c) 2022 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
Expand Down
2 changes: 1 addition & 1 deletion test/Util/Helper.php
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

/**
* Copyright (c) 2020-2022 Andreas Möller
* Copyright (c) 2022 Andreas Möller
*
* For the full copyright and license information, please view
* the LICENSE.md file that was distributed with this source code.
Expand Down