Enhancement: Normalize composer.json

This commit is contained in:
Andreas Möller
2018-07-19 17:34:05 +02:00
committed by Ben Ramsey
parent bfc4afdf1f
commit 59f7202226
+18 -18
View File
@@ -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"
}
}