-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
67 lines (67 loc) · 1.78 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
{
"name": "totten/loco",
"description": "Loco is the YAML-based \"local-compose\" process manager",
"require": {
"ext-json": "*",
"ext-posix": "*",
"ext-pcntl": "*",
"marcj/topsort": "^2.0",
"symfony/yaml": "~5.4",
"symfony/finder": "~5.4",
"symfony/console": "~5.4",
"symfony/filesystem": "~5.4",
"symfony/event-dispatcher": "~4.4",
"symfony/cache": "~5.4",
"civicrm/composer-downloads-plugin": "~3.0",
"lesser-evil/shell-verbosity-is-evil": "~1.0",
"psr/simple-cache": "^1.0"
},
"bin": ["bin/loco"],
"autoload": {
"files": [
"src/php7-overloads.php"
],
"psr-4": {
"Loco\\": "src/"
}
},
"config": {
"platform": {
"php": "7.3.0"
},
"preferred-install": "source",
"allow-plugins": {
"civicrm/composer-downloads-plugin": true
}
},
"license": "MIT",
"authors": [
{
"name": "Tim Otten",
"email": "[email protected]"
}
],
"extra": {
"patches": {
},
"downloads": {
"box": {
"url": "https://github.com/humbug/box/releases/download/3.15.0/box.phar",
"path": "extern/box",
"type": "phar"
},
"phpunit5": {
"version": "5.x",
"url": "https://phar.phpunit.de/phpunit-5.phar",
"path": "extern/phpunit5",
"type": "phar"
},
"phpunit8": {
"version": "8.x",
"url": "https://phar.phpunit.de/phpunit-8.phar",
"path": "extern/phpunit8",
"type": "phar"
}
}
}
}