forked from MinnPost/object-sync-for-salesforce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.58 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": "minnpost/object-sync-for-salesforce",
"description": "WordPress plugin that implements mapping and syncing between Salesforce objects and WordPress objects",
"type": "wordpress-plugin",
"license": "GPL-2.0",
"minimum-stability": "dev",
"authors": [
{
"name": "MinnPost",
"email": "[email protected]"
}
],
"autoload": {
"files": ["vendor/woocommerce/action-scheduler/action-scheduler.php"],
"classmap": ["vendor/pippinsplugins/wp-logging/"]
},
"config": {
"platform": {
"php": "8.0"
}
},
"repositories": [
{
"url": "https://github.com/pippinsplugins/wp-logging.git",
"type": "git"
},
{
"url": "https://github.com/woocommerce/action-scheduler.git",
"type": "git"
}
],
"require": {
"php": ">=5.6.20",
"pippinsplugins/wp-logging": "dev-master",
"messageagency/force.com-toolkit-for-php": "^1.0.2",
"woocommerce/action-scheduler": "^3.5.4"
},
"require-dev": {
"php": ">=7.4",
"phpunit/phpunit": "^9.5.20"
},
"scripts": {
"test": [
"phpunit"
],
"remove-git-submodules": "find . -mindepth 2 -type d -name .git | xargs rm -rf",
"post-install-cmd": [
"@remove-git-submodules"
],
"post-update-cmd": [
"@remove-git-submodules"
]
},
"extra": {
"scripts-description": {
"test": "Run unit tests"
}
}
}