diff options
| author | Jan-Hendrik Willms <tleilax+github@gmail.com> | 2024-02-01 14:06:57 +0100 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+github@gmail.com> | 2024-02-01 14:06:57 +0100 |
| commit | b1d9a958d94bb68fdb3ad6b33b7a0761442ba55a (patch) | |
| tree | 07d76f3d7e4faac9c0eb33c6261481aea817a540 | |
| parent | 84afe13967aabbb1d4d9adb9e11d41a8119b9ce8 (diff) | |
correctly add psr/cache, re #3701tic-3701-fixed-composer-changes
| -rw-r--r-- | composer.json | 3 | ||||
| -rw-r--r-- | composer.lock | 51 |
2 files changed, 52 insertions, 2 deletions
diff --git a/composer.json b/composer.json index b98b402..bd1ca53 100644 --- a/composer.json +++ b/composer.json @@ -61,7 +61,8 @@ "ksubileau/color-thief-php": "^2.0", "symfony/polyfill-php82": "^1.28", "symfony/polyfill-php83": "^1.28", - "phpoffice/phpspreadsheet": "^1.19" + "phpoffice/phpspreadsheet": "^1.19", + "psr/cache": "^1.0" }, "replace": { "symfony/polyfill-php54": "*", diff --git a/composer.lock b/composer.lock index dc1399e..0dcd87b 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "0cd6741cbad14a70b1d619d5c98f7378", + "content-hash": "d054467860786b3fdb240a88a84d5bc2", "packages": [ { "name": "algo26-matthias/idna-convert", @@ -2641,6 +2641,55 @@ "time": "2023-02-11T17:10:30+00:00" }, { + "name": "psr/cache", + "version": "1.0.1", + "source": { + "type": "git", + "url": "https://github.com/php-fig/cache.git", + "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8", + "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8", + "shasum": "" + }, + "require": { + "php": ">=5.3.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Psr\\Cache\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "description": "Common interface for caching libraries", + "keywords": [ + "cache", + "psr", + "psr-6" + ], + "support": { + "source": "https://github.com/php-fig/cache/tree/master" + }, + "time": "2016-08-06T20:24:11+00:00" + }, + { "name": "psr/container", "version": "1.1.1", "source": { |
