-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
59 lines (59 loc) · 1.82 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
{
"name": "bea/bea-content-sync-fusion",
"description": "Manage content synchronisation across a WordPress Multisite.",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Be API",
"email": "[email protected]"
}
],
"type" : "wordpress-plugin",
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/installers": true,
"phpro/grumphp-shim": true,
"roots/wordpress-core-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require" : {
"beapi/gutenberg-serializer": "^1.0",
"composer/installers" : "~1.0"
},
"require-dev": {
"codeception/module-asserts": "^1.3",
"codeception/module-cli": "^1.0",
"codeception/module-db": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-webdriver": "^1.1",
"codeception/util-universalframework": "^1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"lucatume/wp-browser": "^2.6",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpcompatibility/php-compatibility": "^9.3",
"phpro/grumphp-shim": "^1.0",
"roots/wordpress": "^5.5",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.0",
"wp-coding-standards/wpcs": "^2.3"
},
"extra": {
"installer-paths": {
"wordpress": ["roots/wordpress"]
}
},
"scripts": {
"cs": "./vendor/bin/phpcs",
"cbf": "./vendor/bin/phpcbf",
"psalm": "./vendor/bin/psalm",
"test-unit": "./vendor/bin/codecept run unit --html",
"test-wpunit": "./vendor/bin/codecept run wpunit --html",
"test-functional": "./vendor/bin/codecept run functional --html",
"test-acceptance": "./vendor/bin/codecept run acceptance --html"
}
}