-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.32 KB
/
composer.json
File metadata and controls
85 lines (85 loc) · 2.32 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "liman/liman",
"description": "Liman System Manager",
"keywords": ["liman", "linux", "havelsan"],
"license": "MIT",
"type": "project",
"require": {
"php": "^8.4",
"acsystems/keycloak-php-sdk": "^4.4",
"ankitpokhrel/tus-php": "^2.4",
"bacon/bacon-qr-code": "^3.0",
"doctrine/dbal": "^4.2",
"guzzlehttp/guzzle": "^7.9",
"laravel/framework": "^12.0",
"laravel/helpers": "^1.7",
"laravel/reverb": "^1.0",
"laravel/tinker": "^2.10",
"laravel/ui": "^4.6",
"league/csv": "^9.21",
"mervick/aes-everywhere": "^1.1",
"php-open-source-saver/jwt-auth": "^2.8",
"phpseclib/phpseclib": "~3.0",
"pragmarx/google2fa-laravel": "^2.2",
"sixlive/dotenv-editor": "^2.0",
"stevenmaguire/oauth2-keycloak": "^5.1"
},
"require-dev": {
"fakerphp/faker": "^1.24",
"laravel/pint": "^1.21",
"laravel/sail": "^1.41",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"phpunit/phpunit": "^11.0",
"spatie/laravel-ignition": "^2.9",
"spatie/laravel-web-tinker": "^1.10"
},
"autoload": {
"files": [
"app/Http/Helpers.php"
],
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"files": [
"app/Http/Helpers.php"
],
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [
"laravel/dusk"
]
}
},
"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,
"audit": {
"ignore": ["PKSA-y2cr-5h3j-g3ys"]
}
},
"prefer-stable": true
}