composer.json 917 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "symfony/uid",
  3. "type": "library",
  4. "description": "Provides an object-oriented API to generate and represent UIDs",
  5. "keywords": ["uid", "uuid", "ulid"],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Grégoire Pineau",
  11. "email": "lyrixx@lyrixx.info"
  12. },
  13. {
  14. "name": "Nicolas Grekas",
  15. "email": "p@tchwork.com"
  16. },
  17. {
  18. "name": "Symfony Community",
  19. "homepage": "https://symfony.com/contributors"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=8.2",
  24. "symfony/polyfill-uuid": "^1.15"
  25. },
  26. "require-dev": {
  27. "symfony/console": "^6.4|^7.0"
  28. },
  29. "autoload": {
  30. "psr-4": { "Symfony\\Component\\Uid\\": "" },
  31. "exclude-from-classmap": [
  32. "/Tests/"
  33. ]
  34. },
  35. "minimum-stability": "dev"
  36. }