-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.21 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
{
"name": "wp-transaltions/t15s-registry",
"type": "library",
"description": "Allows loading translation files from T15S",
"homepage": "https://github.com/wp-transaltions/t15s-registry",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "WP-Translations Team",
"email": "[email protected]",
"homepage": "https://wp-translations.pro",
"role": "Company"
}
],
"keywords": [
"wordpress",
"glotpress",
"translations"
],
"require": {
"php": ">=7.1"
},
"config": {
"sort-packages": true
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"phpunit/phpunit": "^6.5.8",
"wearerequired/coding-standards": "^1.0"
},
"scripts": {
"format": "vendor/bin/phpcbf --standard=phpcs.xml.dist --report-summary --report-source",
"lint": "vendor/bin/phpcs --standard=phpcs.xml.dist --report-summary --report-source",
"test": "vendor/bin/phpunit"
},
"autoload": {
"files": [
"inc/namespace.php"
]
},
"autoload-dev": {
"psr-4": {
"WP_Translations\\T15S_Registry\\Tests\\": "tests/phpunit/tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}