forked from CalderaWP/Caldera-Forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·48 lines (47 loc) · 1.5 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" : "Desertsnowman/caldera-forms",
"description" : "Create complex grid based, responsive forms easily with an easy to use drag and drop layout builder",
"type" : "wordpress-plugin",
"keywords" : [ "wordpress", "forms", "caldera" ],
"license" : "GPL-2.0+",
"authors" : [
{
"name": "Josh Pollock",
"homepage": "https://JoshPress.net",
"role": "Lead Developer"
},
{
"name": "David Cramer",
"homepage": "http://cramer.co.za",
"role": "Founding Developer"
},
{
"name": "Nicolas Figueira",
"homepage": "https://newo.me/",
"role": "Contributing Developer"
}
],
"homepage": "http://calderaforms.com",
"require": {
"php": ">=5.6.0",
"inpsyde/wonolog": "^1.0",
"calderawp/caldera-forms-query" : "dev-master",
"calderawp/caldera-containers": "^0.2.0"
},
"autoload": {
"psr-4": {
"calderawp\\calderaforms\\pro\\": "includes/cf-pro-client/classes/"
}
},
"require-dev": {
"phpunit/phpunit":"~5.5.0"
},
"scripts" : {
"wp-install" : "docker-compose up --build -d",
"wp-tests" : "composer wp-install && composer wp-unit-test",
"wp-unit-test" : "docker-compose run wordpress vendor/bin/phpunit",
"wp-start" : "docker-compose up",
"wp-stop" : "docker-compose stop",
"wp-remove": "docker-compose down"
}
}