this repo has no description
1{
2 "name": "laravel/laravel",
3 "type": "project",
4 "description": "The skeleton application for the Laravel framework.",
5 "keywords": ["laravel", "framework"],
6 "license": "MIT",
7 "require": {
8 "php": "^8.1",
9 "guzzlehttp/guzzle": "^7.2",
10 "laravel/framework": "^10.10",
11 "laravel/sanctum": "^3.2",
12 "laravel/tinker": "^2.8"
13 },
14 "require-dev": {
15 "fakerphp/faker": "^1.9.1",
16 "laravel/pint": "^1.0",
17 "laravel/sail": "^1.18",
18 "laravel/ui": "^4.2",
19 "mockery/mockery": "^1.4.4",
20 "nunomaduro/collision": "^7.0",
21 "phpunit/phpunit": "^10.1",
22 "spatie/laravel-ignition": "^2.0"
23 },
24 "autoload": {
25 "psr-4": {
26 "App\\": "app/",
27 "Database\\Factories\\": "database/factories/",
28 "Database\\Seeders\\": "database/seeders/"
29 }
30 },
31 "autoload-dev": {
32 "psr-4": {
33 "Tests\\": "tests/"
34 }
35 },
36 "scripts": {
37 "post-autoload-dump": [
38 "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
39 "@php artisan package:discover --ansi"
40 ],
41 "post-update-cmd": [
42 "@php artisan vendor:publish --tag=laravel-assets --ansi --force"
43 ],
44 "post-root-package-install": [
45 "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
46 ],
47 "post-create-project-cmd": [
48 "@php artisan key:generate --ansi"
49 ]
50 },
51 "extra": {
52 "laravel": {
53 "dont-discover": []
54 }
55 },
56 "config": {
57 "optimize-autoloader": true,
58 "preferred-install": "dist",
59 "sort-packages": true,
60 "allow-plugins": {
61 "pestphp/pest-plugin": true,
62 "php-http/discovery": true
63 }
64 },
65 "minimum-stability": "stable",
66 "prefer-stable": true
67}