forked from bgultekin/cashier-fastspring
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
62 lines (62 loc) · 1.81 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
{
"name": "22digital/laravel-cashier-fastspring",
"description": "Cashier Fastspring is a cashier-like laravel package which provides an interface to Fastspring subscription and payment services.",
"keywords": ["laravel", "fastspring", "billing", "cashier"],
"license": "MIT",
"support": {
"issues": "https://github.com/22digital/laravel-cashier-fastspring/issues",
"source": "https://github.com/22digital/laravel-cashier-fastspring"
},
"authors": [
{
"name": "Bilal Gultekin",
"email": "[email protected]"
},
{
"name": "Justin Hartman",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.3",
"illuminate/database": "~5.6",
"illuminate/support": "~5.6",
"nesbot/carbon": "^2.0",
"symfony/http-kernel": "~2.7|~3.0|~4.0",
"guzzlehttp/guzzle": "^6.0"
},
"require-dev": {
"illuminate/http": "~5.6",
"illuminate/routing": "~5.6",
"mockery/mockery": "~1.0",
"phpunit/phpunit": "~7.0",
"vlucas/phpdotenv": "^3.3",
"orchestra/testbench": "~3.6"
},
"autoload": {
"psr-4": {
"TwentyTwoDigital\\CashierFastspring\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TwentyTwoDigital\\CashierFastspring\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"TwentyTwoDigital\\CashierFastspring\\CashierServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html=coverage"
},
"minimum-stability": "dev",
"prefer-stable": true
}