-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.08 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
{
"name": "isobar-nz/silverstripe-flow",
"type": "silverstripe-vendormodule",
"description": "Module for product sync and integration between SwipeStripe and the Flow API",
"license": "BSD-3-Clause",
"keywords": [
"silverstripe",
"flow",
"ecommerce"
],
"authors": [
{
"name": "SilverStripe",
"homepage": "http://silverstripe.com"
},
{
"name": "Danae Miller-Clendon",
"email": "danae.miller-clendon@isobar.com",
"role": "Maintainer"
}
],
"require": {
"swipestripe/swipestripe": "5.0.x-dev",
"silverstripe/framework": "^4"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"extra": {
"expose": [
"client"
],
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"Isobar\\Flow\\": "src/",
"Isobar\\Flow\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}