forked from wp-erp/wp-erp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 852 Bytes
/
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
{
"name": "tareq1988/wp-erp",
"description": "An ERP Solution for WordPress",
"keywords": ["wordpress", "plugin", "erp", "hrm", "crm"],
"homepage": "http://wperp.com",
"type": "wordpress-plugin",
"license": "GPL-3.0",
"authors": [
{
"name": "Tareq Hasan",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/database": "~5.0",
"tareq1988/wp-eloquent": "dev-master",
"johngrogg/ics-parser": "^1.0"
},
"autoload" : {
"psr-4" : {
"WeDevs\\ERP\\": "includes/",
"WeDevs\\ERP\\HRM\\": "modules/hrm/includes",
"WeDevs\\ERP\\CRM\\": "modules/crm/includes"
},
"classmap": [
"modules/hrm/hrm.php",
"modules/crm/crm.php"
]
}
}