-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 1.7 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
{
"name": "damilaredev/laravel-email",
"description": "A collection of high-quality, unstyled components for creating beautiful emails using Laravel",
"keywords": ["laravel", "email", "views", "components"],
"license": "MIT",
"authors": [
{
"name": "Damilare Anjorin",
"homepage": "https://github.com/dammy001",
"email": "damilareanjorin1@gmail.com"
}
],
"scripts": {
"test:stan": ["vendor/bin/phpstan analyse --memory-limit=2G"],
"lint": ["vendor/bin/pint --test"],
"lint:fix": ["vendor/bin/pint -v"],
"test": "pest --colors=always",
"ci": [
"@lint",
"@test:stan",
"@test"
]
},
"scripts-descriptions": {
"lint:fix": "Run Laravel Pint code styling.",
"lint": "Run Laravel Pint code styling check.",
"test:stan": "Run PHPStan against code base.",
"test": "Run test suite."
},
"require": {
"php": "^8.1",
"illuminate/support": "^9.0|^10.0",
"illuminate/view": "^9.0|^10.0"
},
"require-dev": {
"mockery/mockery": "^1.6.6",
"orchestra/testbench": "^7.0|^8.0",
"phpstan/phpstan": "^1.10.42",
"laravel/pint": "^1.13.6",
"pestphp/pest": "^2.0.0",
"phpunit/phpunit": "^9|^10"
},
"autoload": {
"psr-4": {
"Damilaredev\\LaravelEmail\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Damilaredev\\LaravelEmail\\LaravelEmailServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}