-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.11 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.11 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
{
"name": "bitapps/file-manager",
"description": "A file management plugin for wordpress",
"license": "gpl-2",
"autoload": {
"psr-4": {
"BitApps\\FM\\": "./backend/app"
}
},
"scripts": {
"lint": "./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php",
"unused:variable": "phpcs -p --standard=VariableAnalysis backend",
"compat": "./vendor/bin/phpcs -p ./backend --standard=PHPCompatibilityWP --runtime-set testVersion 7.4-"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.10",
"sirbrillig/phpcs-variable-analysis": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/phpcompatibility-wp": "*"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"typisttech/imposter-plugin": true
}
},
"require": {
"bitapps/wp-validator": "^1.1.0",
"bitapps/wp-kit": "^2.2",
"bitapps/wp-database": "^1.11",
"bitapps/wp-telemetry": "^0.0.9",
"typisttech/imposter-plugin": "^0.6.2"
},
"extra": {
"imposter": {
"namespace": "BitApps\\FM\\Vendor\\"
}
}
}