forked from mailcarrierapp/mailcarrier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 2.34 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
{
"name": "mailcarrier/mailcarrier",
"description": "Mailing platform with templates and logs included",
"keywords": [
"laravel",
"mailcarrier"
],
"homepage": "https://github.com/mailcarrierapp/mailcarrier",
"license": "MIT",
"authors": [
{
"name": "Danilo Polani",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"filament/filament": "3.2.65",
"flowframe/laravel-trend": "^0.1.5|^0.2",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"laravel/prompts": "^0.1.16",
"laravel/sanctum": "^3.2.1|^4.0",
"laravel/socialite": "^5.6.1",
"livewire/livewire": "^3.4",
"nunomaduro/termwind": "^1.15|^2.0",
"pboivin/filament-peek": "^2.2",
"ralphjsmit/laravel-filament-components": "^2.0",
"socialiteproviders/manager": "^4.3",
"spatie/data-transfer-object": "^3.9.1",
"twig/twig": "^3.5.1"
},
"require-dev": {
"larastan/larastan": "^2.8",
"laravel/pint": "^1.7",
"nunomaduro/collision": "^7.0|^8.1",
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^2.3",
"pestphp/pest-plugin-faker": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan-deprecation-rules": "^1.1.3",
"spatie/laravel-package-tools": "^1.16"
},
"autoload": {
"psr-4": {
"MailCarrier\\": "src",
"MailCarrier\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"MailCarrier\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint -v"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"MailCarrier\\MailCarrierServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}