composer.json 622 B

123456789101112131415161718192021222324252627
  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. },
  18. "autoload": {
  19. "psr-0": {
  20. "JonnyW\\PhantomJs\\": "src"
  21. },
  22. "classmap": ["src/"]
  23. },
  24. "bin": [
  25. "bin/phantomjs"
  26. ]
  27. }