Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cap composer #264

Merged
merged 12 commits into from
May 29, 2023
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ project's `composer.json`.
"laravel/framework": "5.0.*",
"mews/captcha": "~2.0"
},
"minimum-stability": "dev"
"minimum-stability": "stable"
}
```

Expand Down
116 changes: 55 additions & 61 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,63 +1,57 @@
{
"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": "me@mewebstudio.com",
"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"
}
}
}
"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": "me@mewebstudio.com",
"homepage": "https://github.com/mewebstudio",
"role": "Developer"
}
],
"require": {
"php": "^7.2|^8.1",
"ext-gd": "*",
"illuminate/config": "~5|^6|^7|^8",
"illuminate/filesystem": "~5|^6|^7|^8",
"illuminate/support": "~5|^6|^7|^8",
"illuminate/hashing": "~5|^6|^7|^8",
"illuminate/session": "~5|^6|^7|^8",
"intervention/image": "~2.5"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.5.10",
"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"
}
}
}
}