From daaf48c8adb3b6fdb6d853a92048731af9e4b64c Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 2 Mar 2024 09:06:40 +0000 Subject: [PATCH] Bump dependencies for Laravel 11 --- composer.json | 106 +++++++++++++++++++++++++++----------------------- 1 file changed, 57 insertions(+), 49 deletions(-) diff --git a/composer.json b/composer.json index 579ee3e..6d6a02d 100644 --- a/composer.json +++ b/composer.json @@ -1,53 +1,61 @@ { - "name": "joblocal/laravel-sqs-sns-subscription-queue", - "description": "A simple Laravel service provider which adds a new queue connector to handle SNS subscription queues.", - "license": "MIT", - "keywords": ["laravel", "lumen", "queue", "sns subscription", "aws", "sqs", "sns"], - "authors": [ - { - "name": "Johannes Hofmann", - "email": "johannes.hofmann@joblocal.de", - "role": "Developer" + "name": "joblocal/laravel-sqs-sns-subscription-queue", + "description": "A simple Laravel service provider which adds a new queue connector to handle SNS subscription queues.", + "license": "MIT", + "keywords": [ + "laravel", + "lumen", + "queue", + "sns subscription", + "aws", + "sqs", + "sns" + ], + "authors": [ + { + "name": "Johannes Hofmann", + "email": "johannes.hofmann@joblocal.de", + "role": "Developer" + }, + { + "name": "Julius Liebert", + "email": "julius.liebert@joblocal.de", + "role": "Developer" + }, + { + "name": "Bastian Hofmann", + "email": "bastian.hofmann@joblocal.de", + "role": "Developer" + } + ], + "require": { + "php": ">=7.1.3", + "illuminate/queue": "^5.6|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/support": "^5.6|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "aws/aws-sdk-php": "^3.62" }, - { - "name": "Julius Liebert", - "email": "julius.liebert@joblocal.de", - "role": "Developer" + "require-dev": { + "phpunit/phpunit": "^8|^9|^10.5", + "squizlabs/php_codesniffer": "^3", + "orchestra/testbench": "~3.8|^4.0|^5.0|^6.0|^7.0|^8.0|^9.0" }, - { - "name": "Bastian Hofmann", - "email": "bastian.hofmann@joblocal.de", - "role": "Developer" - } - ], - "require": { - "php": ">=7.1.3", - "illuminate/queue": "^5.6|^6.0|^7.0|^8.0|^9.0|^10.0", - "illuminate/support": "^5.6|^6.0|^7.0|^8.0|^9.0|^10.0", - "aws/aws-sdk-php": "^3.62" - }, - "require-dev": { - "phpunit/phpunit": "^8|^9", - "squizlabs/php_codesniffer": "^3", - "orchestra/testbench": "~3.8|^4.0|^5.0|^6.0|^7.0|^8.0" - }, - "autoload": { - "psr-4": { - "Joblocal\\LaravelSqsSnsSubscriptionQueue\\": "src/" - } - }, - "autoload-dev": { - "psr-4": { - "Joblocal\\LaravelSqsSnsSubscriptionQueue\\Tests\\": "tests/" - } - }, - "scripts": { - "lint": [ - "phpcs --standard=phpcs.xml --colors -p ." - ], - "test": [ - "phpunit -c phpunit.xml --order-by random" - ] - }, - "minimum-stability": "stable" + "autoload": { + "psr-4": { + "Joblocal\\LaravelSqsSnsSubscriptionQueue\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "Joblocal\\LaravelSqsSnsSubscriptionQueue\\Tests\\": "tests/" + } + }, + "scripts": { + "lint": [ + "phpcs --standard=phpcs.xml --colors -p ." + ], + "test": [ + "phpunit -c phpunit.xml --order-by random" + ] + }, + "minimum-stability": "stable" }