-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
86 lines (86 loc) · 2.6 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "woda/wp-allowed-block-types",
"type": "library",
"description": "",
"license": "proprietary",
"authors": [
{
"name": "Woda Digital OG",
"email": "[email protected]",
"homepage": "https://www.woda.at",
"role": "Company"
},
{
"name": "David Mondok",
"email": "[email protected]",
"homepage": "https://github.com/davidmondok",
"role": "Developer"
},
{
"name": "Wolfgang Schaefer",
"email": "[email protected]",
"homepage": "https://github.com/wolfgangschaefer",
"role": "Developer"
}
],
"require": {
"php": "^7.4",
"ext-json": "^7.4",
"psr/container": "^1.0",
"thecodingmachine/safe": "^1.3",
"woda/wp-config": "v1.x-dev",
"woda/wp-hook": "v1.x-dev"
},
"require-dev": {
"eventjet/coding-standard": "^3.2",
"infection/infection": "^0.20.0",
"maglnet/composer-require-checker": "^2.1",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.32",
"phpstan/phpstan-phpunit": "^0.12.11",
"phpstan/phpstan-strict-rules": "^0.12.2",
"phpunit/phpunit": "^9.3",
"roots/wordpress": "^5.8",
"szepeviktor/phpstan-wordpress": "^0.7.3",
"thecodingmachine/phpstan-safe-rule": "^1.0",
"woda/wp-test-double": "v1.x-dev"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Woda\\WordPress\\BlockEditor\\AllowedBlockTypes\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Woda\\Test\\Functional\\WordPress\\BlockEditor\\AllowedBlockTypes\\": "tests/functional",
"Woda\\Test\\Unit\\WordPress\\BlockEditor\\AllowedBlockTypes\\": "tests/unit"
}
},
"repositories": [
{
"type": "composer",
"url": "https://woda.repo.repman.io"
}
],
"extra": {
"wordpress-install-dir": "vendor/wordpress/wordpress"
},
"minimum-stability": "stable",
"scripts": {
"check": [
"@check-deps",
"@cs-check",
"@phpstan",
"@phpunit"
],
"check-deps": "vendor/bin/composer-require-checker check --config-file=require-checker.config.json",
"cs-check": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"phpstan": "vendor/bin/phpstan analyse",
"phpstan-pro": "vendor/bin/phpstan analyse --pro",
"phpunit": "vendor/bin/phpunit"
}
}