-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
49 lines (49 loc) · 1.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
{
"name": "limedeck/nova-cashier-overview",
"description": "Interact with your Stripe subscriptions directly inside Nova.",
"keywords": [
"laravel",
"nova"
],
"license": "MIT",
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
],
"require": {
"php": "^7.3 || ^8.0",
"laravel/nova": "^4.0"
},
"require-dev": {
"limedeck/phpunit-detailed-printer": "^6.0",
"orchestra/testbench": "^6.18",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"LimeDeck\\NovaCashierOverview\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LimeDeck\\NovaCashierOverview\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"LimeDeck\\NovaCashierOverview\\Providers\\CashierOverviewServiceProvider"
]
}
},
"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
}