You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "roundcube/authres_status",
  3. "type": "roundcube-plugin",
  4. "description": "This authres_status plugin checks the Authentication-Results headers of your emails and displays the verification status. The verification status is displayed when you read an email, but you can also add a column to your message list.",
  5. "keywords": ["authentication","results","dkim","domainkeys","spf","sender-id","rfc5451"],
  6. "license": "GPL-3.0+",
  7. "version": "0.3.1",
  8. "authors": [
  9. {
  10. "name": "pimlie",
  11. "email": "pimlie@hotmail.com",
  12. "role": "Author"
  13. }
  14. ],
  15. "repositories": [
  16. {
  17. "type": "composer",
  18. "url": "https://plugins.roundcube.net"
  19. },
  20. {
  21. "type": "vcs",
  22. "url": "https://github.com/pimlie/php-dkim"
  23. }
  24. ],
  25. "require": {
  26. "roundcube/plugin-installer": ">=0.1.3",
  27. "angrychimp/php-dkim": "@dev"
  28. },
  29. "require-dev": {
  30. "phpunit/phpunit": "^6.1",
  31. "squizlabs/php_codesniffer": "3.*"
  32. },
  33. "autoload-dev": {
  34. "psr-4": {
  35. "": "./",
  36. "AuthresStatusTest\\": "tests/"
  37. }
  38. },
  39. "extra": {
  40. "roundcube": {
  41. "min-version": "1.0.0"
  42. }
  43. },
  44. "scripts": {
  45. "test": "vendor/bin/phpunit",
  46. "cs": "vendor/bin/phpcs ./"
  47. }
  48. }