generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
67 lines (67 loc) · 2.03 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
{
"name": "rokde/laravel-subscription-manager",
"description": "This is my package SubscriptionManager",
"keywords": [
"laravel",
"subscription",
"plan"
],
"homepage": "https://github.com/rokde/laravel_subscription_manager",
"license": "MIT",
"authors": [
{
"name": "Robert Kummer",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"illuminate/config": "^10.19|^11.0",
"illuminate/console": "^10.19|^11.0",
"illuminate/contracts": "^10.19|^11.0",
"illuminate/database": "^10.19|^11.0",
"illuminate/http": "^10.19|^11.0",
"illuminate/routing": "^10.19|^11.0",
"illuminate/support": "^10.19|^11.0",
"spatie/laravel-package-tools": "^1.16"
},
"require-dev": {
"brianium/paratest": "^v7.2",
"nunomaduro/collision": "^v7.8|^8.0",
"orchestra/testbench": "^v8.8|^9.0",
"phpunit/phpunit": "^10.3|^11.0",
"psalm/plugin-laravel": "^2.11",
"vimeo/psalm": "^5.14"
},
"autoload": {
"psr-4": {
"Rokde\\SubscriptionManager\\": "src",
"Rokde\\SubscriptionManager\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Rokde\\SubscriptionManager\\Tests\\": "tests"
}
},
"scripts": {
"psalm": "vendor/bin/psalm",
"test": "./vendor/bin/testbench package:test --no-coverage",
"test-parallel": "./vendor/bin/testbench package:test --parallel --no-coverage",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Rokde\\SubscriptionManager\\SubscriptionManagerServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}