composer.json 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "ramsey/uuid",
  3. "type": "library",
  4. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  5. "keywords": ["uuid", "identifier", "guid"],
  6. "homepage": "https://github.com/ramsey/uuid",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Ben Ramsey",
  11. "email": "ben@benramsey.com",
  12. "homepage": "https://benramsey.com"
  13. },
  14. {
  15. "name": "Marijn Huizendveld",
  16. "email": "marijn.huizendveld@gmail.com"
  17. },
  18. {
  19. "name": "Thibaud Fabre",
  20. "email": "thibaud@aztech.io"
  21. }
  22. ],
  23. "require": {
  24. "php": "^5.4 | ^7 | ^8",
  25. "ext-json": "*",
  26. "paragonie/random_compat": "^1 | ^2 | 9.99.99",
  27. "symfony/polyfill-ctype": "^1.8"
  28. },
  29. "require-dev": {
  30. "codeception/aspect-mock": "^1 | ^2",
  31. "doctrine/annotations": "^1.2",
  32. "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1",
  33. "jakub-onderka/php-parallel-lint": "^1",
  34. "mockery/mockery": "^0.9.11 | ^1",
  35. "moontoast/math": "^1.1",
  36. "paragonie/random-lib": "^2",
  37. "php-mock/php-mock-phpunit": "^0.3 | ^1.1",
  38. "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5",
  39. "squizlabs/php_codesniffer": "^3.5"
  40. },
  41. "suggest": {
  42. "ext-ctype": "Provides support for PHP Ctype functions",
  43. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  44. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  45. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  46. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  47. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  48. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type.",
  49. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter"
  50. },
  51. "config": {
  52. "sort-packages": true
  53. },
  54. "extra": {
  55. "branch-alias": {
  56. "dev-master": "3.x-dev"
  57. }
  58. },
  59. "replace": {
  60. "rhumsaa/uuid": "self.version"
  61. },
  62. "autoload": {
  63. "psr-4": {
  64. "Ramsey\\Uuid\\": "src/"
  65. },
  66. "files": [
  67. "src/functions.php"
  68. ]
  69. },
  70. "autoload-dev": {
  71. "psr-4": {
  72. "Ramsey\\Uuid\\Test\\": "tests/"
  73. }
  74. },
  75. "scripts": {
  76. "lint": "parallel-lint src tests",
  77. "phpcs": "phpcs src tests --standard=psr2 -sp --colors",
  78. "phpunit": "phpunit --verbose --colors=always",
  79. "phpunit-coverage": "phpunit --verbose --colors=always --coverage-html build/coverage",
  80. "test": [
  81. "@lint",
  82. "@phpcs",
  83. "@phpunit"
  84. ]
  85. },
  86. "support": {
  87. "issues": "https://github.com/ramsey/uuid/issues",
  88. "rss": "https://github.com/ramsey/uuid/releases.atom",
  89. "source": "https://github.com/ramsey/uuid",
  90. "wiki": "https://github.com/ramsey/uuid/wiki"
  91. }
  92. }