composer.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "psy/psysh",
  3. "description": "An interactive shell for modern PHP.",
  4. "type": "library",
  5. "keywords": ["console", "interactive", "shell", "repl"],
  6. "homepage": "http://psysh.org",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Justin Hileman",
  11. "email": "justin@justinhileman.info",
  12. "homepage": "http://justinhileman.com"
  13. }
  14. ],
  15. "require": {
  16. "php": "^8.0 || ^7.4",
  17. "ext-json": "*",
  18. "ext-tokenizer": "*",
  19. "nikic/php-parser": "^5.0 || ^4.0",
  20. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  21. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  22. },
  23. "require-dev": {
  24. "bamarni/composer-bin-plugin": "^1.2"
  25. },
  26. "suggest": {
  27. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  28. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  29. "ext-pdo-sqlite": "The doc command requires SQLite to work."
  30. },
  31. "autoload": {
  32. "files": ["src/functions.php"],
  33. "psr-4": {
  34. "Psy\\": "src/"
  35. }
  36. },
  37. "autoload-dev": {
  38. "psr-4": {
  39. "Psy\\Test\\": "test/"
  40. }
  41. },
  42. "bin": ["bin/psysh"],
  43. "config": {
  44. "allow-plugins": {
  45. "bamarni/composer-bin-plugin": true
  46. }
  47. },
  48. "extra": {
  49. "branch-alias": {
  50. "dev-main": "0.12.x-dev"
  51. },
  52. "bamarni-bin": {
  53. "bin-links": false,
  54. "forward-command": false
  55. }
  56. },
  57. "conflict": {
  58. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  59. }
  60. }