forked from LimeDeck/nova-cashier-overview
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
64 lines (64 loc) · 1.54 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
{
"name": "rhyslees/nova-spark-overview",
"description": "Interact with your Stripe subscriptions directly inside Nova.",
"keywords": [
"laravel",
"nova"
],
"license": "MIT",
"authors": [
{
"name": "Rhys Lees",
"email": "[email protected]"
},
{
"name": "LimeDeck",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
},
{
"type": "composer",
"url": "https://spark.laravel.com"
}
],
"require": {
"php": "^8.2",
"laravel/nova": "^4.0",
"laravel/pint": "^1.5",
"laravel/spark-stripe": "^3.0"
},
"require-dev": {
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
"RhysLees\\NovaSparkOverview\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RhysLees\\NovaSparkOverview\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"RhysLees\\NovaSparkOverview\\Providers\\SparkOverviewServiceProvider"
]
}
},
"scripts": {
"test": "./vendor/bin/phpunit tests/ -c ./phpunit.xml --coverage-text --coverage-clover clover.xml"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}