forked from mglaman/platform-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 971 Bytes
/
Copy pathcomposer.json
File metadata and controls
42 lines (42 loc) · 971 Bytes
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
{
"name": "mglaman/platform-docker",
"description": "An opinionated platform stack for Drupal with Docker Compose",
"license": "GPL-2.0+",
"minimum-stability": "stable",
"require": {
"symfony/config": "^2.7|^3.0",
"symfony/console": "^2.7",
"symfony/filesystem": "^2.7|^3.0",
"symfony/yaml": "^2.7|^3.0",
"symfony/process": "^2.7|^3.0",
"mglaman/toolstack-helper": "^0",
"mglaman/docker-helper": "^0"
},
"require-dev": {
"phpunit/phpunit": "^4.3"
},
"suggest": {
"drush/drush": "For Drupal projects",
"wp-cli/wp-cli": "For WordPress projects",
"platformsh/cli": "For Platform.sh projects"
},
"autoload": {
"psr-4": {
"mglaman\\PlatformDocker\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"mglaman\\PlatformDocker\\Tests\\": "tests"
}
},
"authors": [
{
"name": "Matt Glaman",
"email": "nmd.matt@gmail.com"
}
],
"bin": [
"platform-docker"
]
}