forked from composer/satis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.45 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": "project",
"license": "MIT",
"authors": [{
"name": "Jordi Boggiano",
"email": "[email protected]",
"homepage": "https://seld.be"
}, {
"name": "Nils Adermann",
"email": "[email protected]",
"homepage": "http://www.naderman.de"
}, {
"name": "Rob Bast",
"email": "[email protected]",
"homepage": "https://robbast.nl"
}],
"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.3||^8.0",
"composer/composer": "^1.10",
"symfony/console": "^4.4||^5.0",
"twig/twig": "^2.12||^3.0"
},
"autoload": {
"psr-4": { "Composer\\Satis\\": "src" }
},
"require-dev": {
"ext-json": "*",
"friendsofphp/php-cs-fixer": "^2.15",
"mikey179/vfsstream": "^1.6.7",
"phpunit/phpunit": "^9.3"
},
"autoload-dev": {
"psr-4": { "Composer\\Satis\\": "tests" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}