This repository was archived by the owner on Apr 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.39 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.39 KB
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
{
"name": "opdavies/drupal-vm-cli",
"description": "A CLI tool for generating Drupal VM.",
"keywords": ["vagrant", "drupal", "drupal-vm"],
"require": {
"guzzlehttp/guzzle": "^6.2",
"knplabs/github-api": "^1.6",
"opdavies/twig-extensions": "^1.1",
"pimple/pimple": "^3.0",
"symfony/console": "^2.7|^3.0",
"symfony/filesystem": "^2.7|^3.0",
"symfony/yaml": "^2.7|^3.0",
"twig/twig": "^1.24"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"symfony/process": "^2.7|^3.0"
},
"authors": [
{
"name": "Oliver Davies",
"email": "oliver@oliverdavies.uk",
"homepage": "https://www.oliverdavies.uk"
}
],
"support": {
"issues": "https://github.com/opdavies/drupal-vm-cli/issues",
"source": "https://github.com/opdavies/drupal-vm-cli",
"docs": "https://github.com/opdavies/drupal-vm-cli/wiki"
},
"autoload": {
"psr-4": {
"DrupalVm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DrupalVm\\tests\\": "tests"
}
},
"license": "MIT",
"suggest": {
"geerlingguy/drupal-vm": "The main Drupal VM project."
},
"extra": {
"branch-alias": {
"dev-master": "2.9.x-dev"
}
},
"config": {
"sort-packages": true
}
}