-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
39 lines (39 loc) · 1.11 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
{
"name": "bitapps/bit-smtp",
"description": "SMTP Configuration plugin by Bit Apps",
"license": "gpl-2",
"require": {
"bitapps/wp-validator": "^1.0",
"bitapps/wp-kit": "^1.0",
"bitapps/wp-database": "^1.0",
"typisttech/imposter-plugin": "^0.6.2",
"bitapps/wp-telemetry": "^0.0.9"
},
"autoload": {
"psr-4": {
"BitApps\\SMTP\\": "./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-",
"clean": "rm -rf ./vendor && rm composer.lock"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.10",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/phpcompatibility-wp": "*"
},
"config": {
"allow-plugins": {
"typisttech/imposter-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"imposter": {
"namespace": "BitApps\\SMTP\\Deps\\"
}
}
}