1
0
mirror of https://github.com/delight-im/PHP-Auth.git synced 2025-01-17 04:18:16 +01:00
php-auth/composer.json

22 lines
505 B
JSON
Raw Permalink Normal View History

2015-10-20 14:26:38 +02:00
{
"name": "delight-im/auth",
2015-10-29 20:18:02 +01:00
"description": "Authentication for PHP. Simple, lightweight and secure.",
2015-10-20 14:26:38 +02:00
"require": {
"php": ">=5.6.0",
"ext-openssl": "*",
"delight-im/base64": "^1.0",
2017-10-19 22:29:50 +02:00
"delight-im/cookie": "^3.1",
2024-04-02 16:03:12 +02:00
"delight-im/db": "^1.3",
"delight-im/otp": "^1.0"
2015-10-20 14:26:38 +02:00
},
"type": "library",
"keywords": [ "auth", "authentication", "login", "security" ],
"homepage": "https://github.com/delight-im/PHP-Auth",
"license": "MIT",
2015-10-20 14:26:38 +02:00
"autoload": {
"psr-4": {
"Delight\\Auth\\": "src/"
}
}
}