forked from wp-invoice/wp-invoice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.64 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
{
"name": "wp-invoice/wp-invoice",
"type": "wordpress-plugin",
"minimum-stability": "dev",
"homepage": "https://www.usabilitydynamics.com/product/wp-invoice",
"author": {
"name": "UsabilityDynamics, Inc.",
"url": "https://www.usabilitydynamics.com"
},
"repositories": [
{
"type": "composer",
"url": "http://repository.usabilitydynamics.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/wp-invoice/wp-invoice.git"
},
"require": {
"php": ">=5.3",
"usabilitydynamics/lib-ui": "0.3.3",
"usabilitydynamics/lib-utility": "0.3.6",
"usabilitydynamics/lib-wp-bootstrap": "1.1.3",
"usabilitydynamics/lib-ud-api-client": "1.0.8",
"usabilitydynamics/lib-wp-list-table": "1.0.7"
},
"require-dev": {
"usabilitydynamics/lib-wp-phpunit": "master",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"classmap": [ "lib/classes" ]
},
"archive": {
"exclude": [
"node_modules",
".gitignore",
"test",
"circle.yml",
"composer.lock",
"gruntfile.js",
"package.json"
]
},
"extra": {
"splashes": {
"install": "static/splashes/install.php",
"upgrade": "static/splashes/upgrade.php"
},
"schemas": {
"dependencies" : {
"modules": {},
"plugins": []
},
"licenses" : {
"client" : {
"slug": "wp-invoice/wp-invoice",
"screen": {
"parent": "wpi_main",
"page_title": "l10n.licenses_page_title",
"menu_title": "l10n.licenses_menu_title"
}
},
"product" : false
}
}
}
}