forked from AOEpeople/composer-satis-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.2 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
{
"name": "digitick/composer-satis-builder",
"description": "Complementary tool to Satis for updating the satis.json 'require' key from the project composer.json.",
"homepage": "https://github.com/digitick/composer-satis-builder",
"license": "MIT License",
"support": {
"email": "[email protected]",
"issues": "https://github.com/digitick/composer-satis-builder/issues",
"source": "https://github.com/digitick/composer-satis-builder"
},
"authors": [
{
"name": "AOE GmbH",
"email": "[email protected]",
"homepage": "http://www.digitick.com"
},
{
"name": "Digitick",
"email": "[email protected]",
"homepage": "http://www.digitick.com"
}
],
"require": {
"php": ">=5.4.0",
"symfony/console": "2.8.*"
},
"require-dev": {
"phpunit/phpunit": "4.7.*"
},
"autoload": {
"psr-4": {
"AOE\\Composer\\Satis\\Generator\\": "src/"
}
},
"bin": [
"bin/composer-satis-generator"
],
"keywords": [
"composer",
"satis",
"config",
"generate",
"build"
]
}