composer.json 782 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "nick322/secure-spreadsheet",
  3. "description": "Encrypt and password protect sensitive XLSX files",
  4. "type": "library",
  5. "license": "MIT",
  6. "require": {
  7. "php": "^7.3 || ^7.4 || ^8.0 || ^8.1",
  8. "ext-openssl": "*",
  9. "ext-hash": "*",
  10. "ext-simplexml": "*",
  11. "mnapoli/silly": "^1.0",
  12. "phpunit/phpunit": "^9.5"
  13. },
  14. "require-dev": {
  15. "php": "^7.3 || ^7.4 || ^8.0 || ^8.1",
  16. "ext-openssl": "*",
  17. "ext-hash": "*"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "Nick\\SecureSpreadsheet\\": "src/"
  22. }
  23. },
  24. "authors": [
  25. {
  26. "name": "Nick Huang",
  27. "email": "nick80322@gmail.com"
  28. }
  29. ],
  30. "bin": [
  31. "secure-spreadsheet"
  32. ]
  33. }