forked from Koodimonni/koodimonni.github.io
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
67 lines (67 loc) · 1.87 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
62
63
64
65
66
67
{
"name": "wp-languages/wp-languages.github.io",
"description": "Composer language packs for WordPress translations. This includes translations for core and official themes and few plugins.",
"license": "MIT",
"type": "library",
"keywords": [
"package",
"repository",
"generator",
"wordpress",
"languages",
"gh-pages"
],
"authors": [
{
"name": "Onni Hakala",
"homepage": "https://github.com/onnimonni"
},
{
"name": "Ismo Vuorinen",
"homepage": "https://github.com/ivuorinen"
}
],
"homepage": "https://wp-languages.github.io/",
"require": {
"php": "^7.4 || >=8",
"ext-json": "*",
"composer/satis": "^1.0",
"illuminate/collections": "^8.55",
"rmccue/requests": "^1.8"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.25"
},
"bin": [
"bin/cache"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"build": "@php -d memory_limit=-1 ./vendor/bin/satis build ./satis.json ./docs/",
"build-ci": "@php -d memory_limit=-1 ./vendor/bin/satis build ./satis.json ./",
"cache": [
"Composer\\Config::disableProcessTimeout",
"@php ./bin/cache"
],
"cache-build": [
"@cache",
"@build"
],
"cache-build-ci": [
"@cache",
"@build-ci"
],
"cleanup": "rm -rf ./cache/*.json ./docs/*",
"run-all": [
"@cleanup",
"@cache",
"@build"
]
},
"forum": "https://discourse.roots.io/t/install-update-wordpress-languages-with-composer/2021",
"issues": "https://github.com/wp-languages/wp-languages.github.io/issues"
}