forked from MinnPost/object-sync-for-salesforce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.72 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
63
{
"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/prospress/action-scheduler/action-scheduler.php"],
"classmap": ["vendor/pippinsplugins/wp-logging/"]
},
"config": {
"platform": {
"php": "7.3"
}
},
"repositories": [
{
"url": "https://github.com/pippinsplugins/wp-logging.git",
"type": "git"
},
{
"url": "https://github.com/prospress/action-scheduler.git",
"type": "git"
}
],
"require": {
"php": ">=5.6|>=7.0",
"pippinsplugins/wp-logging": "dev-master",
"developerforce/force.com-toolkit-for-php": "^1.0@dev",
"prospress/action-scheduler": "^2.2.5"
},
"require-dev": {
"phpunit/phpunit": "7.5.15",
"johnpbloch/wordpress": "dev-master"
},
"scripts": {
"test": [
"phpunit"
],
"phpcs": [
"phpcs -s -p"
],
"phpcs-pre-commit": [
"phpcs -s -p -n"
],
"phpcbf": [
"phpcbf -p"
]
},
"extra": {
"scripts-description": {
"test": "Run unit tests",
"phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
"phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
}
}
}