-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
112 lines (112 loc) · 3.58 KB
/
composer.json
File metadata and controls
112 lines (112 loc) · 3.58 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"$schema": "https://getcomposer.org/schema.json",
"name": "laravel/laravel",
"type": "project",
"description": "The skeleton application for the Laravel framework.",
"keywords": [
"laravel",
"framework"
],
"license": "MIT",
"require": {
"php": "^8.5",
"ext-dom": "*",
"ext-gd": "*",
"ext-intl": "*",
"ext-libxml": "*",
"ext-zip": "*",
"blade-ui-kit/blade-heroicons": "*",
"filament/filament": "*",
"guzzlehttp/guzzle": "*",
"http-interop/http-factory-guzzle": "*",
"inertiajs/inertia-laravel": "*",
"intervention/image": "*",
"itsgoingd/clockwork": "*",
"laravel/framework": "^13.0",
"laravel/nightwatch": "*",
"laravel/octane": "*",
"laravel/sanctum": "*",
"laravel/scout": "*",
"laravel/tinker": "*",
"livewire/livewire": "*",
"meilisearch/meilisearch-php": "*",
"minishlink/web-push": "*",
"predis/predis": "*",
"sabberworm/php-css-parser": "*",
"socialiteproviders/discord": "*",
"socialiteproviders/google": "*",
"socialiteproviders/steam": "*",
"socialiteproviders/telegram": "*",
"spatie/laravel-schedule-monitor": "*",
"spatie/laravel-sitemap": "*",
"tightenco/ziggy": "*",
"tpetry/laravel-postgresql-enhanced": "*"
},
"require-dev": {
"fakerphp/faker": "*",
"laravel/boost": "*",
"laravel/pail": "*",
"laravel/pint": "*",
"mockery/mockery": "*",
"nunomaduro/collision": "*",
"pestphp/pest-plugin-laravel": "*",
"spatie/laravel-ignition": "*",
"tightenco/duster": "*"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Helpers/canonical.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"
],
"test": "php artisan test --env=testing",
"test:coverage": "php artisan test --env=testing --coverage",
"test:parallel": "php artisan test --env=testing --parallel",
"test:unit": "php artisan test --env=testing --testsuite=Unit",
"test:feature": "php artisan test --env=testing --testsuite=Feature",
"migrate:test": "php artisan migrate:fresh --seed --env=testing",
"lint": "php vendor/bin/duster lint",
"lint:fix": "php vendor/bin/duster fix",
"hooks:install": "git config core.hooksPath .githooks"
},
"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
}