-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.21 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.21 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
{
"name": "civicrm/civicrm-extension-plugin",
"description": "A composer plugin to assist with installing CiviCRM Extensions.",
"type": "composer-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Skvare",
"email": "info@skvare.com",
"homepage": "https://skvare.com",
"role": "Sponsor"
},
{
"name": "Mark Hanna",
"email": "mark@skvare.com",
"homepage": "https://github.com/jackrabbithanna",
"role": "Software Architect"
},
{
"name": "Sunil Pawar",
"email": "sunil@skvare.com",
"homepage": "https://github.com/sunilpawar",
"role": "Developer"
}
],
"homepage": "https://skvare.com",
"keywords": ["civicrm", "extension", "plugin"],
"require": {
"composer-plugin-api": "^1.1 | ^2.0",
"pear/archive_tar": "^1.4",
"symfony/filesystem": "^2.7 || ^3.0 || ^4.0 || ^6 || ^7 || ^8",
"symfony/process": "^2.7 || ^3.0 || ^4.0 || ^6 || ^7 || ^8"
},
"autoload": {
"psr-4": {
"Civi\\CivicrmExtensionPlugin\\": "src/"
}
},
"config": {
"allow-plugins": {
"civicrm/civicrm-extension-plugin": true
}
},
"extra": {
"class": "Civi\\CivicrmExtensionPlugin\\Plugin"
}
}