forked from composer/satis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.07 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
{
"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": "j.boggiano@seld.be",
"homepage": "http://seld.be"
},
{
"name": "Nils Adermann",
"email": "naderman@naderman.de",
"homepage": "http://www.naderman.de"
}
],
"bin": ["bin/satis"],
"require": {
"php": "^5.5 || ^7.0",
"composer/composer": "^1.0",
"twig/twig": "^1.7",
"symfony/console": "^2.1 || ^3.0.4"
},
"autoload": {
"psr-0": { "Composer\\Satis": "src/" }
},
"autoload-dev": {
"psr-0": { "Composer\\Test\\Satis": "tests/" }
},
"require-dev": {
"phpunit/phpunit": "^4.5 || ^5.0.5",
"phpunit/phpunit-mock-objects": "2.3.0 || ^3.0",
"mikey179/vfsStream": "^1.6"
}
}