forked from LycheeOrg/Lychee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
134 lines (134 loc) · 4.01 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": "lychee-org/lychee",
"description": "A great looking and easy-to-use photo-management-system you can run on your server, to manage and share photos.",
"homepage": "https://lycheeorg.github.io/",
"readme": "README.md",
"support": {
"source": "https://github.com/LycheeOrg/Lychee",
"issues": "https://github.com/LycheeOrg/Lychee/issues",
"docs": "https://lycheeorg.github.io/docs/",
"chat": "https://gitter.im/LycheeOrg/Lobby"
},
"keywords": [
"photos",
"gallery",
"photo management",
"album software",
"image organizer"
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/LycheeOrg/phpstan-lychee"
},
{
"type": "vcs",
"url": "https://github.com/LycheeOrg/php-exif"
},
{
"type": "vcs",
"url": "https://github.com/LycheeOrg/log-viewer"
}
],
"license": "MIT",
"type": "project",
"require": {
"php": "^8.1",
"ext-bcmath": "*",
"ext-ctype": "*",
"ext-exif": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-tokenizer": "*",
"ext-xml": "*",
"bepsvpt/secure-headers": "^7.2",
"doctrine/dbal": "^3.1",
"geocoder-php/cache-provider": "^4.3",
"geocoder-php/nominatim-provider": "^5.5",
"laminas/laminas-text": "^2.9",
"laragear/webauthn": "^1.2.0",
"laravel/framework": "^10.0",
"lychee-org/nestedset": "^8.0",
"lychee-org/php-exif": "^1.0.0",
"maennchen/zipstream-php": "^2.1",
"opcodesio/log-viewer": "dev-lycheeOrg",
"php-ffmpeg/php-ffmpeg": "^1.0",
"php-http/guzzle7-adapter": "^1.0",
"php-http/message": "^1.12",
"spatie/guzzle-rate-limiter-middleware": "^2.0",
"spatie/laravel-feed": "^4.0",
"spatie/laravel-image-optimizer": "^1.6.2",
"symfony/cache": "^v6.0.0",
"thecodingmachine/safe": "^2.4"
},
"require-dev": {
"ext-imagick": "*",
"ext-posix": "*",
"ext-zip": "*",
"barryvdh/laravel-debugbar": "^3.6",
"barryvdh/laravel-ide-helper": "^2.10",
"dedoc/scramble": "^0.7.2",
"filp/whoops": "^2.5",
"friendsofphp/php-cs-fixer": "^3.3",
"itsgoingd/clockwork": "^5.1",
"lychee-org/phpstan-lychee": "^v1.0.1",
"mockery/mockery": "^1.5",
"nunomaduro/larastan": "^2.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\\": "app/",
"Scripts\\": "scripts/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"PHPStan\\": "phpstan/"
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"scripts": {
"post-install-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php artisan key:generate --no-override",
"@php artisan vendor:publish --tag=log-viewer-assets"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan optimize --clever --dont-confirm=assume-no",
"@php artisan package:discover",
"@install_files"
],
"install_files": [
"@php scripts/install_files.php"
]
},
"config": {
"platform": {
"php": "8.1"
},
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"php-http/discovery": false
}
},
"minimum-stability": "dev",
"prefer-stable": true
}