diff --git a/composer.json b/composer.json index cd0238a..293f383 100644 --- a/composer.json +++ b/composer.json @@ -1,13 +1,12 @@ { "name": "spatie/enum", "description": "PHP Enums", + "license": "MIT", "keywords": [ "spatie", "enum", "enumerable" ], - "homepage": "https://github.com/spatie/enum", - "license": "MIT", "authors": [ { "name": "Brent Roose", @@ -22,6 +21,12 @@ "role": "Developer" } ], + "homepage": "https://github.com/spatie/enum", + "support": { + "issues": "https://github.com/spatie/enum/issues", + "source": "https://github.com/spatie/enum", + "docs": "https://docs.spatie.be/enum" + }, "require": { "php": "^8.0", "ext-json": "*" @@ -36,9 +41,6 @@ "fakerphp/faker": "To use the enum faker provider", "phpunit/phpunit": "To use the enum assertions" }, - "config": { - "sort-packages": true - }, "autoload": { "psr-4": { "Spatie\\Enum\\": "src" @@ -49,14 +51,12 @@ "Spatie\\Enum\\Tests\\": "tests" } }, + "config": { + "sort-packages": true + }, "scripts": { "psalm": "vendor/bin/psalm -c psalm.xml --show-info=true", "test": "vendor/bin/phpunit --colors=always", "test-coverage": "vendor/bin/phpunit --coverage-html coverage" - }, - "support": { - "issues": "https://github.com/spatie/enum/issues", - "source": "https://github.com/spatie/enum", - "docs": "https://docs.spatie.be/enum" } }