forked from beetboxvm/beetbox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1.12 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
{
"name": "beet/box",
"description": "A pre-provisioned L*MP stack VM",
"homepage": "https://github.com/beetboxvm/beetbox",
"type": "composer-plugin",
"license": "MIT",
"support": {
"issues": "https://github.com/beetboxvm/beetbox/issues",
"source": "https://github.com/beetboxvm/beetbox",
"docs": "http://beetbox.readthedocs.io/en/latest"
},
"config": {
"process-timeout": 1200,
"sort-packages": true
},
"require": {
"composer-plugin-api": "^1.0"
},
"require-dev": {
"composer/composer": "1.6.5",
"consolidation/robo": "1.2.3",
"phpunit/phpunit": "6.5.8",
"sensiolabs/security-checker": "^4.0"
},
"autoload": {
"psr-4": {
"Beet\\Box\\": "composer/src/"
}
},
"scripts": {
"test": [
"@composer validate",
"@security",
"phpunit --colors=always",
"robo provision ubuntu:16.04 beet_test --ansi"
],
"security": "security-checker security:check",
"role-update": "git submodule foreach git pull origin master"
},
"extra": {
"class": "Beet\\Box\\Plugin",
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}