composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "jonnyw/php-phantomjs",
  3. "description": "A PHP wrapper for loading pages through PhantomJS",
  4. "keywords": ["PhantomJS", "Testing", "Headless Browser"],
  5. "type": "library",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Jonny Wenmoth",
  10. "email": "contact@jonnyw.me",
  11. "homepage": "http://jonnyw.me/"
  12. }
  13. ],
  14. "minimum-stability": "stable",
  15. "require": {
  16. "php": ">=5.3.0",
  17. "symfony/config": "~2.3",
  18. "symfony/dependency-injection": "~2.3",
  19. "symfony/filesystem": "~2.3",
  20. "symfony/yaml": "~2.3",
  21. "twig/twig": "~1.16",
  22. "jakoch/phantomjs-installer": "2.0.0"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "~4.0",
  26. "zendframework/zendpdf": "~2.0"
  27. },
  28. "repositories": [
  29. {
  30. "type": "vcs",
  31. "url": "https://github.com/jonnnnyw/phantomjs-installer"
  32. }
  33. ],
  34. "autoload": {
  35. "psr-0": {
  36. "JonnyW\\PhantomJs\\": "src"
  37. },
  38. "classmap": ["src/"]
  39. },
  40. "config": {
  41. "bin-dir": "bin"
  42. },
  43. "scripts": {
  44. "post-install-cmd": [
  45. "PhantomInstaller\\Installer::installPhantomJS"
  46. ],
  47. "post-update-cmd": [
  48. "PhantomInstaller\\Installer::installPhantomJS"
  49. ]
  50. }
  51. }