-
Notifications
You must be signed in to change notification settings - Fork 91
/
composer.json
59 lines (59 loc) · 2.01 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
53
54
55
56
57
58
59
{
"name": "civicrm/civicrm-project",
"description": "A skeletal project which includes CiviCRM, Drupal, WordPress, development tools, etc",
"homepage": "https://github.com/civicrm/civicrm-project/",
"license": "GPL-2.0+",
"authors": [
{ "name": "Tim Otten", "email": "[email protected]" }
],
"autoload": {
"psr-0": {
"Civi\\Buildkit": ["src/"],
"Civi\\Civibuild": ["src/"]
}
},
"config": {
"platform": {
"php": "7.2"
},
"bin-dir": "bin",
"allow-plugins": {
"civicrm/composer-downloads-plugin": true,
"civicrm/composer-compile-plugin": true
}
},
"require": {
"php": ">=7.2",
"totten/php-symbol-diff": "dev-master#54f869ca68a3cd75f3386f8490870369733d2c23",
"civicrm/upgrade-test": "0.7",
"drupal/coder": "dev-8.x-2.x-civi#e383f073ff163eb40496ff4092fa666bd66c2c14",
"civicrm/composer-downloads-plugin": "^3.0",
"civicrm/composer-compile-plugin": "~0.20",
"squizlabs/php_codesniffer": ">=2.7 <4.0"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/civicrm/coder.git"
},
{
"type": "git",
"url": "https://github.com/totten/paratest.git"
}
],
"extra": {
"compile": [
{
"title": "Update PHAR-based tools (<comment>phars.json</comment>)",
"run": "@php-method \\Civi\\Buildkit\\Phars::downloadPhars",
"phar-json": "phars.json"
}
],
"compile-passthru": "always",
"downloads": {
"drush-backdrop": {"version": "1.x-1.x", "url": "https://github.com/backdrop-contrib/backdrop-drush-extension/archive/{$version}.zip", "path": "extern/drush-lib/backdrop"},
"drush-language": {"version": "7.x-1.5", "url": "https://ftp.drupal.org/files/projects/drush_language-{$version}.zip", "path": "extern/drush-lib/language"},
"phpunit-xml-cleanup": {"version": "0.2", "url": "https://raw.githubusercontent.com/civicrm/phpunit-xml-cleanup/v{$version}/bin/phpunit-xml-cleanup", "path": "extern/phpunit-xml-cleanup.php", "type": "file"}
}
}
}