composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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://github.com/doctrine/instantiator",
  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": ">=5.3,<8.0-DEV"
  20. },
  21. "require-dev": {
  22. "ext-phar": "*",
  23. "ext-pdo": "*",
  24. "phpunit/phpunit": "~4.0",
  25. "squizlabs/php_codesniffer": "~2.0",
  26. "athletic/athletic": "~0.1.8"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  31. }
  32. },
  33. "autoload-dev": {
  34. "psr-0": {
  35. "DoctrineTest\\InstantiatorPerformance\\": "tests",
  36. "DoctrineTest\\InstantiatorTest\\": "tests",
  37. "DoctrineTest\\InstantiatorTestAsset\\": "tests"
  38. }
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "1.0.x-dev"
  43. }
  44. }
  45. }