forked from LinkStackOrg/LinkStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 2.09 KB
/
Copy pathcomposer.json
File metadata and controls
72 lines (72 loc) · 2.09 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
{
"name": "linkstackorg/linkstack",
"type": "project",
"description": "LinkStack is a highly customizable link sharing platform",
"keywords": ["link"],
"license": "GPL-3.0-or-later",
"require": {
"php": "^8.2",
"geo-sot/laravel-env-editor": "^2.1.1",
"jeroendesloovere/vcard": "^1.7",
"laravel/framework": "^12.0",
"laravel/socialite": "^5.16",
"laravel/tinker": "^2.10",
"livewire/livewire": "^3.5",
"rappasoft/laravel-livewire-tables": "^3.0",
"simplesoftwareio/simple-qrcode": "~4",
"socialiteproviders/openidconnect": "^1.0",
"spatie/laravel-backup": "^9.1",
"symfony/yaml": "^6.0|^7.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.4",
"doctrine/dbal": "^4.0",
"barryvdh/laravel-ide-helper": "^3.1",
"fakerphp/faker": "^1.23",
"laravel/breeze": "^2.2",
"laravel/sail": "^1.37",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.5",
"phpunit/phpunit": "^11.5",
"spatie/laravel-ignition": "^2.8"
},
"autoload": {
"files": [
"app/Functions/functions.php"
],
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-update-cmd": [
"php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}