-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
134 lines (132 loc) · 4.22 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "20steps\/alexa",
"license": "(c) 20steps Digital Full Service Boutique",
"type": "project",
"description": "PHP/Symfony based backend for personalized and localized 20steps Amazon Alexa Echo skill for developers, system administrators and marketers",
"keywords": ["Amazon","Alexa","Echo","PHP","Symfony","Symfony3","Bricks","20steps","UptimeRobot","demo","OAuth","OAuth2","Account linking","Wordpress","tinypng","keycdn","google analytics","google webmaster tools","Twig","Bootstrap","monitoring","Google Assistant","Google Home","Google Actions","API AI"],
"homepage": "https:\/\/alexa.20steps.de",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "7.0.8"
},
"bin-dir": "bin\/vendor",
"optimize-autoloader": false,
"apcu-autoloader": true,
"classmap-authoritative": false
},
"require": {
"gedmo/doctrine-extensions": "dev-master as 2.4.1",
"twbs/bootstrap": "^3.0",
"jquery/jquery": "1.11.1",
"gree/jose": "dev-master",
"braincrafted/bootstrap-bundle": "dev-develop",
"20steps/amazon-alexa-php": "dev-master",
"20steps/api-ai-webhook-php": "dev-master",
"20steps/oauth-server-bundle": "dev-master"
},
"extra": {
"merge-plugin": {
"include": [
"composer.bricks-platform.json",
"etc/composer/*.json"
],
"recurse": true,
"replace": false,
"ignore-duplicates": false,
"merge-dev": true,
"merge-extra": true,
"merge-extra-deep": true,
"merge-scripts": true
},
"installer-paths": {
"web\/{$name}": [
"interconnectit\/search-replace-db"
]
},
"bricks-platform": {
"config": {
"httpd_dev": {
"file": "\/etc\/apache2\/sites-available\/alexa.conf",
"dist-file": "etc\/system\/httpd\/sites-available\/alexa.generic_dev.conf",
"type": "dist",
"update-by-default": true,
"stage": [
"dev"
]
},
"httpd_live": {
"file": "\/mnt\/data\/zone\/etc\/system\/httpd\/sites-available\/alexa.conf",
"dist-file": "etc\/system\/httpd\/sites-available\/alexa.generic_live.conf",
"type": "dist",
"update-by-default": true,
"stage": [
"live"
]
},
"nginx_live": {
"file": "\/mnt\/data\/zone\/etc\/system\/nginx\/alexa.conf",
"dist-file": "etc\/system\/nginx\/alexa.generic_live.conf",
"type": "dist",
"update-by-default": true,
"stage": [
"live"
]
},
"letsencrypt_live": {
"file": "\/mnt\/data\/zone\/etc\/system\/letsencrypt\/alexa.conf",
"dist-file": "etc\/system\/letsencrypt\/alexa.generic_live.conf",
"type": "dist",
"update-by-default": true,
"stage": [
"live"
]
}
},
"remote": {
"alexa1": {
"name": "alexa1",
"url": "ssh:\/\/[email protected]:2232\/var\/www\/Bricks",
"stage": "live"
}
},
"target": {
"cluster": {
"name": "cluster",
"remote": [
"alexa1"
],
"branch": "master"
}
}
}
},
"scripts": {
"setup-custom-import-data-dev": [
"@custom-wp-cluster-to-local"
],
"setup-custom-configure-dev": [
"bin/alexa/configure"
],
"setup-custom-open-application-dev": [
"echo Opening browser",
"open http://alexa.localhost.com"
],
"custom-wp-cluster-to-local": [
"composer run-script custom-wp-db-cluster-to-local --no-interaction",
"@wp-uploads-cluster-to-local"
],
"custom-wp-db-cluster-to-local": [
"@wp-db-dump-cluster",
"bin/wp db import var/dump/db/wp-cluster.sql",
"export WP_DOMAIN_CURRENT_SITE_OVERRIDE=\"$(bin/wp @cluster eval \"echo DOMAIN_CURRENT_SITE;\")\"; bin/wp search-replace \"$WP_DOMAIN_CURRENT_SITE_OVERRIDE\" \"admin.alexa.localhost.com\" --all-tables",
"bin/wp search-replace \"$(bin/wp @cluster eval \"echo get_blog_details(2)->domain;\")\" \"alexa.localhost.com\" --all-tables"
],
"custom-install": [
"@custom-update"
],
"custom-update": [
]
}
}