Nenhuma descrição

composer.json 3.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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.0 | ^8.0",
  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.0 <=2.3.2",
  33. "mockery/mockery": "^0.9.11 | ^1",
  34. "moontoast/math": "^1.1",
  35. "nikic/php-parser": "<=4.5.0",
  36. "paragonie/random-lib": "^2",
  37. "php-mock/php-mock-phpunit": "^0.3 | ^1.1 | ^2.6",
  38. "php-parallel-lint/php-parallel-lint": "^1.3",
  39. "phpunit/phpunit": ">=4.8.36 <9.0.0 | >=9.3.0",
  40. "squizlabs/php_codesniffer": "^3.5",
  41. "yoast/phpunit-polyfills": "^1.0"
  42. },
  43. "suggest": {
  44. "ext-ctype": "Provides support for PHP Ctype functions",
  45. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  46. "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator",
  47. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  48. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  49. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid",
  50. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type.",
  51. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter"
  52. },
  53. "config": {
  54. "sort-packages": true
  55. },
  56. "extra": {
  57. "branch-alias": {
  58. "dev-master": "3.x-dev"
  59. }
  60. },
  61. "replace": {
  62. "rhumsaa/uuid": "self.version"
  63. },
  64. "autoload": {
  65. "psr-4": {
  66. "Ramsey\\Uuid\\": "src/"
  67. },
  68. "files": [
  69. "src/functions.php"
  70. ]
  71. },
  72. "autoload-dev": {
  73. "psr-4": {
  74. "Ramsey\\Uuid\\Test\\": "tests/"
  75. }
  76. },
  77. "scripts": {
  78. "lint": "parallel-lint src tests",
  79. "phpcs": "phpcs src tests --standard=psr2 -sp --colors",
  80. "phpunit": "phpunit --verbose --colors=always",
  81. "phpunit-coverage": "phpunit --verbose --colors=always --coverage-html build/coverage",
  82. "test": [
  83. "@lint",
  84. "@phpcs",
  85. "@phpunit"
  86. ]
  87. },
  88. "support": {
  89. "issues": "https://github.com/ramsey/uuid/issues",
  90. "rss": "https://github.com/ramsey/uuid/releases.atom",
  91. "source": "https://github.com/ramsey/uuid",
  92. "wiki": "https://github.com/ramsey/uuid/wiki"
  93. }
  94. }