-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.03 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
{
"name": "swipestripe/swipestripe-stockmanagement",
"description": "Stock management module for SwipeStripe Ecommerce.",
"type": "silverstripe-vendormodule",
"authors": [
{
"name": "Harsh Chokshi",
"email": "harsh.chokshi@littlegiant.co.nz"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"SwipeStripe\\StockManagement\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SwipeStripe\\StockManagement\\Tests\\": "tests/"
},
"classmap": [
"app/src/Page.php",
"app/src/PageController.php"
]
},
"prefer-stable": true,
"require": {
"php": ">=7.1",
"swipestripe/swipestripe": "5.0.x-dev"
},
"require-dev": {
"php-http/guzzle6-adapter": "^1.1",
"silverstripe/recipe-cms": "^4.2",
"phpunit/phpunit": "^5.7",
"php-coveralls/php-coveralls": "^2.1",
"swipestripe/swipestripe-common": "dev-develop"
},
"config": {
"preferred-install": {
"silverstripe/framework": "source"
}
},
"extra": {
"project-files-installed": [
"app/.htaccess",
"app/_config.php",
"app/_config/mysite.yml",
"app/src/Page.php",
"app/src/PageController.php"
],
"public-files-installed": [
".htaccess",
"index.php",
"install-frameworkmissing.html",
"install.php",
"web.config"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/littlegiant/silverstripe-swipestripe.git",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/littlegiant/swipestripe-common.git",
"no-api": true
},
{
"type": "vcs",
"url": "https://github.com/hchokshi/silverstripe-wkhtml.git",
"no-api": true
}
]
}