composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "laravel/prompts",
  3. "type": "library",
  4. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  5. "license": "MIT",
  6. "autoload": {
  7. "psr-4": {
  8. "Laravel\\Prompts\\": "src/"
  9. },
  10. "files": [
  11. "src/helpers.php"
  12. ]
  13. },
  14. "autoload-dev": {
  15. "psr-4": {
  16. "Tests\\": "tests/"
  17. }
  18. },
  19. "require": {
  20. "php": "^8.1",
  21. "ext-mbstring": "*",
  22. "composer-runtime-api": "^2.2",
  23. "symfony/console": "^6.2|^7.0"
  24. },
  25. "require-dev": {
  26. "illuminate/collections": "^10.0|^11.0|^12.0",
  27. "phpstan/phpstan": "^1.11",
  28. "pestphp/pest": "^2.3|^3.4",
  29. "mockery/mockery": "^1.5",
  30. "phpstan/phpstan-mockery": "^1.1"
  31. },
  32. "conflict": {
  33. "illuminate/console": ">=10.17.0 <10.25.0",
  34. "laravel/framework": ">=10.17.0 <10.25.0"
  35. },
  36. "suggest": {
  37. "ext-pcntl": "Required for the spinner to be animated."
  38. },
  39. "config": {
  40. "allow-plugins": {
  41. "pestphp/pest-plugin": true
  42. }
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-main": "0.3.x-dev"
  47. }
  48. },
  49. "prefer-stable": true,
  50. "minimum-stability": "dev"
  51. }