forked from weDevsOfficial/wp-project-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.71 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.71 KB
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
{
"name": "wedevsofficial/wp-project-manager",
"description": "A project management plugin for WordPress",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"authors": [
{
"name": "asaquzzaman",
"email": "joy.mishu@gmail.com",
"homepage": "http://mishubd.com"
},
{
"name" : "Tareq Hasan",
"email" : "tareq@wedevs.com",
"homepage": "https://tareq.co/"
},
{
"name": "asikur",
"email": "md.asikurislam@gmail.com"
}
],
"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",
"enshrined/svg-sanitize": "^0.22.0"
},
"autoload": {
"classmap": [
"db"
],
"psr-4": {
"WeDevs\\PM\\Core\\": "core/",
"WeDevs\\PM\\": "src/"
}
},
"scripts": {
"post-install-cmd": [
"php composer-scripts/patch-deprecations.php"
],
"post-update-cmd": [
"php composer-scripts/patch-deprecations.php"
]
},
"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
}
}
}