-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.32 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
{
"name": "704403314/spark-stripe",
"description": "Laravel Spark provides scaffolding for Laravel SaaS applications.",
"keywords": ["laravel", "stripe", "billing", "scaffolding", "saas"],
"license": "MIT",
"authors": [
{
"name": "Taylor Otwell",
"email": "taylor@laravel.com"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"illuminate/contracts": "^9.0",
"inertiajs/inertia-laravel": "^0.5.1",
"laravel/cashier": "^13.8.5",
"mpociot/vat-calculator": "^3.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Spark\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spark\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"laravel": {
"providers": [
"Spark\\SparkServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"scripts": {
"csfix": [
"php-cs-fixer fix src database routes tests --config=.php_cs"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}