-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
33 lines (31 loc) · 861 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
{
"name": "rfergomes/adminlte3-mvc-framework",
"description": "Atribuindo layout AdminLTE3 ao projeto Mini-Framework abordado no curso PHP MJailton - Metodo Agora",
"license": "MIT",
"authors": [
{
"name": "Rodrigo Fernando Gomes Lima",
"email": "rfergomes@gmail.com",
"homepage": "https://rfergomes.github.io/AdminLTE_MVC/",
"role": "Developer"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"app\\": "app/"
},
"files": [
"app/core/Core.php",
"app/helper/helper.php",
"app/helper/datahora.php",
"app/helper/numero.php",
"app/helper/rede.php",
"Config/config.php"
]
},
"require": {
"almasaeed2010/adminlte": "~3.1",
"phpmailer/phpmailer": "^6.5"
}
}