composer.json 695 B

1234567891011121314151617181920212223
  1. {
  2. "name": "yahnis-elsts/plugin-update-checker",
  3. "type": "library",
  4. "description": "A custom update checker for WordPress plugins and themes. Useful if you can't host your plugin in the official WP repository but still want it to support automatic updates.",
  5. "keywords": ["wordpress", "plugin updates", "automatic updates", "theme updates"],
  6. "homepage": "https://github.com/YahnisElsts/plugin-update-checker/",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Yahnis Elsts",
  11. "email": "whiteshadow@w-shadow.com",
  12. "homepage": "http://w-shadow.com/",
  13. "role": "Developer"
  14. }
  15. ],
  16. "require": {
  17. "php": ">=5.2.0",
  18. "ext-json": "*"
  19. },
  20. "autoload": {
  21. "files": ["load-v4p11.php"]
  22. }
  23. }