Files
bolsa/structure.txt
T

123 lines
4.9 KiB
Plaintext
Raw Normal View History

2026-07-01 10:56:55 +00:00
.
├── assets
│   ├── csv
│   │   ├── autre.csv
│   │   ├── ibex35.csv
│   │   ├── nasdaq100.csv
│   │   ├── sbf120.csv
│   │   └── sp500.csv
│   └── images
│   ├── favicon.png
│   └── GFBlancLogo.png
2026-07-02 10:14:49 +00:00
├── composer.json
├── composer.lock
2026-07-01 10:56:55 +00:00
├── css
│   └── style.css
├── index.php
├── js
├── php
│   ├── 404.php
2026-07-02 10:14:49 +00:00
│   ├── db.php
2026-07-01 10:56:55 +00:00
│   ├── footer.php
2026-07-02 10:14:49 +00:00
│   ├── forgot_password.php
2026-07-01 10:56:55 +00:00
│   ├── header.php
2026-07-02 10:14:49 +00:00
│   ├── login_process.php
2026-07-01 10:56:55 +00:00
│   ├── menu.php
2026-07-02 10:14:49 +00:00
│   ├── register.php
│   ├── reset_password.php
2026-07-01 10:56:55 +00:00
│   └── session.php
├── structure.txt
2026-07-02 10:14:49 +00:00
└── vendor
├── autoload.php
├── composer
│   ├── autoload_classmap.php
│   ├── autoload_namespaces.php
│   ├── autoload_psr4.php
│   ├── autoload_real.php
│   ├── autoload_static.php
│   ├── ClassLoader.php
│   ├── installed.json
│   ├── installed.php
│   ├── InstalledVersions.php
│   ├── LICENSE
│   └── platform_check.php
└── phpmailer
└── phpmailer
├── COMMITMENT
├── composer.json
├── get_oauth_token.php
├── language
│   ├── phpmailer.lang-af.php
│   ├── phpmailer.lang-ar.php
│   ├── phpmailer.lang-as.php
│   ├── phpmailer.lang-az.php
│   ├── phpmailer.lang-ba.php
│   ├── phpmailer.lang-be.php
│   ├── phpmailer.lang-bg.php
│   ├── phpmailer.lang-bn.php
│   ├── phpmailer.lang-ca.php
│   ├── phpmailer.lang-cs.php
│   ├── phpmailer.lang-da.php
│   ├── phpmailer.lang-de.php
│   ├── phpmailer.lang-el.php
│   ├── phpmailer.lang-eo.php
│   ├── phpmailer.lang-es.php
│   ├── phpmailer.lang-et.php
│   ├── phpmailer.lang-fa.php
│   ├── phpmailer.lang-fi.php
│   ├── phpmailer.lang-fo.php
│   ├── phpmailer.lang-fr.php
│   ├── phpmailer.lang-gl.php
│   ├── phpmailer.lang-he.php
│   ├── phpmailer.lang-hi.php
│   ├── phpmailer.lang-hr.php
│   ├── phpmailer.lang-hu.php
│   ├── phpmailer.lang-hy.php
│   ├── phpmailer.lang-id.php
│   ├── phpmailer.lang-it.php
│   ├── phpmailer.lang-ja.php
│   ├── phpmailer.lang-ka.php
│   ├── phpmailer.lang-ko.php
│   ├── phpmailer.lang-ku.php
│   ├── phpmailer.lang-lt.php
│   ├── phpmailer.lang-lv.php
│   ├── phpmailer.lang-mg.php
│   ├── phpmailer.lang-mn.php
│   ├── phpmailer.lang-ms.php
│   ├── phpmailer.lang-nb.php
│   ├── phpmailer.lang-nl.php
│   ├── phpmailer.lang-pl.php
│   ├── phpmailer.lang-pt_br.php
│   ├── phpmailer.lang-pt.php
│   ├── phpmailer.lang-ro.php
│   ├── phpmailer.lang-ru.php
│   ├── phpmailer.lang-si.php
│   ├── phpmailer.lang-sk.php
│   ├── phpmailer.lang-sl.php
│   ├── phpmailer.lang-sr_latn.php
│   ├── phpmailer.lang-sr.php
│   ├── phpmailer.lang-sv.php
│   ├── phpmailer.lang-tl.php
│   ├── phpmailer.lang-tr.php
│   ├── phpmailer.lang-uk.php
│   ├── phpmailer.lang-ur.php
│   ├── phpmailer.lang-vi.php
│   ├── phpmailer.lang-zh_cn.php
│   └── phpmailer.lang-zh.php
├── LICENSE
├── README.md
├── SECURITY.md
├── SMTPUTF8.md
├── src
│   ├── DSNConfigurator.php
│   ├── Exception.php
│   ├── OAuth.php
│   ├── OAuthTokenProvider.php
│   ├── PHPMailer.php
│   ├── POP3.php
│   └── SMTP.php
└── VERSION
2026-07-01 10:56:55 +00:00
2026-07-02 10:14:49 +00:00
13 directories, 106 files
tree > structure.txt