-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
51 lines (51 loc) · 1.13 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
{
"name": "automattic/remote-data-blocks",
"authors": [
{
"name": "WPVIP"
}
],
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"RemoteDataBlocks\\": "inc/"
},
"files": [
"functions.php",
"inc/Integrations/constants.php"
]
},
"autoload-dev": {
"psr-4": {
"RemoteDataBlocks\\Tests\\": "tests/inc/"
}
},
"scripts": {
"phpcs": "phpcs",
"phpcs-fix": "phpcbf",
"psalm": "psalm.phar --no-cache",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover ./coverage/phpunit/clover.xml"
},
"require": {
"php": ">=8.1",
"galbar/jsonpath": "^3.0",
"guzzlehttp/guzzle": "^7.8",
"kevinrob/guzzle-cache-middleware": "^5.1",
"psr/log": "^3.0"
},
"require-dev": {
"automattic/vipwpcs": "^3.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^10",
"slevomat/coding-standard": "^8.15",
"php-stubs/wordpress-stubs": "^6.6",
"psalm/phar": "^5.26",
"mockery/mockery": "^1.6"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}