-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.19 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
{
"name": "xwp/vip-wpcom-plugins-builder",
"description": "Composer repository for VIP WPCOM shared plugins",
"type": "project",
"license": "MIT",
"homepage": "https://xwp.github.io/vip-wpcom-plugins",
"repositories": [
{
"type": "package",
"package": {
"name": "automattic/vip-wpcom-plugins",
"url": "https://vip-svn.wordpress.com/plugins",
"version": "dev-master",
"source": {
"url": "https://vip-svn.wordpress.com",
"type": "svn",
"reference": "plugins@r398704"
}
}
}
],
"autoload":{
"psr-4": {
"XWP\\WPCOMVIPPlugins\\": "src/"
}
},
"require": {
"composer/satis": "^1.0",
"automattic/vip-wpcom-plugins": "dev-master"
},
"scripts": {
"lint": [
"composer validate --no-check-all"
],
"build": [
"rm -rf public/*",
"XWP\\WPCOMVIPPlugins\\ConfigBuilder::build",
"satis build satis.json public"
]
},
"config": {
"process-timeout": 0
}
}