-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.66 KB
/
Copy pathcomposer.json
File metadata and controls
48 lines (48 loc) · 1.66 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
40
41
42
43
44
45
46
47
48
{
"name": "humanmade/altis-reusable-blocks",
"description": "Adds functionality to reusable blocks to enhance their usage.",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"require": {
"php": ">=8.1",
"composer/installers": "^1.7 || ^2.0",
"humanmade/asset-loader": "^0.5.0 || ^0.6.1 || ^0.7.1"
},
"require-dev": {
"automattic/vipwpcs": "^2.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"squizlabs/php_codesniffer": "^3.4",
"brain/monkey": "^2.3",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^9.5"
},
"autoload-dev": {
"psr-4": {
"Altis\\ReusableBlocks\\Tests\\Unit\\": "tests/unit/",
"Altis\\ReusableBlocks\\REST_API\\": "rest-api/",
"Altis\\ReusableBlocks\\REST_API\\Relationships\\": "rest-api/relationships/",
"Altis\\ReusableBlocks\\REST_API\\Search\\": "rest-api/search/"
},
"files": [
"plugin.php",
"inc/namespace.php",
"inc/categories.php",
"inc/connections.php",
"inc/rest-api/namespace.php",
"inc/rest-api/relationships/class-rest-endpoint.php",
"inc/rest-api/search/class-rest-endpoint.php"
]
},
"scripts": {
"coverage": "phpunit --coverage-html coverage",
"lint:phpcs": "phpcs",
"test:unit": "phpunit --testsuite unit"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}