forked from hackgvl/hackgreenville-com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
104 lines (104 loc) · 3.05 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
{
"name": "upstate-php/hackgreenville",
"description": "Website for the HackGreenville",
"keywords": [
"updatePHP",
"hack",
"Greenville"
],
"license": "MIT",
"type": "project",
"require": {
"php": "^8.1",
"ext-json": "*",
"glhd/conveyor-belt": "*",
"guzzlehttp/guzzle": "^7.0.1",
"intervention/image": ">=2.5 <3.0.0",
"laravel/framework": "^10.0",
"laravel/helpers": "^1.2",
"laravel/slack-notification-channel": "^2.4",
"laravel/tinker": "^2.0",
"laravel/ui": "v4.2.2",
"laravelcollective/html": "^6.3",
"livewire/livewire": "^2.12",
"scyllaly/hcaptcha": "^4.4",
"spatie/laravel-data": "*",
"spatie/laravel-google-calendar": "^3.0"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"ext-sqlite3": "*",
"barryvdh/laravel-debugbar": "^3.8",
"barryvdh/laravel-ide-helper": "*",
"fakerphp/faker": "^1.9.1",
"imanghafoori/laravel-microscope": "*",
"laravel/pint": "^1.10",
"laravel/sail": "^1.5",
"laravel/telescope": "^4.14",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^7.7",
"pestphp/pest": "^2.8",
"phpunit/phpunit": "^10.2",
"spatie/laravel-ignition": "^2.0"
},
"autoload": {
"classmap": [
"database/seeders",
"database/factories"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"scripts": {
"lint": [
"./vendor/bin/pint --quiet",
"php artisan cache:clear",
"@generate-ide-helper"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
],
"generate-ide-helper": [
"@php artisan ide-helper:generate --ansi --no-interaction",
"@php artisan ide-helper:meta --ansi --no-interaction",
"@php artisan ide-helper:models -N --no-interaction"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta",
"@php artisan migrate --seed"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}