composer.json 713 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "symfony/deprecation-contracts",
  3. "type": "library",
  4. "description": "A generic function and convention to trigger deprecation notices",
  5. "homepage": "https://symfony.com",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Nicolas Grekas",
  10. "email": "p@tchwork.com"
  11. },
  12. {
  13. "name": "Symfony Community",
  14. "homepage": "https://symfony.com/contributors"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=7.1"
  19. },
  20. "autoload": {
  21. "files": [
  22. "function.php"
  23. ]
  24. },
  25. "minimum-stability": "dev",
  26. "extra": {
  27. "branch-alias": {
  28. "dev-master": "2.1-dev"
  29. }
  30. }
  31. }