-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
71 lines (71 loc) · 2.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "hiqdev/composer-config-plugin",
"type": "composer-plugin",
"description": "Composer plugin for config assembling",
"keywords": [
"composer",
"config",
"assembling",
"plugin"
],
"homepage": "https://github.com/hiqdev/composer-config-plugin",
"license": "BSD-3-Clause",
"support": {
"email": "[email protected]",
"source": "https://github.com/hiqdev/composer-config-plugin",
"issues": "https://github.com/hiqdev/composer-config-plugin/issues",
"wiki": "https://github.com/hiqdev/composer-config-plugin/wiki",
"forum": "http://forum.hiqdev.com/"
},
"authors": [
{
"name": "Andrii Vasyliev",
"role": "Project lead",
"email": "[email protected]",
"homepage": "http://hipanel.com/"
},
{
"name": "Dmitry Naumenko",
"role": "Lead backend developer",
"email": "[email protected]",
"homepage": "http://silverfire.me/"
},
{
"name": "Andrey Klochok",
"role": "Lead frontend developer",
"email": "[email protected]",
"homepage": "http://hiqdev.com/"
},
{
"name": "Yuriy Myronchuk",
"role": "QA Lead",
"email": "[email protected]",
"homepage": "http://hiqdev.com/"
}
],
"require": {
"php": ">=7.1",
"composer-plugin-api": "^1.0",
"riimu/kit-phpencoder": "^2.4",
"opis/closure": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"composer/composer": "~1.0@dev"
},
"suggest": {
"vlucas/phpdotenv": "^2.0 for `.env` files support",
"symfony/yaml": "^2.0 || ^3.0 || ^4.0 for YAML files support"
},
"autoload": {
"psr-4": {
"hiqdev\\composer\\config\\": "src"
}
},
"extra": {
"class": "hiqdev\\composer\\config\\Plugin",
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}