forked from igoshev/laravel-captcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·35 lines (35 loc) · 900 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "bonecms/laravel-captcha",
"description": "Captcha integration for the Laravel 5",
"keywords": ["captcha", "laravel captcha"],
"license": "MIT",
"homepage": "https://github.com/igoshev/laravel-captcha",
"authors": [
{
"name": "Dmitriy Igoshev",
"email": "dmitry.igo@gmail.com"
}
],
"support": {
"issues": "https://github.com/igoshev/laravel-captcha/issues",
"source": "https://github.com/igoshev/laravel-captcha"
},
"require": {
"php": ">=5.6.4"
},
"autoload": {
"psr-4": {
"Igoshev\\Captcha\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
},
"laravel": {
"providers": [
"Igoshev\\Captcha\\Providers\\CaptchaServiceProvider"
]
}
}
}