composer.json 996 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "jcalderonzumba/gastonjs",
  3. "description": "PhantomJS API based server for webpage automation",
  4. "keywords": [
  5. "phantomjs",
  6. "headless",
  7. "api",
  8. "automation",
  9. "browser"
  10. ],
  11. "homepage": "https://github.com/jcalderonzumba/gastonjs",
  12. "type": "phantomjs-api",
  13. "license": "MIT",
  14. "authors": [
  15. {
  16. "name": "Juan Francisco Calderón Zumba",
  17. "email": "juanfcz@gmail.com",
  18. "homepage": "http://github.com/jcalderonzumba"
  19. }
  20. ],
  21. "require": {
  22. "php": ">=5.4",
  23. "guzzlehttp/guzzle": "~5.0|~6.0"
  24. },
  25. "require-dev": {
  26. "symfony/process": "~2.1",
  27. "symfony/phpunit-bridge": "~2.7",
  28. "phpunit/phpunit": "~4.6",
  29. "silex/silex": "~1.2"
  30. },
  31. "config": {
  32. "bin-dir": "bin"
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "Zumba\\GastonJS\\": "src"
  37. }
  38. },
  39. "autoload-dev": {
  40. "psr-4": {
  41. "Zumba\\GastonJS\\Tests\\": "tests/unit"
  42. }
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "1.1.x-dev"
  47. }
  48. }
  49. }