composer.json 969 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "symfony/asset",
  3. "type": "library",
  4. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  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.2.5"
  20. },
  21. "suggest": {
  22. "symfony/http-foundation": ""
  23. },
  24. "require-dev": {
  25. "symfony/http-client": "^4.4|^5.0",
  26. "symfony/http-foundation": "^4.4|^5.0",
  27. "symfony/http-kernel": "^4.4|^5.0"
  28. },
  29. "autoload": {
  30. "psr-4": { "Symfony\\Component\\Asset\\": "" },
  31. "exclude-from-classmap": [
  32. "/Tests/"
  33. ]
  34. },
  35. "minimum-stability": "dev"
  36. }