-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.93 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
{
"name": "sierratecnologia/payment-laravel",
"description": "Sierratecnologia Cashier provides an expressive, fluent interface to SierraTecnologia's subscription billing services.",
"keywords": ["laravel", "sierratecnologia", "billing"],
"license": "MIT",
"support": {
"issues": "https://github.com/sierratecnologia/cashier/issues",
"source": "https://github.com/sierratecnologia/cashier"
},
"authors": [
{
"name": "Ricardo Sierra",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-json": "*",
"dompdf/dompdf": ">=0.8.0",
"illuminate/contracts": "^7.0 || ^8.0",
"illuminate/database": "^7.0 || ^8.0",
"illuminate/http": "^7.0 || ^8.0",
"illuminate/routing": "^7.0 || ^8.0",
"illuminate/support": "^7.0 || ^8.0",
"illuminate/view": "^7.0 || ^8.0",
"nesbot/carbon": ">=1.26",
"sierratecnologia/payment-php": "^0.3.0 | ^0.4.0",
"sierratecnologia/telefonica": "^0.4.0",
"symfony/http-kernel": ">=4.2"
},
"require-dev": {
"mockery/mockery": ">=1.0",
"orchestra/testbench": "^4.0|^5.0|^6.0",
"phpunit/phpunit": ">=7.5",
"psalm/plugin-laravel": "^1.5"
},
"autoload": {
"psr-4": {
"SierraTecnologia\\Cashier\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SierraTecnologia\\Cashier\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "10.0-dev"
},
"laravel": {
"providers": [
"SierraTecnologia\\Cashier\\CashierServiceProvider"
],
"dont-discover": [
"laravel/cashier"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}