-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
61 lines (61 loc) · 1.59 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
{
"name": "rinkattendant6/json-i18n",
"description": "Simple PHP internationalization library using JSON data.",
"keywords": ["internationalization", "localization"],
"license": "MPL-2.0",
"authors": [
{
"name": "Vincent Diep",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"JsonI18n\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JsonI18n\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/RinkAttendant6/JsonI18n",
"no-api": true
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.1",
"ext-intl": "*",
"ext-json": "*"
},
"require-dev": {
"overtrue/phplint": "^1.1",
"pds/skeleton": "^1.0.0",
"phpmd/phpmd": "@stable",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^7.5",
"sebastian/phpcpd": "^4.1",
"squizlabs/php_codesniffer": "^3.5"
},
"scripts": {
"lint": [
"phplint",
"phpcs src",
"phpcpd src",
"phpstan analyse src tests --level=1",
"phpmd src text codesize,unusedcode,naming,design --ignore-violations-on-exit"
],
"test": "phpunit tests --strict-global-state --random-order"
},
"readme": "README.md",
"support": {
"issues": "https://github.com/RinkAttendant6/JsonI18n/issues",
"source": "https://github.com/RinkAttendant6/JsonI18n.git"
}
}