-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.61 KB
/
Copy pathcomposer.json
File metadata and controls
60 lines (60 loc) · 1.61 KB
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
{
"name": "blendbyte/coyotecert-laravel",
"description": "First-party Laravel integration for CoyoteCert. HTTP-01 challenge via cache, Artisan commands, events, queue jobs, and scheduled renewal.",
"keywords": ["acme", "letsencrypt", "ssl", "tls", "certificate", "laravel"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Blendbyte",
"email": "hello@blendbyte.com",
"homepage": "https://www.blendbyte.com",
"role": "Developer"
}
],
"require": {
"php": "^8.3",
"blendbyte/coyotecert": "^1.0",
"illuminate/contracts": "^12.0 || ^13.0",
"illuminate/support": "^12.0 || ^13.0"
},
"require-dev": {
"dg/bypass-finals": "^1.8",
"friendsofphp/php-cs-fixer": "^3.95",
"larastan/larastan": "^3.0",
"orchestra/testbench": "^10.0 || ^11.0",
"pestphp/pest": "^4.0",
"pestphp/pest-plugin-laravel": "^4.0",
"phpunit/phpunit": "^12.5"
},
"autoload": {
"psr-4": {
"CoyoteCert\\Laravel\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"CoyoteCert\\Laravel\\CoyoteCertServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/pest",
"test:coverage": "vendor/bin/pest --coverage",
"analyse": "vendor/bin/phpstan analyse --memory-limit=512M",
"lint": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix",
"lint:check": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer fix --dry-run --diff"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}