-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
37 lines (37 loc) · 936 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
36
37
{
"name": "yhbyun/laravel-securimage",
"description": "Laravel 5 Securimage helper",
"keywords": ["laravel", "captcha", "securimage"],
"homepage": "https://github.com/yhbyun/laravel-securimage",
"license": "MIT",
"authors": [
{
"name": "YongHun Byun",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"illuminate/support":"~5.0|~6.0|~7.0|~8.0",
"dapphp/securimage": "~4.0"
},
"require-dev": {
"mockery/mockery": "~0.9.4",
"orchestra/testbench": "3.1.*",
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"Yhbyun\\Securimage\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Yhbyun\\Securimage\\Test\\": "tests"
}
},
"minimum-stability": "stable"
}