-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
96 lines (96 loc) · 3.1 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "laravel/laravel",
"type": "project",
"description": "The skeleton application for the Laravel framework.",
"keywords": ["laravel", "framework"],
"license": "MIT",
"require": {
"php": "^8.2",
"echolabsdev/prism": "^0.6.0",
"filament/filament": "^3.2",
"flowframe/laravel-trend": "^0.3.0",
"inertiajs/inertia-laravel": "^1.0",
"laravel/framework": "^11.9",
"laravel/horizon": "^5.29",
"laravel/jetstream": "^5.1",
"laravel/sanctum": "^4.0",
"laravel/telescope": "^5.2",
"laravel/tinker": "^2.9",
"league/commonmark": "^2.5",
"league/html-to-markdown": "^5.1",
"opcodesio/log-viewer": "^3.11",
"openai-php/laravel": "^0.10.1",
"rawilk/filament-password-input": "^2.0",
"smalot/pdfparser": "^2.11",
"spatie/browsershot": "^4.3",
"spatie/laravel-data": "^4.8",
"spatie/laravel-markdown": "^2.5",
"spatie/laravel-sluggable": "^3.6",
"symfony/http-client": "^7.1",
"symfony/postmark-mailer": "^7.1",
"tightenco/ziggy": "^2.0"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"larastan/larastan": "^2.9",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"phpunit/phpunit": "^11.0.1",
"spatie/laravel-horizon-watcher": "^1.1"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/helpers.php"
]
},
"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",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi"
],
"fix": "vendor/bin/pint",
"test": "php artisan test",
"test-local": "XDEBUG_MODE=coverage herd php artisan test --coverage --min=40",
"stan": "vendor/bin/phpstan analyse --memory-limit 2G"
},
"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
}