-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
61 lines (61 loc) · 1.7 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
{
"name": "dmhendricks/woocommerce-order-progress",
"type": "wordpress-plugin",
"description": "Displays an order status progress bar on WooCommerce order details pages.",
"keywords": ["woocommerce", "order", "details", "status", "progress"],
"homepage": "https://danhendricks.com",
"license": "GPL-2.0",
"authors": [
{
"name": "Daniel M. Hendricks",
"homepage": "https://danhendricks.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/dmhendricks/woocommerce-order-progress/issues/",
"source": "https://github.com/dmhendricks/woocommerce-order-progress/"
},
"repositories": [
{
"type": "package",
"package": {
"name": "jashkenas/underscore",
"version": "1.8.3",
"dist": {
"type": "zip",
"url": "https://github.com/jashkenas/underscore/archive/1.8.3.zip",
"reference": "master"
},
"autoload": {
"classmap": ["."]
}
}
}
],
"require": {
"php": ">=5.3.2",
"mnsami/composer-custom-directory-installer": "*",
"tgmpa/tgm-plugin-activation": "^2.6.1",
"htmlburger/carbon-fields": "dev-master",
"twig/twig": "^2.0",
"composer/installers": "*"
},
"extra":{
"installer-paths":{
"./vendor/carbon-fields": ["htmlburger/carbon-fields"]
}
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"TwoLab\\WooOrderProgress\\": "app/"
},
"files": ["vendor/tgmpa/tgm-plugin-activation/class-tgm-plugin-activation.php"]
},
"scripts": {
"pre-autoload-dump": [
"find ./vendor -name .git* -exec rm -rf {} +"
]
}
}