-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathcomposer.json
134 lines (134 loc) · 3.99 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "librehealth/ehr",
"type": "project",
"description": "LibreHealth EHR is a free and open-source electronic health records and medical practice management application.",
"keywords": [
"framework",
"laravel",
"php",
"inertiajs",
"vuejs",
"sentry.io",
"healthcare",
"health",
"electronic health record",
"EHR"
],
"authors": [
{
"name": "Mua Rachmann",
"email": "muarachmann@gmail.com",
"role": "Maintainer"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/muarachmann/laravel-vue-i18n-generator.git"
}
],
"license": "MIT",
"require": {
"php": "^8.0.2",
"cybercog/laravel-ban": "^4.7",
"jackiedo/dotenv-editor": "^1.1",
"guzzlehttp/guzzle": "^7.2",
"inertiajs/inertia-laravel": "^0.6.4",
"jamesdordoy/laravelvuedatatable": "^1.3",
"jenssegers/agent": "^2.6",
"khsing/world": "^9.0",
"laravel/framework": "^9.19",
"laravel/horizon": "^5.10",
"laravel/sanctum": "^3.0",
"laravel/tinker": "^2.7",
"laravel/ui": "^4.1",
"maatwebsite/excel": "^3.1",
"predis/predis": "^1.1",
"propaganistas/laravel-phone": "^4.3",
"psr/simple-cache": "^2.0",
"pusher/pusher-php-server": "^7.2",
"santigarcor/laratrust": "^7.1",
"sentry/sentry-laravel": "^3.1",
"spatie/laravel-activitylog": "^4.7",
"spatie/laravel-cookie-consent": "^3.2.2",
"spatie/laravel-translatable": "^6.1",
"tightenco/ziggy": "^1.5",
"torann/currency": "^1.1"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.7",
"barryvdh/laravel-ide-helper": "^2.12",
"fakerphp/faker": "^1.9.1",
"laravel/pint": "^1.0",
"laravel/sail": "^1.0.1",
"mockery/mockery": "^1.4.4",
"muarachmann/laravel-vue-i18n-generator": "dev-l9-compatibility",
"nunomaduro/collision": "^6.1",
"phpunit/phpunit": "^9.5.10",
"spatie/laravel-ignition": "^1.0",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Support/helper.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-install-cmd": [
"chmod -R 755 bootstrap/cache",
"php artisan cache:clear"
],
"clear-all": [
"@php artisan clear-compiled",
"@php artisan cache:clear",
"@php artisan route:clear",
"@php artisan view:clear",
"@php artisan config:clear",
"@php artisan route:cache",
"@php artisan config:cache",
"composer dumpautoload -o"
],
"cache-all": [
"@php artisan config:cache",
"@php artisan route:cache"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}