-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
95 lines (95 loc) · 2.58 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
{
"name": "gaiaresources/catools",
"description": "Tools for developing and hosting CollectiveAccess projects.",
"type": "library",
"license": "MIT",
"config": {
"github-protocols": ["https"],
"discard-changes": true
},
"autoload": {
"psr-4": {
"CaTools\\": "src/"
}
},
"authors": [
{
"name": "Kehan Harman",
"email": "[email protected]"
},
{
"name": "Ben New",
"email": "[email protected]"
},
{
"name": "Brianna Williams",
"email": "[email protected]"
},
{
"name": "Billy Thornton",
"email": "[email protected]"
},
{
"name": "Natasha Madondo",
"email": "[email protected]"
},
{
"name": "Jithendralal Nair",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/collectiveaccess/providence",
"branch": "develop"
},
{
"type": "vcs",
"url": "https://github.com/collectiveaccess/pawtucket2",
"branch": "develop"
}
],
"require": {
"php": ">=7.4",
"symfony/process": "^5.0|^6.0",
"robmorgan/phinx": "^0.12|^0.13",
"ext-json": "*",
"amphp/parallel": "^1.4",
"symfony/console": "^5.4"
},
"suggest": {
"collectiveaccess/providence": "In order to run CollectiveAccess Providence you should install this",
"collectiveaccess/pawtucket2": "In order to run CollectiveAccess Pawtucket you should install this"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"ext-dom": "*",
"amphp/parallel-functions": "^1.1"
},
"bin": [
"bin/deploy",
"bin/dropDb",
"bin/dump",
"bin/installOrUpdate",
"bin/installCA",
"bin/healthcheck",
"bin/restore",
"bin/restoreMedia",
"bin/startQueue",
"bin/startUp",
"bin/wait-for",
"bin/exportProfile",
"bin/fixMediaPermissions",
"bin/getImages",
"bin/downloadLabels",
"bin/indexAllTablesInParallel",
"bin/indexer",
"bin/indexParallel",
"bin/indexRecordsFromTable",
"bin/queue",
"bin/reindexOtherTables",
"bin/taskQueue",
"bin/searchIndexer"
]
}