composer.json 463 B

1234567891011121314151617181920212223
  1. {
  2. "name": "jonnyw/php-phantomjs",
  3. "description": "Execute PhantomJS commands through PHP",
  4. "authors": [
  5. {
  6. "name": "Jonny Wenmoth",
  7. "email": "contact@jonnyw.me"
  8. }
  9. ],
  10. "minimum-stability": "stable",
  11. "require": {
  12. "php": ">=5.3.0"
  13. },
  14. "autoload": {
  15. "psr-0": {
  16. "JonnyW\\PhantomJs\\": "src"
  17. },
  18. "classmap": ["src/"]
  19. },
  20. "bin": [
  21. "bin/phantomjs"
  22. ]
  23. }