diff --git a/composer.json b/composer.json index c6eb937..0b5a5bf 100644 --- a/composer.json +++ b/composer.json @@ -1,12 +1,11 @@ { "name": "spatie/calendar-links", "description": "Generate add to calendar links for Google, iCal and other calendar systems", + "license": "MIT", "keywords": [ "spatie", "calendar-links" ], - "homepage": "https://github.com/spatie/calendar-links", - "license": "MIT", "authors": [ { "name": "Sebastian De Deyne", @@ -15,8 +14,9 @@ "role": "Developer" } ], + "homepage": "https://github.com/spatie/calendar-links", "require": { - "php": "^8.0" + "php": "^8.1" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.48", @@ -34,14 +34,14 @@ "Spatie\\CalendarLinks\\Tests\\": "tests" } }, + "config": { + "sort-packages": true + }, "scripts": { "format": "vendor/bin/php-cs-fixer fix --allow-risky=yes", "psalm": "vendor/bin/psalm --find-unused-psalm-suppress --output-format=phpstorm", "psalm:ci": "vendor/bin/psalm --find-unused-psalm-suppress --output-format=github --shepherd", "test": "vendor/bin/phpunit", "test:update-snapshots": "vendor/bin/phpunit -d --update-snapshots" - }, - "config": { - "sort-packages": true } }