-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·116 lines (116 loc) · 5.9 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
{
"name": "calderawp/caldera",
"license": "GPL-2.0",
"require": {
"php": "^7.2",
"calderawp/caldera-containers": "^0.2",
"firebase/php-jwt": "^5.0",
"inpsyde/wp-db-tools": "^0.2",
"inpsyde/wpsr7": "^1.0",
"johnpbloch/wordpress": ">=5.0",
"mockery/mockery": "^1.2",
"moment/moment": ">=2.9.0",
"psr/container": "^1.0",
"robloach/component-installer": "*",
"vlucas/phpdotenv": "^2.2"
},
"require-dev": {
"php": "^7.2",
"antecedent/patchwork": "^2.0",
"brain/monkey": "^2.2",
"calderawp/caldera-containers": "^0.2",
"guzzlehttp/guzzle": "^6.3",
"inpsyde/wpsr7": "^1.0",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^7.3",
"spatie/phpunit-snapshot-assertions": "^1.3",
"squizlabs/php_codesniffer": "3.*",
"symplify/monorepo-builder": "^4.7"
},
"autoload": {
"psr-4": {
"calderawp\\DB\\": "php-packages/caldera-db/src",
"calderawp\\LayoutBuilder\\": "mu-plugins/plugins/layout-builder/php",
"calderawp\\caldera\\Core\\": "php-packages/core/src",
"calderawp\\caldera\\DataSource\\": "php-packages/data-source/src",
"calderawp\\caldera\\Events\\": "php-packages/events/src",
"calderawp\\caldera\\Forms\\": "php-packages/forms/src",
"calderawp\\caldera\\Http\\": "php-packages/http/src",
"calderawp\\caldera\\Messaging\\": "php-packages/messaging/src",
"calderawp\\caldera\\WordPressPlugin\\": "mu-plugins/plugins/wordpress-plugin/src",
"calderawp\\caldera\\restApi\\": "php-packages/rest-api/src",
"calderawp\\interop\\": "php-packages/interop/src"
},
"files": [
"mu-plugins/plugins/layout-builder/inc/asset-loader.php",
"mu-plugins/plugins/layout-builder/inc/scripts.php",
"php-packages/core/Caldera.php"
]
},
"autoload-dev": {
"psr-4": {
"calderawp\\DB\\Tests\\": "php-packages/caldera-db/tests/",
"calderawp\\DB\\Tests\\Acceptance\\": "php-packages/caldera-db/tests/Acceptance/",
"calderawp\\DB\\Tests\\Integration\\": "php-packages/caldera-db/tests/Integration/",
"calderawp\\DB\\Tests\\Traits\\": "php-packages/caldera-db/tests/Traits/",
"calderawp\\DB\\Tests\\Unit\\": "php-packages/caldera-db/tests/Unit/",
"calderawp\\LayoutBuilder\\Tests\\": "mu-plugins/plugins/layout-builder/tests",
"calderawp\\caldera\\Core\\Tests\\": "php-packages/core/tests",
"calderawp\\caldera\\Core\\Tests\\Integration\\": "php-packages/core/tests/Integration",
"calderawp\\caldera\\Core\\Tests\\Traits\\": "php-packages/core/tests/Traits",
"calderawp\\caldera\\Core\\Tests\\Unit\\": "php-packages/core/tests/Unit",
"calderawp\\caldera\\DataSource\\Tests\\": "php-packages/data-source/tests",
"calderawp\\caldera\\Events\\Tests\\": "php-packages/events/tests",
"calderawp\\caldera\\Forms\\Tests\\": "php-packages/forms/tests-unit",
"calderawp\\caldera\\Forms\\Tests\\Integration\\": "php-packages/forms/tests-integration",
"calderawp\\caldera\\Http\\Tests\\": "php-packages/http/tests",
"calderawp\\caldera\\Messaging\\Tests\\": "php-packages/messaging/tests",
"calderawp\\caldera\\WordPressPlugin\\Tests\\": "mu-plugins/plugins/wordpress-plugin/tests",
"calderawp\\caldera\\restApi\\Acceptance\\": "php-packages/rest-api/acceptance",
"calderawp\\caldera\\restApi\\Tests\\": "php-packages/rest-api/tests",
"calderawp\\interop\\Tests\\": "php-packages/interop/tests"
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"scripts": {
"merge": "vendor/bin/monorepo-builder merge && composer update",
"release": "vendor/bin/monorepo-builder release",
"split": "vendor/bin/monorepo-builder split ",
"test": "composer fixes && composer test:packages && composer test:integration && composer test:acceptance",
"tests": "composer test",
"php:v": "php -v",
"test:integration": "bash scripts/test-integration.sh",
"test:acceptance": "bash scripts/test-acceptance.sh",
"test:acceptance-wp": "cd mu-plugins/plugins/wordpress-plugin/ && composer test:acceptance",
"snapshot:accept": "phpunit php-packages/core/tests -d --update-snapshots",
"fixes": "composer fixes:packages",
"test:core": "cd php-packages/core && composer test ",
"test:wordpress": "cd mu-plugins/plugins/wordpress-plugin && composer test ",
"test:packages-interop": "cd php-packages/interop && composer test ",
"test:packages-rest": "cd php-packages/rest-api && composer test ",
"test:packages-http": "cd php-packages/http && composer test ",
"test:packages-forms": "cd php-packages/forms && composer test ",
"test:packages-events": "cd php-packages/events && composer test ",
"test:packages-data": "cd php-packages/data-source && composer test ",
"test:packages-db": "cd php-packages/caldera-db && composer test ",
"test:packages-messaging": "cd php-packages/messaging && composer test ",
"test:blocks": "cd php-packages/register-block && composer test ",
"test:integration-forms": "cd php-packages/forms && composer test:integration",
"test:integration-core": "cd php-packages/core && composer test:integration",
"fixes:packages": "bash ./scripts/packages-fixes.sh",
"test:packages": "bash scripts/packages-tests.sh",
"analysis": "bash scripts/packages-analysis.sh",
"stan": "vendor/bin/phpstan analyse"
},
"config": {
"platform": {
"php": "7.2"
},
"sort-packages": true
}
}