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.

41 lines
927 B

3 years ago
  1. {
  2. "name": "sebastian/cli-parser",
  3. "description": "Library for parsing CLI options",
  4. "type": "library",
  5. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  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/cli-parser/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. "extra": {
  37. "branch-alias": {
  38. "dev-master": "1.0-dev"
  39. }
  40. }
  41. }