-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 973 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
{
"name": "tommalbran/framework",
"description": "My personal framework",
"version": "1.0.0",
"authors": [
{
"name": "Tomás Malbrán",
"homepage": "https://github.com/TomMalbran"
}
],
"require": {
"php": "^8.1",
"ext-mysqli": "*",
"ext-curl": "*"
},
"require-dev": {
"firebase/php-jwt": "^6.10",
"mustache/mustache": "^2.14",
"phpmailer/phpmailer": "^6.9",
"drewm/mailchimp-api": "^2.5",
"openspout/openspout": "^4.26"
},
"suggest" : {
"mustache/mustache": "Used for Rendering templates",
"firebase/php-jwt": "Used in Auth",
"phpmailer/phpmailer": "Used for Mailing with SMTP",
"drewm/mailchimp-api": "Used for Mailing with MailChimp",
"openspout/openspout": "Used to Import/Export XLSX data"
},
"autoload": {
"psr-4": {
"Framework\\": "src"
}
}
}