-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
118 lines (118 loc) · 3.11 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "mckenziearts/goshen-tabernacle",
"type": "project",
"description": "The official website of the Goshen Tabernacle Assembly.",
"keywords": [
"gospel",
"church",
"branham",
"end-time-message"
],
"license": "MIT",
"require": {
"php": "^8.2",
"ext-json": "*",
"archtechx/laravel-seo": "^0.9.0",
"blade-ui-kit/blade-ui-kit": "^0.4",
"cyrildewit/eloquent-viewable": "^7.0.1",
"filament/filament": "^3.0-stable",
"filament/forms": "^3.0-stable",
"guzzlehttp/guzzle": "^7.7",
"laravel/folio": "^1.1",
"laravel/framework": "^10.14.1",
"laravel/tinker": "^2.8.1",
"livewire/livewire": "^3.0",
"spatie/laravel-medialibrary": "^10.10.1",
"spatie/laravel-permission": "^5.10.1",
"wire-elements/modal": "^2.0.5-beta"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.8.1",
"barryvdh/laravel-ide-helper": "^2.13",
"doctrine/dbal": "^3.6.4",
"fakerphp/faker": "^1.23",
"filament/upgrade": "^3.0-stable",
"juststeveking/launchpad": "dev-main",
"laravel/breeze": "^1.21.1",
"laravel/pint": "^1.10",
"laravel/sail": "^1.23",
"mockery/mockery": "^1.6.2",
"nunomaduro/collision": "^7.7",
"nunomaduro/larastan": "^2.6",
"pestphp/pest": "^2.8",
"pestphp/pest-plugin-laravel": "^2.0",
"phpunit/phpunit": "^10.2.3",
"spatie/laravel-ignition": "^2.2"
},
"autoload": {
"files": [
"app/helpers.php"
],
"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"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:models -F helpers/ModelHelper.php -M",
"@php artisan ide-helper:meta",
"@php artisan filament:upgrade"
],
"setup": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"php artisan key:generate",
"php artisan migrate --seed",
"php artisan goshen:create-admin"
],
"pest": [
"./vendor/bin/pest"
],
"pint": [
"./vendor/bin/pint"
],
"stan": [
"./vendor/bin/phpstan analyse --memory-limit=3g"
],
"test": [
"@php artisan test"
],
"models:doc": [
"@php artisan ide-helper:models -F helpers/ModelHelper.php -M"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": false,
"pestphp/pest-plugin": false
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"minimum-stability": "dev",
"prefer-stable": true
}