-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.23 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
71
72
73
74
75
76
{
"name": "djurischiffer/cms",
"description": "CMS - djurischiffer.nl",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://satispress.djurischiffer.nl/satispress/"
}
],
"keywords": ["composer", "satis", "wordpress", "wp"
],
"minimum-stability": "dev",
"license": "proprietary",
"authors": [
{
"name": "Djuri Schiffer",
"email": "[email protected]"
}
],
"prefer-stable": false,
"config": {
"sort-packages": true,
"vendor-dir": "app/public/vendor"
},
"require": {
"php": ">=7.1",
"composer/installers": "^1.2",
"drupal-composer/preserve-paths": "0.1.*",
"johnpbloch/wordpress-core": "6.2",
"johnpbloch/wordpress-core-installer": "^1.0",
"opis/string": "2.0.1",
"pristas-peter/wp-graphql-gutenberg": "dev-master",
"psr/http-message": "1.0.1",
"react/promise": "2.9.0",
"satispress/advanced-custom-fields-component_field": "2.0.2",
"satispress/advanced-custom-fields-pro": "6.0.7",
"wpackagist-plugin/classic-editor":"1.6.3",
"wpackagist-plugin/disable-gutenberg-blocks":"1.0.9",
"satispress/gravityforms": "2.6.3.2",
"vlucas/phpdotenv": "^2.6.1",
"wp-graphql/wp-graphql": "dev-master",
"wp-graphql/wp-graphql-acf": "dev-master",
"wpackagist-plugin/disable-wp-rest-api": "2.3",
"wpackagist-plugin/redirection": "5.2.3",
"wpackagist-plugin/wordfence": "7.7.1",
"wpackagist-plugin/wp-migrate-db": "2.2.2",
"wpackagist-plugin/wp-rest-cache": "2022.2.2"
},
"extra": {
"installer-paths": {
"app/public/wp-content/plugins/{$name}/": ["type:wordpress-plugin"]
},
"preserve-paths": [
"app/public/.env.example",
"app/public/.env",
"app/public/vendor",
"app/public/environments",
"app/public/.htaccess",
"app/public/wp-config.php",
"app/public/wp-content/uploads",
"app/public/wp-content/languages",
"app/public/wp-content/themes/portfolio",
"app/public/wp-content/wflogs"
],
"wordpress-install-dir": "app/public"
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('app/public/.env.example', 'app/public/.env');\""
]
}
}