-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
56 lines (56 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
53
54
55
56
{
"name": "bitapps/wp-telemetry",
"description": "A simple telemetry library for WordPress.",
"type": "library",
"homepage": "https://bitapps.pro",
"license": "GPL-2.0-or-later",
"keywords": [
"wp",
"WordPress",
"Telemetry"
],
"support": {
"issues": "https://github.com/Bit-Apps-Pro/wp-telemetry/issues",
"source": "https://github.com/Bit-Apps-Pro/wp-telemetry"
},
"authors": [
{
"email": "[email protected]",
"name": "BitApps"
}
],
"autoload": {
"psr-4": {
"BitApps\\WPTelemetry\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BitApps\\WPTelemetry\\Tests\\": [
"tests/"
]
}
},
"scripts": {
"test": "./vendor/bin/pest",
"compat": "./vendor/bin/phpcs -p ./src --standard=PHPCompatibility --runtime-set testVersion 5.6-",
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility"
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"pestphp/pest": "3.x-dev",
"squizlabs/php_codesniffer": "*",
"phpcompatibility/php-compatibility": "*",
"friendsofphp/php-cs-fixer": "dev-master"
},
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}