-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 1.3 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
{
"name": "prompt/prompt-core",
"description": "The free Postmatic core feature WordPress plugin.",
"type": "wordpress-plugin",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/postmatic/commentium"
},
{
"type": "vcs",
"url": "https://github.com/postmatic/wp-scb-framework"
},
{
"type": "vcs",
"url": "https://github.com/vernal-creative/html-to-markdown"
}
],
"autoload": {
"classmap": ["admin/", "core/", "interfaces/", "enums/" ]
},
"autoload-dev": {
"psr-4": {
"Postmatic\\Commentium\\Unit_Tests\\": "vendor/postmatic/commentium/tests/phpunit"
}
},
"require": {
"scribu/scb-framework": "dev-replyable",
"vernal-creative/html-to-markdown": "dev-postmatic",
"calderawp/caldera-modals" : "1.0.1",
"salesforce/handlebars-php": "^2.3.0",
"freemius/wordpress-sdk": "^2.4.3",
"postmatic/commentium": "^1.0.3"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phing/phing": "2.16.*",
"phpunit/phpunit": "5.7.27",
"tedivm/jshrink": "1.3.*",
"rosio/wordpress-i18n-tools": "dev-master",
"yoast/phpunit-polyfills": "^1.0.3"
},
"scripts": {
"install-test-support": "./bin/install-wp-tests.sh wp_test root root mysql",
"upgrade-test-support": "./bin/install-wp-tests.sh wp_test root root mysql nightly true",
"phing": "phing"
}
}