diff --git a/composer.json b/composer.json index 9c9ba11..8297387 100644 --- a/composer.json +++ b/composer.json @@ -1,56 +1,56 @@ { - "name": "laralabs/toaster", - "description": "Easily generate and bind message JSON data to the view for use in frontend toast components", - "license": "MIT", - "authors": [ - { - "name": "Matt Clinton", - "email": "matt@laralabs.uk" - } - ], - "minimum-stability": "dev", - "require": { - "php": "^8.1", - "illuminate/support": "^10.0", - "illuminate/database": "^10.0", - "illuminate/contracts": "^10.0", - "illuminate/session": "^10.0" - }, - "require-dev": { - "roave/security-advisories": "dev-latest", - "mockery/mockery": "^1.0", - "orchestra/testbench": "^8.0", - "phpunit/phpunit": "^9.0" - }, - "autoload": { - "psr-4": { - "Laralabs\\Toaster\\": "src/", - "Laralabs\\Toaster\\Tests\\": "tests/" + "name": "laralabs/toaster", + "description": "Easily generate and bind message JSON data to the view for use in frontend toast components", + "license": "MIT", + "authors": [ + { + "name": "Matt Clinton", + "email": "matt@laralabs.uk" + } + ], + "minimum-stability": "dev", + "require": { + "php": "^8.1", + "illuminate/support": "^10.0|^11.0", + "illuminate/database": "^10.0|^11.0", + "illuminate/contracts": "^10.0|^11.0", + "illuminate/session": "^10.0|^11.0" }, - "files": [ - "src/Helpers/functions.php" - ] - }, - "scripts": { - "test": "./vendor/bin/phpunit", - "test:coverage": [ - "@putenv XDEBUG_MODE=coverage", - "vendor/bin/phpunit --log-junit=coverage/phpunit.junit.xml --coverage-cobertura=coverage/cobertura.xml --coverage-text" - ] - }, - "extra": { - "laravel": { - "providers": [ - "Laralabs\\Toaster\\ToasterServiceProvider" - ], - "aliases": { - "Toaster": "Laralabs\\Toaster\\Facades\\Toaster" - } - } - }, - "config": { - "allow-plugins": { - "dealerdirect/phpcodesniffer-composer-installer": true + "require-dev": { + "roave/security-advisories": "dev-latest", + "mockery/mockery": "^1.0", + "orchestra/testbench": "^8.0|^9.0", + "phpunit/phpunit": "^9.0|^10.5" + }, + "autoload": { + "psr-4": { + "Laralabs\\Toaster\\": "src/", + "Laralabs\\Toaster\\Tests\\": "tests/" + }, + "files": [ + "src/Helpers/functions.php" + ] + }, + "scripts": { + "test": "./vendor/bin/phpunit", + "test:coverage": [ + "@putenv XDEBUG_MODE=coverage", + "vendor/bin/phpunit --log-junit=coverage/phpunit.junit.xml --coverage-cobertura=coverage/cobertura.xml --coverage-text" + ] + }, + "extra": { + "laravel": { + "providers": [ + "Laralabs\\Toaster\\ToasterServiceProvider" + ], + "aliases": { + "Toaster": "Laralabs\\Toaster\\Facades\\Toaster" + } + } + }, + "config": { + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true + } } - } }