From 53a3ced04428605056d9b7fd713845f916538765 Mon Sep 17 00:00:00 2001 From: Shift Date: Sun, 22 Feb 2026 15:10:31 +0000 Subject: [PATCH] Bump dependencies for Laravel 13 --- composer.json | 116 ++++++++++++++++++++++++++------------------------ 1 file changed, 61 insertions(+), 55 deletions(-) diff --git a/composer.json b/composer.json index 92e8662..2afaa8d 100644 --- a/composer.json +++ b/composer.json @@ -1,57 +1,63 @@ { - "name": "mews/captcha", - "type": "package", - "description": "Laravel 5/6/7/8/9/10/11/12 Captcha Package", - "keywords": ["laravel12 Captcha", "laravel12 Security", "laravel12 Captcha", "laravel5 Security", "Captcha"], - "homepage": "https://github.com/mewebstudio/captcha", - "license": "MIT", - "authors": [ - { - "name": "Muharrem ERİN", - "email": "me@mewebstudio.com", - "homepage": "https://github.com/mewebstudio", - "role": "Developer" - } - ], - "require": { - "php": "^7.2|^8.1|^8.2|^8.3", - "ext-gd": "*", - "illuminate/config": "~5|^6|^7|^8|^9|^10|^11|^12", - "illuminate/filesystem": "~5|^6|^7|^8|^9|^10|^11|^12", - "illuminate/support": "~5|^6|^7|^8|^9|^10|^11|^12", - "illuminate/hashing": "~5|^6|^7|^8|^9|^10|^11|^12", - "illuminate/session": "~5|^6|^7|^8|^9|^10|^11|^12", - "intervention/image": "^3.7" - }, - "require-dev": { - "phpunit/phpunit": "^8.5|^9.5.10|^10.5|^11", - "mockery/mockery": "^1.0" - }, - "autoload": { - "psr-4": { - "Mews\\Captcha\\": "src/" - }, - "files": [ - "src/helpers.php" - ] - }, - "autoload-dev": { - "classmap": [ - "tests" - ], - "psr-4": { - "Mews\\Test\\": "tests/" - } - }, - "minimum-stability": "stable", - "extra": { - "laravel": { - "providers": [ - "Mews\\Captcha\\CaptchaServiceProvider" - ], - "aliases": { - "Captcha": "Mews\\Captcha\\Facades\\Captcha" - } - } - } + "name": "mews/captcha", + "type": "package", + "description": "Laravel 5/6/7/8/9/10/11/12 Captcha Package", + "keywords": [ + "laravel12 Captcha", + "laravel12 Security", + "laravel12 Captcha", + "laravel5 Security", + "Captcha" + ], + "homepage": "https://github.com/mewebstudio/captcha", + "license": "MIT", + "authors": [ + { + "name": "Muharrem ERİN", + "email": "me@mewebstudio.com", + "homepage": "https://github.com/mewebstudio", + "role": "Developer" + } + ], + "require": { + "php": "^7.2|^8.1|^8.2|^8.3", + "ext-gd": "*", + "illuminate/config": "~5|^6|^7|^8|^9|^10|^11|^12|^13.0", + "illuminate/filesystem": "~5|^6|^7|^8|^9|^10|^11|^12|^13.0", + "illuminate/support": "~5|^6|^7|^8|^9|^10|^11|^12|^13.0", + "illuminate/hashing": "~5|^6|^7|^8|^9|^10|^11|^12|^13.0", + "illuminate/session": "~5|^6|^7|^8|^9|^10|^11|^12|^13.0", + "intervention/image": "^3.7" + }, + "require-dev": { + "phpunit/phpunit": "^8.5|^9.5.10|^10.5|^11", + "mockery/mockery": "^1.0" + }, + "autoload": { + "psr-4": { + "Mews\\Captcha\\": "src/" + }, + "files": [ + "src/helpers.php" + ] + }, + "autoload-dev": { + "classmap": [ + "tests" + ], + "psr-4": { + "Mews\\Test\\": "tests/" + } + }, + "minimum-stability": "stable", + "extra": { + "laravel": { + "providers": [ + "Mews\\Captcha\\CaptchaServiceProvider" + ], + "aliases": { + "Captcha": "Mews\\Captcha\\Facades\\Captcha" + } + } + } }