-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
57 lines (57 loc) · 1.2 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
{
"name": "joomla-projects/virtualisation",
"description": "An XML based generator for docker environments, mostly used for automated testing.",
"minimum-stability": "stable",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Joomla! Project"
}
],
"autoload": {
"psr-4": {
"Joomla\\Virtualisation\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\Tests\\Virtualisation\\": "tests"
}
},
"require": {
"greencape/php-versions": "@dev",
"symfony/yaml": "^3.2",
"greencape/joomla-cli": "^0.1.0",
"alchemy/zippy": "^0.4.4",
"ext-simplexml": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"scripts": {
"test": [
"rm -rf dockyard/*",
"phpunit --testdox"
],
"build": [
"rm -rf dockyard/*",
"phpunit tests/DockerComposeGeneratorTest",
"cd dockyard && docker-compose build",
"cd .."
],
"start": [
"cd dockyard && docker-compose up -d",
"cd .."
],
"stop": [
"cd dockyard && docker-compose stop",
"cd .."
],
"clean": [
"@stop",
"cd dockyard && docker-compose down",
"cd ..",
"rm -rf dockyard/*"
]
}
}