composer.json 959 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "instaclick/php-webdriver",
  3. "type": "library",
  4. "description": "PHP WebDriver for Selenium 2",
  5. "keywords": [
  6. "selenium",
  7. "webdriver",
  8. "webtest",
  9. "browser"
  10. ],
  11. "homepage": "http://instaclick.com/",
  12. "license": "Apache-2.0",
  13. "authors": [
  14. {
  15. "name": "Justin Bishop",
  16. "email": "jubishop@gmail.com",
  17. "role": "Developer"
  18. },
  19. {
  20. "name": "Anthon Pang",
  21. "email": "apang@softwaredevelopment.ca",
  22. "role": "Fork Maintainer"
  23. }
  24. ],
  25. "require": {
  26. "php": ">=5.3.2",
  27. "ext-curl": "*"
  28. },
  29. "require-dev": {
  30. "satooshi/php-coveralls": "^1.0||^2.0",
  31. "phpunit/phpunit": "^4.8"
  32. },
  33. "autoload": {
  34. "psr-0": {
  35. "WebDriver": "lib/"
  36. }
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "1.4.x-dev"
  41. }
  42. }
  43. }