composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "cocostru/php-phantomjs",
  3. "description": "A PHP wrapper for loading pages through PhantomJS - Forked version with critical declaration error fixed",
  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. "name": "Denis Kostukovic",
  15. "email": "info@inmrkt.ml",
  16. "homepage": "http://inmrkt.ml/"
  17. }
  18. ],
  19. "minimum-stability": "stable",
  20. "require": {
  21. "php": ">=5.6.0",
  22. "symfony/config": "~2.3|~3.0",
  23. "symfony/dependency-injection": "~2.3|~3.0",
  24. "symfony/filesystem": "~2.3|~3.0",
  25. "symfony/yaml": "~2.3|~3.0",
  26. "twig/twig": "~1.16",
  27. "guzzlehttp/psr7": "~1.3",
  28. "jakoch/phantomjs-installer": "^2.1"
  29. },
  30. "require-dev": {
  31. "phpunit/phpunit": "~4.0",
  32. "zendframework/zendpdf": "~2.0",
  33. "smalot/pdfparser": "~0.9"
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "JonnyW\\PhantomJs\\": "src/"
  38. }
  39. },
  40. "autoload-dev": {
  41. "psr-4": {
  42. "Tests\\JonnyW\\PhantomJS\\": "tests/"
  43. }
  44. },
  45. "config": {
  46. "bin-dir": "bin"
  47. }
  48. }