Skip to content

Commit

Permalink
Merge pull request #264 from jcanchor/master
Browse files Browse the repository at this point in the history
cap composer
  • Loading branch information
mewebstudio committed May 29, 2023
2 parents 121e322 + f6d3727 commit 7915706
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 62 deletions.
2 changes: 1 addition & 1 deletion README.md
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
@@ -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"
}
}
}
}

0 comments on commit 7915706

Please sign in to comment.