-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.05 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.05 KB
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
{
"name": "totten/git-scan",
"description": "CLI tool for scanning/updating git repos",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Tim Otten",
"email": "totten@civicrm.org"
}
],
"require": {
"php": ">=7.3.0",
"symfony/console": "~5.4",
"symfony/process": "~5.4",
"symfony/filesystem": "~5.4",
"symfony/finder": "^4.4",
"civicrm/composer-downloads-plugin": "~3.0"
},
"autoload": {
"psr-0": {
"GitScan\\": "src/"
}
},
"bin": [
"bin/git-scan"
],
"config": {
"platform": {
"php": "7.3.0"
},
"bin-dir": "bin",
"allow-plugins": {
"civicrm/composer-downloads-plugin": true
}
},
"extra": {
"downloads": {
"box": {
"url": "https://github.com/box-project/box/releases/download/4.6.10/box.phar",
"path": "extern/box",
"type": "phar"
}
}
}
}