forked from wp-erp/wp-erp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.51 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
{
"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",
"symfony/var-dumper": "^2.8",
"google/apiclient": "^2.0",
"google/apiclient-services": "^0.64",
"appsero/client": "^1.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.3.2",
"wp-coding-standards/wpcs": "dev-master",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3",
"lucatume/wp-browser": "^2.2",
"fzaninotto/faker": "^1.9@dev"
},
"scripts": {
"phpcs": [
"phpcs -p -s"
],
"phpcbf": [
"phpcbf -p"
]
},
"autoload" : {
"psr-4" : {
"WeDevs\\ERP\\": "includes/",
"WeDevs\\ERP\\HRM\\": "modules/hrm/includes",
"WeDevs\\ERP\\CRM\\": "modules/crm/includes",
"WeDevs\\ERP\\Accounting\\": "modules/accounting/includes"
},
"classmap": [
"modules/hrm/hrm.php",
"modules/crm/crm.php",
"modules/accounting/accounting.php"
]
}
}