forked from PHPAuth/PHPAuth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
32 lines (32 loc) · 878 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
{
"name": "phpauth/phpauth",
"description": "A secure user authentication class for PHP websites, using a powerful password hashing system and attack blocking to keep your website and users secure.",
"type": "library",
"keywords": [
"authentication",
"class",
"secure"
],
"homepage": "https://phpauth.github.io/PHPAuth/",
"license": "MIT",
"require": {
"php": ">=7.2.0",
"ext-pdo": "*",
"ext-mbstring": "*",
"bjeavons/zxcvbn-php": "^1.0",
"phpmailer/phpmailer": "^6.0",
"google/recaptcha": "^1.2"
},
"suggest": {
"phpauth/phpauth.l10n": "^0.1.0",
"phpauth/phpauth.email-validator": "^0.1.1"
},
"require-dev": {
"phpunit/phpunit": "6.*"
},
"autoload": {
"psr-4": {
"PHPAuth\\": "sources/"
}
}
}