| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- {
- "name": "laravel/boost",
- "description": "Laravel Boost accelerates AI-assisted development by providing the essential context and structure that AI needs to generate high-quality, Laravel-specific code.",
- "keywords": [
- "dev",
- "laravel",
- "ai"
- ],
- "homepage": "https://github.com/laravel/boost",
- "license": "MIT",
- "support": {
- "issues": "https://github.com/laravel/boost/issues",
- "source": "https://github.com/laravel/boost"
- },
- "require": {
- "php": "^8.2",
- "guzzlehttp/guzzle": "^7.9",
- "illuminate/console": "^11.45.3|^12.41.1|^13.0",
- "illuminate/contracts": "^11.45.3|^12.41.1|^13.0",
- "illuminate/routing": "^11.45.3|^12.41.1|^13.0",
- "illuminate/support": "^11.45.3|^12.41.1|^13.0",
- "laravel/mcp": "^0.5.1|^0.6.0|^0.7.0",
- "laravel/prompts": "^0.3.10",
- "laravel/roster": "^0.5.0"
- },
- "require-dev": {
- "laravel/pint": "^1.27.0",
- "mockery/mockery": "^1.6.12",
- "orchestra/testbench": "^9.15.0|^10.6|^11.0",
- "pestphp/pest": "^2.36.0|^3.8.4|^4.1.5",
- "phpstan/phpstan": "^2.1.27",
- "rector/rector": "^2.1"
- },
- "autoload": {
- "psr-4": {
- "Laravel\\Boost\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "Tests\\": "tests/"
- }
- },
- "extra": {
- "branch-alias": {
- "dev-master": "1.x-dev"
- },
- "laravel": {
- "providers": [
- "Laravel\\Boost\\BoostServiceProvider"
- ]
- }
- },
- "scripts": {
- "lint": [
- "pint --format agent",
- "phpstan --memory-limit=-1",
- "rector"
- ],
- "test": "pest",
- "test:lint": [
- "pint --test --format agent",
- "rector --dry-run"
- ],
- "test:types": "phpstan",
- "check": [
- "@composer lint",
- "@composer test"
- ]
- },
- "config": {
- "sort-packages": true,
- "allow-plugins": {
- "pestphp/pest-plugin": true
- }
- },
- "minimum-stability": "dev",
- "prefer-stable": true
- }
|