forked from totten/civix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.75 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
60
61
62
{
"name": "civicrm/civix",
"description": "CiviCRM Extension CLI",
"homepage": "https://github.com/totten/civix",
"license": "AGPL-3.0",
"require": {
"php": ">=7.3.0",
"civicrm/cv-lib": "~0.3.45",
"civicrm/composer-compile-plugin": "~0.18",
"civicrm/composer-downloads-plugin": "~2.1|^3",
"symfony/console": "^4|^5",
"symfony/filesystem": "^4|^5",
"symfony/process": "^4|^5",
"symfony/templating": "^4|^5",
"symfony/var-dumper": "^4|^5",
"symfony/var-exporter": "^4.4|^5",
"totten/license-data": "dev-master",
"totten/process-helper": "^1.0.1"
},
"autoload": {
"files": ["src/Civix.php"],
"psr-0": {
"Mixlib": "extern/src/",
"CRM\\CivixBundle": "src/"
}
},
"bin": [
"bin/civix"
],
"config": {
"allow-plugins": {
"civicrm/composer-compile-plugin": true,
"civicrm/composer-downloads-plugin": true
},
"platform": {
"php": "7.3.0"
},
"bin-dir": "bin"
},
"authors": [
{
"name": "Tim Otten",
"email": "[email protected]"
}
],
"extra": {
"compile": [
{
"title": "Download mixins (<comment>mixin-backports.php</comment>)",
"run": "@php-method \\CRM\\CivixBundle\\ComposerCompile::downloadMixins"
}
],
"downloads": {
"mixlib": {
"version": "5.45",
"url": "https://raw.githubusercontent.com/civicrm/civicrm-core/{$version}/tools/mixin/src/Mixlib.php",
"path": "extern/src/Mixlib.php",
"type": "file"
}
}
}
}