composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. "illuminate/collections": "^10.0|^11.0",
  23. "symfony/console": "^6.2|^7.0"
  24. },
  25. "require-dev": {
  26. "phpstan/phpstan": "^1.11",
  27. "pestphp/pest": "^2.3",
  28. "mockery/mockery": "^1.5",
  29. "phpstan/phpstan-mockery": "^1.1"
  30. },
  31. "conflict": {
  32. "illuminate/console": ">=10.17.0 <10.25.0",
  33. "laravel/framework": ">=10.17.0 <10.25.0"
  34. },
  35. "suggest": {
  36. "ext-pcntl": "Required for the spinner to be animated."
  37. },
  38. "config": {
  39. "allow-plugins": {
  40. "pestphp/pest-plugin": true
  41. }
  42. },
  43. "extra": {
  44. "branch-alias": {
  45. "dev-main": "0.1.x-dev"
  46. }
  47. },
  48. "prefer-stable": true,
  49. "minimum-stability": "dev"
  50. }