-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
124 lines (124 loc) · 2.63 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "blockera/plugin",
"description": "A Blockera Site Editor experience base on Gutenberg core modules.",
"type": "library",
"license": "ISC",
"repositories": [
{
"type": "path",
"url": "packages/blockera"
},
{
"type": "path",
"url": "packages/blockera-admin"
},
{
"type": "path",
"url": "packages/bootstrap"
},
{
"type": "path",
"url": "packages/editor"
},
{
"type": "path",
"url": "packages/utils"
},
{
"type": "path",
"url": "packages/wordpress"
},
{
"type": "path",
"url": "packages/exceptions"
},
{
"type": "path",
"url": "packages/data"
},
{
"type": "path",
"url": "packages/data-editor"
},
{
"type": "path",
"url": "packages/http"
},
{
"type": "path",
"url": "packages/blocks/core"
},
{
"type": "path",
"url": "packages/env"
},
{
"type": "path",
"url": "packages/dev-phpunit"
},
{
"type": "path",
"url": "packages/telemetry"
}
],
"authors": [
{
"name": "The Blockera Contributors"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.4",
"blockera/blockera": "*",
"blockera/blockera-admin": "*",
"blockera/blocks-core": "*",
"blockera/bootstrap": "*",
"blockera/env": "*",
"blockera/editor": "*",
"blockera/dev-phpunit": "*",
"blockera/utils": "*",
"blockera/wordpress": "*",
"blockera/exceptions": "*",
"blockera/data": "*",
"blockera/data-editor": "*",
"blockera/http": "*",
"blockera/telemetry": "*",
"vlucas/phpdotenv": "^5.5@dev",
"illuminate/container": "8.x-dev",
"psr/container": "1.x-dev"
},
"require-dev": {
"symfony/dom-crawler": "5.4.x-dev",
"symfony/css-selector": "5.4.x-dev",
"voku/simple_html_dom": "dev-master",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpunit/phpunit": "^9.5.21",
"squizlabs/php_codesniffer": "^3.5",
"wp-cli/wp-cli-bundle": "^2.4",
"wp-coding-standards/wpcs": "^2.1",
"wp-phpunit/wp-phpunit": "dev-master",
"filp/whoops": "^2.15",
"yoast/phpunit-polyfills": "^2.0@dev",
"symfony/var-dumper": "5.4.x-dev"
},
"config": {
"process-timeout": 0,
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cweagans/composer-patches": true
}
},
"scripts": {
"test": "@php ./vendor/bin/phpunit",
"lint": "phpcs --standard=phpcs.xml",
"format": "phpcbf --standard=phpcs.xml --report-summary --report-source",
"test:coverage": "@php ./vendor/bin/phpunit --coverage-html php-coverage"
},
"optimize-autoloader": "true",
"apcu-autoloader": true,
"classmap-authoritative": true
}