-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 920 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
{
"name": "lorddashme/php-simple-captcha",
"description": "A simple captcha package that fit to any type of web application built on php.",
"keywords": [
"simple",
"captcha",
"security",
"github",
"php"
],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/lorddashme/php-simple-captcha",
"authors": [
{
"name": "Joshua Clifford Reyes",
"email": "reyesjoshuaclifford@gmail.com",
"homepage": "https://lorddashme.github.io/"
}
],
"require": {
"php": ">=5.6 || >=7.0 || >=7.1 || >=7.2",
"lorddashme/php-static-class-interface": "1.*"
},
"require-dev": {
"mockery/mockery": "1.*",
"phpunit/phpunit": "5.* || 6.* || 7.*"
},
"autoload": {
"psr-4": {
"LordDashMe\\SimpleCaptcha\\": "src/"
}
}
}