Drupal investigation

composer.json 721B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "fabpot/goutte",
  3. "type": "application",
  4. "description": "A simple PHP Web Scraper",
  5. "keywords": ["scraper"],
  6. "homepage": "https://github.com/FriendsOfPHP/Goutte",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.5.0",
  16. "symfony/browser-kit": "~2.1|~3.0",
  17. "symfony/css-selector": "~2.1|~3.0",
  18. "symfony/dom-crawler": "~2.1|~3.0",
  19. "guzzlehttp/guzzle": "^6.0"
  20. },
  21. "autoload": {
  22. "psr-4": { "Goutte\\": "Goutte" }
  23. },
  24. "extra": {
  25. "branch-alias": {
  26. "dev-master": "3.2-dev"
  27. }
  28. }
  29. }