-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
54 lines (46 loc) · 1.17 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
{
"name": "delfimov/translate",
"license": "MIT",
"type": "library",
"description": "Easy to use i18n translation PHP class for multi-language websites",
"keywords": ["translate", "language", "plural", "multi-language", "i18n"],
"homepage": "https://github.com/delfimov/Translate/",
"authors": [
{
"name": "Dmitry Elfimov",
"email": "elfimov@gmail.com"
}
],
"contributors": [
{
"name": "René Thiemann",
"email": "devops@wolxXx.de"
}
],
"autoload": {
"psr-4": {
"DElfimov\\Translate\\": "./src"
}
},
"prefer-stable" : true,
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"phpunit/phpunit": "5.*",
"scrutinizer/ocular": "~1.3",
"satooshi/php-coveralls": "^1.0",
"phpdocumentor/phpdocumentor": "2.*",
"psr/log": "1.0.*"
},
"suggest": {
"monolog/monolog": "@stable"
},
"scripts" : {
"phpcs": "php ./vendor/bin/phpcs",
"test": [
"php ./vendor/bin/phpunit"
]
}
}