forked from DotCamp/ultimate-blocks-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 861 Bytes
/
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
{
"name": "ultimate-blocks/ultimate-blocks",
"description": "Ultimate blocks",
"type": "project",
"license": "GPL3+",
"scripts": {
"test": "phpunit",
"lint": "@phpcs-check",
"phpcs-check": "phpcs -p --standard=.phpcs.xml --extensions=php --ignore=vendor/*,node_modules/*,__tests__/*,dist/*,bundle-dist/*,zip/*,library/*,.parcel-cache/*,.idea/*,languages/*,src/common.php ."
},
"require": {
"vlucas/phpdotenv": "^5.5",
"ext-dom": "*",
"ext-libxml": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.3",
"brain/monkey": "^2.6",
"wp-coding-standards/wpcs": "^3.0",
"phpcompatibility/phpcompatibility-wp": "*"
},
"autoload": {
"psr-4": {
"Ultimate_Blocks\\": [
"./",
"./__tests__/php/unit"
]
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}