-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
56 lines (56 loc) · 1.26 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
{
"name": "pelmered/composer-plugin-language-update",
"description": "Update translations for WP core, themes and plugins where managed by composer.",
"keywords": [
"WordPress",
"Languages",
"Composer",
"Plugins",
"Themes"
],
"homepage": "https://angrycreative.com",
"license": "GPL-2.0+",
"authors": [
{
"name": "Angry Creative AB",
"email": "[email protected]",
"homepage": "https://angrycreative.se"
},
{
"name": "Richard Sweeney",
"email": "[email protected]",
"homepage": "https://angrycreative.se"
},
{
"name": "Peter Elmered",
"email": "[email protected]",
"homepage": "https://elmered.com"
}
],
"autoload": {
"psr-4": {
"AngryCreative\\WPLanguageUpdater\\": "src"
}
},
"require": {
"php": ">=7.0",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"scripts": {
"test": [
"@composer install",
"phpunit"
],
"tests": [
"@composer run test"
],
"post-install-cmd": "@wp-language-update",
"post-update-cmd": "@wp-language-update",
"wp-language-update": [
"AngryCreative\\WPLanguageUpdater\\PostUpdateLanguageUpdate::update_t10ns"
]
}
}