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.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. "homepage": "https://github.com/pimlie/authres_status",
  7. "license": "GPL-3.0+",
  8. "version": "0.5.0",
  9. "authors": [
  10. {
  11. "name": "pimlie",
  12. "email": "pimlie@hotmail.com",
  13. "role": "Author"
  14. }
  15. ],
  16. "repositories": [
  17. {
  18. "type": "composer",
  19. "url": "https://plugins.roundcube.net"
  20. },
  21. {
  22. "type": "vcs",
  23. "url": "https://github.com/pimlie/php-dkim"
  24. }
  25. ],
  26. "require": {
  27. "roundcube/plugin-installer": ">=0.1.3",
  28. "angrychimp/php-dkim": "@dev"
  29. },
  30. "require-dev": {
  31. "phpunit/phpunit": "^6.1",
  32. "squizlabs/php_codesniffer": "3.*"
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "": "./",
  37. "AuthresStatusTest\\": "tests/"
  38. }
  39. },
  40. "support":
  41. {
  42. "email": "pimlie@hotmail.com",
  43. "issues": "https://github.com/pimlie/authres_status/issues",
  44. "source": "https://github.com/pimlie/authres_status"
  45. },
  46. "extra": {
  47. "roundcube": {
  48. "min-version": "1.0.0"
  49. }
  50. },
  51. "scripts": {
  52. "test": "vendor/bin/phpunit",
  53. "cs": "vendor/bin/phpcs ./"
  54. }
  55. }