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