From 656fbbb75d50b45990b31bd80d26d4606b33093a Mon Sep 17 00:00:00 2001 From: Alexander <326840+beeyev@users.noreply.github.com> Date: Mon, 19 Jun 2023 21:31:19 +0200 Subject: [PATCH] adjust copyright (#7) Co-authored-by: Tebiev --- .editorconfig | 2 +- .gitattributes | 1 + .github/actions/prepare-php-environment/action.yml | 1 + .github/workflows/pr-code-style.yml | 1 + .github/workflows/pr-phpstan-check.yml | 1 + .github/workflows/pr-phpunit-tests.yml | 1 + .gitignore | 1 + .php-cs-fixer.dist.php | 4 +++- Makefile | 2 ++ composer.json | 2 +- rector.php | 4 +++- src/Adapters/Laravel/Facades/ThumborFacade.php | 4 +++- src/Adapters/Laravel/ThumborServiceProvider.php | 4 +++- src/Adapters/Laravel/config/thumbor.php | 4 +++- src/Exceptions/ThumborException.php | 4 +++- src/Exceptions/ThumborInvalidArgumentException.php | 4 +++- src/Manipulations/Filter.php | 4 +++- src/Manipulations/Fit.php | 4 +++- src/Manipulations/Halign.php | 4 +++- src/Manipulations/Resize.php | 4 +++- src/Manipulations/Trim.php | 4 +++- src/Manipulations/Valign.php | 4 +++- src/Support/Security.php | 4 +++- src/Thumbor.php | 4 +++- tests/Manipulations/CombinedTest.php | 4 +++- tests/Manipulations/CropTest.php | 4 +++- tests/Manipulations/FilterTest.php | 4 +++- tests/Manipulations/HalignTest.php | 4 +++- tests/Manipulations/MetadataTest.php | 4 +++- tests/Manipulations/ResizeOrFitTest.php | 4 +++- tests/Manipulations/SmartCropTest.php | 4 +++- tests/Manipulations/TrimTest.php | 4 +++- tests/Manipulations/ValignTest.php | 4 +++- tests/Support/SecurityTest.php | 4 +++- tests/TestCase.php | 4 +++- tests/ThumborTest.php | 4 +++- tests/ThumborUrlGenerationTest.php | 4 +++- 37 files changed, 94 insertions(+), 30 deletions(-) diff --git a/.editorconfig b/.editorconfig index 1614fb8..62d7f3d 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,4 @@ -# EditorConfig is awesome: http://EditorConfig.org +# Alexander Tebiev - https://github.com/beeyev # top-most EditorConfig file root = true diff --git a/.gitattributes b/.gitattributes index 6750e3d..c1cfcfe 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,4 @@ +# Alexander Tebiev - https://github.com/beeyev * text=auto eol=lf .github/ export-ignore .editorconfig export-ignore diff --git a/.github/actions/prepare-php-environment/action.yml b/.github/actions/prepare-php-environment/action.yml index dc01ff6..532a216 100644 --- a/.github/actions/prepare-php-environment/action.yml +++ b/.github/actions/prepare-php-environment/action.yml @@ -1,3 +1,4 @@ +# Alexander Tebiev - https://github.com/beeyev name: Prepare PHP Environment description: 'Prepare PHP Environment' inputs: diff --git a/.github/workflows/pr-code-style.yml b/.github/workflows/pr-code-style.yml index 9cc4d7c..39711fb 100644 --- a/.github/workflows/pr-code-style.yml +++ b/.github/workflows/pr-code-style.yml @@ -1,3 +1,4 @@ +# Alexander Tebiev - https://github.com/beeyev name: Code Style on: diff --git a/.github/workflows/pr-phpstan-check.yml b/.github/workflows/pr-phpstan-check.yml index 19c9d18..0c871c2 100644 --- a/.github/workflows/pr-phpstan-check.yml +++ b/.github/workflows/pr-phpstan-check.yml @@ -1,3 +1,4 @@ +# Alexander Tebiev - https://github.com/beeyev name: PHPStan check on: diff --git a/.github/workflows/pr-phpunit-tests.yml b/.github/workflows/pr-phpunit-tests.yml index 060b5bd..7f70c22 100644 --- a/.github/workflows/pr-phpunit-tests.yml +++ b/.github/workflows/pr-phpunit-tests.yml @@ -1,3 +1,4 @@ +# Alexander Tebiev - https://github.com/beeyev name: PHPUnit tests on: diff --git a/.gitignore b/.gitignore index 0660c1f..f25b710 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +# Alexander Tebiev - https://github.com/beeyev .php-cs-fixer.cache .phpunit.result.cache composer.lock diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 479db63..15c5724 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -1,7 +1,9 @@