-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.42 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
43
44
45
46
47
48
49
50
{
"name": "nabeghe/helpers",
"description": "A helper library that includes all my helpers in one package for PHP.",
"keywords": [
"library", "helper", "helpers", "support"
],
"type": "library",
"homepage": "https://github.com/nabeghe/helpers-php",
"license": "MIT",
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"Nabeghe\\Alphanum\\": "src/Alphanum",
"Nabeghe\\Arrayer\\": "src/Arrayer",
"Nabeghe\\Buildify\\": "src/Buildify",
"Nabeghe\\Cally\\": "src/Cally",
"Nabeghe\\Colory\\": "src/Colory",
"Nabeghe\\Dati\\": "src/Dati",
"Nabeghe\\HeadersReader\\": "src/HeadersReader",
"Nabeghe\\Levex\\": "src/Levex",
"Nabeghe\\Matcher\\": "src/Matcher",
"Nabeghe\\Mem\\": "src/Mem",
"Nabeghe\\Reflecty\\": "src/Reflecty",
"Nabeghe\\Servery\\": "src/Servery",
"Nabeghe\\Shortnum\\": "src/Shortnum",
"Nabeghe\\SimpleCipher\\": "src/SimpleCipher",
"Nabeghe\\Stringer\\": "src/Stringer",
"Nabeghe\\Tepade\\": "src/Tepade",
"Nabeghe\\Traituctor\\": "src/Traituctor",
"Nabeghe\\Yielder\\": "src/Yielder"
}
},
"authors": [
{
"name": "Hadi Akbarzadeh",
"email": "[email protected]",
"homepage": "https://elatel.ir",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"ext-ctype": "*"
}
}