-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
38 lines (38 loc) · 1010 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
32
33
34
35
36
37
38
{
"name": "Human Resource Management",
"description": "HR management plugin for WordPress",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"authors": [
{
"name": "asaquzzaman",
"email": "[email protected]",
"homepage": "http://mishubd.com"
}
],
"require": {
"php": "<=5.6.37",
"league/fractal": "<=0.17.0",
"tareq1988/wp-eloquent": "0.9"
},
"autoload": {
"classmap": [
"db"
],
"psr-4": {
"HRM\\Core\\": "core/",
"HRM\\Include\\": "include/",
"HRM\\Models\\": "models/",
"HRM\\Transformers\\": "transformers/"
},
"files": [
"include/loaders.php",
"include/configurations.php",
"include/function.php",
"include/seed.php",
"include/urls.php",
"include/page.php",
"include/payroll_formula.php"
]
}
}