composer.json 741 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "padraic/phar-updater",
  3. "description": "A thing to make PHAR self-updating easy and secure.",
  4. "type": "library",
  5. "keywords": ["phar", "self-update", "update", "humbug"],
  6. "license": "BSD-3-Clause",
  7. "authors": [
  8. {
  9. "name": "Padraic Brady",
  10. "email": "padraic.brady@gmail.com",
  11. "homepage": "http://blog.astrumfutura.com"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.3.3",
  16. "padraic/humbug_get_contents": "^1.0"
  17. },
  18. "require-dev": {
  19. "phpunit/phpunit": "~4.0"
  20. },
  21. "autoload": {
  22. "psr-4": { "Humbug\\SelfUpdate\\": "src/" }
  23. },
  24. "extra": {
  25. "branch-alias": {
  26. "dev-master": "1.0-dev"
  27. }
  28. }
  29. }