forked from khepin/medusa
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
37 lines (37 loc) · 899 Bytes
/
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
{
"name": "instaclick/medusa",
"description": "A small set of command to maintain a mirror of git repositories and create a local satis repository for composer.",
"license": "MIT",
"require": {
"php": ">=7.3",
"composer/composer": "^1.9",
"guzzlehttp/guzzle": "^6.5",
"symfony/console": "^4||^5",
"symfony/finder": "^4||^5",
"symfony/process": "^4||^5"
},
"authors": [
{
"name": "Sebastien Armand",
"email": "[email protected]"
},
{
"name": "Anthon Pang",
"email": "[email protected]",
"role": "Fork maintainer"
}
],
"autoload": {
"psr-0": {
"Khepin": "src"
}
},
"bin": [
"bin/medusa"
],
"config": {
"platform": {
"php": "7.3"
}
}
}