You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.4 KiB

3 years ago
  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": "^8.0",
  25. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  26. "phpstan/phpstan": "^0.12",
  27. "phpstan/phpstan-phpunit": "^0.12",
  28. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.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. }