-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
52 lines (52 loc) · 1.59 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
{
"name": "ph3nol/docker-arch",
"description": "Generate Web/CLI projects Dockerized environments, from 1 simple YAML file.",
"keywords": ["docker", "docker-compose", "generator", "devops", "developer-tools"],
"type": "standalone",
"homepage": "https://github.com/Ph3nol/Docker-Arch",
"license": "MIT",
"authors": [
{
"name": "Cédric Dugat",
"email": "[email protected]"
},
{
"name": "Community contributors",
"homepage": "https://github.com/Ph3nol/Docker-Arch/contributors"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.1",
"symfony/yaml": "~3.3",
"symfony/console": "~3.3",
"symfony/filesystem": "^3.3",
"symfony/options-resolver": "^3.3",
"twig/twig": "^1.0||^2.0",
"cocur/slugify": "^3.0",
"monolog/monolog": "^1.23",
"symfony/dotenv": "^3.3"
},
"autoload": {
"psr-4": { "Ph3\\DockerArch\\": "src/" }
},
"scripts": {
"build-phar" : [
"composer install --no-dev --prefer-dist",
"rm -rf dist/*",
"curl --silent -o ./phar-composer -L `curl -s https://api.github.com/repos/clue/phar-composer/releases | grep browser_download_url | head -n 1 | cut -d '\"' -f 4`",
"chmod +x ./phar-composer",
"./phar-composer build . dist/",
"rm ./phar-composer"
]
},
"config": {
"bin-dir": "bin"
},
"bin": [
"bin/docker-arch"
],
"require-dev": {
"edgedesign/phpqa": "^1.13"
}
}