forked from LycheeOrg/Lychee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
128 lines (128 loc) · 3.78 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
{
"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/Laragear/WebAuthn"
}
],
"license": "MIT",
"type": "project",
"require": {
"php": "^8.0.2",
"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",
"laragear/webauthn": "1.x-dev",
"laravel/framework": "^9.2",
"livewire/livewire": "^2.7",
"lychee-org/nestedset": "^6",
"lychee-org/php-exif": "^0.7.14",
"maennchen/zipstream-php": "^2.1",
"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",
"filp/whoops": "^2.5",
"friendsofphp/php-cs-fixer": "^3.3",
"itsgoingd/clockwork": "^5.1",
"lychee-org/phpstan-lychee": "dev-master",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9",
"nunomaduro/larastan": "^2.0",
"php-parallel-lint/php-parallel-lint": "^1.3"
},
"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"
],
"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.0.2"
},
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}