-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 912 Bytes
/
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
{
"name": "eighteen73/laravel-turnstile",
"description": "Add Cloudflare Turnstile verification to Laravel forms",
"keywords": ["laravel"],
"license": "MIT",
"support": {
"issues": "https://github.com/eighteen73/laravel-turnstile/issues",
"source": "https://github.com/eighteen73/laravel-turnstile"
},
"authors": [
{
"name": "Ed Jeavons",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": "^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
"Eighteen73\\Turnstile\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Eighteen73\\Turnstile\\TurnstileServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"laravel/pint": "^1.2"
}
}