├── .distignore ├── .env.example ├── .gitignore ├── .htaccess ├── .htaccess.example ├── .nginx.conf.example ├── LICENSE ├── README.md ├── app ├── Controllers │ ├── Admin │ │ ├── CmsAdminController.php │ │ ├── LanguagesController.php │ │ ├── MessagesController.php │ │ ├── NotificationsController.php │ │ ├── RecensioniAdminController.php │ │ └── StatsController.php │ ├── AuthController.php │ ├── AutoriApiController.php │ ├── AutoriController.php │ ├── CmsController.php │ ├── CollocazioneController.php │ ├── ContactController.php │ ├── CookiesController.php │ ├── CopyController.php │ ├── CoverController.php │ ├── CsvImportController.php │ ├── DashboardController.php │ ├── DeweyApiController.php │ ├── EditoriApiController.php │ ├── EditorsController.php │ ├── EventsController.php │ ├── FrontendController.php │ ├── GeneriApiController.php │ ├── GeneriController.php │ ├── LanguageController.php │ ├── LibriApiController.php │ ├── LibriController.php │ ├── LoanApprovalController.php │ ├── MaintenanceController.php │ ├── PasswordController.php │ ├── PluginController.php │ ├── PrestitiApiController.php │ ├── PrestitiController.php │ ├── PrivacyController.php │ ├── ProfileController.php │ ├── PublicApiController.php │ ├── RecensioniController.php │ ├── RegistrationController.php │ ├── ReservationManager.php │ ├── ReservationsAdminController.php │ ├── ReservationsController.php │ ├── ScrapeController.php │ ├── SearchController.php │ ├── SecurityLogsController.php │ ├── SeoController.php │ ├── SettingsController.php │ ├── ThemeController.php │ ├── UpdateController.php │ ├── UserActionsController.php │ ├── UserDashboardController.php │ ├── UserWishlistController.php │ ├── UsersController.php │ └── UtentiApiController.php ├── Middleware │ ├── AdminAuthMiddleware.php │ ├── ApiKeyMiddleware.php │ ├── AuthMiddleware.php │ ├── CsrfMiddleware.php │ └── RateLimitMiddleware.php ├── Models │ ├── ApiKeyRepository.php │ ├── AuthorRepository.php │ ├── BookRepository.php │ ├── CollocationRepository.php │ ├── CopyRepository.php │ ├── DashboardStats.php │ ├── GenereRepository.php │ ├── Language.php │ ├── LoanRepository.php │ ├── PublisherRepository.php │ ├── SettingsRepository.php │ ├── TaxonomyRepository.php │ └── UserRepository.php ├── Repositories │ └── RecensioniRepository.php ├── Routes │ └── web.php ├── Support │ ├── AuthorNormalizer.php │ ├── AuthorizationHelper.php │ ├── BookDataMerger.php │ ├── Branding.php │ ├── CmsHelper.php │ ├── ConfigStore.php │ ├── ContentSanitizer.php │ ├── Csrf.php │ ├── CsrfHelper.php │ ├── DataIntegrity.php │ ├── DateHelper.php │ ├── DeweyAutoPopulator.php │ ├── EmailService.php │ ├── GenreHelper.php │ ├── HookManager.php │ ├── Hooks.php │ ├── HtmlHelper.php │ ├── I18n.php │ ├── IcsGenerator.php │ ├── InputValidator.php │ ├── Log.php │ ├── Mailer.php │ ├── MaintenanceService.php │ ├── MergeHelper.php │ ├── NotificationService.php │ ├── PluginManager.php │ ├── RateLimiter.php │ ├── RouteTranslator.php │ ├── SecureLogger.php │ ├── SettingsMailTemplates.php │ ├── SitemapGenerator.php │ ├── ThemeColorizer.php │ ├── ThemeManager.php │ └── Updater.php ├── Views │ ├── admin │ │ ├── cms-edit.php │ │ ├── csv_import.php │ │ ├── integrity_report.php │ │ ├── languages │ │ │ ├── create.php │ │ │ ├── edit-routes.php │ │ │ ├── edit.php │ │ │ └── index.php │ │ ├── notifications.php │ │ ├── pending_loans.php │ │ ├── plugins.php │ │ ├── recensioni │ │ │ └── index.php │ │ ├── security_logs.php │ │ ├── settings.php │ │ ├── stats.php │ │ ├── theme-customize.php │ │ ├── themes.php │ │ └── updates.php │ ├── auth │ │ ├── forgot-password.php │ │ ├── forgot_password.php │ │ ├── login.php │ │ ├── register.php │ │ ├── register_success.php │ │ ├── reset-password.php │ │ └── reset_password.php │ ├── autori │ │ ├── crea_autore.php │ │ ├── index.php │ │ ├── modifica_autore.php │ │ └── scheda_autore.php │ ├── cms │ │ └── edit-home.php │ ├── collocazione │ │ └── index.php │ ├── dashboard │ │ └── index.php │ ├── editori │ │ ├── crea_editore.php │ │ ├── index.php │ │ ├── modifica_editore.php │ │ └── scheda_editore.php │ ├── errors │ │ ├── 404.php │ │ └── 500.php │ ├── events │ │ ├── form.php │ │ └── index.php │ ├── frontend │ │ ├── archive.php │ │ ├── book-detail.php │ │ ├── catalog-grid.php │ │ ├── catalog.php │ │ ├── cms-page.php │ │ ├── contact.php │ │ ├── cookies-page.php │ │ ├── event-detail.php │ │ ├── events.php │ │ ├── home-books-grid.php │ │ ├── home-sections │ │ │ ├── cta.php │ │ │ ├── events.php │ │ │ ├── features_title.php │ │ │ ├── genre_carousel.php │ │ │ ├── hero.php │ │ │ ├── latest_books_title.php │ │ │ └── text_content.php │ │ ├── home.php │ │ ├── layout.php │ │ └── privacy-page.php │ ├── generi │ │ ├── crea_genere.php │ │ ├── dettaglio_genere.php │ │ └── index.php │ ├── layout.php │ ├── libri │ │ ├── crea_libro.php │ │ ├── index.php │ │ ├── modifica_libro.php │ │ ├── partials │ │ │ └── book_form.php │ │ └── scheda_libro.php │ ├── partials │ │ ├── cookie-banner.php │ │ ├── language-switcher.php │ │ └── loan-actions-swal.php │ ├── prenotazioni │ │ ├── crea_prenotazione.php │ │ ├── index.php │ │ └── modifica_prenotazione.php │ ├── prestiti │ │ ├── crea_prestito.php │ │ ├── dettagli_prestito.php │ │ ├── index.php │ │ ├── modifica_prestito.php │ │ └── restituito_prestito.php │ ├── profile │ │ ├── index.php │ │ ├── reservations.php │ │ └── wishlist.php │ ├── settings │ │ ├── advanced-tab.php │ │ ├── contacts-tab.php │ │ ├── index.php │ │ ├── messages-tab.php │ │ └── privacy-tab.php │ ├── user_dashboard │ │ ├── index.php │ │ └── prenotazioni.php │ ├── user_layout.php │ └── utenti │ │ ├── crea_utente.php │ │ ├── dettagli_utente.php │ │ ├── index.php │ │ └── modifica_utente.php └── helpers.php ├── bin ├── build-release.sh └── setup-permissions.sh ├── composer.json ├── composer.lock ├── config.json ├── config ├── container.php ├── default_texts.php └── settings.php ├── cron └── automatic-notifications.php ├── data └── dewey │ ├── dewey_completo_en.json │ ├── dewey_completo_it.json │ └── levels.json ├── docs ├── COMPLETE_HOOKS_SYSTEM.md ├── CREATING_UPDATES.md ├── PLUGIN_EXAMPLES.md ├── PLUGIN_HOOKS.md ├── PLUGIN_SYSTEM.md ├── README.MD ├── SEO_IMPLEMENTATION_TESTING.md ├── api.MD ├── books.png ├── catalog.png ├── collocazione.MD ├── dashboard.png ├── examples │ └── example-plugin │ │ ├── BookRatingPlugin.php │ │ ├── README.md │ │ ├── classes │ │ └── BookRatingBookHandler.php │ │ └── plugin.json ├── frontend │ ├── README.md │ ├── catalogo.md │ ├── home.md │ ├── login.md │ ├── prenotazioni.md │ ├── register.md │ ├── scheda_libro.md │ └── wishlist.md ├── funzioni.md ├── inserimento_libri.MD ├── installation.MD ├── libri.MD ├── lingue_traduzioni.md ├── modifica_libro.MD ├── review.MD ├── scheda_libro.MD ├── settings.MD ├── stampa_etichette.MD └── utenti.md ├── frontend ├── css │ ├── bootstrap-overrides.css │ ├── flatpickr-custom.css │ ├── input.css │ └── modern-enhancements.css ├── js │ ├── flatpickr-init.js │ ├── index.js │ └── vendor.js ├── package.json ├── postcss.config.js ├── tailwind.config.js └── webpack.config.js ├── index.php ├── installer ├── .htaccess ├── README.md ├── assets │ ├── installer.js │ └── style.css ├── classes │ ├── Installer.php │ └── Validator.php ├── database │ ├── data_en_US.sql │ ├── data_it_IT.sql │ ├── indexes_optimization.sql │ ├── indexes_optimization_mysql.sql │ ├── migrations │ │ └── migrate_0.3.0.sql │ ├── schema.sql │ └── triggers.sql ├── index.php ├── plugins │ └── dewey-editor.zip └── steps │ ├── step0.php │ ├── step1.php │ ├── step2.php │ ├── step3.php │ ├── step4.php │ ├── step5.php │ ├── step6.php │ └── step7.php ├── internal ├── .gitignore └── README.md ├── locale ├── en_US.json ├── it_IT.json ├── routes_en_US.json └── routes_it_IT.json ├── package.json ├── php.ini.recommended ├── public ├── .htaccess ├── .htaccess.dist ├── .htaccess.example ├── assets │ ├── 06954c913fa69c107e01.woff │ ├── 07e0e0017a987f6c727e.woff │ ├── 1104236696a5d2d1f236.woff2 │ ├── 111844ddb503252b7554.woff2 │ ├── 1902b077b119906b31af.woff2 │ ├── 1c5c7716b05754cb4eab.woff2 │ ├── 2ea1079c0069eb040a52.woff │ ├── 354.bundle.js │ ├── 418.bundle.js │ ├── 5014db633e71a7741bf5.woff │ ├── 661.bundle.js │ ├── 6651ca189ca8f1d3553a.woff │ ├── 69a8d1d484967aba2389.woff2 │ ├── 6f05ca9ab7b5345dbc07.woff2 │ ├── 8ae0d37556ff1e685de2.woff2 │ ├── 9bc67eff47e237863460.woff │ ├── b7c27c60f848f2083f45.woff2 │ ├── books.jpg │ ├── brand │ │ ├── logo.png │ │ ├── logo_small.png │ │ ├── pinakes.png │ │ └── social.jpg │ ├── c73ae7252669254d2588.woff │ ├── css │ │ ├── silktide-consent-manager.css │ │ ├── sortable.min.css │ │ └── swal-theme.css │ ├── d2cf8417dfce77f8f2be.woff2 │ ├── e25d8fa1cf6e38254bbe.woff │ ├── e4340c52a50e727c6afa.woff2 │ ├── eb229bb9406cc043d5a4.woff2 │ ├── eca1e21531598d5db58f.woff2 │ ├── ecd3161813560194fe4f.woff2 │ ├── f10265da6bd8d66999ac.woff │ ├── flatpickr-custom.css │ ├── flatpickr-init.js │ ├── fullcalendar.min.js │ ├── grid-01.svg │ ├── js │ │ ├── csrf-helper.js │ │ ├── silktide-consent-manager.js │ │ ├── sortable.min.js │ │ ├── swal-config.js │ │ └── verify-libraries.js │ ├── main.bundle.js │ ├── main.css │ ├── star-rating │ │ ├── dist │ │ │ ├── star-rating.cjs.js │ │ │ ├── star-rating.css │ │ │ ├── star-rating.esm.js │ │ │ ├── star-rating.esm.min.js │ │ │ ├── star-rating.js │ │ │ ├── star-rating.min.css │ │ │ └── star-rating.min.js │ │ └── img │ │ │ ├── star-empty.svg │ │ │ └── star-full.svg │ ├── tinymce │ │ ├── README.md │ │ ├── bower.json │ │ ├── composer.json │ │ ├── icons │ │ │ └── default │ │ │ │ ├── icons.js │ │ │ │ ├── icons.min.js │ │ │ │ └── index.js │ │ ├── license.md │ │ ├── models │ │ │ └── dom │ │ │ │ ├── index.js │ │ │ │ ├── model.js │ │ │ │ └── model.min.js │ │ ├── notices.txt │ │ ├── package.json │ │ ├── plugins │ │ │ ├── accordion │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── advlist │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── anchor │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autolink │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autoresize │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── autosave │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── charmap │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── code │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── codesample │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── directionality │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── emoticons │ │ │ │ ├── index.js │ │ │ │ ├── js │ │ │ │ │ ├── emojiimages.js │ │ │ │ │ ├── emojiimages.min.js │ │ │ │ │ ├── emojis.js │ │ │ │ │ └── emojis.min.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── fullscreen │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── help │ │ │ │ ├── index.js │ │ │ │ ├── js │ │ │ │ │ └── i18n │ │ │ │ │ │ └── keynav │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg-BG.js │ │ │ │ │ │ ├── bg_BG.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-FR.js │ │ │ │ │ │ ├── fr_FR.js │ │ │ │ │ │ ├── he-IL.js │ │ │ │ │ │ ├── he_IL.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu-HU.js │ │ │ │ │ │ ├── hu_HU.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── kk.js │ │ │ │ │ │ ├── ko-KR.js │ │ │ │ │ │ ├── ko_KR.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb-NO.js │ │ │ │ │ │ ├── nb_NO.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ ├── pt-PT.js │ │ │ │ │ │ ├── pt_BR.js │ │ │ │ │ │ ├── pt_PT.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl-SI.js │ │ │ │ │ │ ├── sl_SI.js │ │ │ │ │ │ ├── sv-SE.js │ │ │ │ │ │ ├── sv_SE.js │ │ │ │ │ │ ├── th-TH.js │ │ │ │ │ │ ├── th_TH.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ ├── zh-TW.js │ │ │ │ │ │ ├── zh_CN.js │ │ │ │ │ │ └── zh_TW.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── image │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── importcss │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── insertdatetime │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── link │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── lists │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── media │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── nonbreaking │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── pagebreak │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── preview │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── quickbars │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── save │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── searchreplace │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── table │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── visualblocks │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ ├── visualchars │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ │ └── wordcount │ │ │ │ ├── index.js │ │ │ │ ├── plugin.js │ │ │ │ └── plugin.min.js │ │ ├── skins │ │ │ ├── content │ │ │ │ ├── dark │ │ │ │ │ ├── content.css │ │ │ │ │ ├── content.js │ │ │ │ │ ├── content.min.css │ │ │ │ │ ├── content.min.ts │ │ │ │ │ └── content.ts │ │ │ │ ├── default │ │ │ │ │ ├── content.css │ │ │ │ │ ├── content.js │ │ │ │ │ ├── content.min.css │ │ │ │ │ ├── content.min.ts │ │ │ │ │ └── content.ts │ │ │ │ ├── document │ │ │ │ │ ├── content.css │ │ │ │ │ ├── content.js │ │ │ │ │ ├── content.min.css │ │ │ │ │ ├── content.min.ts │ │ │ │ │ └── content.ts │ │ │ │ ├── tinymce-5-dark │ │ │ │ │ ├── content.css │ │ │ │ │ ├── content.js │ │ │ │ │ ├── content.min.css │ │ │ │ │ ├── content.min.ts │ │ │ │ │ └── content.ts │ │ │ │ ├── tinymce-5 │ │ │ │ │ ├── content.css │ │ │ │ │ ├── content.js │ │ │ │ │ ├── content.min.css │ │ │ │ │ ├── content.min.ts │ │ │ │ │ └── content.ts │ │ │ │ └── writer │ │ │ │ │ ├── content.css │ │ │ │ │ ├── content.js │ │ │ │ │ ├── content.min.css │ │ │ │ │ ├── content.min.ts │ │ │ │ │ └── content.ts │ │ │ └── ui │ │ │ │ ├── oxide-dark │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.js │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.inline.min.ts │ │ │ │ ├── content.inline.ts │ │ │ │ ├── content.js │ │ │ │ ├── content.min.css │ │ │ │ ├── content.min.ts │ │ │ │ ├── content.ts │ │ │ │ ├── skin.css │ │ │ │ ├── skin.js │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.min.ts │ │ │ │ ├── skin.shadowdom.css │ │ │ │ ├── skin.shadowdom.js │ │ │ │ ├── skin.shadowdom.min.css │ │ │ │ ├── skin.shadowdom.min.ts │ │ │ │ ├── skin.shadowdom.ts │ │ │ │ └── skin.ts │ │ │ │ ├── oxide │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.js │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.inline.min.ts │ │ │ │ ├── content.inline.ts │ │ │ │ ├── content.js │ │ │ │ ├── content.min.css │ │ │ │ ├── content.min.ts │ │ │ │ ├── content.ts │ │ │ │ ├── skin.css │ │ │ │ ├── skin.js │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.min.ts │ │ │ │ ├── skin.shadowdom.css │ │ │ │ ├── skin.shadowdom.js │ │ │ │ ├── skin.shadowdom.min.css │ │ │ │ ├── skin.shadowdom.min.ts │ │ │ │ ├── skin.shadowdom.ts │ │ │ │ └── skin.ts │ │ │ │ ├── tinymce-5-dark │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.js │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.inline.min.ts │ │ │ │ ├── content.inline.ts │ │ │ │ ├── content.js │ │ │ │ ├── content.min.css │ │ │ │ ├── content.min.ts │ │ │ │ ├── content.ts │ │ │ │ ├── skin.css │ │ │ │ ├── skin.js │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.min.ts │ │ │ │ ├── skin.shadowdom.css │ │ │ │ ├── skin.shadowdom.js │ │ │ │ ├── skin.shadowdom.min.css │ │ │ │ ├── skin.shadowdom.min.ts │ │ │ │ ├── skin.shadowdom.ts │ │ │ │ └── skin.ts │ │ │ │ └── tinymce-5 │ │ │ │ ├── content.css │ │ │ │ ├── content.inline.css │ │ │ │ ├── content.inline.js │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.inline.min.ts │ │ │ │ ├── content.inline.ts │ │ │ │ ├── content.js │ │ │ │ ├── content.min.css │ │ │ │ ├── content.min.ts │ │ │ │ ├── content.ts │ │ │ │ ├── skin.css │ │ │ │ ├── skin.js │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.min.ts │ │ │ │ ├── skin.shadowdom.css │ │ │ │ ├── skin.shadowdom.js │ │ │ │ ├── skin.shadowdom.min.css │ │ │ │ ├── skin.shadowdom.min.ts │ │ │ │ ├── skin.shadowdom.ts │ │ │ │ └── skin.ts │ │ ├── themes │ │ │ └── silver │ │ │ │ ├── index.js │ │ │ │ ├── theme.js │ │ │ │ └── theme.min.js │ │ ├── tinymce.d.ts │ │ ├── tinymce.js │ │ └── tinymce.min.js │ ├── vendor.bundle.js │ ├── vendor.css │ ├── vendor │ │ ├── green-audio-player │ │ │ ├── css │ │ │ │ └── green-audio-player.min.css │ │ │ └── js │ │ │ │ └── green-audio-player.min.js │ │ └── sortablejs │ │ │ └── Sortable.min.js │ ├── vendors-node_modules_canvg_lib_index_es_js.bundle.js │ ├── vendors-node_modules_dompurify_dist_purify_es_mjs.bundle.js │ └── vendors-node_modules_html2canvas_dist_html2canvas_js.bundle.js ├── favicon.ico ├── favicon.svg ├── index.php └── sitemap.xml ├── resources └── css │ └── auth.css ├── router.php ├── scripts ├── copy-vendor-assets.js ├── generate-sitemap.php ├── maintenance.php ├── migrate-add-cms-locale-column.php ├── migrate-add-languages-table.php └── migrate-email-templates-i18n.php ├── storage ├── .gitignore ├── .htaccess ├── backups │ ├── .gitkeep │ └── .htaccess ├── calendar │ ├── .gitkeep │ └── .htaccess ├── logs │ └── .gitkeep ├── plugins │ ├── api-book-scraper │ │ ├── ApiBookScraperPlugin.php │ │ ├── README.md │ │ ├── SERVER_IMPLEMENTATION_GUIDE.md │ │ ├── plugin.json │ │ ├── views │ │ │ └── settings.php │ │ └── wrapper.php │ ├── dewey-editor │ │ ├── DeweyEditorPlugin.php │ │ ├── classes │ │ │ └── DeweyValidator.php │ │ ├── plugin.json │ │ ├── views │ │ │ └── editor.php │ │ └── wrapper.php │ ├── digital-library │ │ ├── DigitalLibraryPlugin.php │ │ ├── README.md │ │ ├── assets │ │ │ └── css │ │ │ │ └── digital-library.css │ │ ├── plugin.json │ │ ├── views │ │ │ ├── admin-form-fields.php │ │ │ ├── badge-icons.php │ │ │ ├── frontend-buttons.php │ │ │ └── frontend-player.php │ │ └── wrapper.php │ ├── open-library │ │ ├── FLOW.md │ │ ├── INSTALLATION.md │ │ ├── OpenLibraryPlugin.php │ │ ├── README.md │ │ ├── demo.php │ │ ├── plugin.json │ │ ├── test.php │ │ └── wrapper.php │ └── z39-server │ │ ├── EXAMPLES.md │ │ ├── INSTALLATION.md │ │ ├── README.md │ │ ├── Z39ServerPlugin.php │ │ ├── classes │ │ ├── CQLParser.php │ │ ├── DublinCoreFormatter.php │ │ ├── Exceptions │ │ │ ├── CQLException.php │ │ │ ├── DatabaseException.php │ │ │ ├── InvalidCQLSyntaxException.php │ │ │ ├── SRUQueryException.php │ │ │ ├── UnsupportedIndexException.php │ │ │ └── UnsupportedRelationException.php │ │ ├── MARCXMLFormatter.php │ │ ├── MODSFormatter.php │ │ ├── RateLimiter.php │ │ ├── RecordFormatter.php │ │ ├── SRUServer.php │ │ ├── SbnClient.php │ │ └── SruClient.php │ │ ├── endpoint.php │ │ ├── plugin.json │ │ └── wrapper.php ├── tmp │ └── .gitkeep └── uploads │ ├── .gitkeep │ ├── .htaccess │ └── plugins │ └── .gitkeep ├── vendor ├── autoload.php ├── composer │ ├── ClassLoader.php │ ├── InstalledVersions.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ ├── installed.json │ ├── installed.php │ └── platform_check.php ├── emleons │ └── sim-rating │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── src │ │ ├── Interfaces │ │ │ └── RendererInterface.php │ │ ├── Rating.php │ │ ├── Renderer │ │ │ ├── HtmlRenderer.php │ │ │ ├── JsonRenderer.php │ │ │ └── SvgRenderer.php │ │ └── img │ │ │ ├── banner-min.png │ │ │ ├── s1.png │ │ │ └── s2.png │ │ └── vendor │ │ ├── autoload.php │ │ ├── bin │ │ ├── php-parse │ │ └── phpunit │ │ ├── composer │ │ ├── ClassLoader.php │ │ ├── InstalledVersions.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── installed.json │ │ └── installed.php │ │ ├── myclabs │ │ └── deep-copy │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── DeepCopy │ │ │ ├── DeepCopy.php │ │ │ ├── Exception │ │ │ ├── CloneException.php │ │ │ └── PropertyException.php │ │ │ ├── Filter │ │ │ ├── ChainableFilter.php │ │ │ ├── Doctrine │ │ │ │ ├── DoctrineCollectionFilter.php │ │ │ │ ├── DoctrineEmptyCollectionFilter.php │ │ │ │ └── DoctrineProxyFilter.php │ │ │ ├── Filter.php │ │ │ ├── KeepFilter.php │ │ │ ├── ReplaceFilter.php │ │ │ └── SetNullFilter.php │ │ │ ├── Matcher │ │ │ ├── Doctrine │ │ │ │ └── DoctrineProxyMatcher.php │ │ │ ├── Matcher.php │ │ │ ├── PropertyMatcher.php │ │ │ ├── PropertyNameMatcher.php │ │ │ └── PropertyTypeMatcher.php │ │ │ ├── Reflection │ │ │ └── ReflectionHelper.php │ │ │ ├── TypeFilter │ │ │ ├── Date │ │ │ │ ├── DateIntervalFilter.php │ │ │ │ └── DatePeriodFilter.php │ │ │ ├── ReplaceFilter.php │ │ │ ├── ShallowCopyFilter.php │ │ │ ├── Spl │ │ │ │ ├── ArrayObjectFilter.php │ │ │ │ ├── SplDoublyLinkedList.php │ │ │ │ └── SplDoublyLinkedListFilter.php │ │ │ └── TypeFilter.php │ │ │ ├── TypeMatcher │ │ │ └── TypeMatcher.php │ │ │ └── deep_copy.php │ │ ├── nikic │ │ └── php-parser │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ └── php-parse │ │ │ ├── composer.json │ │ │ └── lib │ │ │ └── PhpParser │ │ │ ├── Builder.php │ │ │ ├── Builder │ │ │ ├── ClassConst.php │ │ │ ├── Class_.php │ │ │ ├── Declaration.php │ │ │ ├── EnumCase.php │ │ │ ├── Enum_.php │ │ │ ├── FunctionLike.php │ │ │ ├── Function_.php │ │ │ ├── Interface_.php │ │ │ ├── Method.php │ │ │ ├── Namespace_.php │ │ │ ├── Param.php │ │ │ ├── Property.php │ │ │ ├── TraitUse.php │ │ │ ├── TraitUseAdaptation.php │ │ │ ├── Trait_.php │ │ │ └── Use_.php │ │ │ ├── BuilderFactory.php │ │ │ ├── BuilderHelpers.php │ │ │ ├── Comment.php │ │ │ ├── Comment │ │ │ └── Doc.php │ │ │ ├── ConstExprEvaluationException.php │ │ │ ├── ConstExprEvaluator.php │ │ │ ├── Error.php │ │ │ ├── ErrorHandler.php │ │ │ ├── ErrorHandler │ │ │ ├── Collecting.php │ │ │ └── Throwing.php │ │ │ ├── Internal │ │ │ ├── DiffElem.php │ │ │ ├── Differ.php │ │ │ ├── PrintableNewAnonClassNode.php │ │ │ ├── TokenPolyfill.php │ │ │ └── TokenStream.php │ │ │ ├── JsonDecoder.php │ │ │ ├── Lexer.php │ │ │ ├── Lexer │ │ │ ├── Emulative.php │ │ │ └── TokenEmulator │ │ │ │ ├── AsymmetricVisibilityTokenEmulator.php │ │ │ │ ├── AttributeEmulator.php │ │ │ │ ├── EnumTokenEmulator.php │ │ │ │ ├── ExplicitOctalEmulator.php │ │ │ │ ├── KeywordEmulator.php │ │ │ │ ├── MatchTokenEmulator.php │ │ │ │ ├── NullsafeTokenEmulator.php │ │ │ │ ├── PropertyTokenEmulator.php │ │ │ │ ├── ReadonlyFunctionTokenEmulator.php │ │ │ │ ├── ReadonlyTokenEmulator.php │ │ │ │ ├── ReverseEmulator.php │ │ │ │ └── TokenEmulator.php │ │ │ ├── Modifiers.php │ │ │ ├── NameContext.php │ │ │ ├── Node.php │ │ │ ├── Node │ │ │ ├── Arg.php │ │ │ ├── ArrayItem.php │ │ │ ├── Attribute.php │ │ │ ├── AttributeGroup.php │ │ │ ├── ClosureUse.php │ │ │ ├── ComplexType.php │ │ │ ├── Const_.php │ │ │ ├── DeclareItem.php │ │ │ ├── Expr.php │ │ │ ├── Expr │ │ │ │ ├── ArrayDimFetch.php │ │ │ │ ├── ArrayItem.php │ │ │ │ ├── Array_.php │ │ │ │ ├── ArrowFunction.php │ │ │ │ ├── Assign.php │ │ │ │ ├── AssignOp.php │ │ │ │ ├── AssignOp │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ ├── Concat.php │ │ │ │ │ ├── Div.php │ │ │ │ │ ├── Minus.php │ │ │ │ │ ├── Mod.php │ │ │ │ │ ├── Mul.php │ │ │ │ │ ├── Plus.php │ │ │ │ │ ├── Pow.php │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ └── ShiftRight.php │ │ │ │ ├── AssignRef.php │ │ │ │ ├── BinaryOp.php │ │ │ │ ├── BinaryOp │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ ├── BooleanAnd.php │ │ │ │ │ ├── BooleanOr.php │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ ├── Concat.php │ │ │ │ │ ├── Div.php │ │ │ │ │ ├── Equal.php │ │ │ │ │ ├── Greater.php │ │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ │ ├── Identical.php │ │ │ │ │ ├── LogicalAnd.php │ │ │ │ │ ├── LogicalOr.php │ │ │ │ │ ├── LogicalXor.php │ │ │ │ │ ├── Minus.php │ │ │ │ │ ├── Mod.php │ │ │ │ │ ├── Mul.php │ │ │ │ │ ├── NotEqual.php │ │ │ │ │ ├── NotIdentical.php │ │ │ │ │ ├── Plus.php │ │ │ │ │ ├── Pow.php │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ ├── ShiftRight.php │ │ │ │ │ ├── Smaller.php │ │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ │ └── Spaceship.php │ │ │ │ ├── BitwiseNot.php │ │ │ │ ├── BooleanNot.php │ │ │ │ ├── CallLike.php │ │ │ │ ├── Cast.php │ │ │ │ ├── Cast │ │ │ │ │ ├── Array_.php │ │ │ │ │ ├── Bool_.php │ │ │ │ │ ├── Double.php │ │ │ │ │ ├── Int_.php │ │ │ │ │ ├── Object_.php │ │ │ │ │ ├── String_.php │ │ │ │ │ └── Unset_.php │ │ │ │ ├── ClassConstFetch.php │ │ │ │ ├── Clone_.php │ │ │ │ ├── Closure.php │ │ │ │ ├── ClosureUse.php │ │ │ │ ├── ConstFetch.php │ │ │ │ ├── Empty_.php │ │ │ │ ├── Error.php │ │ │ │ ├── ErrorSuppress.php │ │ │ │ ├── Eval_.php │ │ │ │ ├── Exit_.php │ │ │ │ ├── FuncCall.php │ │ │ │ ├── Include_.php │ │ │ │ ├── Instanceof_.php │ │ │ │ ├── Isset_.php │ │ │ │ ├── List_.php │ │ │ │ ├── Match_.php │ │ │ │ ├── MethodCall.php │ │ │ │ ├── New_.php │ │ │ │ ├── NullsafeMethodCall.php │ │ │ │ ├── NullsafePropertyFetch.php │ │ │ │ ├── PostDec.php │ │ │ │ ├── PostInc.php │ │ │ │ ├── PreDec.php │ │ │ │ ├── PreInc.php │ │ │ │ ├── Print_.php │ │ │ │ ├── PropertyFetch.php │ │ │ │ ├── ShellExec.php │ │ │ │ ├── StaticCall.php │ │ │ │ ├── StaticPropertyFetch.php │ │ │ │ ├── Ternary.php │ │ │ │ ├── Throw_.php │ │ │ │ ├── UnaryMinus.php │ │ │ │ ├── UnaryPlus.php │ │ │ │ ├── Variable.php │ │ │ │ ├── YieldFrom.php │ │ │ │ └── Yield_.php │ │ │ ├── FunctionLike.php │ │ │ ├── Identifier.php │ │ │ ├── InterpolatedStringPart.php │ │ │ ├── IntersectionType.php │ │ │ ├── MatchArm.php │ │ │ ├── Name.php │ │ │ ├── Name │ │ │ │ ├── FullyQualified.php │ │ │ │ └── Relative.php │ │ │ ├── NullableType.php │ │ │ ├── Param.php │ │ │ ├── PropertyHook.php │ │ │ ├── PropertyItem.php │ │ │ ├── Scalar.php │ │ │ ├── Scalar │ │ │ │ ├── DNumber.php │ │ │ │ ├── Encapsed.php │ │ │ │ ├── EncapsedStringPart.php │ │ │ │ ├── Float_.php │ │ │ │ ├── Int_.php │ │ │ │ ├── InterpolatedString.php │ │ │ │ ├── LNumber.php │ │ │ │ ├── MagicConst.php │ │ │ │ ├── MagicConst │ │ │ │ │ ├── Class_.php │ │ │ │ │ ├── Dir.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Function_.php │ │ │ │ │ ├── Line.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ ├── Property.php │ │ │ │ │ └── Trait_.php │ │ │ │ └── String_.php │ │ │ ├── StaticVar.php │ │ │ ├── Stmt.php │ │ │ ├── Stmt │ │ │ │ ├── Block.php │ │ │ │ ├── Break_.php │ │ │ │ ├── Case_.php │ │ │ │ ├── Catch_.php │ │ │ │ ├── ClassConst.php │ │ │ │ ├── ClassLike.php │ │ │ │ ├── ClassMethod.php │ │ │ │ ├── Class_.php │ │ │ │ ├── Const_.php │ │ │ │ ├── Continue_.php │ │ │ │ ├── DeclareDeclare.php │ │ │ │ ├── Declare_.php │ │ │ │ ├── Do_.php │ │ │ │ ├── Echo_.php │ │ │ │ ├── ElseIf_.php │ │ │ │ ├── Else_.php │ │ │ │ ├── EnumCase.php │ │ │ │ ├── Enum_.php │ │ │ │ ├── Expression.php │ │ │ │ ├── Finally_.php │ │ │ │ ├── For_.php │ │ │ │ ├── Foreach_.php │ │ │ │ ├── Function_.php │ │ │ │ ├── Global_.php │ │ │ │ ├── Goto_.php │ │ │ │ ├── GroupUse.php │ │ │ │ ├── HaltCompiler.php │ │ │ │ ├── If_.php │ │ │ │ ├── InlineHTML.php │ │ │ │ ├── Interface_.php │ │ │ │ ├── Label.php │ │ │ │ ├── Namespace_.php │ │ │ │ ├── Nop.php │ │ │ │ ├── Property.php │ │ │ │ ├── PropertyProperty.php │ │ │ │ ├── Return_.php │ │ │ │ ├── StaticVar.php │ │ │ │ ├── Static_.php │ │ │ │ ├── Switch_.php │ │ │ │ ├── TraitUse.php │ │ │ │ ├── TraitUseAdaptation.php │ │ │ │ ├── TraitUseAdaptation │ │ │ │ │ ├── Alias.php │ │ │ │ │ └── Precedence.php │ │ │ │ ├── Trait_.php │ │ │ │ ├── TryCatch.php │ │ │ │ ├── Unset_.php │ │ │ │ ├── UseUse.php │ │ │ │ ├── Use_.php │ │ │ │ └── While_.php │ │ │ ├── UnionType.php │ │ │ ├── UseItem.php │ │ │ ├── VarLikeIdentifier.php │ │ │ └── VariadicPlaceholder.php │ │ │ ├── NodeAbstract.php │ │ │ ├── NodeDumper.php │ │ │ ├── NodeFinder.php │ │ │ ├── NodeTraverser.php │ │ │ ├── NodeTraverserInterface.php │ │ │ ├── NodeVisitor.php │ │ │ ├── NodeVisitor │ │ │ ├── CloningVisitor.php │ │ │ ├── CommentAnnotatingVisitor.php │ │ │ ├── FindingVisitor.php │ │ │ ├── FirstFindingVisitor.php │ │ │ ├── NameResolver.php │ │ │ ├── NodeConnectingVisitor.php │ │ │ └── ParentConnectingVisitor.php │ │ │ ├── NodeVisitorAbstract.php │ │ │ ├── Parser.php │ │ │ ├── Parser │ │ │ ├── Php7.php │ │ │ └── Php8.php │ │ │ ├── ParserAbstract.php │ │ │ ├── ParserFactory.php │ │ │ ├── PhpVersion.php │ │ │ ├── PrettyPrinter.php │ │ │ ├── PrettyPrinter │ │ │ └── Standard.php │ │ │ ├── PrettyPrinterAbstract.php │ │ │ ├── Token.php │ │ │ └── compatibility_tokens.php │ │ ├── phar-io │ │ ├── manifest │ │ │ ├── .php-cs-fixer.dist.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── manifest.xsd │ │ │ ├── src │ │ │ │ ├── ManifestDocumentMapper.php │ │ │ │ ├── ManifestLoader.php │ │ │ │ ├── ManifestSerializer.php │ │ │ │ ├── exceptions │ │ │ │ │ ├── ElementCollectionException.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── InvalidApplicationNameException.php │ │ │ │ │ ├── InvalidEmailException.php │ │ │ │ │ ├── InvalidUrlException.php │ │ │ │ │ ├── ManifestDocumentException.php │ │ │ │ │ ├── ManifestDocumentLoadingException.php │ │ │ │ │ ├── ManifestDocumentMapperException.php │ │ │ │ │ ├── ManifestElementException.php │ │ │ │ │ ├── ManifestLoaderException.php │ │ │ │ │ └── NoEmailAddressException.php │ │ │ │ ├── values │ │ │ │ │ ├── Application.php │ │ │ │ │ ├── ApplicationName.php │ │ │ │ │ ├── Author.php │ │ │ │ │ ├── AuthorCollection.php │ │ │ │ │ ├── AuthorCollectionIterator.php │ │ │ │ │ ├── BundledComponent.php │ │ │ │ │ ├── BundledComponentCollection.php │ │ │ │ │ ├── BundledComponentCollectionIterator.php │ │ │ │ │ ├── CopyrightInformation.php │ │ │ │ │ ├── Email.php │ │ │ │ │ ├── Extension.php │ │ │ │ │ ├── Library.php │ │ │ │ │ ├── License.php │ │ │ │ │ ├── Manifest.php │ │ │ │ │ ├── PhpExtensionRequirement.php │ │ │ │ │ ├── PhpVersionRequirement.php │ │ │ │ │ ├── Requirement.php │ │ │ │ │ ├── RequirementCollection.php │ │ │ │ │ ├── RequirementCollectionIterator.php │ │ │ │ │ ├── Type.php │ │ │ │ │ └── Url.php │ │ │ │ └── xml │ │ │ │ │ ├── AuthorElement.php │ │ │ │ │ ├── AuthorElementCollection.php │ │ │ │ │ ├── BundlesElement.php │ │ │ │ │ ├── ComponentElement.php │ │ │ │ │ ├── ComponentElementCollection.php │ │ │ │ │ ├── ContainsElement.php │ │ │ │ │ ├── CopyrightElement.php │ │ │ │ │ ├── ElementCollection.php │ │ │ │ │ ├── ExtElement.php │ │ │ │ │ ├── ExtElementCollection.php │ │ │ │ │ ├── ExtensionElement.php │ │ │ │ │ ├── LicenseElement.php │ │ │ │ │ ├── ManifestDocument.php │ │ │ │ │ ├── ManifestElement.php │ │ │ │ │ ├── PhpElement.php │ │ │ │ │ └── RequiresElement.php │ │ │ └── tools │ │ │ │ └── php-cs-fixer.d │ │ │ │ ├── PhpdocSingleLineVarFixer.php │ │ │ │ └── header.txt │ │ └── version │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── BuildMetaData.php │ │ │ ├── PreReleaseSuffix.php │ │ │ ├── Version.php │ │ │ ├── VersionConstraintParser.php │ │ │ ├── VersionConstraintValue.php │ │ │ ├── VersionNumber.php │ │ │ ├── constraints │ │ │ ├── AbstractVersionConstraint.php │ │ │ ├── AndVersionConstraintGroup.php │ │ │ ├── AnyVersionConstraint.php │ │ │ ├── ExactVersionConstraint.php │ │ │ ├── GreaterThanOrEqualToVersionConstraint.php │ │ │ ├── OrVersionConstraintGroup.php │ │ │ ├── SpecificMajorAndMinorVersionConstraint.php │ │ │ ├── SpecificMajorVersionConstraint.php │ │ │ └── VersionConstraint.php │ │ │ └── exceptions │ │ │ ├── Exception.php │ │ │ ├── InvalidPreReleaseSuffixException.php │ │ │ ├── InvalidVersionException.php │ │ │ ├── NoBuildMetaDataException.php │ │ │ ├── NoPreReleaseSuffixException.php │ │ │ └── UnsupportedVersionConstraintException.php │ │ ├── phpunit │ │ ├── php-code-coverage │ │ │ ├── ChangeLog-11.0.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── CodeCoverage.php │ │ │ │ ├── Data │ │ │ │ ├── ProcessedCodeCoverageData.php │ │ │ │ └── RawCodeCoverageData.php │ │ │ │ ├── Driver │ │ │ │ ├── Driver.php │ │ │ │ ├── PcovDriver.php │ │ │ │ ├── Selector.php │ │ │ │ └── XdebugDriver.php │ │ │ │ ├── Exception │ │ │ │ ├── BranchAndPathCoverageNotSupportedException.php │ │ │ │ ├── DeadCodeDetectionNotSupportedException.php │ │ │ │ ├── DirectoryCouldNotBeCreatedException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── FileCouldNotBeWrittenException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── NoCodeCoverageDriverAvailableException.php │ │ │ │ ├── NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php │ │ │ │ ├── ParserException.php │ │ │ │ ├── PathExistsButIsNotDirectoryException.php │ │ │ │ ├── PcovNotAvailableException.php │ │ │ │ ├── ReflectionException.php │ │ │ │ ├── ReportAlreadyFinalizedException.php │ │ │ │ ├── StaticAnalysisCacheNotConfiguredException.php │ │ │ │ ├── TestIdMissingException.php │ │ │ │ ├── UnintentionallyCoveredCodeException.php │ │ │ │ ├── WriteOperationFailedException.php │ │ │ │ ├── XdebugNotAvailableException.php │ │ │ │ ├── XdebugNotEnabledException.php │ │ │ │ └── XmlException.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Node │ │ │ │ ├── AbstractNode.php │ │ │ │ ├── Builder.php │ │ │ │ ├── CrapIndex.php │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ └── Iterator.php │ │ │ │ ├── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Cobertura.php │ │ │ │ ├── Crap4j.php │ │ │ │ ├── Html │ │ │ │ │ ├── Colors.php │ │ │ │ │ ├── CustomCssFile.php │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── Renderer.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── branches.html.dist │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ ├── coverage_bar_branch.html.dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── custom.css │ │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ │ ├── octicons.css │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ ├── dashboard_branch.html.dist │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ ├── directory_branch.html.dist │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ ├── directory_item_branch.html.dist │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ ├── file_branch.html.dist │ │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ │ ├── file_item_branch.html.dist │ │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── file-code.svg │ │ │ │ │ │ └── file-directory.svg │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ │ ├── d3.min.js │ │ │ │ │ │ ├── file.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ └── nv.d3.min.js │ │ │ │ │ │ ├── line.html.dist │ │ │ │ │ │ ├── lines.html.dist │ │ │ │ │ │ ├── method_item.html.dist │ │ │ │ │ │ ├── method_item_branch.html.dist │ │ │ │ │ │ └── paths.html.dist │ │ │ │ ├── PHP.php │ │ │ │ ├── Text.php │ │ │ │ ├── Thresholds.php │ │ │ │ └── Xml │ │ │ │ │ ├── BuildInformation.php │ │ │ │ │ ├── Coverage.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── Node.php │ │ │ │ │ ├── Project.php │ │ │ │ │ ├── Report.php │ │ │ │ │ ├── Source.php │ │ │ │ │ ├── Tests.php │ │ │ │ │ ├── Totals.php │ │ │ │ │ └── Unit.php │ │ │ │ ├── StaticAnalysis │ │ │ │ ├── CacheWarmer.php │ │ │ │ ├── CachingFileAnalyser.php │ │ │ │ ├── CodeUnitFindingVisitor.php │ │ │ │ ├── ExecutableLinesFindingVisitor.php │ │ │ │ ├── FileAnalyser.php │ │ │ │ ├── IgnoredLinesFindingVisitor.php │ │ │ │ └── ParsingFileAnalyser.php │ │ │ │ ├── TestSize │ │ │ │ ├── Known.php │ │ │ │ ├── Large.php │ │ │ │ ├── Medium.php │ │ │ │ ├── Small.php │ │ │ │ ├── TestSize.php │ │ │ │ └── Unknown.php │ │ │ │ ├── TestStatus │ │ │ │ ├── Failure.php │ │ │ │ ├── Known.php │ │ │ │ ├── Success.php │ │ │ │ ├── TestStatus.php │ │ │ │ └── Unknown.php │ │ │ │ ├── Util │ │ │ │ ├── Filesystem.php │ │ │ │ └── Percentage.php │ │ │ │ └── Version.php │ │ ├── php-file-iterator │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── ExcludeIterator.php │ │ │ │ ├── Facade.php │ │ │ │ ├── Factory.php │ │ │ │ └── Iterator.php │ │ ├── php-invoker │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Invoker.php │ │ │ │ └── exceptions │ │ │ │ ├── Exception.php │ │ │ │ ├── ProcessControlExtensionNotLoadedException.php │ │ │ │ └── TimeoutException.php │ │ ├── php-text-template │ │ │ ├── .psalm │ │ │ │ ├── baseline.xml │ │ │ │ └── config.xml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Template.php │ │ │ │ └── exceptions │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ └── RuntimeException.php │ │ ├── php-timer │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Duration.php │ │ │ │ ├── ResourceUsageFormatter.php │ │ │ │ ├── Timer.php │ │ │ │ └── exceptions │ │ │ │ ├── Exception.php │ │ │ │ ├── NoActiveTimerException.php │ │ │ │ └── TimeSinceStartOfRequestNotAvailableException.php │ │ └── phpunit │ │ │ ├── ChangeLog-11.5.md │ │ │ ├── DEPRECATIONS.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── phpunit │ │ │ ├── phpunit.xsd │ │ │ ├── schema │ │ │ ├── 10.0.xsd │ │ │ ├── 10.1.xsd │ │ │ ├── 10.2.xsd │ │ │ ├── 10.3.xsd │ │ │ ├── 10.4.xsd │ │ │ ├── 10.5.xsd │ │ │ ├── 11.0.xsd │ │ │ ├── 11.1.xsd │ │ │ ├── 11.2.xsd │ │ │ ├── 11.3.xsd │ │ │ ├── 11.4.xsd │ │ │ ├── 8.5.xsd │ │ │ ├── 9.0.xsd │ │ │ ├── 9.1.xsd │ │ │ ├── 9.2.xsd │ │ │ ├── 9.3.xsd │ │ │ ├── 9.4.xsd │ │ │ └── 9.5.xsd │ │ │ └── src │ │ │ ├── Event │ │ │ ├── Dispatcher │ │ │ │ ├── CollectingDispatcher.php │ │ │ │ ├── DeferringDispatcher.php │ │ │ │ ├── DirectDispatcher.php │ │ │ │ ├── Dispatcher.php │ │ │ │ └── SubscribableDispatcher.php │ │ │ ├── Emitter │ │ │ │ ├── DispatchingEmitter.php │ │ │ │ └── Emitter.php │ │ │ ├── Events │ │ │ │ ├── Application │ │ │ │ │ ├── Finished.php │ │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ │ ├── Started.php │ │ │ │ │ └── StartedSubscriber.php │ │ │ │ ├── Event.php │ │ │ │ ├── EventCollection.php │ │ │ │ ├── EventCollectionIterator.php │ │ │ │ ├── TestRunner │ │ │ │ │ ├── BootstrapFinished.php │ │ │ │ │ ├── BootstrapFinishedSubscriber.php │ │ │ │ │ ├── ChildProcessFinished.php │ │ │ │ │ ├── ChildProcessFinishedSubscriber.php │ │ │ │ │ ├── ChildProcessStarted.php │ │ │ │ │ ├── ChildProcessStartedSubscriber.php │ │ │ │ │ ├── Configured.php │ │ │ │ │ ├── ConfiguredSubscriber.php │ │ │ │ │ ├── DeprecationTriggered.php │ │ │ │ │ ├── DeprecationTriggeredSubscriber.php │ │ │ │ │ ├── EventFacadeSealed.php │ │ │ │ │ ├── EventFacadeSealedSubscriber.php │ │ │ │ │ ├── ExecutionAborted.php │ │ │ │ │ ├── ExecutionAbortedSubscriber.php │ │ │ │ │ ├── ExecutionFinished.php │ │ │ │ │ ├── ExecutionFinishedSubscriber.php │ │ │ │ │ ├── ExecutionStarted.php │ │ │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ │ │ ├── ExtensionBootstrapped.php │ │ │ │ │ ├── ExtensionBootstrappedSubscriber.php │ │ │ │ │ ├── ExtensionLoadedFromPhar.php │ │ │ │ │ ├── ExtensionLoadedFromPharSubscriber.php │ │ │ │ │ ├── Finished.php │ │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ │ ├── GarbageCollectionDisabled.php │ │ │ │ │ ├── GarbageCollectionDisabledSubscriber.php │ │ │ │ │ ├── GarbageCollectionEnabled.php │ │ │ │ │ ├── GarbageCollectionEnabledSubscriber.php │ │ │ │ │ ├── GarbageCollectionTriggered.php │ │ │ │ │ ├── GarbageCollectionTriggeredSubscriber.php │ │ │ │ │ ├── Started.php │ │ │ │ │ ├── StartedSubscriber.php │ │ │ │ │ ├── WarningTriggered.php │ │ │ │ │ └── WarningTriggeredSubscriber.php │ │ │ │ └── TestSuite │ │ │ │ │ ├── Filtered.php │ │ │ │ │ ├── FilteredSubscriber.php │ │ │ │ │ ├── Finished.php │ │ │ │ │ ├── FinishedSubscriber.php │ │ │ │ │ ├── Loaded.php │ │ │ │ │ ├── LoadedSubscriber.php │ │ │ │ │ ├── Skipped.php │ │ │ │ │ ├── SkippedSubscriber.php │ │ │ │ │ ├── Sorted.php │ │ │ │ │ ├── SortedSubscriber.php │ │ │ │ │ ├── Started.php │ │ │ │ │ └── StartedSubscriber.php │ │ │ ├── Exception │ │ │ │ ├── EventAlreadyAssignedException.php │ │ │ │ ├── EventFacadeIsSealedException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidEventException.php │ │ │ │ ├── InvalidSubscriberException.php │ │ │ │ ├── MapError.php │ │ │ │ ├── NoComparisonFailureException.php │ │ │ │ ├── NoDataSetFromDataProviderException.php │ │ │ │ ├── NoPreviousThrowableException.php │ │ │ │ ├── NoTestCaseObjectOnCallStackException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── SubscriberTypeAlreadyRegisteredException.php │ │ │ │ ├── UnknownEventException.php │ │ │ │ ├── UnknownEventTypeException.php │ │ │ │ ├── UnknownSubscriberException.php │ │ │ │ └── UnknownSubscriberTypeException.php │ │ │ ├── Facade.php │ │ │ ├── Subscriber.php │ │ │ ├── Tracer.php │ │ │ ├── TypeMap.php │ │ │ └── Value │ │ │ │ ├── ClassMethod.php │ │ │ │ ├── ComparisonFailure.php │ │ │ │ ├── ComparisonFailureBuilder.php │ │ │ │ ├── Runtime │ │ │ │ ├── OperatingSystem.php │ │ │ │ ├── PHP.php │ │ │ │ ├── PHPUnit.php │ │ │ │ └── Runtime.php │ │ │ │ ├── Telemetry │ │ │ │ ├── Duration.php │ │ │ │ ├── GarbageCollectorStatus.php │ │ │ │ ├── GarbageCollectorStatusProvider.php │ │ │ │ ├── HRTime.php │ │ │ │ ├── Info.php │ │ │ │ ├── MemoryMeter.php │ │ │ │ ├── MemoryUsage.php │ │ │ │ ├── Php81GarbageCollectorStatusProvider.php │ │ │ │ ├── Php83GarbageCollectorStatusProvider.php │ │ │ │ ├── Snapshot.php │ │ │ │ ├── StopWatch.php │ │ │ │ ├── System.php │ │ │ │ ├── SystemMemoryMeter.php │ │ │ │ ├── SystemStopWatch.php │ │ │ │ └── SystemStopWatchWithOffset.php │ │ │ │ ├── TestSuite │ │ │ │ ├── TestSuite.php │ │ │ │ ├── TestSuiteBuilder.php │ │ │ │ ├── TestSuiteForTestClass.php │ │ │ │ ├── TestSuiteForTestMethodWithDataProvider.php │ │ │ │ └── TestSuiteWithName.php │ │ │ │ ├── Throwable.php │ │ │ │ └── ThrowableBuilder.php │ │ │ ├── Exception.php │ │ │ ├── Framework │ │ │ ├── Assert.php │ │ │ ├── Assert │ │ │ │ └── Functions.php │ │ │ ├── Attributes │ │ │ │ ├── After.php │ │ │ │ ├── AfterClass.php │ │ │ │ ├── BackupGlobals.php │ │ │ │ ├── BackupStaticProperties.php │ │ │ │ ├── Before.php │ │ │ │ ├── BeforeClass.php │ │ │ │ ├── CoversClass.php │ │ │ │ ├── CoversFunction.php │ │ │ │ ├── CoversMethod.php │ │ │ │ ├── CoversNothing.php │ │ │ │ ├── CoversTrait.php │ │ │ │ ├── DataProvider.php │ │ │ │ ├── DataProviderExternal.php │ │ │ │ ├── Depends.php │ │ │ │ ├── DependsExternal.php │ │ │ │ ├── DependsExternalUsingDeepClone.php │ │ │ │ ├── DependsExternalUsingShallowClone.php │ │ │ │ ├── DependsOnClass.php │ │ │ │ ├── DependsOnClassUsingDeepClone.php │ │ │ │ ├── DependsOnClassUsingShallowClone.php │ │ │ │ ├── DependsUsingDeepClone.php │ │ │ │ ├── DependsUsingShallowClone.php │ │ │ │ ├── DisableReturnValueGenerationForTestDoubles.php │ │ │ │ ├── DoesNotPerformAssertions.php │ │ │ │ ├── ExcludeGlobalVariableFromBackup.php │ │ │ │ ├── ExcludeStaticPropertyFromBackup.php │ │ │ │ ├── Group.php │ │ │ │ ├── IgnoreDeprecations.php │ │ │ │ ├── IgnorePhpunitDeprecations.php │ │ │ │ ├── Large.php │ │ │ │ ├── Medium.php │ │ │ │ ├── PostCondition.php │ │ │ │ ├── PreCondition.php │ │ │ │ ├── PreserveGlobalState.php │ │ │ │ ├── RequiresFunction.php │ │ │ │ ├── RequiresMethod.php │ │ │ │ ├── RequiresOperatingSystem.php │ │ │ │ ├── RequiresOperatingSystemFamily.php │ │ │ │ ├── RequiresPhp.php │ │ │ │ ├── RequiresPhpExtension.php │ │ │ │ ├── RequiresPhpunit.php │ │ │ │ ├── RequiresPhpunitExtension.php │ │ │ │ ├── RequiresSetting.php │ │ │ │ ├── RunClassInSeparateProcess.php │ │ │ │ ├── RunInSeparateProcess.php │ │ │ │ ├── RunTestsInSeparateProcesses.php │ │ │ │ ├── Small.php │ │ │ │ ├── Test.php │ │ │ │ ├── TestDox.php │ │ │ │ ├── TestWith.php │ │ │ │ ├── TestWithJson.php │ │ │ │ ├── Ticket.php │ │ │ │ ├── UsesClass.php │ │ │ │ ├── UsesFunction.php │ │ │ │ ├── UsesMethod.php │ │ │ │ ├── UsesTrait.php │ │ │ │ └── WithoutErrorHandler.php │ │ │ ├── Constraint │ │ │ │ ├── Boolean │ │ │ │ │ ├── IsFalse.php │ │ │ │ │ └── IsTrue.php │ │ │ │ ├── Callback.php │ │ │ │ ├── Cardinality │ │ │ │ │ ├── Count.php │ │ │ │ │ ├── GreaterThan.php │ │ │ │ │ ├── IsEmpty.php │ │ │ │ │ ├── LessThan.php │ │ │ │ │ └── SameSize.php │ │ │ │ ├── Constraint.php │ │ │ │ ├── Equality │ │ │ │ │ ├── IsEqual.php │ │ │ │ │ ├── IsEqualCanonicalizing.php │ │ │ │ │ ├── IsEqualIgnoringCase.php │ │ │ │ │ └── IsEqualWithDelta.php │ │ │ │ ├── Exception │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── ExceptionCode.php │ │ │ │ │ ├── ExceptionMessageIsOrContains.php │ │ │ │ │ └── ExceptionMessageMatchesRegularExpression.php │ │ │ │ ├── Filesystem │ │ │ │ │ ├── DirectoryExists.php │ │ │ │ │ ├── FileExists.php │ │ │ │ │ ├── IsReadable.php │ │ │ │ │ └── IsWritable.php │ │ │ │ ├── IsAnything.php │ │ │ │ ├── IsIdentical.php │ │ │ │ ├── JsonMatches.php │ │ │ │ ├── Math │ │ │ │ │ ├── IsFinite.php │ │ │ │ │ ├── IsInfinite.php │ │ │ │ │ └── IsNan.php │ │ │ │ ├── Object │ │ │ │ │ ├── ObjectEquals.php │ │ │ │ │ └── ObjectHasProperty.php │ │ │ │ ├── Operator │ │ │ │ │ ├── BinaryOperator.php │ │ │ │ │ ├── LogicalAnd.php │ │ │ │ │ ├── LogicalNot.php │ │ │ │ │ ├── LogicalOr.php │ │ │ │ │ ├── LogicalXor.php │ │ │ │ │ ├── Operator.php │ │ │ │ │ └── UnaryOperator.php │ │ │ │ ├── String │ │ │ │ │ ├── IsJson.php │ │ │ │ │ ├── RegularExpression.php │ │ │ │ │ ├── StringContains.php │ │ │ │ │ ├── StringEndsWith.php │ │ │ │ │ ├── StringEqualsStringIgnoringLineEndings.php │ │ │ │ │ ├── StringMatchesFormatDescription.php │ │ │ │ │ └── StringStartsWith.php │ │ │ │ ├── Traversable │ │ │ │ │ ├── ArrayHasKey.php │ │ │ │ │ ├── IsList.php │ │ │ │ │ ├── TraversableContains.php │ │ │ │ │ ├── TraversableContainsEqual.php │ │ │ │ │ ├── TraversableContainsIdentical.php │ │ │ │ │ └── TraversableContainsOnly.php │ │ │ │ └── Type │ │ │ │ │ ├── IsInstanceOf.php │ │ │ │ │ ├── IsNull.php │ │ │ │ │ └── IsType.php │ │ │ ├── DataProviderTestSuite.php │ │ │ ├── Exception │ │ │ │ ├── AssertionFailedError.php │ │ │ │ ├── CodeCoverageException.php │ │ │ │ ├── EmptyStringException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ExpectationFailedException.php │ │ │ │ ├── GeneratorNotSupportedException.php │ │ │ │ ├── Incomplete │ │ │ │ │ ├── IncompleteTest.php │ │ │ │ │ └── IncompleteTestError.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidCoversTargetException.php │ │ │ │ ├── InvalidDataProviderException.php │ │ │ │ ├── InvalidDependencyException.php │ │ │ │ ├── NoChildTestSuiteException.php │ │ │ │ ├── ObjectEquals │ │ │ │ │ ├── ActualValueIsNotAnObjectException.php │ │ │ │ │ ├── ComparisonMethodDoesNotAcceptParameterTypeException.php │ │ │ │ │ ├── ComparisonMethodDoesNotDeclareBoolReturnTypeException.php │ │ │ │ │ ├── ComparisonMethodDoesNotDeclareExactlyOneParameterException.php │ │ │ │ │ ├── ComparisonMethodDoesNotDeclareParameterTypeException.php │ │ │ │ │ └── ComparisonMethodDoesNotExistException.php │ │ │ │ ├── PhptAssertionFailedError.php │ │ │ │ ├── ProcessIsolationException.php │ │ │ │ ├── Skipped │ │ │ │ │ ├── SkippedTest.php │ │ │ │ │ ├── SkippedTestSuiteError.php │ │ │ │ │ └── SkippedWithMessageException.php │ │ │ │ ├── UnknownClassOrInterfaceException.php │ │ │ │ └── UnknownTypeException.php │ │ │ ├── ExecutionOrderDependency.php │ │ │ ├── MockObject │ │ │ │ ├── ConfigurableMethod.php │ │ │ │ ├── Exception │ │ │ │ │ ├── BadMethodCallException.php │ │ │ │ │ ├── CannotCloneTestDoubleForReadonlyClassException.php │ │ │ │ │ ├── CannotUseOnlyMethodsException.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── IncompatibleReturnValueException.php │ │ │ │ │ ├── MatchBuilderNotFoundException.php │ │ │ │ │ ├── MatcherAlreadyRegisteredException.php │ │ │ │ │ ├── MethodCannotBeConfiguredException.php │ │ │ │ │ ├── MethodNameAlreadyConfiguredException.php │ │ │ │ │ ├── MethodNameNotConfiguredException.php │ │ │ │ │ ├── MethodParametersAlreadyConfiguredException.php │ │ │ │ │ ├── NeverReturningMethodException.php │ │ │ │ │ ├── NoMoreReturnValuesConfiguredException.php │ │ │ │ │ ├── ReturnValueNotConfiguredException.php │ │ │ │ │ └── RuntimeException.php │ │ │ │ ├── Generator │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── CannotUseAddMethodsException.php │ │ │ │ │ │ ├── ClassIsEnumerationException.php │ │ │ │ │ │ ├── ClassIsFinalException.php │ │ │ │ │ │ ├── DuplicateMethodException.php │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ ├── InvalidMethodNameException.php │ │ │ │ │ │ ├── NameAlreadyInUseException.php │ │ │ │ │ │ ├── OriginalConstructorInvocationRequiredException.php │ │ │ │ │ │ ├── ReflectionException.php │ │ │ │ │ │ ├── RuntimeException.php │ │ │ │ │ │ ├── SoapExtensionNotAvailableException.php │ │ │ │ │ │ ├── UnknownClassException.php │ │ │ │ │ │ ├── UnknownInterfaceException.php │ │ │ │ │ │ ├── UnknownTraitException.php │ │ │ │ │ │ └── UnknownTypeException.php │ │ │ │ │ ├── Generator.php │ │ │ │ │ ├── HookedProperty.php │ │ │ │ │ ├── HookedPropertyGenerator.php │ │ │ │ │ ├── MockClass.php │ │ │ │ │ ├── MockMethod.php │ │ │ │ │ ├── MockMethodSet.php │ │ │ │ │ ├── MockTrait.php │ │ │ │ │ ├── MockType.php │ │ │ │ │ ├── TemplateLoader.php │ │ │ │ │ └── templates │ │ │ │ │ │ ├── deprecation.tpl │ │ │ │ │ │ ├── doubled_method.tpl │ │ │ │ │ │ ├── doubled_static_method.tpl │ │ │ │ │ │ ├── intersection.tpl │ │ │ │ │ │ ├── proxied_method.tpl │ │ │ │ │ │ ├── test_double_class.tpl │ │ │ │ │ │ ├── trait_class.tpl │ │ │ │ │ │ ├── wsdl_class.tpl │ │ │ │ │ │ └── wsdl_method.tpl │ │ │ │ ├── MockBuilder.php │ │ │ │ └── Runtime │ │ │ │ │ ├── Api │ │ │ │ │ ├── DoubledCloneMethod.php │ │ │ │ │ ├── ErrorCloneMethod.php │ │ │ │ │ ├── GeneratedAsMockObject.php │ │ │ │ │ ├── GeneratedAsTestStub.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── MockObjectApi.php │ │ │ │ │ ├── MutableStubApi.php │ │ │ │ │ ├── ProxiedCloneMethod.php │ │ │ │ │ ├── StubApi.php │ │ │ │ │ └── TestDoubleState.php │ │ │ │ │ ├── Builder │ │ │ │ │ ├── Identity.php │ │ │ │ │ ├── InvocationMocker.php │ │ │ │ │ ├── InvocationStubber.php │ │ │ │ │ ├── MethodNameMatch.php │ │ │ │ │ ├── ParametersMatch.php │ │ │ │ │ └── Stub.php │ │ │ │ │ ├── Interface │ │ │ │ │ ├── MockObject.php │ │ │ │ │ ├── MockObjectInternal.php │ │ │ │ │ ├── Stub.php │ │ │ │ │ └── StubInternal.php │ │ │ │ │ ├── Invocation.php │ │ │ │ │ ├── InvocationHandler.php │ │ │ │ │ ├── Matcher.php │ │ │ │ │ ├── MethodNameConstraint.php │ │ │ │ │ ├── PropertyHook │ │ │ │ │ ├── PropertyGetHook.php │ │ │ │ │ ├── PropertyHook.php │ │ │ │ │ └── PropertySetHook.php │ │ │ │ │ ├── ReturnValueGenerator.php │ │ │ │ │ ├── Rule │ │ │ │ │ ├── AnyInvokedCount.php │ │ │ │ │ ├── AnyParameters.php │ │ │ │ │ ├── InvocationOrder.php │ │ │ │ │ ├── InvokedAtLeastCount.php │ │ │ │ │ ├── InvokedAtLeastOnce.php │ │ │ │ │ ├── InvokedAtMostCount.php │ │ │ │ │ ├── InvokedCount.php │ │ │ │ │ ├── MethodName.php │ │ │ │ │ ├── Parameters.php │ │ │ │ │ └── ParametersRule.php │ │ │ │ │ └── Stub │ │ │ │ │ ├── ConsecutiveCalls.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── ReturnArgument.php │ │ │ │ │ ├── ReturnCallback.php │ │ │ │ │ ├── ReturnReference.php │ │ │ │ │ ├── ReturnSelf.php │ │ │ │ │ ├── ReturnStub.php │ │ │ │ │ ├── ReturnValueMap.php │ │ │ │ │ └── Stub.php │ │ │ ├── NativeType.php │ │ │ ├── Reorderable.php │ │ │ ├── SelfDescribing.php │ │ │ ├── Test.php │ │ │ ├── TestBuilder.php │ │ │ ├── TestCase.php │ │ │ ├── TestRunner │ │ │ │ ├── ChildProcessResultProcessor.php │ │ │ │ ├── IsolatedTestRunner.php │ │ │ │ ├── IsolatedTestRunnerRegistry.php │ │ │ │ ├── SeparateProcessTestRunner.php │ │ │ │ ├── TestRunner.php │ │ │ │ └── templates │ │ │ │ │ ├── class.tpl │ │ │ │ │ └── method.tpl │ │ │ ├── TestSize │ │ │ │ ├── Known.php │ │ │ │ ├── Large.php │ │ │ │ ├── Medium.php │ │ │ │ ├── Small.php │ │ │ │ ├── TestSize.php │ │ │ │ └── Unknown.php │ │ │ ├── TestStatus │ │ │ │ ├── Deprecation.php │ │ │ │ ├── Error.php │ │ │ │ ├── Failure.php │ │ │ │ ├── Incomplete.php │ │ │ │ ├── Known.php │ │ │ │ ├── Notice.php │ │ │ │ ├── Risky.php │ │ │ │ ├── Skipped.php │ │ │ │ ├── Success.php │ │ │ │ ├── TestStatus.php │ │ │ │ ├── Unknown.php │ │ │ │ └── Warning.php │ │ │ ├── TestSuite.php │ │ │ └── TestSuiteIterator.php │ │ │ ├── Logging │ │ │ ├── EventLogger.php │ │ │ ├── JUnit │ │ │ │ ├── JunitXmlLogger.php │ │ │ │ └── Subscriber │ │ │ │ │ ├── Subscriber.php │ │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ │ ├── TestPreparationFailedSubscriber.php │ │ │ │ │ ├── TestPreparationStartedSubscriber.php │ │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ │ ├── TestPrintedUnexpectedOutputSubscriber.php │ │ │ │ │ ├── TestRunnerExecutionFinishedSubscriber.php │ │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ │ └── TestSuiteStartedSubscriber.php │ │ │ ├── TeamCity │ │ │ │ ├── Subscriber │ │ │ │ │ ├── Subscriber.php │ │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ │ ├── TestRunnerExecutionFinishedSubscriber.php │ │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ │ ├── TestSuiteBeforeFirstTestMethodErroredSubscriber.php │ │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ │ ├── TestSuiteSkippedSubscriber.php │ │ │ │ │ └── TestSuiteStartedSubscriber.php │ │ │ │ └── TeamCityLogger.php │ │ │ └── TestDox │ │ │ │ ├── HtmlRenderer.php │ │ │ │ ├── NamePrettifier.php │ │ │ │ ├── PlainTextRenderer.php │ │ │ │ └── TestResult │ │ │ │ ├── Subscriber │ │ │ │ ├── Subscriber.php │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ ├── TestPassedSubscriber.php │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ ├── TestTriggeredPhpunitDeprecationSubscriber.php │ │ │ │ ├── TestTriggeredPhpunitErrorSubscriber.php │ │ │ │ ├── TestTriggeredPhpunitWarningSubscriber.php │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ │ ├── TestResult.php │ │ │ │ ├── TestResultCollection.php │ │ │ │ ├── TestResultCollectionIterator.php │ │ │ │ └── TestResultCollector.php │ │ │ ├── Metadata │ │ │ ├── After.php │ │ │ ├── AfterClass.php │ │ │ ├── Api │ │ │ │ ├── CodeCoverage.php │ │ │ │ ├── DataProvider.php │ │ │ │ ├── Dependencies.php │ │ │ │ ├── Groups.php │ │ │ │ ├── HookMethods.php │ │ │ │ └── Requirements.php │ │ │ ├── BackupGlobals.php │ │ │ ├── BackupStaticProperties.php │ │ │ ├── Before.php │ │ │ ├── BeforeClass.php │ │ │ ├── Covers.php │ │ │ ├── CoversClass.php │ │ │ ├── CoversDefaultClass.php │ │ │ ├── CoversFunction.php │ │ │ ├── CoversMethod.php │ │ │ ├── CoversNothing.php │ │ │ ├── CoversTrait.php │ │ │ ├── DataProvider.php │ │ │ ├── DependsOnClass.php │ │ │ ├── DependsOnMethod.php │ │ │ ├── DisableReturnValueGenerationForTestDoubles.php │ │ │ ├── DoesNotPerformAssertions.php │ │ │ ├── Exception │ │ │ │ ├── AnnotationsAreNotSupportedForInternalClassesException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidAttributeException.php │ │ │ │ ├── InvalidVersionRequirementException.php │ │ │ │ ├── NoVersionRequirementException.php │ │ │ │ └── ReflectionException.php │ │ │ ├── ExcludeGlobalVariableFromBackup.php │ │ │ ├── ExcludeStaticPropertyFromBackup.php │ │ │ ├── Group.php │ │ │ ├── IgnoreDeprecations.php │ │ │ ├── IgnorePhpunitDeprecations.php │ │ │ ├── Metadata.php │ │ │ ├── MetadataCollection.php │ │ │ ├── MetadataCollectionIterator.php │ │ │ ├── Parser │ │ │ │ ├── Annotation │ │ │ │ │ ├── DocBlock.php │ │ │ │ │ └── Registry.php │ │ │ │ ├── AnnotationParser.php │ │ │ │ ├── AttributeParser.php │ │ │ │ ├── CachingParser.php │ │ │ │ ├── Parser.php │ │ │ │ ├── ParserChain.php │ │ │ │ └── Registry.php │ │ │ ├── PostCondition.php │ │ │ ├── PreCondition.php │ │ │ ├── PreserveGlobalState.php │ │ │ ├── RequiresFunction.php │ │ │ ├── RequiresMethod.php │ │ │ ├── RequiresOperatingSystem.php │ │ │ ├── RequiresOperatingSystemFamily.php │ │ │ ├── RequiresPhp.php │ │ │ ├── RequiresPhpExtension.php │ │ │ ├── RequiresPhpunit.php │ │ │ ├── RequiresPhpunitExtension.php │ │ │ ├── RequiresSetting.php │ │ │ ├── RunClassInSeparateProcess.php │ │ │ ├── RunInSeparateProcess.php │ │ │ ├── RunTestsInSeparateProcesses.php │ │ │ ├── Test.php │ │ │ ├── TestDox.php │ │ │ ├── TestWith.php │ │ │ ├── Uses.php │ │ │ ├── UsesClass.php │ │ │ ├── UsesDefaultClass.php │ │ │ ├── UsesFunction.php │ │ │ ├── UsesMethod.php │ │ │ ├── UsesTrait.php │ │ │ ├── Version │ │ │ │ ├── ComparisonRequirement.php │ │ │ │ ├── ConstraintRequirement.php │ │ │ │ └── Requirement.php │ │ │ └── WithoutErrorHandler.php │ │ │ ├── Runner │ │ │ ├── Baseline │ │ │ │ ├── Baseline.php │ │ │ │ ├── Exception │ │ │ │ │ ├── CannotLoadBaselineException.php │ │ │ │ │ └── FileDoesNotHaveLineException.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Issue.php │ │ │ │ ├── Reader.php │ │ │ │ ├── RelativePathCalculator.php │ │ │ │ ├── Subscriber │ │ │ │ │ ├── Subscriber.php │ │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ │ └── Writer.php │ │ │ ├── CodeCoverage.php │ │ │ ├── DeprecationCollector │ │ │ │ ├── Collector.php │ │ │ │ ├── Facade.php │ │ │ │ └── Subscriber │ │ │ │ │ ├── Subscriber.php │ │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ │ └── TestTriggeredDeprecationSubscriber.php │ │ │ ├── ErrorHandler.php │ │ │ ├── Exception │ │ │ │ ├── ClassCannotBeFoundException.php │ │ │ │ ├── ClassDoesNotExtendTestCaseException.php │ │ │ │ ├── ClassIsAbstractException.php │ │ │ │ ├── DirectoryDoesNotExistException.php │ │ │ │ ├── ErrorException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── FileDoesNotExistException.php │ │ │ │ ├── InvalidOrderException.php │ │ │ │ ├── InvalidPhptFileException.php │ │ │ │ ├── ParameterDoesNotExistException.php │ │ │ │ ├── PhptExternalFileCannotBeLoadedException.php │ │ │ │ └── UnsupportedPhptSectionException.php │ │ │ ├── Extension │ │ │ │ ├── Extension.php │ │ │ │ ├── ExtensionBootstrapper.php │ │ │ │ ├── Facade.php │ │ │ │ ├── ParameterCollection.php │ │ │ │ └── PharLoader.php │ │ │ ├── Filter │ │ │ │ ├── ExcludeGroupFilterIterator.php │ │ │ │ ├── ExcludeNameFilterIterator.php │ │ │ │ ├── Factory.php │ │ │ │ ├── GroupFilterIterator.php │ │ │ │ ├── IncludeGroupFilterIterator.php │ │ │ │ ├── IncludeNameFilterIterator.php │ │ │ │ ├── NameFilterIterator.php │ │ │ │ └── TestIdFilterIterator.php │ │ │ ├── GarbageCollection │ │ │ │ ├── GarbageCollectionHandler.php │ │ │ │ └── Subscriber │ │ │ │ │ ├── ExecutionFinishedSubscriber.php │ │ │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ │ │ ├── Subscriber.php │ │ │ │ │ └── TestFinishedSubscriber.php │ │ │ ├── HookMethod │ │ │ │ ├── HookMethod.php │ │ │ │ └── HookMethodCollection.php │ │ │ ├── IssueFilter.php │ │ │ ├── PHPT │ │ │ │ ├── PhptTestCase.php │ │ │ │ └── templates │ │ │ │ │ └── phpt.tpl │ │ │ ├── ResultCache │ │ │ │ ├── DefaultResultCache.php │ │ │ │ ├── NullResultCache.php │ │ │ │ ├── ResultCache.php │ │ │ │ ├── ResultCacheHandler.php │ │ │ │ ├── ResultCacheId.php │ │ │ │ └── Subscriber │ │ │ │ │ ├── Subscriber.php │ │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ │ └── TestSuiteStartedSubscriber.php │ │ │ ├── TestResult │ │ │ │ ├── Collector.php │ │ │ │ ├── Facade.php │ │ │ │ ├── Issue.php │ │ │ │ ├── PassedTests.php │ │ │ │ ├── Subscriber │ │ │ │ │ ├── AfterTestClassMethodErroredSubscriber.php │ │ │ │ │ ├── BeforeTestClassMethodErroredSubscriber.php │ │ │ │ │ ├── ExecutionStartedSubscriber.php │ │ │ │ │ ├── Subscriber.php │ │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ │ ├── TestRunnerTriggeredDeprecationSubscriber.php │ │ │ │ │ ├── TestRunnerTriggeredWarningSubscriber.php │ │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ │ ├── TestSuiteFinishedSubscriber.php │ │ │ │ │ ├── TestSuiteSkippedSubscriber.php │ │ │ │ │ ├── TestSuiteStartedSubscriber.php │ │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ │ ├── TestTriggeredErrorSubscriber.php │ │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpunitDeprecationSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpunitErrorSubscriber.php │ │ │ │ │ ├── TestTriggeredPhpunitWarningSubscriber.php │ │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ │ └── TestResult.php │ │ │ ├── TestSuiteLoader.php │ │ │ ├── TestSuiteSorter.php │ │ │ └── Version.php │ │ │ ├── TextUI │ │ │ ├── Application.php │ │ │ ├── Command │ │ │ │ ├── Command.php │ │ │ │ ├── Commands │ │ │ │ │ ├── AtLeastVersionCommand.php │ │ │ │ │ ├── GenerateConfigurationCommand.php │ │ │ │ │ ├── ListGroupsCommand.php │ │ │ │ │ ├── ListTestFilesCommand.php │ │ │ │ │ ├── ListTestSuitesCommand.php │ │ │ │ │ ├── ListTestsAsTextCommand.php │ │ │ │ │ ├── ListTestsAsXmlCommand.php │ │ │ │ │ ├── MigrateConfigurationCommand.php │ │ │ │ │ ├── ShowHelpCommand.php │ │ │ │ │ ├── ShowVersionCommand.php │ │ │ │ │ ├── VersionCheckCommand.php │ │ │ │ │ └── WarmCodeCoverageCacheCommand.php │ │ │ │ └── Result.php │ │ │ ├── Configuration │ │ │ │ ├── Builder.php │ │ │ │ ├── Cli │ │ │ │ │ ├── Builder.php │ │ │ │ │ ├── Configuration.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ └── XmlConfigurationFileFinder.php │ │ │ │ ├── CodeCoverageFilterRegistry.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── Exception │ │ │ │ │ ├── CannotFindSchemaException.php │ │ │ │ │ ├── CodeCoverageReportNotConfiguredException.php │ │ │ │ │ ├── ConfigurationCannotBeBuiltException.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── FilterNotConfiguredException.php │ │ │ │ │ ├── LoggingNotConfiguredException.php │ │ │ │ │ ├── NoBaselineException.php │ │ │ │ │ ├── NoBootstrapException.php │ │ │ │ │ ├── NoCacheDirectoryException.php │ │ │ │ │ ├── NoConfigurationFileException.php │ │ │ │ │ ├── NoCoverageCacheDirectoryException.php │ │ │ │ │ ├── NoCustomCssFileException.php │ │ │ │ │ ├── NoDefaultTestSuiteException.php │ │ │ │ │ ├── NoPharExtensionDirectoryException.php │ │ │ │ │ └── SpecificDeprecationToStopOnNotConfiguredException.php │ │ │ │ ├── Merger.php │ │ │ │ ├── PhpHandler.php │ │ │ │ ├── Registry.php │ │ │ │ ├── SourceFilter.php │ │ │ │ ├── SourceMapper.php │ │ │ │ ├── TestSuiteBuilder.php │ │ │ │ ├── Value │ │ │ │ │ ├── Constant.php │ │ │ │ │ ├── ConstantCollection.php │ │ │ │ │ ├── ConstantCollectionIterator.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── DirectoryCollection.php │ │ │ │ │ ├── DirectoryCollectionIterator.php │ │ │ │ │ ├── ExtensionBootstrap.php │ │ │ │ │ ├── ExtensionBootstrapCollection.php │ │ │ │ │ ├── ExtensionBootstrapCollectionIterator.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── FileCollection.php │ │ │ │ │ ├── FileCollectionIterator.php │ │ │ │ │ ├── FilterDirectory.php │ │ │ │ │ ├── FilterDirectoryCollection.php │ │ │ │ │ ├── FilterDirectoryCollectionIterator.php │ │ │ │ │ ├── Group.php │ │ │ │ │ ├── GroupCollection.php │ │ │ │ │ ├── GroupCollectionIterator.php │ │ │ │ │ ├── IniSetting.php │ │ │ │ │ ├── IniSettingCollection.php │ │ │ │ │ ├── IniSettingCollectionIterator.php │ │ │ │ │ ├── Php.php │ │ │ │ │ ├── Source.php │ │ │ │ │ ├── TestDirectory.php │ │ │ │ │ ├── TestDirectoryCollection.php │ │ │ │ │ ├── TestDirectoryCollectionIterator.php │ │ │ │ │ ├── TestFile.php │ │ │ │ │ ├── TestFileCollection.php │ │ │ │ │ ├── TestFileCollectionIterator.php │ │ │ │ │ ├── TestSuite.php │ │ │ │ │ ├── TestSuiteCollection.php │ │ │ │ │ ├── TestSuiteCollectionIterator.php │ │ │ │ │ ├── Variable.php │ │ │ │ │ ├── VariableCollection.php │ │ │ │ │ └── VariableCollectionIterator.php │ │ │ │ └── Xml │ │ │ │ │ ├── CodeCoverage │ │ │ │ │ ├── CodeCoverage.php │ │ │ │ │ └── Report │ │ │ │ │ │ ├── Clover.php │ │ │ │ │ │ ├── Cobertura.php │ │ │ │ │ │ ├── Crap4j.php │ │ │ │ │ │ ├── Html.php │ │ │ │ │ │ ├── Php.php │ │ │ │ │ │ ├── Text.php │ │ │ │ │ │ └── Xml.php │ │ │ │ │ ├── Configuration.php │ │ │ │ │ ├── DefaultConfiguration.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── Generator.php │ │ │ │ │ ├── Groups.php │ │ │ │ │ ├── LoadedFromFileConfiguration.php │ │ │ │ │ ├── Loader.php │ │ │ │ │ ├── Logging │ │ │ │ │ ├── Junit.php │ │ │ │ │ ├── Logging.php │ │ │ │ │ ├── TeamCity.php │ │ │ │ │ └── TestDox │ │ │ │ │ │ ├── Html.php │ │ │ │ │ │ └── Text.php │ │ │ │ │ ├── Migration │ │ │ │ │ ├── MigrationBuilder.php │ │ │ │ │ ├── MigrationException.php │ │ │ │ │ ├── Migrations │ │ │ │ │ │ ├── ConvertLogTypes.php │ │ │ │ │ │ ├── CoverageCloverToReport.php │ │ │ │ │ │ ├── CoverageCrap4jToReport.php │ │ │ │ │ │ ├── CoverageHtmlToReport.php │ │ │ │ │ │ ├── CoveragePhpToReport.php │ │ │ │ │ │ ├── CoverageTextToReport.php │ │ │ │ │ │ ├── CoverageXmlToReport.php │ │ │ │ │ │ ├── IntroduceCacheDirectoryAttribute.php │ │ │ │ │ │ ├── IntroduceCoverageElement.php │ │ │ │ │ │ ├── LogToReportMigration.php │ │ │ │ │ │ ├── Migration.php │ │ │ │ │ │ ├── MoveAttributesFromFilterWhitelistToCoverage.php │ │ │ │ │ │ ├── MoveAttributesFromRootToCoverage.php │ │ │ │ │ │ ├── MoveCoverageDirectoriesToSource.php │ │ │ │ │ │ ├── MoveWhitelistExcludesToCoverage.php │ │ │ │ │ │ ├── MoveWhitelistIncludesToCoverage.php │ │ │ │ │ │ ├── RemoveBeStrictAboutResourceUsageDuringSmallTestsAttribute.php │ │ │ │ │ │ ├── RemoveBeStrictAboutTodoAnnotatedTestsAttribute.php │ │ │ │ │ │ ├── RemoveCacheResultFileAttribute.php │ │ │ │ │ │ ├── RemoveCacheTokensAttribute.php │ │ │ │ │ │ ├── RemoveConversionToExceptionsAttributes.php │ │ │ │ │ │ ├── RemoveCoverageElementCacheDirectoryAttribute.php │ │ │ │ │ │ ├── RemoveCoverageElementProcessUncoveredFilesAttribute.php │ │ │ │ │ │ ├── RemoveEmptyFilter.php │ │ │ │ │ │ ├── RemoveListeners.php │ │ │ │ │ │ ├── RemoveLogTypes.php │ │ │ │ │ │ ├── RemoveLoggingElements.php │ │ │ │ │ │ ├── RemoveNoInteractionAttribute.php │ │ │ │ │ │ ├── RemovePrinterAttributes.php │ │ │ │ │ │ ├── RemoveRegisterMockObjectsFromTestArgumentsRecursivelyAttribute.php │ │ │ │ │ │ ├── RemoveTestDoxGroupsElement.php │ │ │ │ │ │ ├── RemoveTestSuiteLoaderAttributes.php │ │ │ │ │ │ ├── RemoveVerboseAttribute.php │ │ │ │ │ │ ├── RenameBackupStaticAttributesAttribute.php │ │ │ │ │ │ ├── RenameBeStrictAboutCoversAnnotationAttribute.php │ │ │ │ │ │ ├── RenameForceCoversAnnotationAttribute.php │ │ │ │ │ │ ├── ReplaceRestrictDeprecationsWithIgnoreDeprecations.php │ │ │ │ │ │ └── UpdateSchemaLocation.php │ │ │ │ │ ├── Migrator.php │ │ │ │ │ └── SnapshotNodeList.php │ │ │ │ │ ├── PHPUnit.php │ │ │ │ │ ├── SchemaDetector │ │ │ │ │ ├── FailedSchemaDetectionResult.php │ │ │ │ │ ├── SchemaDetectionResult.php │ │ │ │ │ ├── SchemaDetector.php │ │ │ │ │ └── SuccessfulSchemaDetectionResult.php │ │ │ │ │ ├── SchemaFinder.php │ │ │ │ │ ├── TestSuiteMapper.php │ │ │ │ │ └── Validator │ │ │ │ │ ├── ValidationResult.php │ │ │ │ │ └── Validator.php │ │ │ ├── Exception │ │ │ │ ├── CannotOpenSocketException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidSocketException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── TestDirectoryNotFoundException.php │ │ │ │ └── TestFileNotFoundException.php │ │ │ ├── Help.php │ │ │ ├── Output │ │ │ │ ├── Default │ │ │ │ │ ├── ProgressPrinter │ │ │ │ │ │ ├── ProgressPrinter.php │ │ │ │ │ │ └── Subscriber │ │ │ │ │ │ │ ├── BeforeTestClassMethodErroredSubscriber.php │ │ │ │ │ │ │ ├── Subscriber.php │ │ │ │ │ │ │ ├── TestConsideredRiskySubscriber.php │ │ │ │ │ │ │ ├── TestErroredSubscriber.php │ │ │ │ │ │ │ ├── TestFailedSubscriber.php │ │ │ │ │ │ │ ├── TestFinishedSubscriber.php │ │ │ │ │ │ │ ├── TestMarkedIncompleteSubscriber.php │ │ │ │ │ │ │ ├── TestPreparedSubscriber.php │ │ │ │ │ │ │ ├── TestRunnerExecutionStartedSubscriber.php │ │ │ │ │ │ │ ├── TestSkippedSubscriber.php │ │ │ │ │ │ │ ├── TestTriggeredDeprecationSubscriber.php │ │ │ │ │ │ │ ├── TestTriggeredErrorSubscriber.php │ │ │ │ │ │ │ ├── TestTriggeredNoticeSubscriber.php │ │ │ │ │ │ │ ├── TestTriggeredPhpDeprecationSubscriber.php │ │ │ │ │ │ │ ├── TestTriggeredPhpNoticeSubscriber.php │ │ │ │ │ │ │ ├── TestTriggeredPhpWarningSubscriber.php │ │ │ │ │ │ │ ├── TestTriggeredPhpunitDeprecationSubscriber.php │ │ │ │ │ │ │ ├── TestTriggeredPhpunitWarningSubscriber.php │ │ │ │ │ │ │ └── TestTriggeredWarningSubscriber.php │ │ │ │ │ ├── ResultPrinter.php │ │ │ │ │ └── UnexpectedOutputPrinter.php │ │ │ │ ├── Facade.php │ │ │ │ ├── Printer │ │ │ │ │ ├── DefaultPrinter.php │ │ │ │ │ ├── NullPrinter.php │ │ │ │ │ └── Printer.php │ │ │ │ ├── SummaryPrinter.php │ │ │ │ └── TestDox │ │ │ │ │ └── ResultPrinter.php │ │ │ ├── ShellExitCodeCalculator.php │ │ │ ├── TestRunner.php │ │ │ └── TestSuiteFilterProcessor.php │ │ │ └── Util │ │ │ ├── Cloner.php │ │ │ ├── Color.php │ │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ ├── InvalidDirectoryException.php │ │ │ ├── InvalidJsonException.php │ │ │ ├── InvalidVersionOperatorException.php │ │ │ ├── PhpProcessException.php │ │ │ └── XmlException.php │ │ │ ├── ExcludeList.php │ │ │ ├── Exporter.php │ │ │ ├── Filesystem.php │ │ │ ├── Filter.php │ │ │ ├── GlobalState.php │ │ │ ├── Http │ │ │ ├── Downloader.php │ │ │ └── PhpDownloader.php │ │ │ ├── Json.php │ │ │ ├── PHP │ │ │ ├── DefaultJobRunner.php │ │ │ ├── Job.php │ │ │ ├── JobRunner.php │ │ │ ├── JobRunnerRegistry.php │ │ │ └── Result.php │ │ │ ├── Reflection.php │ │ │ ├── Test.php │ │ │ ├── ThrowableToStringMapper.php │ │ │ ├── VersionComparisonOperator.php │ │ │ └── Xml │ │ │ ├── Loader.php │ │ │ └── Xml.php │ │ ├── sebastian │ │ ├── cli-parser │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Parser.php │ │ │ │ └── exceptions │ │ │ │ ├── AmbiguousOptionException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── OptionDoesNotAllowArgumentException.php │ │ │ │ ├── RequiredOptionArgumentMissingException.php │ │ │ │ └── UnknownOptionException.php │ │ ├── code-unit-reverse-lookup │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ └── Wizard.php │ │ ├── code-unit │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── ClassMethodUnit.php │ │ │ │ ├── ClassUnit.php │ │ │ │ ├── CodeUnit.php │ │ │ │ ├── CodeUnitCollection.php │ │ │ │ ├── CodeUnitCollectionIterator.php │ │ │ │ ├── FileUnit.php │ │ │ │ ├── FunctionUnit.php │ │ │ │ ├── InterfaceMethodUnit.php │ │ │ │ ├── InterfaceUnit.php │ │ │ │ ├── Mapper.php │ │ │ │ ├── TraitMethodUnit.php │ │ │ │ ├── TraitUnit.php │ │ │ │ └── exceptions │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidCodeUnitException.php │ │ │ │ ├── NoTraitException.php │ │ │ │ └── ReflectionException.php │ │ ├── comparator │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── ArrayComparator.php │ │ │ │ ├── Comparator.php │ │ │ │ ├── ComparisonFailure.php │ │ │ │ ├── DOMNodeComparator.php │ │ │ │ ├── DateTimeComparator.php │ │ │ │ ├── EnumerationComparator.php │ │ │ │ ├── ExceptionComparator.php │ │ │ │ ├── Factory.php │ │ │ │ ├── MockObjectComparator.php │ │ │ │ ├── NumberComparator.php │ │ │ │ ├── NumericComparator.php │ │ │ │ ├── ObjectComparator.php │ │ │ │ ├── ResourceComparator.php │ │ │ │ ├── ScalarComparator.php │ │ │ │ ├── SplObjectStorageComparator.php │ │ │ │ ├── TypeComparator.php │ │ │ │ └── exceptions │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ ├── complexity │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Calculator.php │ │ │ │ ├── Complexity │ │ │ │ ├── Complexity.php │ │ │ │ ├── ComplexityCollection.php │ │ │ │ └── ComplexityCollectionIterator.php │ │ │ │ ├── Exception │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ │ │ └── Visitor │ │ │ │ ├── ComplexityCalculatingVisitor.php │ │ │ │ └── CyclomaticComplexityCalculatingVisitor.php │ │ ├── diff │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Chunk.php │ │ │ │ ├── Diff.php │ │ │ │ ├── Differ.php │ │ │ │ ├── Exception │ │ │ │ ├── ConfigurationException.php │ │ │ │ ├── Exception.php │ │ │ │ └── InvalidArgumentException.php │ │ │ │ ├── Line.php │ │ │ │ ├── LongestCommonSubsequenceCalculator.php │ │ │ │ ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │ │ │ │ ├── Output │ │ │ │ ├── AbstractChunkOutputBuilder.php │ │ │ │ ├── DiffOnlyOutputBuilder.php │ │ │ │ ├── DiffOutputBuilderInterface.php │ │ │ │ ├── StrictUnifiedDiffOutputBuilder.php │ │ │ │ └── UnifiedDiffOutputBuilder.php │ │ │ │ ├── Parser.php │ │ │ │ └── TimeEfficientLongestCommonSubsequenceCalculator.php │ │ ├── environment │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Console.php │ │ │ │ └── Runtime.php │ │ ├── exporter │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ └── Exporter.php │ │ ├── global-state │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── CodeExporter.php │ │ │ │ ├── ExcludeList.php │ │ │ │ ├── Restorer.php │ │ │ │ ├── Snapshot.php │ │ │ │ └── exceptions │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ ├── lines-of-code │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── Counter.php │ │ │ │ ├── Exception │ │ │ │ ├── Exception.php │ │ │ │ ├── IllogicalValuesException.php │ │ │ │ ├── NegativeValueException.php │ │ │ │ └── RuntimeException.php │ │ │ │ ├── LineCountingVisitor.php │ │ │ │ └── LinesOfCode.php │ │ ├── object-enumerator │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ └── Enumerator.php │ │ ├── object-reflector │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ └── ObjectReflector.php │ │ ├── recursion-context │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ └── Context.php │ │ ├── type │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── infection.json │ │ │ └── src │ │ │ │ ├── Parameter.php │ │ │ │ ├── ReflectionMapper.php │ │ │ │ ├── TypeName.php │ │ │ │ ├── exception │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ │ │ └── type │ │ │ │ ├── CallableType.php │ │ │ │ ├── FalseType.php │ │ │ │ ├── GenericObjectType.php │ │ │ │ ├── IntersectionType.php │ │ │ │ ├── IterableType.php │ │ │ │ ├── MixedType.php │ │ │ │ ├── NeverType.php │ │ │ │ ├── NullType.php │ │ │ │ ├── ObjectType.php │ │ │ │ ├── SimpleType.php │ │ │ │ ├── StaticType.php │ │ │ │ ├── TrueType.php │ │ │ │ ├── Type.php │ │ │ │ ├── UnionType.php │ │ │ │ ├── UnknownType.php │ │ │ │ └── VoidType.php │ │ └── version │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── Version.php │ │ ├── staabm │ │ └── side-effects-detector │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── lib │ │ │ ├── SideEffect.php │ │ │ ├── SideEffectsDetector.php │ │ │ └── functionMetadata.php │ │ └── theseer │ │ └── tokenizer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ ├── Exception.php │ │ ├── NamespaceUri.php │ │ ├── NamespaceUriException.php │ │ ├── Token.php │ │ ├── TokenCollection.php │ │ ├── TokenCollectionException.php │ │ ├── Tokenizer.php │ │ └── XMLSerializer.php ├── fig │ └── http-message-util │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── RequestMethodInterface.php │ │ └── StatusCodeInterface.php ├── google │ └── recaptcha │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app.yaml │ │ ├── composer.json │ │ └── src │ │ ├── ReCaptcha │ │ ├── ReCaptcha.php │ │ ├── RequestMethod.php │ │ ├── RequestMethod │ │ │ ├── Curl.php │ │ │ ├── CurlPost.php │ │ │ ├── Post.php │ │ │ ├── Socket.php │ │ │ └── SocketPost.php │ │ ├── RequestParameters.php │ │ └── Response.php │ │ └── autoload.php ├── graham-campbell │ └── result-type │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ ├── Error.php │ │ ├── Result.php │ │ └── Success.php ├── laravel │ └── serializable-closure │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── Contracts │ │ ├── Serializable.php │ │ └── Signer.php │ │ ├── Exceptions │ │ ├── InvalidSignatureException.php │ │ ├── MissingSecretKeyException.php │ │ └── PhpVersionNotSupportedException.php │ │ ├── SerializableClosure.php │ │ ├── Serializers │ │ ├── Native.php │ │ └── Signed.php │ │ ├── Signers │ │ └── Hmac.php │ │ ├── Support │ │ ├── ClosureScope.php │ │ ├── ClosureStream.php │ │ ├── ReflectionClosure.php │ │ └── SelfReference.php │ │ └── UnsignedSerializableClosure.php ├── monolog │ └── monolog │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Monolog │ │ ├── Attribute │ │ ├── AsMonologProcessor.php │ │ └── WithMonologChannel.php │ │ ├── DateTimeImmutable.php │ │ ├── ErrorHandler.php │ │ ├── Formatter │ │ ├── ChromePHPFormatter.php │ │ ├── ElasticaFormatter.php │ │ ├── ElasticsearchFormatter.php │ │ ├── FlowdockFormatter.php │ │ ├── FluentdFormatter.php │ │ ├── FormatterInterface.php │ │ ├── GelfMessageFormatter.php │ │ ├── GoogleCloudLoggingFormatter.php │ │ ├── HtmlFormatter.php │ │ ├── JsonFormatter.php │ │ ├── LineFormatter.php │ │ ├── LogglyFormatter.php │ │ ├── LogmaticFormatter.php │ │ ├── LogstashFormatter.php │ │ ├── MongoDBFormatter.php │ │ ├── NormalizerFormatter.php │ │ ├── ScalarFormatter.php │ │ ├── SyslogFormatter.php │ │ └── WildfireFormatter.php │ │ ├── Handler │ │ ├── AbstractHandler.php │ │ ├── AbstractProcessingHandler.php │ │ ├── AbstractSyslogHandler.php │ │ ├── AmqpHandler.php │ │ ├── BrowserConsoleHandler.php │ │ ├── BufferHandler.php │ │ ├── ChromePHPHandler.php │ │ ├── CouchDBHandler.php │ │ ├── CubeHandler.php │ │ ├── Curl │ │ │ └── Util.php │ │ ├── DeduplicationHandler.php │ │ ├── DoctrineCouchDBHandler.php │ │ ├── DynamoDbHandler.php │ │ ├── ElasticaHandler.php │ │ ├── ElasticsearchHandler.php │ │ ├── ErrorLogHandler.php │ │ ├── FallbackGroupHandler.php │ │ ├── FilterHandler.php │ │ ├── FingersCrossed │ │ │ ├── ActivationStrategyInterface.php │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ └── ErrorLevelActivationStrategy.php │ │ ├── FingersCrossedHandler.php │ │ ├── FirePHPHandler.php │ │ ├── FleepHookHandler.php │ │ ├── FlowdockHandler.php │ │ ├── FormattableHandlerInterface.php │ │ ├── FormattableHandlerTrait.php │ │ ├── GelfHandler.php │ │ ├── GroupHandler.php │ │ ├── Handler.php │ │ ├── HandlerInterface.php │ │ ├── HandlerWrapper.php │ │ ├── IFTTTHandler.php │ │ ├── InsightOpsHandler.php │ │ ├── LogEntriesHandler.php │ │ ├── LogglyHandler.php │ │ ├── LogmaticHandler.php │ │ ├── MailHandler.php │ │ ├── MandrillHandler.php │ │ ├── MissingExtensionException.php │ │ ├── MongoDBHandler.php │ │ ├── NativeMailerHandler.php │ │ ├── NewRelicHandler.php │ │ ├── NoopHandler.php │ │ ├── NullHandler.php │ │ ├── OverflowHandler.php │ │ ├── PHPConsoleHandler.php │ │ ├── ProcessHandler.php │ │ ├── ProcessableHandlerInterface.php │ │ ├── ProcessableHandlerTrait.php │ │ ├── PsrHandler.php │ │ ├── PushoverHandler.php │ │ ├── RedisHandler.php │ │ ├── RedisPubSubHandler.php │ │ ├── RollbarHandler.php │ │ ├── RotatingFileHandler.php │ │ ├── SamplingHandler.php │ │ ├── SendGridHandler.php │ │ ├── Slack │ │ │ └── SlackRecord.php │ │ ├── SlackHandler.php │ │ ├── SlackWebhookHandler.php │ │ ├── SocketHandler.php │ │ ├── SqsHandler.php │ │ ├── StreamHandler.php │ │ ├── SymfonyMailerHandler.php │ │ ├── SyslogHandler.php │ │ ├── SyslogUdp │ │ │ └── UdpSocket.php │ │ ├── SyslogUdpHandler.php │ │ ├── TelegramBotHandler.php │ │ ├── TestHandler.php │ │ ├── WebRequestRecognizerTrait.php │ │ ├── WhatFailureGroupHandler.php │ │ └── ZendMonitorHandler.php │ │ ├── JsonSerializableDateTimeImmutable.php │ │ ├── Level.php │ │ ├── LogRecord.php │ │ ├── Logger.php │ │ ├── Processor │ │ ├── ClosureContextProcessor.php │ │ ├── GitProcessor.php │ │ ├── HostnameProcessor.php │ │ ├── IntrospectionProcessor.php │ │ ├── LoadAverageProcessor.php │ │ ├── MemoryPeakUsageProcessor.php │ │ ├── MemoryProcessor.php │ │ ├── MemoryUsageProcessor.php │ │ ├── MercurialProcessor.php │ │ ├── ProcessIdProcessor.php │ │ ├── ProcessorInterface.php │ │ ├── PsrLogMessageProcessor.php │ │ ├── TagProcessor.php │ │ ├── UidProcessor.php │ │ └── WebProcessor.php │ │ ├── Registry.php │ │ ├── ResettableInterface.php │ │ ├── SignalHandler.php │ │ └── Utils.php ├── nikic │ └── fast-route │ │ ├── .gitignore │ │ ├── .hhconfig │ │ ├── FastRoute.hhi │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── psalm.xml │ │ └── src │ │ ├── BadRouteException.php │ │ ├── DataGenerator.php │ │ ├── DataGenerator │ │ ├── CharCountBased.php │ │ ├── GroupCountBased.php │ │ ├── GroupPosBased.php │ │ ├── MarkBased.php │ │ └── RegexBasedAbstract.php │ │ ├── Dispatcher.php │ │ ├── Dispatcher │ │ ├── CharCountBased.php │ │ ├── GroupCountBased.php │ │ ├── GroupPosBased.php │ │ ├── MarkBased.php │ │ └── RegexBasedAbstract.php │ │ ├── Route.php │ │ ├── RouteCollector.php │ │ ├── RouteParser.php │ │ ├── RouteParser │ │ └── Std.php │ │ ├── bootstrap.php │ │ └── functions.php ├── php-di │ ├── invoker │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── CallableResolver.php │ │ │ ├── Exception │ │ │ ├── InvocationException.php │ │ │ ├── NotCallableException.php │ │ │ └── NotEnoughParametersException.php │ │ │ ├── Invoker.php │ │ │ ├── InvokerInterface.php │ │ │ ├── ParameterResolver │ │ │ ├── AssociativeArrayResolver.php │ │ │ ├── Container │ │ │ │ ├── ParameterNameContainerResolver.php │ │ │ │ └── TypeHintContainerResolver.php │ │ │ ├── DefaultValueResolver.php │ │ │ ├── NumericArrayResolver.php │ │ │ ├── ParameterResolver.php │ │ │ ├── ResolverChain.php │ │ │ └── TypeHintResolver.php │ │ │ └── Reflection │ │ │ └── CallableReflection.php │ └── php-di │ │ ├── LICENSE │ │ ├── README.md │ │ ├── change-log.md │ │ ├── composer.json │ │ ├── src │ │ ├── Attribute │ │ │ ├── Inject.php │ │ │ └── Injectable.php │ │ ├── CompiledContainer.php │ │ ├── Compiler │ │ │ ├── Compiler.php │ │ │ ├── ObjectCreationCompiler.php │ │ │ ├── RequestedEntryHolder.php │ │ │ └── Template.php │ │ ├── Container.php │ │ ├── ContainerBuilder.php │ │ ├── Definition │ │ │ ├── ArrayDefinition.php │ │ │ ├── ArrayDefinitionExtension.php │ │ │ ├── AutowireDefinition.php │ │ │ ├── DecoratorDefinition.php │ │ │ ├── Definition.php │ │ │ ├── Dumper │ │ │ │ └── ObjectDefinitionDumper.php │ │ │ ├── EnvironmentVariableDefinition.php │ │ │ ├── Exception │ │ │ │ ├── InvalidAttribute.php │ │ │ │ └── InvalidDefinition.php │ │ │ ├── ExtendsPreviousDefinition.php │ │ │ ├── FactoryDefinition.php │ │ │ ├── Helper │ │ │ │ ├── AutowireDefinitionHelper.php │ │ │ │ ├── CreateDefinitionHelper.php │ │ │ │ ├── DefinitionHelper.php │ │ │ │ └── FactoryDefinitionHelper.php │ │ │ ├── InstanceDefinition.php │ │ │ ├── ObjectDefinition.php │ │ │ ├── ObjectDefinition │ │ │ │ ├── MethodInjection.php │ │ │ │ └── PropertyInjection.php │ │ │ ├── Reference.php │ │ │ ├── Resolver │ │ │ │ ├── ArrayResolver.php │ │ │ │ ├── DecoratorResolver.php │ │ │ │ ├── DefinitionResolver.php │ │ │ │ ├── EnvironmentVariableResolver.php │ │ │ │ ├── FactoryResolver.php │ │ │ │ ├── InstanceInjector.php │ │ │ │ ├── ObjectCreator.php │ │ │ │ ├── ParameterResolver.php │ │ │ │ └── ResolverDispatcher.php │ │ │ ├── SelfResolvingDefinition.php │ │ │ ├── Source │ │ │ │ ├── AttributeBasedAutowiring.php │ │ │ │ ├── Autowiring.php │ │ │ │ ├── DefinitionArray.php │ │ │ │ ├── DefinitionFile.php │ │ │ │ ├── DefinitionNormalizer.php │ │ │ │ ├── DefinitionSource.php │ │ │ │ ├── MutableDefinitionSource.php │ │ │ │ ├── NoAutowiring.php │ │ │ │ ├── ReflectionBasedAutowiring.php │ │ │ │ ├── SourceCache.php │ │ │ │ └── SourceChain.php │ │ │ ├── StringDefinition.php │ │ │ └── ValueDefinition.php │ │ ├── DependencyException.php │ │ ├── Factory │ │ │ └── RequestedEntry.php │ │ ├── FactoryInterface.php │ │ ├── Invoker │ │ │ ├── DefinitionParameterResolver.php │ │ │ └── FactoryParameterResolver.php │ │ ├── NotFoundException.php │ │ ├── Proxy │ │ │ ├── NativeProxyFactory.php │ │ │ ├── ProxyFactory.php │ │ │ └── ProxyFactoryInterface.php │ │ └── functions.php │ │ └── support.md ├── phpmailer │ └── phpmailer │ │ ├── COMMITMENT │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SMTPUTF8.md │ │ ├── VERSION │ │ ├── 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.php │ │ ├── phpmailer.lang-pt_br.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-si.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-sr.php │ │ ├── phpmailer.lang-sr_latn.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.php │ │ └── phpmailer.lang-zh_cn.php │ │ └── src │ │ ├── DSNConfigurator.php │ │ ├── Exception.php │ │ ├── OAuth.php │ │ ├── OAuthTokenProvider.php │ │ ├── PHPMailer.php │ │ ├── POP3.php │ │ └── SMTP.php ├── phpoption │ └── phpoption │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ └── PhpOption │ │ ├── LazyOption.php │ │ ├── None.php │ │ ├── Option.php │ │ └── Some.php ├── psr │ ├── container │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ContainerExceptionInterface.php │ │ │ ├── ContainerInterface.php │ │ │ └── NotFoundExceptionInterface.php │ ├── http-factory │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── RequestFactoryInterface.php │ │ │ ├── ResponseFactoryInterface.php │ │ │ ├── ServerRequestFactoryInterface.php │ │ │ ├── StreamFactoryInterface.php │ │ │ ├── UploadedFileFactoryInterface.php │ │ │ └── UriFactoryInterface.php │ ├── http-message │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ ├── PSR7-Interfaces.md │ │ │ └── PSR7-Usage.md │ │ └── src │ │ │ ├── MessageInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerRequestInterface.php │ │ │ ├── StreamInterface.php │ │ │ ├── UploadedFileInterface.php │ │ │ └── UriInterface.php │ ├── http-server-handler │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── RequestHandlerInterface.php │ ├── http-server-middleware │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── MiddlewareInterface.php │ └── log │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── AbstractLogger.php │ │ ├── InvalidArgumentException.php │ │ ├── LogLevel.php │ │ ├── LoggerAwareInterface.php │ │ ├── LoggerAwareTrait.php │ │ ├── LoggerInterface.php │ │ ├── LoggerTrait.php │ │ └── NullLogger.php ├── ralouphie │ └── getallheaders │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── getallheaders.php ├── slim │ ├── csrf │ │ ├── LICENSE.md │ │ ├── composer.json │ │ └── src │ │ │ └── Guard.php │ ├── psr7 │ │ ├── LICENSE.md │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── src │ │ │ ├── Cookies.php │ │ │ ├── Environment.php │ │ │ ├── Factory │ │ │ ├── RequestFactory.php │ │ │ ├── ResponseFactory.php │ │ │ ├── ServerRequestFactory.php │ │ │ ├── StreamFactory.php │ │ │ ├── UploadedFileFactory.php │ │ │ └── UriFactory.php │ │ │ ├── Header.php │ │ │ ├── Headers.php │ │ │ ├── Interfaces │ │ │ └── HeadersInterface.php │ │ │ ├── Message.php │ │ │ ├── NonBufferedBody.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Stream.php │ │ │ ├── UploadedFile.php │ │ │ └── Uri.php │ └── slim │ │ ├── LICENSE.md │ │ ├── MAINTAINERS.md │ │ ├── Slim │ │ ├── App.php │ │ ├── CallableResolver.php │ │ ├── Error │ │ │ ├── AbstractErrorRenderer.php │ │ │ └── Renderers │ │ │ │ ├── HtmlErrorRenderer.php │ │ │ │ ├── JsonErrorRenderer.php │ │ │ │ ├── PlainTextErrorRenderer.php │ │ │ │ └── XmlErrorRenderer.php │ │ ├── Exception │ │ │ ├── HttpBadRequestException.php │ │ │ ├── HttpException.php │ │ │ ├── HttpForbiddenException.php │ │ │ ├── HttpGoneException.php │ │ │ ├── HttpInternalServerErrorException.php │ │ │ ├── HttpMethodNotAllowedException.php │ │ │ ├── HttpNotFoundException.php │ │ │ ├── HttpNotImplementedException.php │ │ │ ├── HttpSpecializedException.php │ │ │ ├── HttpTooManyRequestsException.php │ │ │ └── HttpUnauthorizedException.php │ │ ├── Factory │ │ │ ├── AppFactory.php │ │ │ ├── Psr17 │ │ │ │ ├── GuzzlePsr17Factory.php │ │ │ │ ├── HttpSoftPsr17Factory.php │ │ │ │ ├── LaminasDiactorosPsr17Factory.php │ │ │ │ ├── NyholmPsr17Factory.php │ │ │ │ ├── Psr17Factory.php │ │ │ │ ├── Psr17FactoryProvider.php │ │ │ │ ├── ServerRequestCreator.php │ │ │ │ ├── SlimHttpPsr17Factory.php │ │ │ │ ├── SlimHttpServerRequestCreator.php │ │ │ │ └── SlimPsr17Factory.php │ │ │ └── ServerRequestCreatorFactory.php │ │ ├── Handlers │ │ │ ├── ErrorHandler.php │ │ │ └── Strategies │ │ │ │ ├── RequestHandler.php │ │ │ │ ├── RequestResponse.php │ │ │ │ ├── RequestResponseArgs.php │ │ │ │ └── RequestResponseNamedArgs.php │ │ ├── Interfaces │ │ │ ├── AdvancedCallableResolverInterface.php │ │ │ ├── CallableResolverInterface.php │ │ │ ├── DispatcherInterface.php │ │ │ ├── ErrorHandlerInterface.php │ │ │ ├── ErrorRendererInterface.php │ │ │ ├── InvocationStrategyInterface.php │ │ │ ├── MiddlewareDispatcherInterface.php │ │ │ ├── Psr17FactoryInterface.php │ │ │ ├── Psr17FactoryProviderInterface.php │ │ │ ├── RequestHandlerInvocationStrategyInterface.php │ │ │ ├── RouteCollectorInterface.php │ │ │ ├── RouteCollectorProxyInterface.php │ │ │ ├── RouteGroupInterface.php │ │ │ ├── RouteInterface.php │ │ │ ├── RouteParserInterface.php │ │ │ ├── RouteResolverInterface.php │ │ │ └── ServerRequestCreatorInterface.php │ │ ├── Logger.php │ │ ├── Middleware │ │ │ ├── BodyParsingMiddleware.php │ │ │ ├── ContentLengthMiddleware.php │ │ │ ├── ErrorMiddleware.php │ │ │ ├── MethodOverrideMiddleware.php │ │ │ ├── OutputBufferingMiddleware.php │ │ │ └── RoutingMiddleware.php │ │ ├── MiddlewareDispatcher.php │ │ ├── ResponseEmitter.php │ │ └── Routing │ │ │ ├── Dispatcher.php │ │ │ ├── FastRouteDispatcher.php │ │ │ ├── Route.php │ │ │ ├── RouteCollector.php │ │ │ ├── RouteCollectorProxy.php │ │ │ ├── RouteContext.php │ │ │ ├── RouteGroup.php │ │ │ ├── RouteParser.php │ │ │ ├── RouteResolver.php │ │ │ ├── RouteRunner.php │ │ │ └── RoutingResults.php │ │ ├── composer.json │ │ └── psalm.xml ├── symfony │ ├── polyfill-ctype │ │ ├── Ctype.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-mbstring │ │ ├── LICENSE │ │ ├── Mbstring.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── caseFolding.php │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ └── polyfill-php80 │ │ ├── LICENSE │ │ ├── Php80.php │ │ ├── PhpToken.php │ │ ├── README.md │ │ ├── Resources │ │ └── stubs │ │ │ ├── Attribute.php │ │ │ ├── PhpToken.php │ │ │ ├── Stringable.php │ │ │ ├── UnhandledMatchError.php │ │ │ └── ValueError.php │ │ ├── bootstrap.php │ │ └── composer.json ├── tecnickcom │ └── tcpdf │ │ ├── CHANGELOG.TXT │ │ ├── LICENSE.TXT │ │ ├── README.md │ │ ├── VERSION │ │ ├── composer.json │ │ ├── config │ │ └── tcpdf_config.php │ │ ├── fonts │ │ ├── ae_fonts_2.0 │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ └── README │ │ ├── aealarabiya.ctg.z │ │ ├── aealarabiya.php │ │ ├── aealarabiya.z │ │ ├── aefurat.ctg.z │ │ ├── aefurat.php │ │ ├── aefurat.z │ │ ├── cid0cs.php │ │ ├── cid0ct.php │ │ ├── cid0jp.php │ │ ├── cid0kr.php │ │ ├── courier.php │ │ ├── courierb.php │ │ ├── courierbi.php │ │ ├── courieri.php │ │ ├── dejavu-fonts-ttf-2.33 │ │ │ ├── AUTHORS │ │ │ ├── BUGS │ │ │ ├── LICENSE │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── langcover.txt │ │ │ └── unicover.txt │ │ ├── dejavu-fonts-ttf-2.34 │ │ │ ├── AUTHORS │ │ │ ├── BUGS │ │ │ ├── LICENSE │ │ │ ├── NEWS │ │ │ ├── README │ │ │ ├── langcover.txt │ │ │ └── unicover.txt │ │ ├── dejavusans.ctg.z │ │ ├── dejavusans.php │ │ ├── dejavusans.z │ │ ├── dejavusansb.ctg.z │ │ ├── dejavusansb.php │ │ ├── dejavusansb.z │ │ ├── dejavusansbi.ctg.z │ │ ├── dejavusansbi.php │ │ ├── dejavusansbi.z │ │ ├── dejavusanscondensed.ctg.z │ │ ├── dejavusanscondensed.php │ │ ├── dejavusanscondensed.z │ │ ├── dejavusanscondensedb.ctg.z │ │ ├── dejavusanscondensedb.php │ │ ├── dejavusanscondensedb.z │ │ ├── dejavusanscondensedbi.ctg.z │ │ ├── dejavusanscondensedbi.php │ │ ├── dejavusanscondensedbi.z │ │ ├── dejavusanscondensedi.ctg.z │ │ ├── dejavusanscondensedi.php │ │ ├── dejavusanscondensedi.z │ │ ├── dejavusansextralight.ctg.z │ │ ├── dejavusansextralight.php │ │ ├── dejavusansextralight.z │ │ ├── dejavusansi.ctg.z │ │ ├── dejavusansi.php │ │ ├── dejavusansi.z │ │ ├── dejavusansmono.ctg.z │ │ ├── dejavusansmono.php │ │ ├── dejavusansmono.z │ │ ├── dejavusansmonob.ctg.z │ │ ├── dejavusansmonob.php │ │ ├── dejavusansmonob.z │ │ ├── dejavusansmonobi.ctg.z │ │ ├── dejavusansmonobi.php │ │ ├── dejavusansmonobi.z │ │ ├── dejavusansmonoi.ctg.z │ │ ├── dejavusansmonoi.php │ │ ├── dejavusansmonoi.z │ │ ├── dejavuserif.ctg.z │ │ ├── dejavuserif.php │ │ ├── dejavuserif.z │ │ ├── dejavuserifb.ctg.z │ │ ├── dejavuserifb.php │ │ ├── dejavuserifb.z │ │ ├── dejavuserifbi.ctg.z │ │ ├── dejavuserifbi.php │ │ ├── dejavuserifbi.z │ │ ├── dejavuserifcondensed.ctg.z │ │ ├── dejavuserifcondensed.php │ │ ├── dejavuserifcondensed.z │ │ ├── dejavuserifcondensedb.ctg.z │ │ ├── dejavuserifcondensedb.php │ │ ├── dejavuserifcondensedb.z │ │ ├── dejavuserifcondensedbi.ctg.z │ │ ├── dejavuserifcondensedbi.php │ │ ├── dejavuserifcondensedbi.z │ │ ├── dejavuserifcondensedi.ctg.z │ │ ├── dejavuserifcondensedi.php │ │ ├── dejavuserifcondensedi.z │ │ ├── dejavuserifi.ctg.z │ │ ├── dejavuserifi.php │ │ ├── dejavuserifi.z │ │ ├── freefont-20100919 │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── CREDITS │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ └── README │ │ ├── freefont-20120503 │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── CREDITS │ │ │ ├── ChangeLog │ │ │ ├── INSTALL │ │ │ ├── README │ │ │ ├── TROUBLESHOOTING │ │ │ └── USAGE │ │ ├── freemono.ctg.z │ │ ├── freemono.php │ │ ├── freemono.z │ │ ├── freemonob.ctg.z │ │ ├── freemonob.php │ │ ├── freemonob.z │ │ ├── freemonobi.ctg.z │ │ ├── freemonobi.php │ │ ├── freemonobi.z │ │ ├── freemonoi.ctg.z │ │ ├── freemonoi.php │ │ ├── freemonoi.z │ │ ├── freesans.ctg.z │ │ ├── freesans.php │ │ ├── freesans.z │ │ ├── freesansb.ctg.z │ │ ├── freesansb.php │ │ ├── freesansb.z │ │ ├── freesansbi.ctg.z │ │ ├── freesansbi.php │ │ ├── freesansbi.z │ │ ├── freesansi.ctg.z │ │ ├── freesansi.php │ │ ├── freesansi.z │ │ ├── freeserif.ctg.z │ │ ├── freeserif.php │ │ ├── freeserif.z │ │ ├── freeserifb.ctg.z │ │ ├── freeserifb.php │ │ ├── freeserifb.z │ │ ├── freeserifbi.ctg.z │ │ ├── freeserifbi.php │ │ ├── freeserifbi.z │ │ ├── freeserifi.ctg.z │ │ ├── freeserifi.php │ │ ├── freeserifi.z │ │ ├── helvetica.php │ │ ├── helveticab.php │ │ ├── helveticabi.php │ │ ├── helveticai.php │ │ ├── hysmyeongjostdmedium.php │ │ ├── kozgopromedium.php │ │ ├── kozminproregular.php │ │ ├── msungstdlight.php │ │ ├── pdfacourier.php │ │ ├── pdfacourier.z │ │ ├── pdfacourierb.php │ │ ├── pdfacourierb.z │ │ ├── pdfacourierbi.php │ │ ├── pdfacourierbi.z │ │ ├── pdfacourieri.php │ │ ├── pdfacourieri.z │ │ ├── pdfahelvetica.php │ │ ├── pdfahelvetica.z │ │ ├── pdfahelveticab.php │ │ ├── pdfahelveticab.z │ │ ├── pdfahelveticabi.php │ │ ├── pdfahelveticabi.z │ │ ├── pdfahelveticai.php │ │ ├── pdfahelveticai.z │ │ ├── pdfasymbol.php │ │ ├── pdfasymbol.z │ │ ├── pdfatimes.php │ │ ├── pdfatimes.z │ │ ├── pdfatimesb.php │ │ ├── pdfatimesb.z │ │ ├── pdfatimesbi.php │ │ ├── pdfatimesbi.z │ │ ├── pdfatimesi.php │ │ ├── pdfatimesi.z │ │ ├── pdfazapfdingbats.php │ │ ├── pdfazapfdingbats.z │ │ ├── stsongstdlight.php │ │ ├── symbol.php │ │ ├── times.php │ │ ├── timesb.php │ │ ├── timesbi.php │ │ ├── timesi.php │ │ ├── uni2cid_ac15.php │ │ ├── uni2cid_ag15.php │ │ ├── uni2cid_aj16.php │ │ ├── uni2cid_ak12.php │ │ └── zapfdingbats.php │ │ ├── include │ │ ├── barcodes │ │ │ ├── datamatrix.php │ │ │ ├── pdf417.php │ │ │ └── qrcode.php │ │ ├── sRGB.icc │ │ ├── tcpdf_colors.php │ │ ├── tcpdf_filters.php │ │ ├── tcpdf_font_data.php │ │ ├── tcpdf_fonts.php │ │ ├── tcpdf_images.php │ │ └── tcpdf_static.php │ │ ├── tcpdf.php │ │ ├── tcpdf_autoconfig.php │ │ ├── tcpdf_barcodes_1d.php │ │ ├── tcpdf_barcodes_2d.php │ │ └── tools │ │ ├── .htaccess │ │ ├── convert_fonts_examples.txt │ │ └── tcpdf_addfont.php ├── thepixeldeveloper │ └── sitemap │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── docker-compose.yml │ │ ├── phpstan.neon │ │ └── src │ │ ├── ChunkedCollection.php │ │ ├── ChunkedUrlset.php │ │ ├── Collection.php │ │ ├── Drivers │ │ └── XmlWriterDriver.php │ │ ├── Extensions │ │ ├── Image.php │ │ ├── Link.php │ │ ├── Mobile.php │ │ ├── News.php │ │ └── Video.php │ │ ├── Interfaces │ │ ├── DriverInterface.php │ │ └── VisitorInterface.php │ │ ├── Sitemap.php │ │ ├── SitemapIndex.php │ │ ├── Url.php │ │ └── Urlset.php └── vlucas │ └── phpdotenv │ ├── LICENSE │ ├── composer.json │ └── src │ ├── Dotenv.php │ ├── Exception │ ├── ExceptionInterface.php │ ├── InvalidEncodingException.php │ ├── InvalidFileException.php │ ├── InvalidPathException.php │ └── ValidationException.php │ ├── Loader │ ├── Loader.php │ ├── LoaderInterface.php │ └── Resolver.php │ ├── Parser │ ├── Entry.php │ ├── EntryParser.php │ ├── Lexer.php │ ├── Lines.php │ ├── Parser.php │ ├── ParserInterface.php │ └── Value.php │ ├── Repository │ ├── Adapter │ │ ├── AdapterInterface.php │ │ ├── ApacheAdapter.php │ │ ├── ArrayAdapter.php │ │ ├── EnvConstAdapter.php │ │ ├── GuardedWriter.php │ │ ├── ImmutableWriter.php │ │ ├── MultiReader.php │ │ ├── MultiWriter.php │ │ ├── PutenvAdapter.php │ │ ├── ReaderInterface.php │ │ ├── ReplacingWriter.php │ │ ├── ServerConstAdapter.php │ │ └── WriterInterface.php │ ├── AdapterRepository.php │ ├── RepositoryBuilder.php │ └── RepositoryInterface.php │ ├── Store │ ├── File │ │ ├── Paths.php │ │ └── Reader.php │ ├── FileStore.php │ ├── StoreBuilder.php │ ├── StoreInterface.php │ └── StringStore.php │ ├── Util │ ├── Regex.php │ └── Str.php │ └── Validator.php └── version.json /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/.distignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/.htaccess -------------------------------------------------------------------------------- /.htaccess.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/.htaccess.example -------------------------------------------------------------------------------- /.nginx.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/.nginx.conf.example -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/README.md -------------------------------------------------------------------------------- /app/Controllers/Admin/CmsAdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/Admin/CmsAdminController.php -------------------------------------------------------------------------------- /app/Controllers/Admin/LanguagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/Admin/LanguagesController.php -------------------------------------------------------------------------------- /app/Controllers/Admin/MessagesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/Admin/MessagesController.php -------------------------------------------------------------------------------- /app/Controllers/Admin/NotificationsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/Admin/NotificationsController.php -------------------------------------------------------------------------------- /app/Controllers/Admin/StatsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/Admin/StatsController.php -------------------------------------------------------------------------------- /app/Controllers/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/AuthController.php -------------------------------------------------------------------------------- /app/Controllers/AutoriApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/AutoriApiController.php -------------------------------------------------------------------------------- /app/Controllers/AutoriController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/AutoriController.php -------------------------------------------------------------------------------- /app/Controllers/CmsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/CmsController.php -------------------------------------------------------------------------------- /app/Controllers/CollocazioneController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/CollocazioneController.php -------------------------------------------------------------------------------- /app/Controllers/ContactController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/ContactController.php -------------------------------------------------------------------------------- /app/Controllers/CookiesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/CookiesController.php -------------------------------------------------------------------------------- /app/Controllers/CopyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/CopyController.php -------------------------------------------------------------------------------- /app/Controllers/CoverController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/CoverController.php -------------------------------------------------------------------------------- /app/Controllers/CsvImportController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/CsvImportController.php -------------------------------------------------------------------------------- /app/Controllers/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/DashboardController.php -------------------------------------------------------------------------------- /app/Controllers/DeweyApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/DeweyApiController.php -------------------------------------------------------------------------------- /app/Controllers/EditoriApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/EditoriApiController.php -------------------------------------------------------------------------------- /app/Controllers/EditorsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/EditorsController.php -------------------------------------------------------------------------------- /app/Controllers/EventsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/EventsController.php -------------------------------------------------------------------------------- /app/Controllers/FrontendController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/FrontendController.php -------------------------------------------------------------------------------- /app/Controllers/GeneriApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/GeneriApiController.php -------------------------------------------------------------------------------- /app/Controllers/GeneriController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/GeneriController.php -------------------------------------------------------------------------------- /app/Controllers/LanguageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/LanguageController.php -------------------------------------------------------------------------------- /app/Controllers/LibriApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/LibriApiController.php -------------------------------------------------------------------------------- /app/Controllers/LibriController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/LibriController.php -------------------------------------------------------------------------------- /app/Controllers/LoanApprovalController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/LoanApprovalController.php -------------------------------------------------------------------------------- /app/Controllers/MaintenanceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/MaintenanceController.php -------------------------------------------------------------------------------- /app/Controllers/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/PasswordController.php -------------------------------------------------------------------------------- /app/Controllers/PluginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/PluginController.php -------------------------------------------------------------------------------- /app/Controllers/PrestitiApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/PrestitiApiController.php -------------------------------------------------------------------------------- /app/Controllers/PrestitiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/PrestitiController.php -------------------------------------------------------------------------------- /app/Controllers/PrivacyController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/PrivacyController.php -------------------------------------------------------------------------------- /app/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/ProfileController.php -------------------------------------------------------------------------------- /app/Controllers/PublicApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/PublicApiController.php -------------------------------------------------------------------------------- /app/Controllers/RecensioniController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/RecensioniController.php -------------------------------------------------------------------------------- /app/Controllers/RegistrationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/RegistrationController.php -------------------------------------------------------------------------------- /app/Controllers/ReservationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/ReservationManager.php -------------------------------------------------------------------------------- /app/Controllers/ReservationsAdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/ReservationsAdminController.php -------------------------------------------------------------------------------- /app/Controllers/ReservationsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/ReservationsController.php -------------------------------------------------------------------------------- /app/Controllers/ScrapeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/ScrapeController.php -------------------------------------------------------------------------------- /app/Controllers/SearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/SearchController.php -------------------------------------------------------------------------------- /app/Controllers/SecurityLogsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/SecurityLogsController.php -------------------------------------------------------------------------------- /app/Controllers/SeoController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/SeoController.php -------------------------------------------------------------------------------- /app/Controllers/SettingsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/SettingsController.php -------------------------------------------------------------------------------- /app/Controllers/ThemeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/ThemeController.php -------------------------------------------------------------------------------- /app/Controllers/UpdateController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/UpdateController.php -------------------------------------------------------------------------------- /app/Controllers/UserActionsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/UserActionsController.php -------------------------------------------------------------------------------- /app/Controllers/UserDashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/UserDashboardController.php -------------------------------------------------------------------------------- /app/Controllers/UserWishlistController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/UserWishlistController.php -------------------------------------------------------------------------------- /app/Controllers/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/UsersController.php -------------------------------------------------------------------------------- /app/Controllers/UtentiApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Controllers/UtentiApiController.php -------------------------------------------------------------------------------- /app/Middleware/AdminAuthMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Middleware/AdminAuthMiddleware.php -------------------------------------------------------------------------------- /app/Middleware/ApiKeyMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Middleware/ApiKeyMiddleware.php -------------------------------------------------------------------------------- /app/Middleware/AuthMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Middleware/AuthMiddleware.php -------------------------------------------------------------------------------- /app/Middleware/CsrfMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Middleware/CsrfMiddleware.php -------------------------------------------------------------------------------- /app/Middleware/RateLimitMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Middleware/RateLimitMiddleware.php -------------------------------------------------------------------------------- /app/Models/ApiKeyRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Models/ApiKeyRepository.php -------------------------------------------------------------------------------- /app/Models/AuthorRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Models/AuthorRepository.php -------------------------------------------------------------------------------- /app/Models/BookRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Models/BookRepository.php -------------------------------------------------------------------------------- /app/Models/CollocationRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Models/CollocationRepository.php -------------------------------------------------------------------------------- /app/Models/CopyRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Models/CopyRepository.php -------------------------------------------------------------------------------- /app/Models/DashboardStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Models/DashboardStats.php -------------------------------------------------------------------------------- /app/Models/GenereRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Models/GenereRepository.php -------------------------------------------------------------------------------- /app/Models/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Models/Language.php -------------------------------------------------------------------------------- /app/Models/LoanRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Models/LoanRepository.php -------------------------------------------------------------------------------- /app/Models/PublisherRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Models/PublisherRepository.php -------------------------------------------------------------------------------- /app/Models/SettingsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Models/SettingsRepository.php -------------------------------------------------------------------------------- /app/Models/TaxonomyRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Models/TaxonomyRepository.php -------------------------------------------------------------------------------- /app/Models/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Models/UserRepository.php -------------------------------------------------------------------------------- /app/Repositories/RecensioniRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Repositories/RecensioniRepository.php -------------------------------------------------------------------------------- /app/Routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Routes/web.php -------------------------------------------------------------------------------- /app/Support/AuthorNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/AuthorNormalizer.php -------------------------------------------------------------------------------- /app/Support/AuthorizationHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/AuthorizationHelper.php -------------------------------------------------------------------------------- /app/Support/BookDataMerger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/BookDataMerger.php -------------------------------------------------------------------------------- /app/Support/Branding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/Branding.php -------------------------------------------------------------------------------- /app/Support/CmsHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/CmsHelper.php -------------------------------------------------------------------------------- /app/Support/ConfigStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/ConfigStore.php -------------------------------------------------------------------------------- /app/Support/ContentSanitizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/ContentSanitizer.php -------------------------------------------------------------------------------- /app/Support/Csrf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/Csrf.php -------------------------------------------------------------------------------- /app/Support/CsrfHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/CsrfHelper.php -------------------------------------------------------------------------------- /app/Support/DataIntegrity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/DataIntegrity.php -------------------------------------------------------------------------------- /app/Support/DateHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/DateHelper.php -------------------------------------------------------------------------------- /app/Support/DeweyAutoPopulator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/DeweyAutoPopulator.php -------------------------------------------------------------------------------- /app/Support/EmailService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/EmailService.php -------------------------------------------------------------------------------- /app/Support/GenreHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/GenreHelper.php -------------------------------------------------------------------------------- /app/Support/HookManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/HookManager.php -------------------------------------------------------------------------------- /app/Support/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/Hooks.php -------------------------------------------------------------------------------- /app/Support/HtmlHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/HtmlHelper.php -------------------------------------------------------------------------------- /app/Support/I18n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/I18n.php -------------------------------------------------------------------------------- /app/Support/IcsGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/IcsGenerator.php -------------------------------------------------------------------------------- /app/Support/InputValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/InputValidator.php -------------------------------------------------------------------------------- /app/Support/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/Log.php -------------------------------------------------------------------------------- /app/Support/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/Mailer.php -------------------------------------------------------------------------------- /app/Support/MaintenanceService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/MaintenanceService.php -------------------------------------------------------------------------------- /app/Support/MergeHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/MergeHelper.php -------------------------------------------------------------------------------- /app/Support/NotificationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/NotificationService.php -------------------------------------------------------------------------------- /app/Support/PluginManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/PluginManager.php -------------------------------------------------------------------------------- /app/Support/RateLimiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/RateLimiter.php -------------------------------------------------------------------------------- /app/Support/RouteTranslator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/RouteTranslator.php -------------------------------------------------------------------------------- /app/Support/SecureLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/SecureLogger.php -------------------------------------------------------------------------------- /app/Support/SettingsMailTemplates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/SettingsMailTemplates.php -------------------------------------------------------------------------------- /app/Support/SitemapGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/SitemapGenerator.php -------------------------------------------------------------------------------- /app/Support/ThemeColorizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/ThemeColorizer.php -------------------------------------------------------------------------------- /app/Support/ThemeManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/ThemeManager.php -------------------------------------------------------------------------------- /app/Support/Updater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Support/Updater.php -------------------------------------------------------------------------------- /app/Views/admin/cms-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/admin/cms-edit.php -------------------------------------------------------------------------------- /app/Views/admin/csv_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/admin/csv_import.php -------------------------------------------------------------------------------- /app/Views/admin/integrity_report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/admin/integrity_report.php -------------------------------------------------------------------------------- /app/Views/admin/languages/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/admin/languages/create.php -------------------------------------------------------------------------------- /app/Views/admin/languages/edit-routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/admin/languages/edit-routes.php -------------------------------------------------------------------------------- /app/Views/admin/languages/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/admin/languages/edit.php -------------------------------------------------------------------------------- /app/Views/admin/languages/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/admin/languages/index.php -------------------------------------------------------------------------------- /app/Views/admin/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/admin/notifications.php -------------------------------------------------------------------------------- /app/Views/admin/pending_loans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/admin/pending_loans.php -------------------------------------------------------------------------------- /app/Views/admin/plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/admin/plugins.php -------------------------------------------------------------------------------- /app/Views/admin/recensioni/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/admin/recensioni/index.php -------------------------------------------------------------------------------- /app/Views/admin/security_logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/admin/security_logs.php -------------------------------------------------------------------------------- /app/Views/admin/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/admin/settings.php -------------------------------------------------------------------------------- /app/Views/admin/stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/admin/stats.php -------------------------------------------------------------------------------- /app/Views/admin/theme-customize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/admin/theme-customize.php -------------------------------------------------------------------------------- /app/Views/admin/themes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/admin/themes.php -------------------------------------------------------------------------------- /app/Views/admin/updates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/admin/updates.php -------------------------------------------------------------------------------- /app/Views/auth/forgot-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/auth/forgot-password.php -------------------------------------------------------------------------------- /app/Views/auth/forgot_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/auth/forgot_password.php -------------------------------------------------------------------------------- /app/Views/auth/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/auth/login.php -------------------------------------------------------------------------------- /app/Views/auth/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/auth/register.php -------------------------------------------------------------------------------- /app/Views/auth/register_success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/auth/register_success.php -------------------------------------------------------------------------------- /app/Views/auth/reset-password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/auth/reset-password.php -------------------------------------------------------------------------------- /app/Views/auth/reset_password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/auth/reset_password.php -------------------------------------------------------------------------------- /app/Views/autori/crea_autore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/autori/crea_autore.php -------------------------------------------------------------------------------- /app/Views/autori/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/autori/index.php -------------------------------------------------------------------------------- /app/Views/autori/modifica_autore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/autori/modifica_autore.php -------------------------------------------------------------------------------- /app/Views/autori/scheda_autore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/autori/scheda_autore.php -------------------------------------------------------------------------------- /app/Views/cms/edit-home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/cms/edit-home.php -------------------------------------------------------------------------------- /app/Views/collocazione/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/collocazione/index.php -------------------------------------------------------------------------------- /app/Views/dashboard/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/dashboard/index.php -------------------------------------------------------------------------------- /app/Views/editori/crea_editore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/editori/crea_editore.php -------------------------------------------------------------------------------- /app/Views/editori/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/editori/index.php -------------------------------------------------------------------------------- /app/Views/editori/modifica_editore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/editori/modifica_editore.php -------------------------------------------------------------------------------- /app/Views/editori/scheda_editore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/editori/scheda_editore.php -------------------------------------------------------------------------------- /app/Views/errors/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/errors/404.php -------------------------------------------------------------------------------- /app/Views/errors/500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/errors/500.php -------------------------------------------------------------------------------- /app/Views/events/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/events/form.php -------------------------------------------------------------------------------- /app/Views/events/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/events/index.php -------------------------------------------------------------------------------- /app/Views/frontend/archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/frontend/archive.php -------------------------------------------------------------------------------- /app/Views/frontend/book-detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/frontend/book-detail.php -------------------------------------------------------------------------------- /app/Views/frontend/catalog-grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/frontend/catalog-grid.php -------------------------------------------------------------------------------- /app/Views/frontend/catalog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/frontend/catalog.php -------------------------------------------------------------------------------- /app/Views/frontend/cms-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/frontend/cms-page.php -------------------------------------------------------------------------------- /app/Views/frontend/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/frontend/contact.php -------------------------------------------------------------------------------- /app/Views/frontend/cookies-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/frontend/cookies-page.php -------------------------------------------------------------------------------- /app/Views/frontend/event-detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/frontend/event-detail.php -------------------------------------------------------------------------------- /app/Views/frontend/events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/frontend/events.php -------------------------------------------------------------------------------- /app/Views/frontend/home-books-grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/frontend/home-books-grid.php -------------------------------------------------------------------------------- /app/Views/frontend/home-sections/cta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/frontend/home-sections/cta.php -------------------------------------------------------------------------------- /app/Views/frontend/home-sections/events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/frontend/home-sections/events.php -------------------------------------------------------------------------------- /app/Views/frontend/home-sections/hero.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/frontend/home-sections/hero.php -------------------------------------------------------------------------------- /app/Views/frontend/home-sections/text_content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/frontend/home-sections/text_content.php -------------------------------------------------------------------------------- /app/Views/frontend/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/frontend/home.php -------------------------------------------------------------------------------- /app/Views/frontend/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/frontend/layout.php -------------------------------------------------------------------------------- /app/Views/frontend/privacy-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/frontend/privacy-page.php -------------------------------------------------------------------------------- /app/Views/generi/crea_genere.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/generi/crea_genere.php -------------------------------------------------------------------------------- /app/Views/generi/dettaglio_genere.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/generi/dettaglio_genere.php -------------------------------------------------------------------------------- /app/Views/generi/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/generi/index.php -------------------------------------------------------------------------------- /app/Views/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/layout.php -------------------------------------------------------------------------------- /app/Views/libri/crea_libro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/libri/crea_libro.php -------------------------------------------------------------------------------- /app/Views/libri/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/libri/index.php -------------------------------------------------------------------------------- /app/Views/libri/modifica_libro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/libri/modifica_libro.php -------------------------------------------------------------------------------- /app/Views/libri/partials/book_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/libri/partials/book_form.php -------------------------------------------------------------------------------- /app/Views/libri/scheda_libro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/libri/scheda_libro.php -------------------------------------------------------------------------------- /app/Views/partials/cookie-banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/partials/cookie-banner.php -------------------------------------------------------------------------------- /app/Views/partials/language-switcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/partials/language-switcher.php -------------------------------------------------------------------------------- /app/Views/partials/loan-actions-swal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/partials/loan-actions-swal.php -------------------------------------------------------------------------------- /app/Views/prenotazioni/crea_prenotazione.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/prenotazioni/crea_prenotazione.php -------------------------------------------------------------------------------- /app/Views/prenotazioni/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/prenotazioni/index.php -------------------------------------------------------------------------------- /app/Views/prenotazioni/modifica_prenotazione.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/prenotazioni/modifica_prenotazione.php -------------------------------------------------------------------------------- /app/Views/prestiti/crea_prestito.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/prestiti/crea_prestito.php -------------------------------------------------------------------------------- /app/Views/prestiti/dettagli_prestito.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/prestiti/dettagli_prestito.php -------------------------------------------------------------------------------- /app/Views/prestiti/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/prestiti/index.php -------------------------------------------------------------------------------- /app/Views/prestiti/modifica_prestito.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/prestiti/modifica_prestito.php -------------------------------------------------------------------------------- /app/Views/prestiti/restituito_prestito.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/prestiti/restituito_prestito.php -------------------------------------------------------------------------------- /app/Views/profile/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/profile/index.php -------------------------------------------------------------------------------- /app/Views/profile/reservations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/profile/reservations.php -------------------------------------------------------------------------------- /app/Views/profile/wishlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/profile/wishlist.php -------------------------------------------------------------------------------- /app/Views/settings/advanced-tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/settings/advanced-tab.php -------------------------------------------------------------------------------- /app/Views/settings/contacts-tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/settings/contacts-tab.php -------------------------------------------------------------------------------- /app/Views/settings/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/settings/index.php -------------------------------------------------------------------------------- /app/Views/settings/messages-tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/settings/messages-tab.php -------------------------------------------------------------------------------- /app/Views/settings/privacy-tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/settings/privacy-tab.php -------------------------------------------------------------------------------- /app/Views/user_dashboard/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/user_dashboard/index.php -------------------------------------------------------------------------------- /app/Views/user_dashboard/prenotazioni.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/user_dashboard/prenotazioni.php -------------------------------------------------------------------------------- /app/Views/user_layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/user_layout.php -------------------------------------------------------------------------------- /app/Views/utenti/crea_utente.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/utenti/crea_utente.php -------------------------------------------------------------------------------- /app/Views/utenti/dettagli_utente.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/utenti/dettagli_utente.php -------------------------------------------------------------------------------- /app/Views/utenti/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/utenti/index.php -------------------------------------------------------------------------------- /app/Views/utenti/modifica_utente.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/Views/utenti/modifica_utente.php -------------------------------------------------------------------------------- /app/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/app/helpers.php -------------------------------------------------------------------------------- /bin/build-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/bin/build-release.sh -------------------------------------------------------------------------------- /bin/setup-permissions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/bin/setup-permissions.sh -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/composer.lock -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/config.json -------------------------------------------------------------------------------- /config/container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/config/container.php -------------------------------------------------------------------------------- /config/default_texts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/config/default_texts.php -------------------------------------------------------------------------------- /config/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/config/settings.php -------------------------------------------------------------------------------- /cron/automatic-notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/cron/automatic-notifications.php -------------------------------------------------------------------------------- /data/dewey/dewey_completo_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/data/dewey/dewey_completo_en.json -------------------------------------------------------------------------------- /data/dewey/dewey_completo_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/data/dewey/dewey_completo_it.json -------------------------------------------------------------------------------- /data/dewey/levels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/data/dewey/levels.json -------------------------------------------------------------------------------- /docs/COMPLETE_HOOKS_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/COMPLETE_HOOKS_SYSTEM.md -------------------------------------------------------------------------------- /docs/CREATING_UPDATES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/CREATING_UPDATES.md -------------------------------------------------------------------------------- /docs/PLUGIN_EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/PLUGIN_EXAMPLES.md -------------------------------------------------------------------------------- /docs/PLUGIN_HOOKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/PLUGIN_HOOKS.md -------------------------------------------------------------------------------- /docs/PLUGIN_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/PLUGIN_SYSTEM.md -------------------------------------------------------------------------------- /docs/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/README.MD -------------------------------------------------------------------------------- /docs/SEO_IMPLEMENTATION_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/SEO_IMPLEMENTATION_TESTING.md -------------------------------------------------------------------------------- /docs/api.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/api.MD -------------------------------------------------------------------------------- /docs/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/books.png -------------------------------------------------------------------------------- /docs/catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/catalog.png -------------------------------------------------------------------------------- /docs/collocazione.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/collocazione.MD -------------------------------------------------------------------------------- /docs/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/dashboard.png -------------------------------------------------------------------------------- /docs/examples/example-plugin/BookRatingPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/examples/example-plugin/BookRatingPlugin.php -------------------------------------------------------------------------------- /docs/examples/example-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/examples/example-plugin/README.md -------------------------------------------------------------------------------- /docs/examples/example-plugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/examples/example-plugin/plugin.json -------------------------------------------------------------------------------- /docs/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/frontend/README.md -------------------------------------------------------------------------------- /docs/frontend/catalogo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/frontend/catalogo.md -------------------------------------------------------------------------------- /docs/frontend/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/frontend/home.md -------------------------------------------------------------------------------- /docs/frontend/login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/frontend/login.md -------------------------------------------------------------------------------- /docs/frontend/prenotazioni.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/frontend/prenotazioni.md -------------------------------------------------------------------------------- /docs/frontend/register.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/frontend/register.md -------------------------------------------------------------------------------- /docs/frontend/scheda_libro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/frontend/scheda_libro.md -------------------------------------------------------------------------------- /docs/frontend/wishlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/frontend/wishlist.md -------------------------------------------------------------------------------- /docs/funzioni.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/funzioni.md -------------------------------------------------------------------------------- /docs/inserimento_libri.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/inserimento_libri.MD -------------------------------------------------------------------------------- /docs/installation.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/installation.MD -------------------------------------------------------------------------------- /docs/libri.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/libri.MD -------------------------------------------------------------------------------- /docs/lingue_traduzioni.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/lingue_traduzioni.md -------------------------------------------------------------------------------- /docs/modifica_libro.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/modifica_libro.MD -------------------------------------------------------------------------------- /docs/review.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/review.MD -------------------------------------------------------------------------------- /docs/scheda_libro.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/scheda_libro.MD -------------------------------------------------------------------------------- /docs/settings.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/settings.MD -------------------------------------------------------------------------------- /docs/stampa_etichette.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/stampa_etichette.MD -------------------------------------------------------------------------------- /docs/utenti.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/docs/utenti.md -------------------------------------------------------------------------------- /frontend/css/bootstrap-overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/frontend/css/bootstrap-overrides.css -------------------------------------------------------------------------------- /frontend/css/flatpickr-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/frontend/css/flatpickr-custom.css -------------------------------------------------------------------------------- /frontend/css/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/frontend/css/input.css -------------------------------------------------------------------------------- /frontend/css/modern-enhancements.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/frontend/css/modern-enhancements.css -------------------------------------------------------------------------------- /frontend/js/flatpickr-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/frontend/js/flatpickr-init.js -------------------------------------------------------------------------------- /frontend/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/frontend/js/index.js -------------------------------------------------------------------------------- /frontend/js/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/frontend/js/vendor.js -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/frontend/webpack.config.js -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/index.php -------------------------------------------------------------------------------- /installer/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/.htaccess -------------------------------------------------------------------------------- /installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/README.md -------------------------------------------------------------------------------- /installer/assets/installer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/assets/installer.js -------------------------------------------------------------------------------- /installer/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/assets/style.css -------------------------------------------------------------------------------- /installer/classes/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/classes/Installer.php -------------------------------------------------------------------------------- /installer/classes/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/classes/Validator.php -------------------------------------------------------------------------------- /installer/database/data_en_US.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/database/data_en_US.sql -------------------------------------------------------------------------------- /installer/database/data_it_IT.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/database/data_it_IT.sql -------------------------------------------------------------------------------- /installer/database/indexes_optimization.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/database/indexes_optimization.sql -------------------------------------------------------------------------------- /installer/database/indexes_optimization_mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/database/indexes_optimization_mysql.sql -------------------------------------------------------------------------------- /installer/database/migrations/migrate_0.3.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/database/migrations/migrate_0.3.0.sql -------------------------------------------------------------------------------- /installer/database/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/database/schema.sql -------------------------------------------------------------------------------- /installer/database/triggers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/database/triggers.sql -------------------------------------------------------------------------------- /installer/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/index.php -------------------------------------------------------------------------------- /installer/plugins/dewey-editor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/plugins/dewey-editor.zip -------------------------------------------------------------------------------- /installer/steps/step0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/steps/step0.php -------------------------------------------------------------------------------- /installer/steps/step1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/steps/step1.php -------------------------------------------------------------------------------- /installer/steps/step2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/steps/step2.php -------------------------------------------------------------------------------- /installer/steps/step3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/steps/step3.php -------------------------------------------------------------------------------- /installer/steps/step4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/steps/step4.php -------------------------------------------------------------------------------- /installer/steps/step5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/steps/step5.php -------------------------------------------------------------------------------- /installer/steps/step6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/steps/step6.php -------------------------------------------------------------------------------- /installer/steps/step7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/installer/steps/step7.php -------------------------------------------------------------------------------- /internal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/internal/.gitignore -------------------------------------------------------------------------------- /internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/internal/README.md -------------------------------------------------------------------------------- /locale/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/locale/en_US.json -------------------------------------------------------------------------------- /locale/it_IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/locale/it_IT.json -------------------------------------------------------------------------------- /locale/routes_en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/locale/routes_en_US.json -------------------------------------------------------------------------------- /locale/routes_it_IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/locale/routes_it_IT.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/package.json -------------------------------------------------------------------------------- /php.ini.recommended: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/php.ini.recommended -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/.htaccess.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/.htaccess.dist -------------------------------------------------------------------------------- /public/.htaccess.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/.htaccess.example -------------------------------------------------------------------------------- /public/assets/06954c913fa69c107e01.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/06954c913fa69c107e01.woff -------------------------------------------------------------------------------- /public/assets/07e0e0017a987f6c727e.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/07e0e0017a987f6c727e.woff -------------------------------------------------------------------------------- /public/assets/1104236696a5d2d1f236.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/1104236696a5d2d1f236.woff2 -------------------------------------------------------------------------------- /public/assets/111844ddb503252b7554.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/111844ddb503252b7554.woff2 -------------------------------------------------------------------------------- /public/assets/1902b077b119906b31af.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/1902b077b119906b31af.woff2 -------------------------------------------------------------------------------- /public/assets/1c5c7716b05754cb4eab.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/1c5c7716b05754cb4eab.woff2 -------------------------------------------------------------------------------- /public/assets/2ea1079c0069eb040a52.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/2ea1079c0069eb040a52.woff -------------------------------------------------------------------------------- /public/assets/354.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/354.bundle.js -------------------------------------------------------------------------------- /public/assets/418.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/418.bundle.js -------------------------------------------------------------------------------- /public/assets/5014db633e71a7741bf5.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/5014db633e71a7741bf5.woff -------------------------------------------------------------------------------- /public/assets/661.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/661.bundle.js -------------------------------------------------------------------------------- /public/assets/6651ca189ca8f1d3553a.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/6651ca189ca8f1d3553a.woff -------------------------------------------------------------------------------- /public/assets/69a8d1d484967aba2389.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/69a8d1d484967aba2389.woff2 -------------------------------------------------------------------------------- /public/assets/6f05ca9ab7b5345dbc07.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/6f05ca9ab7b5345dbc07.woff2 -------------------------------------------------------------------------------- /public/assets/8ae0d37556ff1e685de2.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/8ae0d37556ff1e685de2.woff2 -------------------------------------------------------------------------------- /public/assets/9bc67eff47e237863460.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/9bc67eff47e237863460.woff -------------------------------------------------------------------------------- /public/assets/b7c27c60f848f2083f45.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/b7c27c60f848f2083f45.woff2 -------------------------------------------------------------------------------- /public/assets/books.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/books.jpg -------------------------------------------------------------------------------- /public/assets/brand/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/brand/logo.png -------------------------------------------------------------------------------- /public/assets/brand/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/brand/logo_small.png -------------------------------------------------------------------------------- /public/assets/brand/pinakes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/brand/pinakes.png -------------------------------------------------------------------------------- /public/assets/brand/social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/brand/social.jpg -------------------------------------------------------------------------------- /public/assets/c73ae7252669254d2588.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/c73ae7252669254d2588.woff -------------------------------------------------------------------------------- /public/assets/css/silktide-consent-manager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/css/silktide-consent-manager.css -------------------------------------------------------------------------------- /public/assets/css/sortable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/css/sortable.min.css -------------------------------------------------------------------------------- /public/assets/css/swal-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/css/swal-theme.css -------------------------------------------------------------------------------- /public/assets/d2cf8417dfce77f8f2be.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/d2cf8417dfce77f8f2be.woff2 -------------------------------------------------------------------------------- /public/assets/e25d8fa1cf6e38254bbe.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/e25d8fa1cf6e38254bbe.woff -------------------------------------------------------------------------------- /public/assets/e4340c52a50e727c6afa.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/e4340c52a50e727c6afa.woff2 -------------------------------------------------------------------------------- /public/assets/eb229bb9406cc043d5a4.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/eb229bb9406cc043d5a4.woff2 -------------------------------------------------------------------------------- /public/assets/eca1e21531598d5db58f.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/eca1e21531598d5db58f.woff2 -------------------------------------------------------------------------------- /public/assets/ecd3161813560194fe4f.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/ecd3161813560194fe4f.woff2 -------------------------------------------------------------------------------- /public/assets/f10265da6bd8d66999ac.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/f10265da6bd8d66999ac.woff -------------------------------------------------------------------------------- /public/assets/flatpickr-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/flatpickr-custom.css -------------------------------------------------------------------------------- /public/assets/flatpickr-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/flatpickr-init.js -------------------------------------------------------------------------------- /public/assets/fullcalendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/fullcalendar.min.js -------------------------------------------------------------------------------- /public/assets/grid-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/grid-01.svg -------------------------------------------------------------------------------- /public/assets/js/csrf-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/js/csrf-helper.js -------------------------------------------------------------------------------- /public/assets/js/silktide-consent-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/js/silktide-consent-manager.js -------------------------------------------------------------------------------- /public/assets/js/sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/js/sortable.min.js -------------------------------------------------------------------------------- /public/assets/js/swal-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/js/swal-config.js -------------------------------------------------------------------------------- /public/assets/js/verify-libraries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/js/verify-libraries.js -------------------------------------------------------------------------------- /public/assets/main.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/main.bundle.js -------------------------------------------------------------------------------- /public/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/main.css -------------------------------------------------------------------------------- /public/assets/star-rating/dist/star-rating.cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/star-rating/dist/star-rating.cjs.js -------------------------------------------------------------------------------- /public/assets/star-rating/dist/star-rating.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/star-rating/dist/star-rating.css -------------------------------------------------------------------------------- /public/assets/star-rating/dist/star-rating.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/star-rating/dist/star-rating.esm.js -------------------------------------------------------------------------------- /public/assets/star-rating/dist/star-rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/star-rating/dist/star-rating.js -------------------------------------------------------------------------------- /public/assets/star-rating/dist/star-rating.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/star-rating/dist/star-rating.min.css -------------------------------------------------------------------------------- /public/assets/star-rating/dist/star-rating.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/star-rating/dist/star-rating.min.js -------------------------------------------------------------------------------- /public/assets/star-rating/img/star-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/star-rating/img/star-empty.svg -------------------------------------------------------------------------------- /public/assets/star-rating/img/star-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/star-rating/img/star-full.svg -------------------------------------------------------------------------------- /public/assets/tinymce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/README.md -------------------------------------------------------------------------------- /public/assets/tinymce/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/bower.json -------------------------------------------------------------------------------- /public/assets/tinymce/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/composer.json -------------------------------------------------------------------------------- /public/assets/tinymce/icons/default/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/icons/default/icons.js -------------------------------------------------------------------------------- /public/assets/tinymce/icons/default/icons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/icons/default/icons.min.js -------------------------------------------------------------------------------- /public/assets/tinymce/icons/default/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/icons/default/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/license.md -------------------------------------------------------------------------------- /public/assets/tinymce/models/dom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/models/dom/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/models/dom/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/models/dom/model.js -------------------------------------------------------------------------------- /public/assets/tinymce/models/dom/model.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/models/dom/model.min.js -------------------------------------------------------------------------------- /public/assets/tinymce/notices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/notices.txt -------------------------------------------------------------------------------- /public/assets/tinymce/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/package.json -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/accordion/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/accordion/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/accordion/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/accordion/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/advlist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/advlist/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/advlist/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/advlist/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/anchor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/anchor/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/anchor/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/anchor/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/anchor/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/anchor/plugin.min.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/autolink/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/autolink/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/autolink/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/autolink/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/autoresize/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/autoresize/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/autoresize/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/autoresize/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/autosave/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/autosave/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/autosave/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/autosave/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/charmap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/charmap/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/charmap/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/charmap/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/code/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/code/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/code/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/code/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/code/plugin.min.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/codesample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/codesample/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/codesample/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/codesample/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/emoticons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/emoticons/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/emoticons/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/emoticons/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/fullscreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/fullscreen/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/fullscreen/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/fullscreen/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/help/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/help/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/help/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/help/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/help/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/help/plugin.min.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/image/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/image/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/image/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/image/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/image/plugin.min.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/importcss/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/importcss/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/importcss/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/importcss/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/link/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/link/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/link/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/link/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/link/plugin.min.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/lists/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/lists/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/lists/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/lists/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/lists/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/lists/plugin.min.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/media/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/media/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/media/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/media/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/media/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/media/plugin.min.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/nonbreaking/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/nonbreaking/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/pagebreak/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/pagebreak/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/pagebreak/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/pagebreak/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/preview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/preview/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/preview/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/preview/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/quickbars/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/quickbars/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/quickbars/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/quickbars/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/save/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/save/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/save/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/save/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/save/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/save/plugin.min.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/table/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/table/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/table/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/table/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/table/plugin.min.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/visualchars/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/visualchars/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/wordcount/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/wordcount/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/plugins/wordcount/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/plugins/wordcount/plugin.js -------------------------------------------------------------------------------- /public/assets/tinymce/skins/content/dark/content.min.ts: -------------------------------------------------------------------------------- 1 | export interface Classes { 2 | "mce-content-body": string; 3 | }; 4 | -------------------------------------------------------------------------------- /public/assets/tinymce/skins/content/dark/content.ts: -------------------------------------------------------------------------------- 1 | export interface Classes { 2 | "mce-content-body": string; 3 | }; 4 | -------------------------------------------------------------------------------- /public/assets/tinymce/skins/content/default/content.min.ts: -------------------------------------------------------------------------------- 1 | export interface Classes { 2 | "mce-content-body": string; 3 | }; 4 | -------------------------------------------------------------------------------- /public/assets/tinymce/skins/content/default/content.ts: -------------------------------------------------------------------------------- 1 | export interface Classes { 2 | "mce-content-body": string; 3 | }; 4 | -------------------------------------------------------------------------------- /public/assets/tinymce/skins/content/document/content.min.ts: -------------------------------------------------------------------------------- 1 | export interface Classes { 2 | "mce-content-body": string; 3 | }; 4 | -------------------------------------------------------------------------------- /public/assets/tinymce/skins/content/document/content.ts: -------------------------------------------------------------------------------- 1 | export interface Classes { 2 | "mce-content-body": string; 3 | }; 4 | -------------------------------------------------------------------------------- /public/assets/tinymce/skins/content/tinymce-5-dark/content.min.ts: -------------------------------------------------------------------------------- 1 | export interface Classes { 2 | "mce-content-body": string; 3 | }; 4 | -------------------------------------------------------------------------------- /public/assets/tinymce/skins/content/tinymce-5-dark/content.ts: -------------------------------------------------------------------------------- 1 | export interface Classes { 2 | "mce-content-body": string; 3 | }; 4 | -------------------------------------------------------------------------------- /public/assets/tinymce/skins/content/tinymce-5/content.min.ts: -------------------------------------------------------------------------------- 1 | export interface Classes { 2 | "mce-content-body": string; 3 | }; 4 | -------------------------------------------------------------------------------- /public/assets/tinymce/skins/content/tinymce-5/content.ts: -------------------------------------------------------------------------------- 1 | export interface Classes { 2 | "mce-content-body": string; 3 | }; 4 | -------------------------------------------------------------------------------- /public/assets/tinymce/skins/content/writer/content.min.ts: -------------------------------------------------------------------------------- 1 | export interface Classes { 2 | "mce-content-body": string; 3 | }; 4 | -------------------------------------------------------------------------------- /public/assets/tinymce/skins/content/writer/content.ts: -------------------------------------------------------------------------------- 1 | export interface Classes { 2 | "mce-content-body": string; 3 | }; 4 | -------------------------------------------------------------------------------- /public/assets/tinymce/skins/ui/oxide-dark/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/skins/ui/oxide-dark/skin.css -------------------------------------------------------------------------------- /public/assets/tinymce/skins/ui/oxide-dark/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/skins/ui/oxide-dark/skin.js -------------------------------------------------------------------------------- /public/assets/tinymce/skins/ui/oxide-dark/skin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/skins/ui/oxide-dark/skin.ts -------------------------------------------------------------------------------- /public/assets/tinymce/skins/ui/oxide/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/skins/ui/oxide/content.css -------------------------------------------------------------------------------- /public/assets/tinymce/skins/ui/oxide/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/skins/ui/oxide/content.js -------------------------------------------------------------------------------- /public/assets/tinymce/skins/ui/oxide/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/skins/ui/oxide/content.ts -------------------------------------------------------------------------------- /public/assets/tinymce/skins/ui/oxide/skin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/skins/ui/oxide/skin.css -------------------------------------------------------------------------------- /public/assets/tinymce/skins/ui/oxide/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/skins/ui/oxide/skin.js -------------------------------------------------------------------------------- /public/assets/tinymce/skins/ui/oxide/skin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/skins/ui/oxide/skin.ts -------------------------------------------------------------------------------- /public/assets/tinymce/themes/silver/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/themes/silver/index.js -------------------------------------------------------------------------------- /public/assets/tinymce/themes/silver/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/themes/silver/theme.js -------------------------------------------------------------------------------- /public/assets/tinymce/tinymce.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/tinymce.d.ts -------------------------------------------------------------------------------- /public/assets/tinymce/tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/tinymce.js -------------------------------------------------------------------------------- /public/assets/tinymce/tinymce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/tinymce/tinymce.min.js -------------------------------------------------------------------------------- /public/assets/vendor.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/vendor.bundle.js -------------------------------------------------------------------------------- /public/assets/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/vendor.css -------------------------------------------------------------------------------- /public/assets/vendor/sortablejs/Sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/assets/vendor/sortablejs/Sortable.min.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/index.php -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /resources/css/auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/resources/css/auth.css -------------------------------------------------------------------------------- /router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/router.php -------------------------------------------------------------------------------- /scripts/copy-vendor-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/scripts/copy-vendor-assets.js -------------------------------------------------------------------------------- /scripts/generate-sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/scripts/generate-sitemap.php -------------------------------------------------------------------------------- /scripts/maintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/scripts/maintenance.php -------------------------------------------------------------------------------- /scripts/migrate-add-cms-locale-column.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/scripts/migrate-add-cms-locale-column.php -------------------------------------------------------------------------------- /scripts/migrate-add-languages-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/scripts/migrate-add-languages-table.php -------------------------------------------------------------------------------- /scripts/migrate-email-templates-i18n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/scripts/migrate-email-templates-i18n.php -------------------------------------------------------------------------------- /storage/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/.htaccess -------------------------------------------------------------------------------- /storage/backups/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/backups/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/backups/.htaccess -------------------------------------------------------------------------------- /storage/calendar/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/calendar/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/calendar/.htaccess -------------------------------------------------------------------------------- /storage/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/plugins/api-book-scraper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/api-book-scraper/README.md -------------------------------------------------------------------------------- /storage/plugins/api-book-scraper/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/api-book-scraper/plugin.json -------------------------------------------------------------------------------- /storage/plugins/api-book-scraper/wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/api-book-scraper/wrapper.php -------------------------------------------------------------------------------- /storage/plugins/dewey-editor/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/dewey-editor/plugin.json -------------------------------------------------------------------------------- /storage/plugins/dewey-editor/views/editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/dewey-editor/views/editor.php -------------------------------------------------------------------------------- /storage/plugins/dewey-editor/wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/dewey-editor/wrapper.php -------------------------------------------------------------------------------- /storage/plugins/digital-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/digital-library/README.md -------------------------------------------------------------------------------- /storage/plugins/digital-library/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/digital-library/plugin.json -------------------------------------------------------------------------------- /storage/plugins/digital-library/wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/digital-library/wrapper.php -------------------------------------------------------------------------------- /storage/plugins/open-library/FLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/open-library/FLOW.md -------------------------------------------------------------------------------- /storage/plugins/open-library/INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/open-library/INSTALLATION.md -------------------------------------------------------------------------------- /storage/plugins/open-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/open-library/README.md -------------------------------------------------------------------------------- /storage/plugins/open-library/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/open-library/demo.php -------------------------------------------------------------------------------- /storage/plugins/open-library/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/open-library/plugin.json -------------------------------------------------------------------------------- /storage/plugins/open-library/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/open-library/test.php -------------------------------------------------------------------------------- /storage/plugins/open-library/wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/open-library/wrapper.php -------------------------------------------------------------------------------- /storage/plugins/z39-server/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/z39-server/EXAMPLES.md -------------------------------------------------------------------------------- /storage/plugins/z39-server/INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/z39-server/INSTALLATION.md -------------------------------------------------------------------------------- /storage/plugins/z39-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/z39-server/README.md -------------------------------------------------------------------------------- /storage/plugins/z39-server/Z39ServerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/z39-server/Z39ServerPlugin.php -------------------------------------------------------------------------------- /storage/plugins/z39-server/endpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/z39-server/endpoint.php -------------------------------------------------------------------------------- /storage/plugins/z39-server/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/z39-server/plugin.json -------------------------------------------------------------------------------- /storage/plugins/z39-server/wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/plugins/z39-server/wrapper.php -------------------------------------------------------------------------------- /storage/tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/uploads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/uploads/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/storage/uploads/.htaccess -------------------------------------------------------------------------------- /storage/uploads/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/composer/installed.php -------------------------------------------------------------------------------- /vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /vendor/emleons/sim-rating/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/emleons/sim-rating/LICENSE -------------------------------------------------------------------------------- /vendor/emleons/sim-rating/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/emleons/sim-rating/README.md -------------------------------------------------------------------------------- /vendor/emleons/sim-rating/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/emleons/sim-rating/composer.json -------------------------------------------------------------------------------- /vendor/emleons/sim-rating/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/emleons/sim-rating/composer.lock -------------------------------------------------------------------------------- /vendor/emleons/sim-rating/src/Rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/emleons/sim-rating/src/Rating.php -------------------------------------------------------------------------------- /vendor/emleons/sim-rating/src/img/s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/emleons/sim-rating/src/img/s1.png -------------------------------------------------------------------------------- /vendor/emleons/sim-rating/src/img/s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/emleons/sim-rating/src/img/s2.png -------------------------------------------------------------------------------- /vendor/emleons/sim-rating/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/emleons/sim-rating/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/emleons/sim-rating/vendor/bin/php-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/emleons/sim-rating/vendor/bin/php-parse -------------------------------------------------------------------------------- /vendor/emleons/sim-rating/vendor/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/emleons/sim-rating/vendor/bin/phpunit -------------------------------------------------------------------------------- /vendor/emleons/sim-rating/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/fig/http-message-util/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /vendor/fig/http-message-util/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/fig/http-message-util/LICENSE -------------------------------------------------------------------------------- /vendor/fig/http-message-util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/fig/http-message-util/README.md -------------------------------------------------------------------------------- /vendor/fig/http-message-util/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/fig/http-message-util/composer.json -------------------------------------------------------------------------------- /vendor/google/recaptcha/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/google/recaptcha/LICENSE -------------------------------------------------------------------------------- /vendor/google/recaptcha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/google/recaptcha/README.md -------------------------------------------------------------------------------- /vendor/google/recaptcha/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/google/recaptcha/app.yaml -------------------------------------------------------------------------------- /vendor/google/recaptcha/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/google/recaptcha/composer.json -------------------------------------------------------------------------------- /vendor/google/recaptcha/src/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/google/recaptcha/src/autoload.php -------------------------------------------------------------------------------- /vendor/graham-campbell/result-type/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/graham-campbell/result-type/LICENSE -------------------------------------------------------------------------------- /vendor/laravel/serializable-closure/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/laravel/serializable-closure/LICENSE.md -------------------------------------------------------------------------------- /vendor/laravel/serializable-closure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/laravel/serializable-closure/README.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/monolog/monolog/LICENSE -------------------------------------------------------------------------------- /vendor/monolog/monolog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/monolog/monolog/README.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/monolog/monolog/composer.json -------------------------------------------------------------------------------- /vendor/monolog/monolog/src/Monolog/Level.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/monolog/monolog/src/Monolog/Level.php -------------------------------------------------------------------------------- /vendor/monolog/monolog/src/Monolog/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/monolog/monolog/src/Monolog/Logger.php -------------------------------------------------------------------------------- /vendor/monolog/monolog/src/Monolog/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/monolog/monolog/src/Monolog/Registry.php -------------------------------------------------------------------------------- /vendor/monolog/monolog/src/Monolog/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/monolog/monolog/src/Monolog/Utils.php -------------------------------------------------------------------------------- /vendor/nikic/fast-route/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/nikic/fast-route/.gitignore -------------------------------------------------------------------------------- /vendor/nikic/fast-route/.hhconfig: -------------------------------------------------------------------------------- 1 | assume_php=false 2 | -------------------------------------------------------------------------------- /vendor/nikic/fast-route/FastRoute.hhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/nikic/fast-route/FastRoute.hhi -------------------------------------------------------------------------------- /vendor/nikic/fast-route/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/nikic/fast-route/LICENSE -------------------------------------------------------------------------------- /vendor/nikic/fast-route/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/nikic/fast-route/README.md -------------------------------------------------------------------------------- /vendor/nikic/fast-route/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/nikic/fast-route/composer.json -------------------------------------------------------------------------------- /vendor/nikic/fast-route/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/nikic/fast-route/psalm.xml -------------------------------------------------------------------------------- /vendor/nikic/fast-route/src/DataGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/nikic/fast-route/src/DataGenerator.php -------------------------------------------------------------------------------- /vendor/nikic/fast-route/src/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/nikic/fast-route/src/Dispatcher.php -------------------------------------------------------------------------------- /vendor/nikic/fast-route/src/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/nikic/fast-route/src/Route.php -------------------------------------------------------------------------------- /vendor/nikic/fast-route/src/RouteCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/nikic/fast-route/src/RouteCollector.php -------------------------------------------------------------------------------- /vendor/nikic/fast-route/src/RouteParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/nikic/fast-route/src/RouteParser.php -------------------------------------------------------------------------------- /vendor/nikic/fast-route/src/RouteParser/Std.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/nikic/fast-route/src/RouteParser/Std.php -------------------------------------------------------------------------------- /vendor/nikic/fast-route/src/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/nikic/fast-route/src/bootstrap.php -------------------------------------------------------------------------------- /vendor/nikic/fast-route/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/nikic/fast-route/src/functions.php -------------------------------------------------------------------------------- /vendor/php-di/invoker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/invoker/LICENSE -------------------------------------------------------------------------------- /vendor/php-di/invoker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/invoker/README.md -------------------------------------------------------------------------------- /vendor/php-di/invoker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/invoker/composer.json -------------------------------------------------------------------------------- /vendor/php-di/invoker/src/CallableResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/invoker/src/CallableResolver.php -------------------------------------------------------------------------------- /vendor/php-di/invoker/src/Invoker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/invoker/src/Invoker.php -------------------------------------------------------------------------------- /vendor/php-di/invoker/src/InvokerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/invoker/src/InvokerInterface.php -------------------------------------------------------------------------------- /vendor/php-di/php-di/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/php-di/LICENSE -------------------------------------------------------------------------------- /vendor/php-di/php-di/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/php-di/README.md -------------------------------------------------------------------------------- /vendor/php-di/php-di/change-log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/php-di/change-log.md -------------------------------------------------------------------------------- /vendor/php-di/php-di/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/php-di/composer.json -------------------------------------------------------------------------------- /vendor/php-di/php-di/src/Attribute/Inject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/php-di/src/Attribute/Inject.php -------------------------------------------------------------------------------- /vendor/php-di/php-di/src/CompiledContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/php-di/src/CompiledContainer.php -------------------------------------------------------------------------------- /vendor/php-di/php-di/src/Compiler/Compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/php-di/src/Compiler/Compiler.php -------------------------------------------------------------------------------- /vendor/php-di/php-di/src/Compiler/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/php-di/src/Compiler/Template.php -------------------------------------------------------------------------------- /vendor/php-di/php-di/src/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/php-di/src/Container.php -------------------------------------------------------------------------------- /vendor/php-di/php-di/src/ContainerBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/php-di/src/ContainerBuilder.php -------------------------------------------------------------------------------- /vendor/php-di/php-di/src/FactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/php-di/src/FactoryInterface.php -------------------------------------------------------------------------------- /vendor/php-di/php-di/src/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/php-di/src/NotFoundException.php -------------------------------------------------------------------------------- /vendor/php-di/php-di/src/Proxy/ProxyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/php-di/src/Proxy/ProxyFactory.php -------------------------------------------------------------------------------- /vendor/php-di/php-di/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/php-di/src/functions.php -------------------------------------------------------------------------------- /vendor/php-di/php-di/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/php-di/php-di/support.md -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/COMMITMENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/phpmailer/phpmailer/COMMITMENT -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/phpmailer/phpmailer/LICENSE -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/phpmailer/phpmailer/README.md -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/SMTPUTF8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/phpmailer/phpmailer/SMTPUTF8.md -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 6.12.0 2 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/phpmailer/phpmailer/composer.json -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/get_oauth_token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/phpmailer/phpmailer/get_oauth_token.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/phpmailer/phpmailer/src/Exception.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/src/OAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/phpmailer/phpmailer/src/OAuth.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/src/PHPMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/phpmailer/phpmailer/src/PHPMailer.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/src/POP3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/phpmailer/phpmailer/src/POP3.php -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/src/SMTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/phpmailer/phpmailer/src/SMTP.php -------------------------------------------------------------------------------- /vendor/phpoption/phpoption/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/phpoption/phpoption/LICENSE -------------------------------------------------------------------------------- /vendor/phpoption/phpoption/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/phpoption/phpoption/composer.json -------------------------------------------------------------------------------- /vendor/psr/container/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/container/.gitignore -------------------------------------------------------------------------------- /vendor/psr/container/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/container/LICENSE -------------------------------------------------------------------------------- /vendor/psr/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/container/README.md -------------------------------------------------------------------------------- /vendor/psr/container/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/container/composer.json -------------------------------------------------------------------------------- /vendor/psr/container/src/ContainerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/container/src/ContainerInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-factory/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/http-factory/LICENSE -------------------------------------------------------------------------------- /vendor/psr/http-factory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/http-factory/README.md -------------------------------------------------------------------------------- /vendor/psr/http-factory/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/http-factory/composer.json -------------------------------------------------------------------------------- /vendor/psr/http-message/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/http-message/LICENSE -------------------------------------------------------------------------------- /vendor/psr/http-message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/http-message/README.md -------------------------------------------------------------------------------- /vendor/psr/http-message/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/http-message/composer.json -------------------------------------------------------------------------------- /vendor/psr/http-message/docs/PSR7-Interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/http-message/docs/PSR7-Interfaces.md -------------------------------------------------------------------------------- /vendor/psr/http-message/docs/PSR7-Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/http-message/docs/PSR7-Usage.md -------------------------------------------------------------------------------- /vendor/psr/http-message/src/StreamInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/http-message/src/StreamInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-message/src/UriInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/http-message/src/UriInterface.php -------------------------------------------------------------------------------- /vendor/psr/http-server-handler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/http-server-handler/LICENSE -------------------------------------------------------------------------------- /vendor/psr/http-server-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/http-server-handler/README.md -------------------------------------------------------------------------------- /vendor/psr/http-server-handler/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/http-server-handler/composer.json -------------------------------------------------------------------------------- /vendor/psr/http-server-middleware/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/http-server-middleware/LICENSE -------------------------------------------------------------------------------- /vendor/psr/http-server-middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/http-server-middleware/README.md -------------------------------------------------------------------------------- /vendor/psr/http-server-middleware/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/http-server-middleware/composer.json -------------------------------------------------------------------------------- /vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /vendor/psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/log/README.md -------------------------------------------------------------------------------- /vendor/psr/log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/log/composer.json -------------------------------------------------------------------------------- /vendor/psr/log/src/AbstractLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/log/src/AbstractLogger.php -------------------------------------------------------------------------------- /vendor/psr/log/src/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/log/src/InvalidArgumentException.php -------------------------------------------------------------------------------- /vendor/psr/log/src/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/log/src/LogLevel.php -------------------------------------------------------------------------------- /vendor/psr/log/src/LoggerAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/log/src/LoggerAwareInterface.php -------------------------------------------------------------------------------- /vendor/psr/log/src/LoggerAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/log/src/LoggerAwareTrait.php -------------------------------------------------------------------------------- /vendor/psr/log/src/LoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/log/src/LoggerInterface.php -------------------------------------------------------------------------------- /vendor/psr/log/src/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/log/src/LoggerTrait.php -------------------------------------------------------------------------------- /vendor/psr/log/src/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/psr/log/src/NullLogger.php -------------------------------------------------------------------------------- /vendor/ralouphie/getallheaders/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/ralouphie/getallheaders/LICENSE -------------------------------------------------------------------------------- /vendor/ralouphie/getallheaders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/ralouphie/getallheaders/README.md -------------------------------------------------------------------------------- /vendor/ralouphie/getallheaders/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/ralouphie/getallheaders/composer.json -------------------------------------------------------------------------------- /vendor/slim/csrf/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/csrf/LICENSE.md -------------------------------------------------------------------------------- /vendor/slim/csrf/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/csrf/composer.json -------------------------------------------------------------------------------- /vendor/slim/csrf/src/Guard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/csrf/src/Guard.php -------------------------------------------------------------------------------- /vendor/slim/psr7/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/psr7/LICENSE.md -------------------------------------------------------------------------------- /vendor/slim/psr7/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/psr7/composer.json -------------------------------------------------------------------------------- /vendor/slim/psr7/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/psr7/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/slim/psr7/src/Cookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/psr7/src/Cookies.php -------------------------------------------------------------------------------- /vendor/slim/psr7/src/Environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/psr7/src/Environment.php -------------------------------------------------------------------------------- /vendor/slim/psr7/src/Factory/RequestFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/psr7/src/Factory/RequestFactory.php -------------------------------------------------------------------------------- /vendor/slim/psr7/src/Factory/StreamFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/psr7/src/Factory/StreamFactory.php -------------------------------------------------------------------------------- /vendor/slim/psr7/src/Factory/UriFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/psr7/src/Factory/UriFactory.php -------------------------------------------------------------------------------- /vendor/slim/psr7/src/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/psr7/src/Header.php -------------------------------------------------------------------------------- /vendor/slim/psr7/src/Headers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/psr7/src/Headers.php -------------------------------------------------------------------------------- /vendor/slim/psr7/src/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/psr7/src/Message.php -------------------------------------------------------------------------------- /vendor/slim/psr7/src/NonBufferedBody.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/psr7/src/NonBufferedBody.php -------------------------------------------------------------------------------- /vendor/slim/psr7/src/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/psr7/src/Request.php -------------------------------------------------------------------------------- /vendor/slim/psr7/src/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/psr7/src/Response.php -------------------------------------------------------------------------------- /vendor/slim/psr7/src/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/psr7/src/Stream.php -------------------------------------------------------------------------------- /vendor/slim/psr7/src/UploadedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/psr7/src/UploadedFile.php -------------------------------------------------------------------------------- /vendor/slim/psr7/src/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/psr7/src/Uri.php -------------------------------------------------------------------------------- /vendor/slim/slim/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/LICENSE.md -------------------------------------------------------------------------------- /vendor/slim/slim/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/MAINTAINERS.md -------------------------------------------------------------------------------- /vendor/slim/slim/Slim/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/Slim/App.php -------------------------------------------------------------------------------- /vendor/slim/slim/Slim/CallableResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/Slim/CallableResolver.php -------------------------------------------------------------------------------- /vendor/slim/slim/Slim/Factory/AppFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/Slim/Factory/AppFactory.php -------------------------------------------------------------------------------- /vendor/slim/slim/Slim/Handlers/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/Slim/Handlers/ErrorHandler.php -------------------------------------------------------------------------------- /vendor/slim/slim/Slim/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/Slim/Logger.php -------------------------------------------------------------------------------- /vendor/slim/slim/Slim/MiddlewareDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/Slim/MiddlewareDispatcher.php -------------------------------------------------------------------------------- /vendor/slim/slim/Slim/ResponseEmitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/Slim/ResponseEmitter.php -------------------------------------------------------------------------------- /vendor/slim/slim/Slim/Routing/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/Slim/Routing/Dispatcher.php -------------------------------------------------------------------------------- /vendor/slim/slim/Slim/Routing/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/Slim/Routing/Route.php -------------------------------------------------------------------------------- /vendor/slim/slim/Slim/Routing/RouteContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/Slim/Routing/RouteContext.php -------------------------------------------------------------------------------- /vendor/slim/slim/Slim/Routing/RouteGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/Slim/Routing/RouteGroup.php -------------------------------------------------------------------------------- /vendor/slim/slim/Slim/Routing/RouteParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/Slim/Routing/RouteParser.php -------------------------------------------------------------------------------- /vendor/slim/slim/Slim/Routing/RouteResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/Slim/Routing/RouteResolver.php -------------------------------------------------------------------------------- /vendor/slim/slim/Slim/Routing/RouteRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/Slim/Routing/RouteRunner.php -------------------------------------------------------------------------------- /vendor/slim/slim/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/composer.json -------------------------------------------------------------------------------- /vendor/slim/slim/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/slim/slim/psalm.xml -------------------------------------------------------------------------------- /vendor/symfony/polyfill-ctype/Ctype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/symfony/polyfill-ctype/Ctype.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-ctype/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/symfony/polyfill-ctype/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/polyfill-ctype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/symfony/polyfill-ctype/README.md -------------------------------------------------------------------------------- /vendor/symfony/polyfill-ctype/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/symfony/polyfill-ctype/bootstrap.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-ctype/bootstrap80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/symfony/polyfill-ctype/bootstrap80.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-ctype/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/symfony/polyfill-ctype/composer.json -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/symfony/polyfill-mbstring/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/Mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/symfony/polyfill-mbstring/Mbstring.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/symfony/polyfill-mbstring/README.md -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/symfony/polyfill-mbstring/bootstrap.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-mbstring/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/symfony/polyfill-mbstring/composer.json -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php80/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/symfony/polyfill-php80/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php80/Php80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/symfony/polyfill-php80/Php80.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php80/PhpToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/symfony/polyfill-php80/PhpToken.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php80/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/symfony/polyfill-php80/README.md -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php80/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/symfony/polyfill-php80/bootstrap.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php80/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/symfony/polyfill-php80/composer.json -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/CHANGELOG.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/CHANGELOG.TXT -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/LICENSE.TXT -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/README.md -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/VERSION: -------------------------------------------------------------------------------- 1 | 6.10.0 2 | -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/composer.json -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/config/tcpdf_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/config/tcpdf_config.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/aealarabiya.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/aealarabiya.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/aealarabiya.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/aealarabiya.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/aealarabiya.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/aealarabiya.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/aefurat.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/aefurat.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/aefurat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/aefurat.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/aefurat.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/aefurat.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/cid0cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/cid0cs.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/cid0ct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/cid0ct.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/cid0jp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/cid0jp.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/cid0kr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/cid0kr.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/courier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/courier.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/courierb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/courierb.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/courierbi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/courierbi.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/courieri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/courieri.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavusans.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavusans.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavusans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavusans.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavusans.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavusans.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavusansb.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavusansb.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavusansb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavusansb.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavusansb.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavusansb.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavusansbi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavusansbi.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavusansbi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavusansbi.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavusansi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavusansi.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavusansi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavusansi.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavusansi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavusansi.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavusansmono.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavusansmono.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavusansmonob.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavusansmonob.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavusansmonoi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavusansmonoi.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavuserif.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavuserif.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavuserif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavuserif.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavuserif.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavuserif.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavuserifb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavuserifb.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavuserifb.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavuserifb.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavuserifbi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavuserifbi.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavuserifbi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavuserifbi.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavuserifi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavuserifi.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/dejavuserifi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/dejavuserifi.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freemono.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freemono.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freemono.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freemono.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freemono.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freemono.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freemonob.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freemonob.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freemonob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freemonob.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freemonob.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freemonob.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freemonobi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freemonobi.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freemonobi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freemonobi.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freemonobi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freemonobi.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freemonoi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freemonoi.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freemonoi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freemonoi.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freemonoi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freemonoi.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freesans.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freesans.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freesans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freesans.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freesans.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freesans.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freesansb.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freesansb.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freesansb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freesansb.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freesansb.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freesansb.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freesansbi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freesansbi.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freesansbi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freesansbi.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freesansbi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freesansbi.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freesansi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freesansi.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freesansi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freesansi.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freesansi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freesansi.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freeserif.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freeserif.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freeserif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freeserif.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freeserif.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freeserif.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freeserifb.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freeserifb.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freeserifb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freeserifb.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freeserifb.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freeserifb.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freeserifbi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freeserifbi.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freeserifbi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freeserifbi.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freeserifbi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freeserifbi.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freeserifi.ctg.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freeserifi.ctg.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freeserifi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freeserifi.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/freeserifi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/freeserifi.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/helvetica.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/helvetica.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/helveticab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/helveticab.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/helveticabi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/helveticabi.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/helveticai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/helveticai.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/msungstdlight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/msungstdlight.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfacourier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfacourier.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfacourier.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfacourier.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfacourierb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfacourierb.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfacourierb.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfacourierb.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfacourierbi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfacourierbi.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfacourierbi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfacourierbi.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfacourieri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfacourieri.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfacourieri.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfacourieri.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfahelvetica.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfahelvetica.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfahelvetica.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfahelvetica.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfahelveticab.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfahelveticab.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfahelveticabi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfahelveticabi.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfahelveticai.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfahelveticai.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfasymbol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfasymbol.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfasymbol.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfasymbol.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfatimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfatimes.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfatimes.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfatimes.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfatimesb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfatimesb.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfatimesb.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfatimesb.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfatimesbi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfatimesbi.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfatimesbi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfatimesbi.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfatimesi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfatimesi.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/pdfatimesi.z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/pdfatimesi.z -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/symbol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/symbol.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/times.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/timesb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/timesb.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/timesbi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/timesbi.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/timesi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/timesi.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/uni2cid_ac15.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/uni2cid_ac15.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/uni2cid_ag15.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/uni2cid_ag15.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/uni2cid_aj16.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/uni2cid_aj16.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/uni2cid_ak12.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/uni2cid_ak12.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/fonts/zapfdingbats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/fonts/zapfdingbats.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/include/sRGB.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/include/sRGB.icc -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/include/tcpdf_fonts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/include/tcpdf_fonts.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/tcpdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/tcpdf.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/tcpdf_autoconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/tcpdf_autoconfig.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/tcpdf_barcodes_1d.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/tcpdf_barcodes_1d.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/tcpdf_barcodes_2d.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/tcpdf_barcodes_2d.php -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/tools/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/tools/.htaccess -------------------------------------------------------------------------------- /vendor/tecnickcom/tcpdf/tools/tcpdf_addfont.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/tecnickcom/tcpdf/tools/tcpdf_addfont.php -------------------------------------------------------------------------------- /vendor/thepixeldeveloper/sitemap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/thepixeldeveloper/sitemap/LICENSE -------------------------------------------------------------------------------- /vendor/thepixeldeveloper/sitemap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/thepixeldeveloper/sitemap/Makefile -------------------------------------------------------------------------------- /vendor/thepixeldeveloper/sitemap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/thepixeldeveloper/sitemap/README.md -------------------------------------------------------------------------------- /vendor/thepixeldeveloper/sitemap/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/thepixeldeveloper/sitemap/composer.json -------------------------------------------------------------------------------- /vendor/thepixeldeveloper/sitemap/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/thepixeldeveloper/sitemap/phpstan.neon -------------------------------------------------------------------------------- /vendor/thepixeldeveloper/sitemap/src/Url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/thepixeldeveloper/sitemap/src/Url.php -------------------------------------------------------------------------------- /vendor/thepixeldeveloper/sitemap/src/Urlset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/thepixeldeveloper/sitemap/src/Urlset.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/vlucas/phpdotenv/LICENSE -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/vlucas/phpdotenv/composer.json -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Dotenv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/vlucas/phpdotenv/src/Dotenv.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Loader/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/vlucas/phpdotenv/src/Loader/Loader.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Loader/Resolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/vlucas/phpdotenv/src/Loader/Resolver.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Parser/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/vlucas/phpdotenv/src/Parser/Entry.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Parser/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/vlucas/phpdotenv/src/Parser/Lexer.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Parser/Lines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/vlucas/phpdotenv/src/Parser/Lines.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Parser/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/vlucas/phpdotenv/src/Parser/Parser.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Parser/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/vlucas/phpdotenv/src/Parser/Value.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Store/FileStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/vlucas/phpdotenv/src/Store/FileStore.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Util/Regex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/vlucas/phpdotenv/src/Util/Regex.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Util/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/vlucas/phpdotenv/src/Util/Str.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/vendor/vlucas/phpdotenv/src/Validator.php -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiodalez-dev/Pinakes/HEAD/version.json --------------------------------------------------------------------------------