Skip to content

Commit

Permalink
Merge pull request #137 from lolli42/lolli-2
Browse files Browse the repository at this point in the history
  • Loading branch information
helhum authored Aug 5, 2022
2 parents c657ffb + c11c2ba commit 613d820
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,14 @@ jobs:
- "7.4"
- "8.0"
- "8.1"
- "8.2"
composer-versions:
- "v1"
- "v2"
exclude:
- php-versions: "8.2"
composer-versions: "v1"

steps:
- name: Checkout Code
uses: actions/checkout@v2
Expand All @@ -43,7 +48,12 @@ jobs:
run: composer require "composer/composer:^2.0" --dev --no-update

- name: Install composer dependencies
run: composer install
if: ${{ matrix.php-versions <= '8.1' }}
run: composer update

- name: Install composer dependencies PHP 8.2
if: ${{ matrix.php-versions > '8.1' }}
run: composer update --ignore-platform-req=php+

- name: Info
run: composer info
Expand All @@ -52,7 +62,7 @@ jobs:
run: composer test:php:lint

- name: CGL
if: ${{ matrix.php-versions != '8.1' }}
if: ${{ matrix.php-versions < '8.1' }}
run: vendor/bin/php-cs-fixer fix --dry-run --verbose

- name: Unit Tests
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin/Util/ExtensionKeyResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public static function resolve(PackageInterface $package, IOInterface $io = null
}
if ($io instanceof IOInterface) {
$message = <<<MESSAGE
The TYPO3 extension package "${packageName}", does not define an extension key in its composer.json. Please report this to the author of this package. Specifying the extension key will be mandatory in future versions of TYPO3 (see: https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/ExtensionArchitecture/FileStructure/ComposerJson.html#extra)
The TYPO3 extension package "{$packageName}", does not define an extension key in its composer.json. Please report this to the author of this package. Specifying the extension key will be mandatory in future versions of TYPO3 (see: https://docs.typo3.org/m/typo3/reference-coreapi/main/en-us/ExtensionArchitecture/FileStructure/ComposerJson.html#extra)
MESSAGE;
$io->writeError(sprintf('<comment>%s</comment>', $message));
}
Expand Down

0 comments on commit 613d820

Please sign in to comment.