forked from michaelmcandrew/pop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.41 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
{
"name": "outlandishideas/civipop",
"description": "A library for populating a CiviCRM site with fake data",
"type": "library",
"require": {
"fzaninotto/faker": "@stable",
"twig/twig": "@stable",
"symfony/yaml": "@stable",
"civicrm/composer-downloads-plugin": "^4.0",
"clippy/std": "~0.4.3",
"clippy/container": "~1.2",
"symfony/filesystem": "~6.4"
},
"license": "MIT",
"authors": [{
"name": "Michael McAndrew",
"email": "[email protected]"
}],
"autoload": {
"psr-4": {
"Civi\\Pop\\": "src/Pop",
"Civi\\Pipe\\": "extern/Civi/Pipe"
}
},
"config": {
"platform": {
"php": "8.1.0"
},
"allow-plugins": {
"civicrm/composer-downloads-plugin": true
}
},
"extra": {
"downloads": {
"BasicPipeClient": {
"version": "5.61.0",
"url": "https://raw.githubusercontent.com/civicrm/civicrm-core/{$version}/Civi/Pipe/BasicPipeClient.php",
"path": "extern/Civi/Pipe/BasicPipeClient.php"
},
"JsonRpcMethodException": {
"version": "5.61.0",
"url": "https://raw.githubusercontent.com/civicrm/civicrm-core/{$version}/Civi/Pipe/JsonRpcMethodException.php",
"path": "extern/Civi/Pipe/JsonRpcMethodException.php"
}
}
}
}