-
Notifications
You must be signed in to change notification settings - Fork 116
/
composer.json
52 lines (52 loc) · 1.45 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": "wedevsofficial/wp-project-manager",
"description": "A project management plugin for WordPress",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"authors": [
{
"name": "asaquzzaman",
"email": "[email protected]",
"homepage": "http://mishubd.com"
},
{
"name" : "Tareq Hasan",
"email" : "[email protected]",
"homepage": "https://tareq.co/"
},
{
"name": "asikur",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"league/fractal": "^0.17.0",
"a5hleyrich/wp-background-processing": "^1.0",
"tareq1988/wp-eloquent": "dev-master",
"appsero/client": "^1.2",
"simshaun/recurr": "^4.0"
},
"autoload": {
"classmap": [
"db"
],
"psr-4": {
"WeDevs\\PM\\Core\\": "core/",
"WeDevs\\PM\\": "src/"
}
},
"require-dev": {
"fzaninotto/faker": "^1.8",
"squizlabs/php_codesniffer": "^3.5.8",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpcompatibility/phpcompatibility-wp": "2.1.0",
"wp-coding-standards/wpcs": "^2.3.0"
},
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}