-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.26 KB
/
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
35
36
37
38
39
40
41
42
{
"name": "lovephpforever/php-auth",
"description": "A fast and secure by default PHP authentication system that requires zero configuration.",
"homepage": "https://github.com/lovephpforever/framework",
"keywords": [],
"license": "MIT",
"support": {
"issues": "https://github.com/lovephpforever/php-auth/issues",
"source": "https://github.com/lovephpforever/php-auth"
},
"require": {
"php": ">=8.0",
"paragonie/constant_time_encoding": "^2.4",
"paragonie/easydb": "^2.11",
"paragonie/sapient": "^1.1",
"symfony/contracts": "^2.4",
"symfony/http-foundation": "^5.2",
"symfony/options-resolver": "^5.2",
"symfony/rate-limiter": "^5.2",
"symfony/templating": "^5.2",
"symfony/translation": "^5.2",
"symfony/validator": "^5.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"johnkary/phpunit-speedtrap": "^4.0",
"vimeo/psalm": "^4.7"
},
"autoload": {
"psr-4": {
"LovePHPForever\\": "./src"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"prefer-stable": true
}