-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
41 lines (41 loc) · 1.06 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
{
"name": "happypixels/laravel-shopr",
"description": "A webshop foundation that gives you more flexibility",
"license": "MIT",
"authors": [
{
"name": "Mattias Persson",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"league/omnipay": "^3",
"omnipay/stripe": "3.1.x-dev#37df2a791e8feab45543125f4c5f22d5d305096d",
"moneyphp/money": "^3.1",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0",
"laravel/helpers": "^1.0@dev"
},
"require-dev": {
"orchestra/testbench": "^3.8.0|^4.0",
"phpunit/phpunit" : "^8.2",
"mockery/mockery": "^1.3"
},
"autoload": {
"psr-4": {
"Happypixels\\Shopr\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Happypixels\\Shopr\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Happypixels\\Shopr\\ShoprServiceProvider"
]
}
}
}