-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
41 lines (41 loc) · 1 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
{
"name": "instawp/connect",
"description": "Create 1-click staging, migration and manage your prod sites.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Vikas",
"email": "[email protected]"
}
],
"require": {
"php": ">= 5.6",
"instawp/connect-helpers": "dev-main",
"phpseclib/phpseclib": "~3.0",
"woocommerce/action-scheduler": "^3.7",
"paragonie/constant_time_encoding": "2.7.0"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:InstaWP/connect-helpers.git"
}
],
"autoload": {
"files": [
"vendor/woocommerce/action-scheduler/action-scheduler.php"
]
},
"scripts": {
"build": [
"composer dump-autoload"
],
"build-nd": [
"composer dump-autoload --no-dev"
]
},
"config": {
"optimize-autoloader": true
}
}