forked from wp-erp/wp-erp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·79 lines (79 loc) · 2.46 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "wp-erp/wp-erp",
"description": "An ERP Solution for WordPress",
"keywords": ["wordpress", "plugin", "erp", "hrm", "crm", "accounting"],
"homepage": "https://wperp.com",
"type": "wordpress-plugin",
"license": "GPL-3.0",
"authors": [
{
"name": "Tareq Hasan",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.0",
"illuminate/database": "~5.0",
"tareq1988/wp-eloquent": "dev-master",
"johngrogg/ics-parser": "~1.0",
"google/apiclient": "^2.0",
"google/apiclient-services": "dev-develop",
"appsero/client": "^1.2",
"parsecsv/php-parsecsv": "^1.2",
"mailgun/mailgun-php": "^2.8",
"php-http/zend-adapter": "^0.1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"wp-coding-standards/wpcs": "dev-master",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"tareq1988/wp-php-cs-fixer": "dev-master",
"fzaninotto/faker": "^1.9@dev",
"phpcompatibility/phpcompatibility-wp": "dev-master",
"phpunit/phpunit": "^5.7.27",
"lucatume/wp-browser": "^2.2"
},
"repositories": [
{
"type": "path",
"url": "includes/Lib/google/apiclient-services",
"options": {
"symlink": false
}
}
],
"config": {
"platform": {
"php": "5.6.40"
},
"allow-plugins": {
"kylekatarnls/update-helper": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpcs": [
"./vendor/bin/phpcs -ps --report-file=phpcs-report.txt"
],
"phpcbf": [
"./vendor/bin/phpcbf -p"
],
"phpcsf": "php-cs-fixer --config=./.php_cs fix"
},
"autoload" : {
"psr-4" : {
"WeDevs\\ERP\\": "includes/",
"WeDevs\\ERP\\HRM\\Main\\": "modules/hrm",
"WeDevs\\ERP\\HRM\\": "modules/hrm/includes",
"WeDevs\\ERP\\CRM\\Main\\": "modules/crm",
"WeDevs\\ERP\\CRM\\": "modules/crm/includes",
"WeDevs\\ERP\\Accounting\\Main\\": "modules/accounting",
"WeDevs\\ERP\\Accounting\\": "modules/accounting/includes"
},
"classmap": [
"modules/hrm/HRM.php",
"modules/crm/CRM.php",
"modules/accounting/Accounting.php"
]
}
}