-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 962 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 962 Bytes
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
{
"name": "dhii/wp-i18n",
"description": "Internationalization for WP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dhii Team",
"email": "development@dhii.co"
}
],
"minimum-stability": "dev",
"require": {
"php": "^5.3 | ^7.0",
"dhii/i18n-interface": "^0.2",
"dhii/i18n-abstract": "^0.1",
"dhii/i18n-base": "^0.1"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"ptrofimov/xpmock": "^1.1",
"dhii/php-cs-fixer-config": "dev-php-5.3",
"codeclimate/php-test-reporter": "<=0.3.2",
"10up/wp_mock": "dev-dev",
"dhii/stringable-interface": "^0.1",
"dhii/data-key-value-aware-interface": "^0.1"
},
"autoload": {
"psr-4": {
"Dhii\\Wp\\I18n\\": "src"
}
},
"scripts": {
"test": "phpunit",
"csfix": "php-cs-fixer fix -vvv"
}
}