-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.41 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.41 KB
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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "maatify/device-otp",
"description": "Official PHP library for maatify.dev Device OTP handler, known by our team",
"version": "5.0.1",
"license": "MIT",
"homepage": "https://github.com/Maatify/",
"authors": [
{
"name": "Mohamed Abdulalim",
"email": "mohamed@maatify.dev",
"homepage": "https://www.maatify.com/",
"role": "Backend Developer"
},
{
"name": "Ahmed Fawzy",
"email": "a.fawzy@maatify.dev",
"homepage": "https://www.maatify.com/",
"role": "Frontend Developer"
},
{
"name": "Mohaned Saeed Sami",
"email": "mohaned.saeed@maatify.dev",
"homepage": "https://www.maatify.com/",
"role": "Frontend Developer"
},
{
"name": "Ahmed Abdullah",
"email": "a.abdullah@maatify.dev",
"homepage": "https://www.maatify.com/",
"role": "Android Developer"
},
{
"name": "Elmokhtar Ahmed",
"email": "mokhtar@maatify.dev",
"homepage": "https://www.maatify.com/",
"role": "IOS Developer"
}
],
"require": {
"ext-pdo": "*",
"maatify/logger": "^5",
"ext-openssl": "*",
"maatify/app-handler": "^5"
},
"autoload": {
"psr-4": {
"Maatify\\OTPManager\\" : "otp_manager/",
"Maatify\\OTPManager\\Contracts\\" : "otp_contracts/",
"Maatify\\OTPManager\\Enums\\" : "otp_enums/",
"Maatify\\OTPManager\\Service\\" : "otp_service/"
}
}
}