This repository has been archived by the owner on Feb 4, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
composer.json
112 lines (112 loc) · 3.92 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
{
"name": "laravel-liberu/genealogy",
"description": "Genealogy can be a solid start for any family tree builder application based on Laravel 8.x, Vue and Bulma",
"license": "MIT",
"require": {
"php": ">=8.2.0",
"constantable/laravel-scout-sphinx": "^3.0",
"doctrine/dbal": "^3.1",
"flowgistics/laravel-xml": "^1.1",
"guzzlehttp/guzzle": "^7.2",
"laravel-liberu/auth": "*",
"laravel-liberu/calendar": "^3.0",
"laravel-liberu/comments": "^4.0",
"laravel-liberu/control-panel-api": "^3.0",
"laravel-liberu/core": "^8.0",
"laravel-liberu/data-import": "^6.0",
"laravel-liberu/discussions": "^4.0",
"laravel-liberu/documents": "^5.0",
"laravel-liberu/excel": "^3.0",
"laravel-liberu/how-to": "^5.0",
"laravel-liberu/laravel-gedcom": "^3.4",
"laravel-liberu/laravel-gelato": "^1.0",
"laravel-liberu/pdf": "^2.0",
"laravel-liberu/recordsapi": "^1.0",
"laravel-liberu/tasks": "^2.0",
"laravel-liberu/teams": "^4.0",
"laravel-liberu/tutorials": "^5.0",
"laravel/cashier": "^14.12",
"laravel/octane": "^2.0",
"laravel/sanctum": "^3.2",
"laravel/socialite": "^5.5",
"laravel/telescope": "^4.0",
"laravel/tinker": "^2.7",
"laravel/ui": "^4.0",
"leifermendez/laravel-paypal-subscription": "^1.0",
"predis/predis": "^2.1",
"rakutentech/laravel-request-docs": "^2.25",
"sentry/sentry-laravel": "^3.0",
"spatie/laravel-ray": "^1.26",
"srmklive/paypal": "^3.0",
"stancl/tenancy": "^3.5",
"symfony/http-client": "^6.0",
"symfony/mailgun-mailer": "^6.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.5",
"barryvdh/laravel-ide-helper": "^2.10",
"brianium/paratest": "^7.1",
"driftingly/rector-laravel": "*",
"fakerphp/faker": "^1.15",
"filp/whoops": "^2.1",
"laravel-liberu/cli": "^5.0",
"laravel-liberu/phpunit-pretty-print": "^1.0",
"laravel/pint": "^1.0",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^7.1",
"nunomaduro/phpinsights": "^2.0",
"phpunit/phpunit": "^10.1",
"rector/rector": "*",
"spatie/laravel-ignition": "^2.1"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/",
"LaravelLiberu\\Tables\\Tests\\": "vendor/laravel-liberu/tables/tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"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": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"php artisan liberu:localisation:merge",
"php artisan telescope:publish",
"php artisan horizon:publish",
"php artisan liberu:upgrade:status"
]
}
}