composer.json 959 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "symfony/polyfill-php83",
  3. "type": "library",
  4. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5. "keywords": ["polyfill", "shim", "compatibility", "portable"],
  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.1",
  20. "symfony/polyfill-php80": "^1.14"
  21. },
  22. "autoload": {
  23. "psr-4": { "Symfony\\Polyfill\\Php83\\": "" },
  24. "files": [ "bootstrap.php" ],
  25. "classmap": [ "Resources/stubs" ]
  26. },
  27. "minimum-stability": "dev",
  28. "extra": {
  29. "thanks": {
  30. "name": "symfony/polyfill",
  31. "url": "https://github.com/symfony/polyfill"
  32. }
  33. }
  34. }