composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. },
  27. "autoload": {
  28. "psr-0": {
  29. "JonnyW\\PhantomJs\\": "src"
  30. },
  31. "classmap": ["src/"]
  32. },
  33. "config": {
  34. "bin-dir": "bin"
  35. },
  36. "bin": [
  37. "bin/phantomloader"
  38. ],
  39. "scripts": {
  40. "post-install-cmd": [
  41. "PhantomInstaller\\Installer::installPhantomJS"
  42. ],
  43. "post-update-cmd": [
  44. "PhantomInstaller\\Installer::installPhantomJS"
  45. ]
  46. }
  47. }