Created
July 21, 2023 16:49
-
-
Save cpereiraweb/a92fa6e654551573b1005f4b6786d4dd to your computer and use it in GitHub Desktop.
composer.json [Laravel 10 + Filament 3]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "laravel/laravel", | |
"type": "project", | |
"description": "The skeleton application for the Laravel framework.", | |
"keywords": [ | |
"laravel", | |
"framework" | |
], | |
"license": "MIT", | |
"require": { | |
"php": "^8.1", | |
"filament/filament": "^3.0", | |
"flowframe/laravel-trend": "^0.1.5", | |
"guzzlehttp/guzzle": "^7.2", | |
"laravel/framework": "^10.10", | |
"laravel/sanctum": "^3.2", | |
"laravel/tinker": "^2.8" | |
}, | |
"require-dev": { | |
"doctrine/dbal": "^3.6", | |
"fakerphp/faker": "^1.9.1", | |
"laravel/pint": "^1.0", | |
"laravel/sail": "^1.18", | |
"mockery/mockery": "^1.4.4", | |
"nunomaduro/collision": "^7.0", | |
"phpunit/phpunit": "^10.1", | |
"spatie/laravel-ignition": "^2.0" | |
}, | |
"autoload": { | |
"psr-4": { | |
"App\\": "app/", | |
"Database\\Factories\\": "database/factories/", | |
"Database\\Seeders\\": "database/seeders/" | |
} | |
}, | |
"autoload-dev": { | |
"psr-4": { | |
"Tests\\": "tests/" | |
} | |
}, | |
"scripts": { | |
"post-autoload-dump": [ | |
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", | |
"@php artisan package:discover --ansi", | |
"@php artisan filament:upgrade" | |
], | |
"post-update-cmd": [ | |
"@php artisan vendor:publish --tag=laravel-assets --ansi --force" | |
], | |
"post-root-package-install": [ | |
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | |
], | |
"post-create-project-cmd": [ | |
"@php artisan key:generate --ansi" | |
] | |
}, | |
"extra": { | |
"laravel": { | |
"dont-discover": [] | |
} | |
}, | |
"config": { | |
"optimize-autoloader": true, | |
"preferred-install": "dist", | |
"sort-packages": true, | |
"allow-plugins": { | |
"pestphp/pest-plugin": true, | |
"php-http/discovery": true | |
} | |
}, | |
"minimum-stability": "dev", | |
"prefer-stable": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment