-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
108 lines (108 loc) · 3.06 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
{
"name": "loshmis/biomedic",
"description": "Advanced PHP Login and User Management",
"keywords": [
"advanced",
"secure",
"login",
"user management",
"authentication",
"authorization",
"register"
],
"authors": [
{
"name": "Milos Stojanovic",
"email": "stojanovic.loshmi@gmail.com",
"homepage": "https://mstojanovic.net",
"role": "Developer"
}
],
"type": "project",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/loshmis/laravel-countries"
},
{
"type": "path",
"url": "./plugins/ActivityLog"
},
{
"type": "path",
"url": "./plugins/Announcements"
}
],
"require": {
"php": "^7.3.0",
"ext-json": "*",
"akaunting/setting": "^1.0",
"anhskohbo/no-captcha": "3.*",
"barryvdh/laravel-dompdf": "^2.0",
"fideloper/proxy": "^4.2",
"fruitcake/laravel-cors": "^1.0",
"guzzlehttp/guzzle": "^7.0.1",
"intervention/image": "^2.3",
"jenssegers/agent": "^2.5",
"kossa/algerian-cities": "^3.0",
"lab404/laravel-impersonate": "^1.2",
"laravel/framework": "^8.0",
"laravel/sanctum": "^2.0",
"laravel/socialite": "^5.0",
"laravel/ui": "^3.0",
"laravelcollective/html": "^6.2",
"milon/barcode": "^9.0",
"proengsoft/laravel-jsvalidation": "^4.0.0",
"simplesoftwareio/simple-qrcode": "~4",
"spatie/laravel-query-builder": "^3.0",
"vanguardapp/activity-log": "*",
"vanguardapp/announcements": "*",
"vanguardapp/plugins": "^3.0.0",
"webpatser/laravel-countries": "dev-master"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^9.0",
"barryvdh/laravel-ide-helper": "2.8.*",
"barryvdh/laravel-debugbar": "3.5.*",
"facade/ignition": "^2.3.6",
"nunomaduro/collision": "^5.0"
},
"autoload": {
"psr-4": {
"Dsone\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"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"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}