-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.12 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
{
"name": "tenantcloud/emailer",
"description": "Laravel package for sending emails",
"license": "MIT",
"require": {
"php": ">=8.2",
"guzzlehttp/guzzle": "^7.2",
"illuminate/support": "^9.0|^10.0",
"tenantcloud/guzzle-helper": "^1.1"
},
"require-dev": {
"pestphp/pest": "^2.8",
"mockery/mockery": "^1.1",
"symfony/http-foundation": "^5.2|^6.0",
"php-cs-fixer/shim": "^3.54",
"tenantcloud/php-cs-fixer-rule-sets": "~3.3.1",
"phpstan/phpstan": "~1.10.21",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpstan/phpstan-mockery": "^1.1"
},
"autoload": {
"psr-4": {
"TenantCloud\\Emailer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TenantCloud\\Emailer\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"coverage": "XDEBUG_MODE=coverage vendor/bin/pest --coverage-html coverage",
"cs-fix": "vendor/bin/php-cs-fixer fix -v --show-progress=dots",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=2G"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}