composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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.4.0",
  17. "symfony/config": "~2.3|~3.0",
  18. "symfony/dependency-injection": "~2.3|~3.0",
  19. "symfony/filesystem": "~2.3|~3.0",
  20. "symfony/yaml": "~2.3|~3.0",
  21. "twig/twig": "~1.16",
  22. "jakoch/phantomjs-installer": "2.1.1-p08"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "~4.0",
  26. "zendframework/zendpdf": "~2.0",
  27. "smalot/pdfparser": "~0.9"
  28. },
  29. "autoload": {
  30. "psr-0": {
  31. "JonnyW\\PhantomJs\\": "src"
  32. },
  33. "classmap": ["src/"]
  34. },
  35. "config": {
  36. "bin-dir": "bin"
  37. },
  38. "scripts": {
  39. "post-install-cmd": [
  40. "PhantomInstaller\\Installer::installPhantomJS"
  41. ],
  42. "post-update-cmd": [
  43. "PhantomInstaller\\Installer::installPhantomJS"
  44. ]
  45. }
  46. }