Skip to content

Commit

Permalink
Merge pull request #256 from laravel-shift/l10-compatibility
Browse files Browse the repository at this point in the history
Laravel 10.x Compatibility
  • Loading branch information
mewebstudio authored Mar 14, 2023
2 parents 9aa77b8 + 789c269 commit 8c43926
Showing 1 changed file with 61 additions and 55 deletions.
116 changes: 61 additions & 55 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,57 +1,63 @@
{
"name": "mews/captcha",
"type": "package",
"description": "Laravel 5 & 6 Captcha Package",
"keywords": ["laravel6 Captcha", "laravel6 Security", "laravel6 Captcha", "laravel5 Security", "Captcha"],
"homepage": "https://github.com/mewebstudio/captcha",
"license": "MIT",
"authors": [
{
"name": "Muharrem ERİN",
"email": "[email protected]",
"homepage": "https://github.com/mewebstudio",
"role": "Developer"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-gd": "*",
"illuminate/config": "~5|^6|^7|^8|^9",
"illuminate/filesystem": "~5|^6|^7|^8|^9",
"illuminate/support": "~5|^6|^7|^8|^9",
"illuminate/hashing": "~5|^6|^7|^8|^9",
"illuminate/session": "~5|^6|^7|^8|^9",
"intervention/image": "~2.5"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.0",
"mockery/mockery": "^1.0"
},
"autoload": {
"psr-4": {
"Mews\\Captcha\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests"
],
"psr-4": {
"Mews\\Test\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Mews\\Captcha\\CaptchaServiceProvider"
],
"aliases": {
"Captcha": "Mews\\Captcha\\Facades\\Captcha"
}
}
}
"name": "mews/captcha",
"type": "package",
"description": "Laravel 5 & 6 Captcha Package",
"keywords": [
"laravel6 Captcha",
"laravel6 Security",
"laravel6 Captcha",
"laravel5 Security",
"Captcha"
],
"homepage": "https://github.com/mewebstudio/captcha",
"license": "MIT",
"authors": [
{
"name": "Muharrem ERİN",
"email": "[email protected]",
"homepage": "https://github.com/mewebstudio",
"role": "Developer"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-gd": "*",
"illuminate/config": "~5|^6|^7|^8|^9|^10.0",
"illuminate/filesystem": "~5|^6|^7|^8|^9|^10.0",
"illuminate/support": "~5|^6|^7|^8|^9|^10.0",
"illuminate/hashing": "~5|^6|^7|^8|^9|^10.0",
"illuminate/session": "~5|^6|^7|^8|^9|^10.0",
"intervention/image": "~2.5"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.0",
"mockery/mockery": "^1.0"
},
"autoload": {
"psr-4": {
"Mews\\Captcha\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests"
],
"psr-4": {
"Mews\\Test\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Mews\\Captcha\\CaptchaServiceProvider"
],
"aliases": {
"Captcha": "Mews\\Captcha\\Facades\\Captcha"
}
}
}
}

0 comments on commit 8c43926

Please sign in to comment.