-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
executable file
·41 lines (41 loc) · 1.18 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
{
"name": "dutchcodingcompany/livewire-recaptcha",
"description": "Add Google Recaptcha V3 support to your Laravel Livewire components",
"keywords": [
"DutchCodingCompany",
"Livewire",
"Google ReCaptcha",
"Laravel"
],
"homepage": "https://github.com/dutchcodingcompany/livewire-recaptcha",
"license": "MIT",
"require": {
"php": "^8.2",
"livewire/livewire": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"larastan/larastan": "^2.9",
"orchestra/testbench": "^9.0",
"phpunit/phpunit": "^11.1"
},
"autoload": {
"psr-4": {
"DutchCodingCompany\\LivewireRecaptcha\\": "src/",
"DutchCodingCompany\\LivewireRecaptcha\\Tests\\": "tests/"
}
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix"
},
"extra": {
"laravel": {
"providers": [
"DutchCodingCompany\\LivewireRecaptcha\\LivewireRecaptchaServiceProvider"
]
}
},
"minimum-stability": "stable"
}