Add FriendlyCaptcha vendor dir

This commit is contained in:
Jorit Tijsen
2026-02-27 09:30:52 +01:00
parent b4bff71008
commit 8b8c9b60d9
14 changed files with 815 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
{
"name": "ossycodes/friendlycaptcha",
"description": "A simple package to help integrate FriendlyCaptcha in your Laravel applications.",
"keywords": [
"friendlycaptcha",
"captcha",
"laravel"
],
"homepage": "https://github.com/ossycodes/friendlycaptcha",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "ossycodes",
"email": "osaigbovoemmanuel1@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0|^8.1|^8.2|^8.3",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
"phpunit/phpunit": "^8.0 || ^9.5 || ^10.5 || ^11.0 || ^12.0"
},
"autoload": {
"psr-4": {
"Ossycodes\\FriendlyCaptcha\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ossycodes\\FriendlyCaptcha\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true,
"platform-check": false,
"allow-plugins": {
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"providers": [
"Ossycodes\\FriendlyCaptcha\\FriendlyCaptchaServiceProvider"
],
"aliases": {
"FriendlyCaptcha": "Ossycodes\\FriendlyCaptcha\\Facades\\FriendlyCaptcha"
}
}
}
}