forked from civicrm/civicrm-buildkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.96 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.96 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
54
55
56
57
58
{
"name": "civicrm/civicrm-buildkit",
"description": "A collection of development tools for working with CiviCRM, Drupal, WordPress, etc",
"homepage": "https://github.com/civicrm/civicrm-buildkit/",
"license": "GPL-2.0+",
"authors": [
{ "name": "Tim Otten", "email": "to-git@think.hm" }
],
"autoload": {
"psr-0": {
"Civi\\Buildkit": ["src/"],
"Civi\\Civibuild": ["src/"]
}
},
"config": {
"platform": {
"php": "7.4"
},
"bin-dir": "bin",
"allow-plugins": {
"civicrm/composer-downloads-plugin": true,
"civicrm/composer-compile-plugin": true
}
},
"require": {
"php": ">=7.4",
"totten/php-symbol-diff": "dev-master#54f869ca68a3cd75f3386f8490870369733d2c23",
"civicrm/upgrade-test": "0.9",
"drupal/coder": "dev-8.x-2.x-civi#aa31dd918e302f6c01f6d28a495256e171abf581",
"civicrm/composer-downloads-plugin": "^4.0",
"civicrm/composer-compile-plugin": "~0.20",
"squizlabs/php_codesniffer": ">=2.7 <4.0"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/civicrm/coder.git"
}
],
"extra": {
"compile": [
{
"title": "Update PHAR-based tools (<comment>phars.json</comment>)",
"run": "@php-method \\Civi\\Buildkit\\Phars::downloadPhars",
"phar-json": "phars.json"
},
{
"title": "Setup local PHP tools",
"run": "@php-script tools/install.php bknix-ci-cleanup civicredits civici fetch-universe find-stale-builds forkify import-rn phpunit-config phpunit-xml-cleanup releaser zipdiff"
}
],
"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"}
}
}
}