60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
}
|