From 8dc6eec036eef707338b916c1f755f40a129293c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ey=C3=BCp=20Erdo=C4=9Fan?= Date: Mon, 27 May 2024 16:57:45 +0300 Subject: [PATCH] Upgrade laravel version --- composer.json | 143 ++++++++++++++++++++++++-------------------------- 1 file changed, 70 insertions(+), 73 deletions(-) diff --git a/composer.json b/composer.json index 275b989..a7b2904 100644 --- a/composer.json +++ b/composer.json @@ -1,75 +1,72 @@ { - "name": "laravel-ready/model-support", - "description": "Useful model support traits", - "type": "library", - "license": "MIT", - "keywords": [ - "model", - "trait", - "laravel", - "support", - "model support" - ], - "authors": [ - { - "name": "Egoist", - "email": "epsilonelittr@gmail.com" - } - ], - "support": { - "issues": "https://github.com/laravel-ready/model-support/issues", - "source": "https://github.com/laravel-ready/model-support" - }, - "require": { - "php": "^8.1", - "illuminate/support": "^10.0" - }, - "require-dev": { - "mockery/mockery": "^1.5", - "orchestra/testbench": "^8.0", - "phpstan/phpstan": "^1.10", - "phpstan/phpstan-phpunit": "^1.3", - "phpstan/phpstan-deprecation-rules": "^1.1", - "phpstan/extension-installer": "^1.2", - "nunomaduro/larastan": "^2.5", - "pestphp/pest": "^1.22", - "pestphp/pest-plugin-laravel": "^1.4", - "pestphp/pest-plugin-parallel": "^1.2" - }, - "autoload": { - "psr-4": { - "LaravelReady\\ModelSupport\\": "src/" - } - }, - "autoload-dev": { - "psr-4": { - "Tests\\": "tests" - } - }, - "config": { - "preferred-install": "dist", - "sort-packages": true, - "allow-plugins": { - "pestphp/pest-plugin": true, - "phpstan/extension-installer": true - } - }, - "scripts": { - "lint": "php-cs-fixer fix -v", - "test:coverage": "@test --coverage-php ./coverage/cov/default.cov", - "test:coverage:html": "@test --coverage-html coverage/html/default", - "test": "vendor/bin/pest --colors=always --parallel", - "test:lint": "php-cs-fixer fix -v --dry-run", - "test:styles": "vendor/bin/phpstan analyse --ansi", - "test:styles:pro": "vendor/bin/phpstan analyse --pro --fix --watch" - }, - "extra": { - "laravel": { - "providers": [ - "LaravelReady\\ModelSupport\\ServiceProvider" - ] - } - }, - "minimum-stability": "stable", - "prefer-stable": true + "name": "laravel-ready/model-support", + "description": "Useful model support traits", + "type": "library", + "license": "MIT", + "keywords": [ + "model", + "trait", + "laravel", + "support", + "model support" + ], + "authors": [ + { + "name": "Egoist", + "email": "epsilonelittr@gmail.com" + } + ], + "support": { + "issues": "https://github.com/laravel-ready/model-support/issues", + "source": "https://github.com/laravel-ready/model-support" + }, + "require": { + "php": "^8.2 || ^8.1", + "illuminate/support": "^11.8 || ^10.0" + }, + "require-dev": { + "mockery/mockery": "^1.6.12", + "orchestra/testbench": "v9.1.0", + "phpstan/phpstan": "^1.11.2", + "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-deprecation-rules": "^1.2.0", + "phpstan/extension-installer": "^1.3.1", + "nunomaduro/larastan": "^v2.9.6" + }, + "autoload": { + "psr-4": { + "LaravelReady\\ModelSupport\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "Tests\\": "tests" + } + }, + "config": { + "preferred-install": "dist", + "sort-packages": true, + "allow-plugins": { + "pestphp/pest-plugin": true, + "phpstan/extension-installer": true + } + }, + "scripts": { + "lint": "php-cs-fixer fix -v", + "test:coverage": "@test --coverage-php ./coverage/cov/default.cov", + "test:coverage:html": "@test --coverage-html coverage/html/default", + "test": "vendor/bin/pest --colors=always --parallel", + "test:lint": "php-cs-fixer fix -v --dry-run", + "test:styles": "vendor/bin/phpstan analyse --ansi", + "test:styles:pro": "vendor/bin/phpstan analyse --pro --fix --watch" + }, + "extra": { + "laravel": { + "providers": [ + "LaravelReady\\ModelSupport\\ServiceProvider" + ] + } + }, + "minimum-stability": "stable", + "prefer-stable": true }