generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
89 lines (89 loc) · 2.52 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "fluid-project/hearth",
"version": "4.1.0",
"description": "Simple starter kit for the Laravel framework.",
"keywords": [
"fluid-project",
"laravel",
"hearth"
],
"homepage": "https://github.com/fluid-project/hearth",
"license": "MIT",
"authors": [
{
"name": "OCAD University",
"email": "idrc@ocadu.ca",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"chinleung/laravel-locales": "^2.0",
"chinleung/laravel-multilingual-routes": "^4.0",
"codezero/laravel-unique-translation": "^4.0",
"commerceguys/addressing": "^2.0",
"commerceguys/intl": "^2.0",
"laravel/fortify": "^1.10",
"laravel/framework": "^10.0",
"livewire/livewire": "^2.0|^3.0",
"shiftonelabs/laravel-cascade-deletes": "^2.0",
"spatie/laravel-flash": "^1.9",
"spatie/laravel-google-fonts": "^1.1",
"spatie/laravel-package-tools": "^1.11",
"spatie/laravel-sluggable": "^3.3",
"spatie/laravel-translatable": "^6.0"
},
"require-dev": {
"laravel/pint": "^1.1",
"nunomaduro/collision": "^7.9",
"nunomaduro/larastan": "^2.6",
"orchestra/testbench": "^8.0",
"pestphp/pest": "^2.21",
"spatie/laravel-ray": "^1.26"
},
"suggest": {
"nunomaduro/larastan": "The included phpstan configuration requires Larastan"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
},
"platform": {
"php": "8.2.24"
}
},
"extra": {
"laravel": {
"aliases": {
"Hearth": "Hearth\\HearthFacade"
},
"providers": [
"Hearth\\HearthServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Hearth\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"App\\Models\\": "stubs/app/Models",
"Database\\Factories\\": "database/factories",
"Hearth\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"format": "vendor/bin/pint",
"analyze": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --configuration phpunit-coverage.xml.dist --coverage-clover coverage.xml"
}
}