From ab8c77c7015f8e90abfe9db3e26694fc80bc4954 Mon Sep 17 00:00:00 2001 From: Gregory Gaskill Date: Sat, 10 Feb 2024 15:20:58 -0500 Subject: [PATCH] Update required CakePHP version, update formatting --- composer.json | 56 +++++++++++++++++++++++++-------------------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/composer.json b/composer.json index cc4631c..c5a7e04 100644 --- a/composer.json +++ b/composer.json @@ -1,31 +1,31 @@ { - "name": "loadsys/cakephp-svg-icon", - "description": "SvgIcon plugin for CakePHP", - "type": "cakephp-plugin", - "license": "MIT", - "require": { - "php": ">=7.4", - "cakephp/cakephp": "4.4.*" - }, - "require-dev": { - "cakephp/cakephp-codesniffer": "^4.5", - "phpstan/phpstan": "^1.9", - "phpunit/phpunit": "^9.3" - }, - "autoload": { - "psr-4": { - "SvgIcon\\": "src/" + "name": "loadsys/cakephp-svg-icon", + "description": "SvgIcon plugin for CakePHP", + "type": "cakephp-plugin", + "license": "MIT", + "require": { + "php": ">=7.4", + "cakephp/cakephp": "4.*" + }, + "require-dev": { + "cakephp/cakephp-codesniffer": "^4.5", + "phpstan/phpstan": "^1.9", + "phpunit/phpunit": "^9.3" + }, + "autoload": { + "psr-4": { + "SvgIcon\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "SvgIcon\\Test\\": "tests/", + "Cake\\Test\\": "vendor/cakephp/cakephp/tests/" + } + }, + "config": { + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true + } } - }, - "autoload-dev": { - "psr-4": { - "SvgIcon\\Test\\": "tests/", - "Cake\\Test\\": "vendor/cakephp/cakephp/tests/" - } - }, - "config": { - "allow-plugins": { - "dealerdirect/phpcodesniffer-composer-installer": true - } - } }