composer.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "laravel/boost",
  3. "description": "Laravel Boost accelerates AI-assisted development by providing the essential context and structure that AI needs to generate high-quality, Laravel-specific code.",
  4. "keywords": [
  5. "dev",
  6. "laravel",
  7. "ai"
  8. ],
  9. "homepage": "https://github.com/laravel/boost",
  10. "license": "MIT",
  11. "support": {
  12. "issues": "https://github.com/laravel/boost/issues",
  13. "source": "https://github.com/laravel/boost"
  14. },
  15. "require": {
  16. "php": "^8.2",
  17. "guzzlehttp/guzzle": "^7.9",
  18. "illuminate/console": "^11.45.3|^12.41.1|^13.0",
  19. "illuminate/contracts": "^11.45.3|^12.41.1|^13.0",
  20. "illuminate/routing": "^11.45.3|^12.41.1|^13.0",
  21. "illuminate/support": "^11.45.3|^12.41.1|^13.0",
  22. "laravel/mcp": "^0.5.1|^0.6.0|^0.7.0",
  23. "laravel/prompts": "^0.3.10",
  24. "laravel/roster": "^0.5.0"
  25. },
  26. "require-dev": {
  27. "laravel/pint": "^1.27.0",
  28. "mockery/mockery": "^1.6.12",
  29. "orchestra/testbench": "^9.15.0|^10.6|^11.0",
  30. "pestphp/pest": "^2.36.0|^3.8.4|^4.1.5",
  31. "phpstan/phpstan": "^2.1.27",
  32. "rector/rector": "^2.1"
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "Laravel\\Boost\\": "src/"
  37. }
  38. },
  39. "autoload-dev": {
  40. "psr-4": {
  41. "Tests\\": "tests/"
  42. }
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "1.x-dev"
  47. },
  48. "laravel": {
  49. "providers": [
  50. "Laravel\\Boost\\BoostServiceProvider"
  51. ]
  52. }
  53. },
  54. "scripts": {
  55. "lint": [
  56. "pint --format agent",
  57. "phpstan --memory-limit=-1",
  58. "rector"
  59. ],
  60. "test": "pest",
  61. "test:lint": [
  62. "pint --test --format agent",
  63. "rector --dry-run"
  64. ],
  65. "test:types": "phpstan",
  66. "check": [
  67. "@composer lint",
  68. "@composer test"
  69. ]
  70. },
  71. "config": {
  72. "sort-packages": true,
  73. "allow-plugins": {
  74. "pestphp/pest-plugin": true
  75. }
  76. },
  77. "minimum-stability": "dev",
  78. "prefer-stable": true
  79. }