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.

50 lines
1.2 KiB

3 years ago
  1. {
  2. "name": "sebastian/code-unit",
  3. "description": "Collection of value objects that represent the PHP code units",
  4. "type": "library",
  5. "homepage": "https://github.com/sebastianbergmann/code-unit",
  6. "license": "BSD-3-Clause",
  7. "authors": [
  8. {
  9. "name": "Sebastian Bergmann",
  10. "email": "sebastian@phpunit.de",
  11. "role": "lead"
  12. }
  13. ],
  14. "support": {
  15. "issues": "https://github.com/sebastianbergmann/code-unit/issues"
  16. },
  17. "prefer-stable": true,
  18. "require": {
  19. "php": ">=7.3"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "^9.3"
  23. },
  24. "config": {
  25. "platform": {
  26. "php": "7.3.0"
  27. },
  28. "optimize-autoloader": true,
  29. "sort-packages": true
  30. },
  31. "autoload": {
  32. "classmap": [
  33. "src/"
  34. ]
  35. },
  36. "autoload-dev": {
  37. "classmap": [
  38. "tests/_fixture"
  39. ],
  40. "files": [
  41. "tests/_fixture/file_with_multiple_code_units.php",
  42. "tests/_fixture/function.php"
  43. ]
  44. },
  45. "extra": {
  46. "branch-alias": {
  47. "dev-master": "1.0-dev"
  48. }
  49. }
  50. }