forked from Automattic/jetpack-backup-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.4 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
{
"name": "automattic/jetpack-backup-plugin",
"description": "Easily restore or download a backup of your site from a specific moment in time.",
"type": "library",
"license": "GPL-2.0-or-later",
"require": {
"automattic/jetpack-autoloader": "^5.0.2",
"automattic/jetpack-backup": "^4.0.14-alpha",
"automattic/jetpack-composer-plugin": "^4.0.2-alpha",
"automattic/jetpack-my-jetpack": "^5.5.2-alpha",
"automattic/jetpack-status": "^5.0.6-alpha"
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.1.1",
"automattic/jetpack-changelogger": "^6.0.0"
},
"autoload": {
"classmap": [
"src/"
]
},
"scripts": {
"watch": "echo 'This script is actually watching the Jetpack Backup package, not the plugin' && jetpack watch packages/backup"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"autoloader-suffix": "9559eef123208b7d1b9c15b978567267_backupⓥ3_2_alpha",
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"automattic/jetpack-composer-plugin": true
}
},
"extra": {
"mirror-repo": "Automattic/jetpack-backup-plugin",
"autorelease": true,
"autotagger": {
"v": false
},
"changelogger": {
"link-template": "https://github.com/Automattic/jetpack-backup-plugin/compare/${old}...${new}",
"versioning": "wordpress"
},
"release-branch-prefix": [
"backup",
"monthly"
],
"wp-plugin-slug": "jetpack-backup",
"wp-svn-autopublish": true
}
}