From 7c9bc6b6f0d00bfd3b22b6ddb107001af834c4fa Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sat, 8 Jun 2024 02:13:08 +0900 Subject: [PATCH] Update package dependencies in composer.json This commit updates the versions of several packages in the composer.json file, specifically 'aura/sql', 'bear/resource', 'doctrine/annotations', 'ray/aop', 'ray/aura-sql-module' and 'ray/di'. Additionally, it adds new configuration under 'extra' key for 'bamarni-bin'. --- composer.json | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index aab5572..a9c0c3e 100644 --- a/composer.json +++ b/composer.json @@ -13,16 +13,16 @@ "php": "^7.3 || ^8.0", "ext-json": "*", "ext-pdo": "*", - "aura/sql": "^3.0 | ^4.0 | ^5.0", - "bear/resource": "^1.15", - "doctrine/annotations": "^1.12", + "aura/sql": "^3.0 || ^4.0 || ^5.0", + "bear/resource": "^1.22", + "doctrine/annotations": "^1.12 || ^2.0", "guzzlehttp/guzzle": "^6.3 || ^7.0", "koriym/param-reader": "^1.0", "koriym/query-locator": "^1.4", "nikic/php-parser": "^v4.13", - "ray/aop": "^2.10.3", - "ray/aura-sql-module": "^1.10.0", - "ray/di": "^2.11" + "ray/aop": "^2.15", + "ray/aura-sql-module": "^1.13", + "ray/di": "^2.17" }, "require-dev": { "phpunit/phpunit": "^9.5", @@ -62,5 +62,11 @@ "allow-plugins": { "bamarni/composer-bin-plugin": true } + }, + "extra": { + "bamarni-bin": { + "bin-links": true, + "forward-command": true + } } }