This repository has been archived by the owner on Jul 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
/
composer.json
98 lines (98 loc) · 2.97 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
{
"name": "rvolz/bicbucstriim",
"description": "BicBucStriim streams books, digital books. It fills a gap in the functionality of current NAS devices that provide access to music, videos and photos -- but not books. BicBucStriim fills this gap and provides web-based access to your e-book collection. ",
"license": "MIT",
"require": {
"php": ">=7.4.0",
"ext-dom": "*",
"ext-json": "*",
"ext-gd": "*",
"ext-intl": "*",
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"ext-session": "*",
"ext-sqlite3": "*",
"ext-xml": "*",
"ext-xmlwriter": "*",
"ext-zip": "*",
"slim/slim": "^4.6",
"php-di/php-di": "^6.4",
"slim/twig-view": "^3.0",
"swiftmailer/swiftmailer": "^6.3",
"gabordemooij/redbean": "^v5.7",
"monolog/monolog": "^2.9",
"aura/auth": "^4.0",
"ircmaxell/password-compat": "^v1.0",
"aura/accept": "^4.0",
"akrabat/proxy-detection-middleware": "^1.0",
"slim/http-cache": "^1.0",
"guzzlehttp/psr7": "^2.4",
"http-interop/http-factory-guzzle": "^1.0",
"middlewares/trailing-slash": "^2.0",
"anyascii/anyascii": "^0.3",
"dflydev/fig-cookies": "^3.0",
"firebase/php-jwt": "^6.4",
"league/fractal": "^0.20"
},
"require-dev": {
"ext-simplexml": "*",
"simpletest/simpletest": "dev-main",
"phpunit/phpunit": "^9.6",
"nategood/httpful": "^0.3",
"phpstan/phpstan": "^1.8",
"slim/psr7": "^1.6"
},
"scripts": {
"genl10n": "yarn genl10n",
"package": "yarn package",
"test": "phpunit",
"prep-work": [
"rm -rf ./work",
"mkdir -p ./work/www/public/img",
"cp -r app work/www",
"cp -r data work/www",
"cp -r img work/www/public/",
"cp -r js work/www/public/",
"cp -r style work/www/public/",
"cp -r public work/www",
"cp -r src work/www",
"cp -r vendor work/www",
"mkdir ./work/lib",
"cp -r tests/fixtures/lib2/ ./work/lib",
"mkdir -p ./work/www/var/logs",
"mkdir -p ./work/www/var/cache"
],
"clean-work": "rm -rf work",
"copy-src": [
"cp -r app work/www",
"cp -r src work/www",
"cp -r public work/www"
],
"copy-res": [
"cp -r img work/www/public/",
"cp -r js work/www/public/",
"cp -r style work/www/public/"
],
"start": [
"@prep-work",
"docker-compose start"
],
"stop": [
"docker-compose stop",
"@clean-work"
]
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"process-timeout": 0
}
}