-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
48 lines (48 loc) · 1.42 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
{
"name": "palantirnet/the-build",
"description": "Project setup templates and Phing build tasks for Drupal projects.",
"license": "MIT",
"authors": [
{
"name": "Palantir.net",
"email": "[email protected]"
}
],
"bin": [
"bin/the-build-installer"
],
"require": {
"composer-runtime-api": "^2.2.2",
"cweagans/composer-patches": "^1.7",
"dmore/behat-chrome-extension": "^1.4",
"drupal/coder": "^8.3.6",
"drush/drush": ">=9",
"mglaman/drupal-check": "^1.2",
"palantirnet/phing-drush-task": "^1.1",
"pear/http_request2": "^2.3",
"pear/versioncontrol_git": "@dev",
"phing/phing": "^2.14",
"phpmd/phpmd": "^2.13",
"phpspec/prophecy-phpunit": "^2"
},
"autoload": {
"psr-0": {
"TheBuild\\": "src/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phing/phing-composer-configurator": true
}
},
"extra": {
"patches": {
"phing/phing": {
"Support relative symliks in Phing": "https://raw.githubusercontent.com/palantirnet/the-build/7cdc28b6019fb88a0604261366f9ea35f1e21d96/patches/phing-relative-symlinks.patch"
}
}
}
}