-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
82 lines (82 loc) · 2.48 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
{
"name": "utdal/profiles",
"description": "Research Profiles.",
"keywords": ["research", "profiles", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"php": "^8.3.0",
"adldap2/adldap2-laravel": "^6.0.8",
"doctrine/dbal": "^3.2",
"guzzlehttp/guzzle": "^7.4.5",
"laravel/framework": "^10.0",
"laravel/tinker": "^2.7",
"laravel/ui": "^4.0",
"laravelcollective/html": "^6.3.0",
"league/flysystem-aws-s3-v3": "^3.0",
"livewire/livewire": "^2.10",
"owen-it/laravel-auditing": "^13.0",
"predis/predis": "^1.1",
"sentry/sentry-laravel": "^3.2.0",
"spatie/browsershot": "^3.57",
"spatie/laravel-backup": "^8.1",
"spatie/laravel-medialibrary": "^10.3.6",
"spatie/laravel-tags": "^4.3.2",
"stevebauman/purify": "^5.1.1"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.6",
"beyondcode/laravel-dump-server": "^1.0",
"fakerphp/faker": "^1.9.1",
"laravel/telescope": "^4.12.0",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^7.0",
"phpunit/phpunit": "^10.0",
"psalm/plugin-laravel": "^2.0",
"spatie/laravel-ignition": "^2.0",
"sunra/php-simple-html-dom-parser": "1.5.1",
"vimeo/psalm": "^5.0.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [
"laravel/telescope"
]
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}