composer.json 874 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "phar-io/manifest",
  3. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  4. "license": "BSD-3-Clause",
  5. "authors": [
  6. {
  7. "name": "Arne Blankerts",
  8. "email": "arne@blankerts.de",
  9. "role": "Developer"
  10. },
  11. {
  12. "name": "Sebastian Heuer",
  13. "email": "sebastian@phpeople.de",
  14. "role": "Developer"
  15. },
  16. {
  17. "name": "Sebastian Bergmann",
  18. "email": "sebastian@phpunit.de",
  19. "role": "Developer"
  20. }
  21. ],
  22. "support": {
  23. "issues": "https://github.com/phar-io/manifest/issues"
  24. },
  25. "require": {
  26. "php": "^7.2 || ^8.0",
  27. "ext-dom": "*",
  28. "ext-phar": "*",
  29. "ext-xmlwriter": "*",
  30. "phar-io/version": "^3.0.1"
  31. },
  32. "autoload": {
  33. "classmap": [
  34. "src/"
  35. ]
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "2.0.x-dev"
  40. }
  41. }
  42. }