Nessuna descrizione

composer.json 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "doctrine/instantiator",
  3. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  4. "type": "library",
  5. "license": "MIT",
  6. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7. "keywords": [
  8. "instantiate",
  9. "constructor"
  10. ],
  11. "authors": [
  12. {
  13. "name": "Marco Pivetta",
  14. "email": "ocramius@gmail.com",
  15. "homepage": "https://ocramius.github.io/"
  16. }
  17. ],
  18. "require": {
  19. "php": "^7.1 || ^8.0"
  20. },
  21. "require-dev": {
  22. "ext-phar": "*",
  23. "ext-pdo": "*",
  24. "doctrine/coding-standard": "^9",
  25. "phpbench/phpbench": "^0.16 || ^1",
  26. "phpstan/phpstan": "^1.4",
  27. "phpstan/phpstan-phpunit": "^1",
  28. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  29. "vimeo/psalm": "^4.22"
  30. },
  31. "autoload": {
  32. "psr-4": {
  33. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  34. }
  35. },
  36. "autoload-dev": {
  37. "psr-0": {
  38. "DoctrineTest\\InstantiatorPerformance\\": "tests",
  39. "DoctrineTest\\InstantiatorTest\\": "tests",
  40. "DoctrineTest\\InstantiatorTestAsset\\": "tests"
  41. }
  42. },
  43. "config": {
  44. "allow-plugins": {
  45. "dealerdirect/phpcodesniffer-composer-installer": true
  46. }
  47. }
  48. }