-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 1.79 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
{
"name": "bravedave/dvc",
"description": "DVC - General Purpose PSR-4 Data-View-Controller",
"keywords": [
"MVC",
"Model View Controller"
],
"homepage": "http://brayworth.com",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "David Bray",
"email": "[email protected]",
"homepage": "http://brayworth.com"
}
],
"require": {
"php": ">=8",
"ext-ctype": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-posix": "*",
"ext-session": "*",
"giggsey/libphonenumber-for-php": "^8.11",
"matthiasmullie/minify": "^1.3.61",
"nyholm/psr7-server": "^1.1",
"nyholm/psr7": "^1.8",
"symfony/mailer": "^5.4",
"tijsverkoyen/css-to-inline-styles": "^2.2",
"tinymce/tinymce": "<6",
"league/commonmark": "^2.4"
},
"require-dev": {
"ext-apcu": "*",
"matthiasmullie/scrapbook": "*"
},
"autoload": {
"psr-4": {
"bravedave\\dvc\\": "src/bravedave/dvc/",
"dvc\\": "src/dvc/"
}
},
"autoload-dev": {
"psr-4": {
"": "tests/app/"
}
},
"scripts": {
"bootstrap4": [
"bash src/resource/dvc-bootstrap-4.sh"
],
"bootstrap5": [
"bash src/resource/dvc-bootstrap-5.sh"
],
"bootstrap-icons": [
"bash src/resource/get-bootstrap-icons.sh"
],
"post-update-cmd": [
"bash src/resource/dvc-bootstrap-4.sh",
"bash src/resource/dvc-bootstrap-5.sh",
"bash src/resource/get-bootstrap-icons.sh"
],
"start": [
"Composer\\Config::disableProcessTimeout",
"bash ./run.sh"
],
"create-thumb": "tests\\tests::CreateThumb",
"http-get": "tests\\tests::httpGet",
"http-post": "tests\\tests::httpPost",
"guid": "tests\\tests::guid",
"send-testmail": "tests\\tests::testmail"
}
}