-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
51 lines (51 loc) · 1.4 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
{
"name": "composer/satis",
"description": "Simple Repository Generator",
"keywords": ["package", "repository", "generator", "static", "composer"],
"homepage": "https://github.com/composer/satis",
"type": "library",
"license": "MIT",
"authors": [{
"name": "Jordi Boggiano",
"email": "[email protected]",
"homepage": "http://seld.be"
}, {
"name": "Nils Adermann",
"email": "[email protected]",
"homepage": "http://www.naderman.de"
}],
"support": {
"issues": "https://github.com/composer/satis",
"source": "https://github.com/composer/satis",
"forum": "https://gitter.com/composer/satis",
"irc": "irc://freenode.net/composer"
},
"bin": ["bin/satis"],
"require": {
"php": "^7.0",
"composer/composer": "^1.4",
"twig/twig": "^1.7 || ^2.0",
"symfony/console": "^2.1 || ^3.0.4 || ^4.0"
},
"autoload": {
"psr-4": { "Composer\\Satis\\": "src" }
},
"require-dev": {
"phpunit/phpunit": "^6.4",
"phpunit/phpunit-mock-objects": "^4.0",
"mikey179/vfsStream": "^1.6"
},
"autoload-dev": {
"psr-4": { "Composer\\Satis\\": "tests" }
},
"config": {
"platform": {
"php": "7.0"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}