-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.33 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
{
"name": "kwio/gutenberg-blocks-framework",
"description": "Library to load custom Gutenberg blocks.",
"authors": [
{
"name": "Kevin Wellmann",
"email": "kevin@wellmann.io"
}
],
"autoload": {
"psr-4": {
"KWIO\\GutenbergBlocks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KWIO\\GutenbergBlocks\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "phpstan analyse src --memory-limit 500M",
"build:cc": "php -dxdebug.mode=coverage ./vendor/bin/phpunit --coverage-html coverage/",
"cs:check": "phpcs src",
"cs:fix": "phpcbf src",
"test": "phpunit"
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^9.5",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"brain/monkey": "^2.6",
"phpstan/phpstan": "^0.12.94",
"szepeviktor/phpstan-wordpress": "^0.7.7",
"phpstan/extension-installer": "^1.1",
"timber/timber": "^1.18"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}