-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1006 Bytes
/
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
{
"name": "rekalogika/file-server",
"description": "Temporary URL resource server for rekalogika/file FileInterface. Access files easily in your application by creating temporary URLs that expire after a set amount of time.",
"homepage": "https://rekalogika.dev/file-bundle",
"license": "MIT",
"type": "library",
"keywords": [
"file",
"temporary",
"temporary url",
"url",
"server"
],
"authors": [
{
"name": "Priyadi Iman Nurcahyo",
"email": "priyadi@rekalogika.com"
}
],
"autoload": {
"psr-4": {
"Rekalogika\\File\\Server\\": "src/"
}
},
"require": {
"rekalogika/file-contracts": "^1.11",
"rekalogika/file-symfony-bridge": "^1.11",
"rekalogika/temporary-url-bundle": "^1.3",
"symfony/http-foundation": "^6.2 || ^7.0"
},
"extra": {
"branch-alias": {
"dev-main": "1.12-dev"
}
}
}