-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 1.96 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
72
73
74
{
"name" : "devaloka/translation",
"description" : "Provides an implementation of Symfony TranslationInterface for WordPress",
"type" : "library",
"keywords" : [
"wordpress",
"translation",
"internationalization",
"localization",
"i18n",
"l10n"
],
"homepage" : "https://github.com/devaloka/translation",
"license" : [
"MIT",
"GPL-2.0",
"GPL-3.0"
],
"minimum-stability": "dev",
"prefer-stable" : true,
"authors" : [
{
"name" : "Whizark",
"email" : "devaloka@whizark.com",
"homepage": "http://whizark.com",
"role" : "Developer"
}
],
"support" : {
"email" : "devaloka@whizark.com",
"issues": "https://github.com/devaloka/devaloka/issues",
"wiki" : "https://github.com/devaloka/devaloka/wiki",
"source": "https://github.com/devaloka/translation"
},
"require" : {
"php" : ">=5.6.0",
"symfony/translation": "~3.2"
},
"require-dev" : {
"squizlabs/php_codesniffer": "^2.9.1"
},
"autoload" : {
"psr-4": {
"Devaloka\\Component\\Translation\\": ""
}
},
"scripts" : {
"test" : [
"vendor/bin/phpcs --colors"
],
"test-travis": [
"vendor/bin/phpcs --colors"
]
},
"archive" : {
"exclude": [
".gitignore",
".gitattributes",
".mailmap",
".editorconfig",
"package.json",
"npm-shrinkwrap.json",
".remarkrc",
"composer.json",
"phpcs.xml.dist",
".travis.yml"
]
},
"extra" : {
"branch-alias": {
"dev-master": "0.7.x-dev"
}
}
}