1
0
mirror of https://github.com/delight-im/PHP-Auth.git synced 2025-09-01 19:52:34 +02:00

Initial commit

This commit is contained in:
Marco
2015-10-20 14:26:38 +02:00
commit 4b1df6e291
9 changed files with 1737 additions and 0 deletions

16
composer.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "delight-im/auth",
"description": "Secure authentication for PHP, once and for all, really simple to use",
"require": {
"php": ">=5.5.0"
},
"type": "library",
"keywords": [ "auth", "authentication", "login", "security" ],
"homepage": "https://github.com/delight-im/PHP-Auth",
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"Delight\\Auth\\": "src/"
}
}
}