This repository has been archived by the owner on Jan 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 2.21 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
77
{
"name": "kogitoapp/laravel-sassy",
"description": "Laravel Sassy provides an expressive, fluent interface to Recurly's subscription billing services.",
"keywords": [
"laravel",
"recurly",
"billing"
],
"license": "MIT",
"support": {
"issues": "https://github.com/kogitoapp/laravel-sassy/issues",
"source": "https://github.com/kogitoapp/laravel-sassy"
},
"authors": [
{
"name": "Daniel S. Reichenbach",
"email": "[email protected]"
},
{
"name": "Evgeny Soynov",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2.5|^8.0",
"ext-json": "*",
"ext-xml": "*",
"dompdf/dompdf": "^0.8.6|^1.0.1",
"illuminate/contracts": "^6.0|^7.0|^8.0",
"illuminate/database": "^6.0|^7.0|^8.0",
"illuminate/http": "^6.0|^7.0|^8.0",
"illuminate/log": "^6.0|^7.0|^8.0",
"illuminate/notifications": "^6.0|^7.0|^8.0",
"illuminate/routing": "^6.0|^7.0|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0",
"illuminate/view": "^6.0|^7.0|^8.0",
"moneyphp/money": "^3.2",
"nesbot/carbon": "^2.0",
"recurly/recurly-client": "^4.3",
"symfony/http-kernel": "^4.3|^5.0",
"symfony/polyfill-intl-icu": "^1.22.1"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^4.0|^5.0|^6.0",
"phpunit/phpunit": "^8.0|^9.0"
},
"suggest": {
"ext-intl": "Allows for more locales besides the default \"en\" when formatting money values.",
"jenssegers/mongodb": "Allows to use Sassy with MongoDB."
},
"autoload": {
"psr-4": {
"Kogito\\Sassy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kogito\\Sassy\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"laravel": {
"providers": [
"Kogito\\Sassy\\SassyServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}