forked from drush-ops/drush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 845 Bytes
/
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
{
"name": "drush/drush",
"description": "This is the composer.json for the isolation unit tests for the Drush preflight process.",
"homepage": "http://www.drush.org",
"license": "GPL-2.0+",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=5.6.0",
"ext-dom": "*",
"psr/log": "~1.0",
"consolidation/config": "^1.0.5",
"grasmash/yaml-expander": "^1.1.1",
"symfony/yaml": "~2.3|^3",
"symfony/var-dumper": "~2.7|^3",
"symfony/finder": "~2.7|^3",
"webflo/drupal-finder": "^0",
"webmozart/path-util": "^2.1.0",
"sebastian/version": "~1"
},
"require-dev": {
"lox/xhprof": "dev-master",
"phpunit/phpunit": "^4"
},
"autoload": {
"psr-4": {
"Drush\\": "../src/"
}
},
"autoload-dev": {
"psr-4": {
"Drush\\": "src/"
}
}
}