composer.json 1.4 KB

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