From 59f720222614c96029cf4a3ee2de7cdc4850aa17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 19 Jul 2018 17:34:05 +0200 Subject: [PATCH] Enhancement: Normalize composer.json --- composer.json | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/composer.json b/composer.json index 51348ce..3f14896 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "ramsey/uuid", - "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", "type": "library", + "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", "keywords": ["uuid", "identifier", "guid"], "homepage": "https://github.com/ramsey/uuid", "license": "MIT", @@ -20,10 +20,6 @@ "email": "thibaud@aztech.io" } ], - "support": { - "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid" - }, "require": { "php": "^5.4 || ^7.0", "ext-json": "*", @@ -44,12 +40,23 @@ }, "suggest": { "ext-ctype": "Provides support for PHP Ctype functions", - "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator", "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator", "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).", + "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid", "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type.", - "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid" + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter" + }, + "config": { + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "replace": { + "rhumsaa/uuid": "self.version" }, "autoload": { "psr-4": {"Ramsey\\Uuid\\": "src/"} @@ -57,25 +64,18 @@ "autoload-dev": { "psr-4": {"Ramsey\\Uuid\\Test\\": "tests/"} }, - "replace": { - "rhumsaa/uuid": "self.version" - }, - "extra": { - "branch-alias": { - "dev-master": "3.x-dev" - } - }, "scripts": { "lint": "parallel-lint src tests", - "phpunit": "phpunit --verbose --colors=always", "phpcs": "phpcs src tests --standard=psr2 -sp --colors", + "phpunit": "phpunit --verbose --colors=always", "test": [ "@lint", "@phpunit", "@phpcs" ] }, - "config": { - "sort-packages": true + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "source": "https://github.com/ramsey/uuid" } }