-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·40 lines (40 loc) · 1020 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
33
34
35
36
37
38
39
40
{
"name": "therecluse26/php-login",
"description": "A secure, simple PHP login system",
"type": "library",
"authors": [
{
"name": "therecluse26",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"PHPLogin\\": "login/class"
}
},
"require": {
"php": ">=7",
"ext-pdo": "*",
"components/jquery": "^3.1",
"components/bootstrap": "^3",
"firebase/php-jwt": "^5.0",
"phpmailer/phpmailer": "^6.2",
"fengyuanchen/cropper": "dev-master",
"auth0/auth0-php": "~7.0",
"twilio/sdk": "^6.18"
},
"config": {
"vendor-dir": "vendor",
"optimize-autoloader": true,
"disable-tls": false,
"secure-http": true
},
"require-dev": {
"phpunit/phpunit": "^7",
"sentry/sentry": "^1.9",
"robmorgan/phinx": "^0.9.2",
"doctrine/migrations": "^1.8"
}
}