summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 1b5a6a0cb262d2a592770f2cb25931957944ef4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
	"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": "http://phpauth.github.io/PHPAuth/",
	"license": "MIT",
	"require": {
		"php": ">=5.4.0",
		"phpmailer/phpmailer": "^5.2",
		"bjeavons/zxcvbn-php": "^0.1"
	},
	"autoload": {
		"psr-4": {
			"PHPAuth\\": "/"
		}
	}
}