This repository was archived by the owner on Mar 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.62 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.62 KB
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
{
"name": "nat64check/frontend",
"description": "Front end website for the NAT64Check system",
"authors": [
{
"name": "Sander Steffann",
"homepage": "https://www.steffann.nl/"
},
{
"name": "Internetbureau Max",
"homepage": "https://www.max.nl/"
}
],
"type": "project",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "vcs",
"url": "https://github.com/nat64check/gravityforms"
},
{
"type": "vcs",
"url": "https://github.com/nat64check/gravityformsuserregistration"
},
{
"type": "vcs",
"url": "https://github.com/nat64check/advanced-custom-fields-pro"
}
],
"require": {
"johnpbloch/wordpress": "^5.2",
"rarst/update-blocker": "^1.1",
"vlucas/phpdotenv": "^3.4",
"wpackagist-plugin/wordpress-seo": "^11.4",
"wpackagist-plugin/classic-editor": "^1.3",
"nat64check/gravityforms": "^2.4.5",
"nat64check/gravityformsuserregistration": "^4.0",
"nat64check/advanced-custom-fields-pro": "^5.7.9"
},
"extra": {
"wordpress-install-dir": "wp",
"installer-paths": {
"plugins/{$name}/": [
"type:wordpress-plugin"
]
}
},
"scripts": {
"post-install-cmd": [
"mkdir -p wp-content/uploads",
"sass --style=compressed wp-content/themes/nat64check/stylesheets/scss/style.scss wp-content/themes/nat64check/style.css"
],
"post-update-cmd": [
"mkdir -p wp-content/uploads",
"sass --style=compressed wp-content/themes/nat64check/stylesheets/scss/style.scss wp-content/themes/nat64check/style.css"
]
}
}