mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:56:13 +02:00

[BUGFIX] Do not check composer.lock during composer normalize (#641)

This package does not ship a `composer.lock`, and hence
`composer normalize` should not check that file.

Fixes #640
This commit is contained in:
Oliver Klee 2022-10-16 17:50:33 +02:00 committed by GitHub
parent 5a5d900c27
commit 49c38d6e40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -26,6 +26,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
- Drop support for PHP 7.2 and 7.3 (#581)
### Fixed
- Do not check `composer.lock` during `composer normalize` (#641)
- Require TYPO3 >= 11.5.4 (#643)
- Stop relying on transitive dependencies for `psr/http-message` (#613)

View file

@ -105,7 +105,7 @@
"ci": [
"@ci:static"
],
"ci:composer:normalize": "@composer normalize --dry-run",
"ci:composer:normalize": "@composer normalize --no-check-lock --dry-run",
"ci:coverage": [
"@ci:coverage:unit",
"@ci:coverage:functional"