composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "symfony/browser-kit",
  3. "type": "library",
  4. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  5. "keywords": [],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.1.3",
  20. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  21. "symfony/polyfill-php80": "^1.16"
  22. },
  23. "require-dev": {
  24. "symfony/css-selector": "^3.4|^4.0|^5.0",
  25. "symfony/http-client": "^4.3|^5.0",
  26. "symfony/mime": "^4.3|^5.0",
  27. "symfony/process": "^3.4|^4.0|^5.0"
  28. },
  29. "suggest": {
  30. "symfony/process": ""
  31. },
  32. "autoload": {
  33. "psr-4": { "Symfony\\Component\\BrowserKit\\": "" },
  34. "exclude-from-classmap": [
  35. "/Tests/"
  36. ]
  37. },
  38. "minimum-stability": "dev"
  39. }