-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 970 Bytes
/
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
{
"name": "openl10n/translation",
"description": "Openl10n Translation library",
"type": "library",
"homepage": "http://openl10n.io",
"license": "MIT",
"authors": [
{
"name": "Matthieu Moquet",
"email": "[email protected]",
"homepage": "http://moquet.net",
"role": "Developer"
}
],
"require": {
"php": ">=5.4",
"symfony/translation": "^2.6"
},
"require-dev": {
"fabpot/php-cs-fixer": "^1.10",
"phpunit/phpunit": "^4.5"
},
"suggest": {
"symfony/config": "^2.6",
"doctrine/common": "^2.5"
},
"autoload": {
"psr-4": {
"Openl10n\\": "src/Openl10n/"
}
},
"autoload-dev": {
"psr-4": {
"Openl10n\\Tests\\": "tests/Openl10n/Tests/"
}
},
"scripts": {
"test": "phpunit --colors=always",
"lint": "php-cs-fixer fix"
}
}