-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.58 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
{
"name": "colis/relicta",
"description": "WordPress project for the Relicta website",
"type": "project",
"license": "GPL-3.0-only",
"homepage": "https://relicta.com",
"authors": [
{
"name": "Carmine Colicino",
"email": "[email protected]"
}
],
"config": {
"autoloader-suffix": "Relicta",
"preferred-install": "dist",
"process-timeout": 600,
"sort-packages": true,
"vendor-dir": "wp-content/vendor",
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "path",
"url": "wp-content/plugins/relicta-core",
"name": "colis/relicta-core",
"options": {
"symlink": false
}
}
],
"require": {
"php": ">=7.4",
"colis/relicta-core": "*",
"wpackagist-plugin/aruba-hispeed-cache": "^2.0.11",
"wpackagist-plugin/cookie-law-info": "^3.0",
"wpackagist-plugin/imagify": "^2.0",
"wpackagist-plugin/redirection": "^5.2",
"wpackagist-plugin/wordpress-seo": "^24.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"phpcompatibility/phpcompatibility-wp": "^2.1.3",
"squizlabs/php_codesniffer": "^3.7.2",
"wp-coding-standards/wpcs": "dev-develop",
"wpackagist-plugin/query-monitor": "^3.8.2"
},
"extra": {
"installer-paths": {
"wp-content/plugins/{$name}": [
"type:wordpress-plugin"
],
"wp-content/themes/{$name}": [
"type:wordpress-theme"
]
}
},
"scripts": {
"lint": "phpcs .",
"lint-fix": "phpcbf .",
"lint-info": "phpcs -i"
}
}