You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.0 KiB

3 years ago
  1. {
  2. "name": "symfony/service-contracts",
  3. "type": "library",
  4. "description": "Generic abstractions related to writing services",
  5. "keywords": ["abstractions", "contracts", "decoupling", "interfaces", "interoperability", "standards"],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Nicolas Grekas",
  11. "email": "p@tchwork.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=7.2.5",
  20. "psr/container": "^1.1"
  21. },
  22. "suggest": {
  23. "symfony/service-implementation": ""
  24. },
  25. "autoload": {
  26. "psr-4": { "Symfony\\Contracts\\Service\\": "" }
  27. },
  28. "minimum-stability": "dev",
  29. "extra": {
  30. "branch-alias": {
  31. "dev-main": "2.4-dev"
  32. },
  33. "thanks": {
  34. "name": "symfony/contracts",
  35. "url": "https://github.com/symfony/contracts"
  36. }
  37. }
  38. }