composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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|~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"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "~4.0",
  26. "zendframework/zendpdf": "~2.0"
  27. },
  28. "autoload": {
  29. "psr-0": {
  30. "JonnyW\\PhantomJs\\": "src"
  31. },
  32. "classmap": ["src/"]
  33. },
  34. "config": {
  35. "bin-dir": "bin"
  36. },
  37. "scripts": {
  38. "post-install-cmd": [
  39. "PhantomInstaller\\Installer::installPhantomJS"
  40. ],
  41. "post-update-cmd": [
  42. "PhantomInstaller\\Installer::installPhantomJS"
  43. ]
  44. }
  45. }