composer.json 404 B

123456789101112131415161718192021
  1. {
  2. "name": "robrichards/xmlseclibs",
  3. "description": "A PHP library for XML Security",
  4. "license": "BSD-3-Clause",
  5. "keywords": [
  6. "xml",
  7. "xmldsig",
  8. "signature",
  9. "security"
  10. ],
  11. "homepage": "https://github.com/robrichards/xmlseclibs",
  12. "autoload": {
  13. "psr-4": {
  14. "RobRichards\\XMLSecLibs\\": "src"
  15. }
  16. },
  17. "require": {
  18. "php": ">= 5.4",
  19. "ext-openssl": "*"
  20. }
  21. }