-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 872 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 872 Bytes
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
{
"name": "bitapps/bit-integrations",
"description": "An Integration plugin for wordpress",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"BitApps\\Integrations\\": "backend/"
}
},
"require-dev": {
"phpcompatibility/phpcompatibility-wp": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"friendsofphp/php-cs-fixer": "^3.54"
},
"scripts": {
"version-checker": "phpcs -p --standard=PHPCompatibilityWP --runtime-set testVersion 7.4- backend",
"bump-version": "php ./bin/bump-version.php"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"typisttech/imposter-plugin": true
}
},
"require": {
"typisttech/imposter-plugin": "^0.6.2"
},
"extra": {
"imposter": {
"namespace": "BitApps\\Integrations\\Deps\\"
}
}
}