composer.json 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "ramsey/uuid",
  3. "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).",
  4. "type": "library",
  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. "support": {
  24. "issues": "https://github.com/ramsey/uuid/issues",
  25. "source": "https://github.com/ramsey/uuid"
  26. },
  27. "require": {
  28. "php": "^5.4 || ^7.0",
  29. "paragonie/random_compat": "^1.0|^2.0"
  30. },
  31. "require-dev": {
  32. "moontoast/math": "^1.1",
  33. "ircmaxell/random-lib": "^1.1",
  34. "phpunit/phpunit": "^4.7|>=5.0 <5.4",
  35. "squizlabs/php_codesniffer": "^2.3",
  36. "jakub-onderka/php-parallel-lint": "^0.9.0",
  37. "satooshi/php-coveralls": "^0.6.1",
  38. "apigen/apigen": "^4.1",
  39. "mockery/mockery": "^0.9.4",
  40. "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ^2.1",
  41. "doctrine/annotations": "~1.2.0",
  42. "codeception/aspect-mock": "^1.0 | ^2.0",
  43. "php-mock/php-mock-phpunit": "^0.3|^1.1"
  44. },
  45. "suggest": {
  46. "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  47. "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator",
  48. "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator",
  49. "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).",
  50. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type.",
  51. "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid"
  52. },
  53. "autoload": {
  54. "psr-4": {"Ramsey\\Uuid\\": "src/"}
  55. },
  56. "autoload-dev": {
  57. "psr-4": {"Ramsey\\Uuid\\Test\\": "tests/"}
  58. },
  59. "replace": {
  60. "rhumsaa/uuid": "self.version"
  61. },
  62. "extra": {
  63. "branch-alias": {
  64. "dev-master": "3.x-dev"
  65. }
  66. },
  67. "scripts": {
  68. "lint": "parallel-lint src tests",
  69. "phpunit": "phpunit --verbose --colors=always",
  70. "phpcs": "phpcs src tests --standard=psr2 -sp --colors",
  71. "test": [
  72. "@lint",
  73. "@phpunit",
  74. "@phpcs"
  75. ],
  76. "build-docs": "apigen generate --source='src' --destination='build/apidocs' --template-theme='bootstrap' --deprecated --todo"
  77. }
  78. }