-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
80 lines (80 loc) · 2.51 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "laravel/laravel",
"type": "project",
"description": "The skeleton application for the Laravel framework.",
"keywords": [
"laravel",
"framework"
],
"license": "MIT",
"require": {
"php": "^8.2",
"bezhansalleh/filament-language-switch": "^3.1",
"dedoc/scramble": "^0.11",
"filament/filament": "^3.2",
"flowframe/laravel-trend": "^0.3",
"hybridly/laravel": "^0.7",
"laravel/framework": "^11.40",
"laravel/sanctum": "^4.0",
"laravel/tinker": "^2.10",
"spatie/laravel-data": "^4.13"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.5",
"fakerphp/faker": "^1.24",
"friendsofphp/php-cs-fixer": "^3.68",
"laravel/pint": "^1.20",
"laravel/sail": "^1.40",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.6",
"pestphp/pest": "^3.7",
"pestphp/pest-plugin-laravel": "^3.1",
"spatie/laravel-typescript-transformer": "^2.5"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"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": "stable",
"prefer-stable": true,
"scripts": {
"test": "pest",
"lint": "php-cs-fixer fix . --allow-risky=yes --dry-run",
"lint:fix": "php-cs-fixer fix . --allow-risky=yes",
"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-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan filament:upgrade"
],
"autocomplete": [
"@php artisan ide-helper:eloquent || true",
"@php artisan ide-helper:generate || true",
"@php artisan ide-helper:meta || true",
"@php artisan ide-helper:models -M || true"
]
}
}