-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
70 lines (70 loc) · 1.55 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
68
69
70
{
"name": "log1x/modern-login",
"description": "A whitelabeled and modernized wp-login.php",
"license": "MIT",
"type": "wordpress-muplugin",
"keywords": [
"wordpress",
"wp-login",
"wp-admin"
],
"require": {
"php": ">=7.1.3"
},
"require-dev": {
"inpsyde/wp-translation-downloader": "^2.0",
"roots/wordpress": "^5.9",
"squizlabs/php_codesniffer": "^3.5",
"wpackagist-plugin/advanced-custom-fields": "^5.9"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org",
"only": [
"wpackagist-plugin/*",
"wpackagist-theme/*"
]
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"inpsyde/wp-translation-downloader": true,
"roots/wordpress-core-installer": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"installer-paths": {
"tests/mu-plugins/{$name}/": [
"type:wordpress-muplugin"
],
"tests/plugins/{$name}/": [
"type:wordpress-plugin"
],
"tests/themes/{$name}/": [
"type:wordpress-theme"
]
},
"wordpress-install-dir": "tests/wp",
"wp-translation-downloader": {
"directory": "tests/languages",
"languages": [
"fr_FR"
]
}
},
"scripts": {
"lint": [
"phpcs --ignore=vendor --extensions=php --standard=PSR12 ."
]
},
"allow-plugins": {
"inpsyde/wp-translation-downloader": true
}
}