composer.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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": "http://ocramius.github.com/"
  16. }
  17. ],
  18. "config": {
  19. "platform": {
  20. "php": "7.1.27"
  21. }
  22. },
  23. "require": {
  24. "php": "^7.1 || ^8.0"
  25. },
  26. "require-dev": {
  27. "ext-phar": "*",
  28. "ext-pdo": "*",
  29. "doctrine/coding-standard": "^6.0",
  30. "phpbench/phpbench": "^0.13",
  31. "phpstan/phpstan-phpunit": "^0.11",
  32. "phpstan/phpstan-shim": "^0.11",
  33. "phpunit/phpunit": "^7.0"
  34. },
  35. "autoload": {
  36. "psr-4": {
  37. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  38. }
  39. },
  40. "autoload-dev": {
  41. "psr-0": {
  42. "DoctrineTest\\InstantiatorPerformance\\": "tests",
  43. "DoctrineTest\\InstantiatorTest\\": "tests",
  44. "DoctrineTest\\InstantiatorTestAsset\\": "tests"
  45. }
  46. },
  47. "extra": {
  48. "branch-alias": {
  49. "dev-master": "1.2.x-dev"
  50. }
  51. }
  52. }