├── .env ├── .env.test ├── README.md ├── bin ├── console └── phpunit ├── composer.json ├── composer.lock ├── config ├── bundles.php ├── packages │ ├── cache.yaml │ ├── debug.yaml │ ├── doctrine.yaml │ ├── doctrine_migrations.yaml │ ├── framework.yaml │ ├── mailer.yaml │ ├── messenger.yaml │ ├── monolog.yaml │ ├── notifier.yaml │ ├── reset_password.yaml │ ├── routing.yaml │ ├── security.yaml │ ├── sensio_framework_extra.yaml │ ├── translation.yaml │ ├── twig.yaml │ ├── validator.yaml │ └── web_profiler.yaml ├── preload.php ├── routes.yaml ├── routes │ ├── annotations.yaml │ ├── framework.yaml │ └── web_profiler.yaml └── services.yaml ├── docker-compose.override.yml ├── docker-compose.yml ├── migrations ├── .gitignore ├── Version20230216145622.php └── Version20230227135930.php ├── phpunit.xml.dist ├── public ├── back │ ├── css │ │ ├── sb-admin-2.css │ │ └── sb-admin-2.min.css │ ├── forgot-password.html │ ├── img │ │ ├── undraw_posting_photo.svg │ │ ├── undraw_profile.svg │ │ ├── undraw_profile_1.svg │ │ ├── undraw_profile_2.svg │ │ ├── undraw_profile_3.svg │ │ └── undraw_rocket.svg │ ├── js │ │ ├── demo │ │ │ ├── chart-area-demo.js │ │ │ ├── chart-bar-demo.js │ │ │ ├── chart-pie-demo.js │ │ │ └── datatables-demo.js │ │ ├── sb-admin-2.js │ │ └── sb-admin-2.min.js │ ├── login.html │ ├── register.html │ ├── scss │ │ ├── _buttons.scss │ │ ├── _cards.scss │ │ ├── _charts.scss │ │ ├── _dropdowns.scss │ │ ├── _error.scss │ │ ├── _footer.scss │ │ ├── _global.scss │ │ ├── _login.scss │ │ ├── _mixins.scss │ │ ├── _navs.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── navs │ │ │ ├── _global.scss │ │ │ ├── _sidebar.scss │ │ │ └── _topbar.scss │ │ ├── sb-admin-2.scss │ │ └── utilities │ │ │ ├── _animation.scss │ │ │ ├── _background.scss │ │ │ ├── _border.scss │ │ │ ├── _display.scss │ │ │ ├── _progress.scss │ │ │ ├── _rotate.scss │ │ │ └── _text.scss │ └── vendor │ │ ├── bootstrap │ │ ├── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ └── scss │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _functions.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _root.scss │ │ │ ├── _spinners.scss │ │ │ ├── _tables.scss │ │ │ ├── _toasts.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _caret.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _deprecate.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transition.scss │ │ │ └── _visibility.scss │ │ │ ├── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _embed.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _interactions.scss │ │ │ ├── _overflow.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _shadows.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _stretched-link.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ │ └── vendor │ │ │ └── _rfs.scss │ │ ├── chart.js │ │ ├── Chart.bundle.js │ │ ├── Chart.bundle.min.js │ │ ├── Chart.js │ │ └── Chart.min.js │ │ ├── datatables │ │ ├── dataTables.bootstrap4.css │ │ ├── dataTables.bootstrap4.js │ │ ├── dataTables.bootstrap4.min.css │ │ ├── dataTables.bootstrap4.min.js │ │ ├── jquery.dataTables.js │ │ └── jquery.dataTables.min.js │ │ ├── fontawesome-free │ │ ├── LICENSE.txt │ │ ├── attribution.js │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ ├── js │ │ │ ├── all.js │ │ │ ├── all.min.js │ │ │ ├── brands.js │ │ │ ├── brands.min.js │ │ │ ├── conflict-detection.js │ │ │ ├── conflict-detection.min.js │ │ │ ├── fontawesome.js │ │ │ ├── fontawesome.min.js │ │ │ ├── regular.js │ │ │ ├── regular.min.js │ │ │ ├── solid.js │ │ │ ├── solid.min.js │ │ │ ├── v4-shims.js │ │ │ └── v4-shims.min.js │ │ ├── less │ │ │ ├── _animated.less │ │ │ ├── _bordered-pulled.less │ │ │ ├── _core.less │ │ │ ├── _fixed-width.less │ │ │ ├── _icons.less │ │ │ ├── _larger.less │ │ │ ├── _list.less │ │ │ ├── _mixins.less │ │ │ ├── _rotated-flipped.less │ │ │ ├── _screen-reader.less │ │ │ ├── _shims.less │ │ │ ├── _stacked.less │ │ │ ├── _variables.less │ │ │ ├── brands.less │ │ │ ├── fontawesome.less │ │ │ ├── regular.less │ │ │ ├── solid.less │ │ │ └── v4-shims.less │ │ ├── metadata │ │ │ ├── categories.yml │ │ │ ├── icons.yml │ │ │ ├── shims.yml │ │ │ └── sponsors.yml │ │ ├── package.json │ │ ├── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _shims.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ ├── brands.scss │ │ │ ├── fontawesome.scss │ │ │ ├── regular.scss │ │ │ ├── solid.scss │ │ │ └── v4-shims.scss │ │ ├── sprites │ │ │ ├── brands.svg │ │ │ ├── regular.svg │ │ │ └── solid.svg │ │ ├── svgs │ │ │ ├── brands │ │ │ │ ├── 500px.svg │ │ │ │ ├── accessible-icon.svg │ │ │ │ ├── accusoft.svg │ │ │ │ ├── acquisitions-incorporated.svg │ │ │ │ ├── adn.svg │ │ │ │ ├── adversal.svg │ │ │ │ ├── affiliatetheme.svg │ │ │ │ ├── airbnb.svg │ │ │ │ ├── algolia.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── amazon-pay.svg │ │ │ │ ├── amazon.svg │ │ │ │ ├── amilia.svg │ │ │ │ ├── android.svg │ │ │ │ ├── angellist.svg │ │ │ │ ├── angrycreative.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── app-store-ios.svg │ │ │ │ ├── app-store.svg │ │ │ │ ├── apper.svg │ │ │ │ ├── apple-pay.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── artstation.svg │ │ │ │ ├── asymmetrik.svg │ │ │ │ ├── atlassian.svg │ │ │ │ ├── audible.svg │ │ │ │ ├── autoprefixer.svg │ │ │ │ ├── avianex.svg │ │ │ │ ├── aviato.svg │ │ │ │ ├── aws.svg │ │ │ │ ├── bandcamp.svg │ │ │ │ ├── battle-net.svg │ │ │ │ ├── behance-square.svg │ │ │ │ ├── behance.svg │ │ │ │ ├── bimobject.svg │ │ │ │ ├── bitbucket.svg │ │ │ │ ├── bitcoin.svg │ │ │ │ ├── bity.svg │ │ │ │ ├── black-tie.svg │ │ │ │ ├── blackberry.svg │ │ │ │ ├── blogger-b.svg │ │ │ │ ├── blogger.svg │ │ │ │ ├── bluetooth-b.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── btc.svg │ │ │ │ ├── buffer.svg │ │ │ │ ├── buromobelexperte.svg │ │ │ │ ├── buy-n-large.svg │ │ │ │ ├── buysellads.svg │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ ├── cc-amex.svg │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ ├── cc-diners-club.svg │ │ │ │ ├── cc-discover.svg │ │ │ │ ├── cc-jcb.svg │ │ │ │ ├── cc-mastercard.svg │ │ │ │ ├── cc-paypal.svg │ │ │ │ ├── cc-stripe.svg │ │ │ │ ├── cc-visa.svg │ │ │ │ ├── centercode.svg │ │ │ │ ├── centos.svg │ │ │ │ ├── chrome.svg │ │ │ │ ├── chromecast.svg │ │ │ │ ├── cloudflare.svg │ │ │ │ ├── cloudscale.svg │ │ │ │ ├── cloudsmith.svg │ │ │ │ ├── cloudversify.svg │ │ │ │ ├── codepen.svg │ │ │ │ ├── codiepie.svg │ │ │ │ ├── confluence.svg │ │ │ │ ├── connectdevelop.svg │ │ │ │ ├── contao.svg │ │ │ │ ├── cotton-bureau.svg │ │ │ │ ├── cpanel.svg │ │ │ │ ├── creative-commons-by.svg │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ ├── creative-commons-share.svg │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ ├── creative-commons.svg │ │ │ │ ├── critical-role.svg │ │ │ │ ├── css3-alt.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ ├── d-and-d.svg │ │ │ │ ├── dailymotion.svg │ │ │ │ ├── dashcube.svg │ │ │ │ ├── deezer.svg │ │ │ │ ├── delicious.svg │ │ │ │ ├── deploydog.svg │ │ │ │ ├── deskpro.svg │ │ │ │ ├── dev.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── dhl.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── digg.svg │ │ │ │ ├── digital-ocean.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── discourse.svg │ │ │ │ ├── dochub.svg │ │ │ │ ├── docker.svg │ │ │ │ ├── draft2digital.svg │ │ │ │ ├── dribbble-square.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── drupal.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── earlybirds.svg │ │ │ │ ├── ebay.svg │ │ │ │ ├── edge-legacy.svg │ │ │ │ ├── edge.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── ello.svg │ │ │ │ ├── ember.svg │ │ │ │ ├── empire.svg │ │ │ │ ├── envira.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── etsy.svg │ │ │ │ ├── evernote.svg │ │ │ │ ├── expeditedssl.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── facebook-messenger.svg │ │ │ │ ├── facebook-square.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ ├── fedex.svg │ │ │ │ ├── fedora.svg │ │ │ │ ├── figma.svg │ │ │ │ ├── firefox-browser.svg │ │ │ │ ├── firefox.svg │ │ │ │ ├── first-order-alt.svg │ │ │ │ ├── first-order.svg │ │ │ │ ├── firstdraft.svg │ │ │ │ ├── flickr.svg │ │ │ │ ├── flipboard.svg │ │ │ │ ├── fly.svg │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font-awesome.svg │ │ │ │ ├── fonticons-fi.svg │ │ │ │ ├── fonticons.svg │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ ├── fort-awesome.svg │ │ │ │ ├── forumbee.svg │ │ │ │ ├── foursquare.svg │ │ │ │ ├── free-code-camp.svg │ │ │ │ ├── freebsd.svg │ │ │ │ ├── fulcrum.svg │ │ │ │ ├── galactic-republic.svg │ │ │ │ ├── galactic-senate.svg │ │ │ │ ├── get-pocket.svg │ │ │ │ ├── gg-circle.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── git-alt.svg │ │ │ │ ├── git-square.svg │ │ │ │ ├── git.svg │ │ │ │ ├── github-alt.svg │ │ │ │ ├── github-square.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gitkraken.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── gitter.svg │ │ │ │ ├── glide-g.svg │ │ │ │ ├── glide.svg │ │ │ │ ├── gofore.svg │ │ │ │ ├── goodreads-g.svg │ │ │ │ ├── goodreads.svg │ │ │ │ ├── google-drive.svg │ │ │ │ ├── google-pay.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google-plus-g.svg │ │ │ │ ├── google-plus-square.svg │ │ │ │ ├── google-plus.svg │ │ │ │ ├── google-wallet.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gratipay.svg │ │ │ │ ├── grav.svg │ │ │ │ ├── gripfire.svg │ │ │ │ ├── grunt.svg │ │ │ │ ├── guilded.svg │ │ │ │ ├── gulp.svg │ │ │ │ ├── hacker-news-square.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── hackerrank.svg │ │ │ │ ├── hips.svg │ │ │ │ ├── hire-a-helper.svg │ │ │ │ ├── hive.svg │ │ │ │ ├── hooli.svg │ │ │ │ ├── hornbill.svg │ │ │ │ ├── hotjar.svg │ │ │ │ ├── houzz.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── hubspot.svg │ │ │ │ ├── ideal.svg │ │ │ │ ├── imdb.svg │ │ │ │ ├── innosoft.svg │ │ │ │ ├── instagram-square.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── instalod.svg │ │ │ │ ├── intercom.svg │ │ │ │ ├── internet-explorer.svg │ │ │ │ ├── invision.svg │ │ │ │ ├── ioxhost.svg │ │ │ │ ├── itch-io.svg │ │ │ │ ├── itunes-note.svg │ │ │ │ ├── itunes.svg │ │ │ │ ├── java.svg │ │ │ │ ├── jedi-order.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── jira.svg │ │ │ │ ├── joget.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── js-square.svg │ │ │ │ ├── js.svg │ │ │ │ ├── jsfiddle.svg │ │ │ │ ├── kaggle.svg │ │ │ │ ├── keybase.svg │ │ │ │ ├── keycdn.svg │ │ │ │ ├── kickstarter-k.svg │ │ │ │ ├── kickstarter.svg │ │ │ │ ├── korvue.svg │ │ │ │ ├── laravel.svg │ │ │ │ ├── lastfm-square.svg │ │ │ │ ├── lastfm.svg │ │ │ │ ├── leanpub.svg │ │ │ │ ├── less.svg │ │ │ │ ├── line.svg │ │ │ │ ├── linkedin-in.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── linode.svg │ │ │ │ ├── linux.svg │ │ │ │ ├── lyft.svg │ │ │ │ ├── magento.svg │ │ │ │ ├── mailchimp.svg │ │ │ │ ├── mandalorian.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── maxcdn.svg │ │ │ │ ├── mdb.svg │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium-m.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── mendeley.svg │ │ │ │ ├── microblog.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.svg │ │ │ │ ├── mixer.svg │ │ │ │ ├── mizuni.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── napster.svg │ │ │ │ ├── neos.svg │ │ │ │ ├── nimblr.svg │ │ │ │ ├── node-js.svg │ │ │ │ ├── node.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── ns8.svg │ │ │ │ ├── nutritionix.svg │ │ │ │ ├── octopus-deploy.svg │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ ├── odnoklassniki.svg │ │ │ │ ├── old-republic.svg │ │ │ │ ├── opencart.svg │ │ │ │ ├── openid.svg │ │ │ │ ├── opera.svg │ │ │ │ ├── optin-monster.svg │ │ │ │ ├── orcid.svg │ │ │ │ ├── osi.svg │ │ │ │ ├── page4.svg │ │ │ │ ├── pagelines.svg │ │ │ │ ├── palfed.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── penny-arcade.svg │ │ │ │ ├── perbyte.svg │ │ │ │ ├── periscope.svg │ │ │ │ ├── phabricator.svg │ │ │ │ ├── phoenix-framework.svg │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ ├── php.svg │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ ├── pied-piper-square.svg │ │ │ │ ├── pied-piper.svg │ │ │ │ ├── pinterest-p.svg │ │ │ │ ├── pinterest-square.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── product-hunt.svg │ │ │ │ ├── pushed.svg │ │ │ │ ├── python.svg │ │ │ │ ├── qq.svg │ │ │ │ ├── quinscape.svg │ │ │ │ ├── quora.svg │ │ │ │ ├── r-project.svg │ │ │ │ ├── raspberry-pi.svg │ │ │ │ ├── ravelry.svg │ │ │ │ ├── react.svg │ │ │ │ ├── reacteurope.svg │ │ │ │ ├── readme.svg │ │ │ │ ├── rebel.svg │ │ │ │ ├── red-river.svg │ │ │ │ ├── reddit-alien.svg │ │ │ │ ├── reddit-square.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── redhat.svg │ │ │ │ ├── renren.svg │ │ │ │ ├── replyd.svg │ │ │ │ ├── researchgate.svg │ │ │ │ ├── resolving.svg │ │ │ │ ├── rev.svg │ │ │ │ ├── rocketchat.svg │ │ │ │ ├── rockrms.svg │ │ │ │ ├── rust.svg │ │ │ │ ├── safari.svg │ │ │ │ ├── salesforce.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ ├── shopify.svg │ │ │ │ ├── shopware.svg │ │ │ │ ├── simplybuilt.svg │ │ │ │ ├── sistrix.svg │ │ │ │ ├── sith.svg │ │ │ │ ├── sketch.svg │ │ │ │ ├── skyatlas.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slack-hash.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slideshare.svg │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ ├── snapchat-square.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── soundcloud.svg │ │ │ │ ├── sourcetree.svg │ │ │ │ ├── speakap.svg │ │ │ │ ├── speaker-deck.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── squarespace.svg │ │ │ │ ├── stack-exchange.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── stackpath.svg │ │ │ │ ├── staylinked.svg │ │ │ │ ├── steam-square.svg │ │ │ │ ├── steam-symbol.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── sticker-mule.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── stripe-s.svg │ │ │ │ ├── stripe.svg │ │ │ │ ├── studiovinari.svg │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ ├── stumbleupon.svg │ │ │ │ ├── superpowers.svg │ │ │ │ ├── supple.svg │ │ │ │ ├── suse.svg │ │ │ │ ├── swift.svg │ │ │ │ ├── symfony.svg │ │ │ │ ├── teamspeak.svg │ │ │ │ ├── telegram-plane.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tencent-weibo.svg │ │ │ │ ├── the-red-yeti.svg │ │ │ │ ├── themeco.svg │ │ │ │ ├── themeisle.svg │ │ │ │ ├── think-peaks.svg │ │ │ │ ├── tiktok.svg │ │ │ │ ├── trade-federation.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── tripadvisor.svg │ │ │ │ ├── tumblr-square.svg │ │ │ │ ├── tumblr.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter-square.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── typo3.svg │ │ │ │ ├── uber.svg │ │ │ │ ├── ubuntu.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── umbraco.svg │ │ │ │ ├── uncharted.svg │ │ │ │ ├── uniregistry.svg │ │ │ │ ├── unity.svg │ │ │ │ ├── unsplash.svg │ │ │ │ ├── untappd.svg │ │ │ │ ├── ups.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── usps.svg │ │ │ │ ├── ussunnah.svg │ │ │ │ ├── vaadin.svg │ │ │ │ ├── viacoin.svg │ │ │ │ ├── viadeo-square.svg │ │ │ │ ├── viadeo.svg │ │ │ │ ├── viber.svg │ │ │ │ ├── vimeo-square.svg │ │ │ │ ├── vimeo-v.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── vine.svg │ │ │ │ ├── vk.svg │ │ │ │ ├── vnv.svg │ │ │ │ ├── vuejs.svg │ │ │ │ ├── watchman-monitoring.svg │ │ │ │ ├── waze.svg │ │ │ │ ├── weebly.svg │ │ │ │ ├── weibo.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── whatsapp-square.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── whmcs.svg │ │ │ │ ├── wikipedia-w.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wix.svg │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ ├── wodu.svg │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ ├── wordpress-simple.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wpbeginner.svg │ │ │ │ ├── wpexplorer.svg │ │ │ │ ├── wpforms.svg │ │ │ │ ├── wpressr.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── xing-square.svg │ │ │ │ ├── xing.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yammer.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── yandex.svg │ │ │ │ ├── yarn.svg │ │ │ │ ├── yelp.svg │ │ │ │ ├── yoast.svg │ │ │ │ ├── youtube-square.svg │ │ │ │ ├── youtube.svg │ │ │ │ └── zhihu.svg │ │ │ ├── regular │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── building.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── map.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── save.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── square.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ └── window-restore.svg │ │ │ └── solid │ │ │ │ ├── ad.svg │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── adjust.svg │ │ │ │ ├── air-freshener.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-justify.svg │ │ │ │ ├── align-left.svg │ │ │ │ ├── align-right.svg │ │ │ │ ├── allergies.svg │ │ │ │ ├── ambulance.svg │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ ├── anchor.svg │ │ │ │ ├── angle-double-down.svg │ │ │ │ ├── angle-double-left.svg │ │ │ │ ├── angle-double-right.svg │ │ │ │ ├── angle-double-up.svg │ │ │ │ ├── angle-down.svg │ │ │ │ ├── angle-left.svg │ │ │ │ ├── angle-right.svg │ │ │ │ ├── angle-up.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── ankh.svg │ │ │ │ ├── apple-alt.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── archway.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ ├── arrows-alt.svg │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── atlas.svg │ │ │ │ ├── atom.svg │ │ │ │ ├── audio-description.svg │ │ │ │ ├── award.svg │ │ │ │ ├── baby-carriage.svg │ │ │ │ ├── baby.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── backward.svg │ │ │ │ ├── bacon.svg │ │ │ │ ├── bacteria.svg │ │ │ │ ├── bacterium.svg │ │ │ │ ├── bahai.svg │ │ │ │ ├── balance-scale-left.svg │ │ │ │ ├── balance-scale-right.svg │ │ │ │ ├── balance-scale.svg │ │ │ │ ├── ban.svg │ │ │ │ ├── band-aid.svg │ │ │ │ ├── barcode.svg │ │ │ │ ├── bars.svg │ │ │ │ ├── baseball-ball.svg │ │ │ │ ├── basketball-ball.svg │ │ │ │ ├── bath.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery-quarter.svg │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ ├── bed.svg │ │ │ │ ├── beer.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bezier-curve.svg │ │ │ │ ├── bible.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── biking.svg │ │ │ │ ├── binoculars.svg │ │ │ │ ├── biohazard.svg │ │ │ │ ├── birthday-cake.svg │ │ │ │ ├── blender-phone.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blind.svg │ │ │ │ ├── blog.svg │ │ │ │ ├── bold.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── bomb.svg │ │ │ │ ├── bone.svg │ │ │ │ ├── bong.svg │ │ │ │ ├── book-dead.svg │ │ │ │ ├── book-medical.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── book-reader.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── border-none.svg │ │ │ │ ├── border-style.svg │ │ │ │ ├── bowling-ball.svg │ │ │ │ ├── box-open.svg │ │ │ │ ├── box-tissue.svg │ │ │ │ ├── box.svg │ │ │ │ ├── boxes.svg │ │ │ │ ├── braille.svg │ │ │ │ ├── brain.svg │ │ │ │ ├── bread-slice.svg │ │ │ │ ├── briefcase-medical.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── broadcast-tower.svg │ │ │ │ ├── broom.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── building.svg │ │ │ │ ├── bullhorn.svg │ │ │ │ ├── bullseye.svg │ │ │ │ ├── burn.svg │ │ │ │ ├── bus-alt.svg │ │ │ │ ├── bus.svg │ │ │ │ ├── business-time.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-day.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar-week.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-retro.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── campground.svg │ │ │ │ ├── candy-cane.svg │ │ │ │ ├── cannabis.svg │ │ │ │ ├── capsules.svg │ │ │ │ ├── car-alt.svg │ │ │ │ ├── car-battery.svg │ │ │ │ ├── car-crash.svg │ │ │ │ ├── car-side.svg │ │ │ │ ├── car.svg │ │ │ │ ├── caravan.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── caret-left.svg │ │ │ │ ├── caret-right.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── carrot.svg │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ ├── cart-plus.svg │ │ │ │ ├── cash-register.svg │ │ │ │ ├── cat.svg │ │ │ │ ├── certificate.svg │ │ │ │ ├── chair.svg │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ ├── chalkboard.svg │ │ │ │ ├── charging-station.svg │ │ │ │ ├── chart-area.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── chart-line.svg │ │ │ │ ├── chart-pie.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-double.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── check.svg │ │ │ │ ├── cheese.svg │ │ │ │ ├── chess-bishop.svg │ │ │ │ ├── chess-board.svg │ │ │ │ ├── chess-king.svg │ │ │ │ ├── chess-knight.svg │ │ │ │ ├── chess-pawn.svg │ │ │ │ ├── chess-queen.svg │ │ │ │ ├── chess-rook.svg │ │ │ │ ├── chess.svg │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── child.svg │ │ │ │ ├── church.svg │ │ │ │ ├── circle-notch.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── city.svg │ │ │ │ ├── clinic-medical.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-list.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ ├── cloud-meatball.svg │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ ├── cloud-moon.svg │ │ │ │ ├── cloud-rain.svg │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ ├── cloud-sun.svg │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── cocktail.svg │ │ │ │ ├── code-branch.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── cog.svg │ │ │ │ ├── cogs.svg │ │ │ │ ├── coins.svg │ │ │ │ ├── columns.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dollar.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment-medical.svg │ │ │ │ ├── comment-slash.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments-dollar.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compact-disc.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compress-alt.svg │ │ │ │ ├── compress-arrows-alt.svg │ │ │ │ ├── compress.svg │ │ │ │ ├── concierge-bell.svg │ │ │ │ ├── cookie-bite.svg │ │ │ │ ├── cookie.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── couch.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── crop-alt.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── crosshairs.svg │ │ │ │ ├── crow.svg │ │ │ │ ├── crown.svg │ │ │ │ ├── crutch.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── cubes.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── database.svg │ │ │ │ ├── deaf.svg │ │ │ │ ├── democrat.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── dharmachakra.svg │ │ │ │ ├── diagnoses.svg │ │ │ │ ├── dice-d20.svg │ │ │ │ ├── dice-d6.svg │ │ │ │ ├── dice-five.svg │ │ │ │ ├── dice-four.svg │ │ │ │ ├── dice-one.svg │ │ │ │ ├── dice-six.svg │ │ │ │ ├── dice-three.svg │ │ │ │ ├── dice-two.svg │ │ │ │ ├── dice.svg │ │ │ │ ├── digital-tachograph.svg │ │ │ │ ├── directions.svg │ │ │ │ ├── disease.svg │ │ │ │ ├── divide.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dna.svg │ │ │ │ ├── dog.svg │ │ │ │ ├── dollar-sign.svg │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ ├── dolly.svg │ │ │ │ ├── donate.svg │ │ │ │ ├── door-closed.svg │ │ │ │ ├── door-open.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── dove.svg │ │ │ │ ├── download.svg │ │ │ │ ├── drafting-compass.svg │ │ │ │ ├── dragon.svg │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── drum-steelpan.svg │ │ │ │ ├── drum.svg │ │ │ │ ├── drumstick-bite.svg │ │ │ │ ├── dumbbell.svg │ │ │ │ ├── dumpster-fire.svg │ │ │ │ ├── dumpster.svg │ │ │ │ ├── dungeon.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── ellipsis-h.svg │ │ │ │ ├── ellipsis-v.svg │ │ │ │ ├── envelope-open-text.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope-square.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── equals.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── ethernet.svg │ │ │ │ ├── euro-sign.svg │ │ │ │ ├── exchange-alt.svg │ │ │ │ ├── exclamation-circle.svg │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ ├── exclamation.svg │ │ │ │ ├── expand-alt.svg │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── external-link-alt.svg │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ ├── eye-dropper.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── fan.svg │ │ │ │ ├── fast-backward.svg │ │ │ │ ├── fast-forward.svg │ │ │ │ ├── faucet.svg │ │ │ │ ├── fax.svg │ │ │ │ ├── feather-alt.svg │ │ │ │ ├── feather.svg │ │ │ │ ├── female.svg │ │ │ │ ├── fighter-jet.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-contract.svg │ │ │ │ ├── file-csv.svg │ │ │ │ ├── file-download.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-export.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-import.svg │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ ├── file-invoice.svg │ │ │ │ ├── file-medical-alt.svg │ │ │ │ ├── file-medical.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-prescription.svg │ │ │ │ ├── file-signature.svg │ │ │ │ ├── file-upload.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── fill-drip.svg │ │ │ │ ├── fill.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── fire-alt.svg │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── first-aid.svg │ │ │ │ ├── fish.svg │ │ │ │ ├── fist-raised.svg │ │ │ │ ├── flag-checkered.svg │ │ │ │ ├── flag-usa.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-minus.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-plus.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font.svg │ │ │ │ ├── football-ball.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── frog.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── funnel-dollar.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gamepad.svg │ │ │ │ ├── gas-pump.svg │ │ │ │ ├── gavel.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── genderless.svg │ │ │ │ ├── ghost.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── gifts.svg │ │ │ │ ├── glass-cheers.svg │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ ├── glass-martini.svg │ │ │ │ ├── glass-whiskey.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe-africa.svg │ │ │ │ ├── globe-americas.svg │ │ │ │ ├── globe-asia.svg │ │ │ │ ├── globe-europe.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── golf-ball.svg │ │ │ │ ├── gopuram.svg │ │ │ │ ├── graduation-cap.svg │ │ │ │ ├── greater-than-equal.svg │ │ │ │ ├── greater-than.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── grip-horizontal.svg │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ ├── grip-lines.svg │ │ │ │ ├── grip-vertical.svg │ │ │ │ ├── guitar.svg │ │ │ │ ├── h-square.svg │ │ │ │ ├── hamburger.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hamsa.svg │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ ├── hand-holding-medical.svg │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ ├── hand-holding-water.svg │ │ │ │ ├── hand-holding.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-sparkles.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── hands-helping.svg │ │ │ │ ├── hands-wash.svg │ │ │ │ ├── hands.svg │ │ │ │ ├── handshake-alt-slash.svg │ │ │ │ ├── handshake-slash.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hanukiah.svg │ │ │ │ ├── hard-hat.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ ├── hat-cowboy.svg │ │ │ │ ├── hat-wizard.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── head-side-cough-slash.svg │ │ │ │ ├── head-side-cough.svg │ │ │ │ ├── head-side-mask.svg │ │ │ │ ├── head-side-virus.svg │ │ │ │ ├── heading.svg │ │ │ │ ├── headphones-alt.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-broken.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── heartbeat.svg │ │ │ │ ├── helicopter.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── hiking.svg │ │ │ │ ├── hippo.svg │ │ │ │ ├── history.svg │ │ │ │ ├── hockey-puck.svg │ │ │ │ ├── holly-berry.svg │ │ │ │ ├── home.svg │ │ │ │ ├── horse-head.svg │ │ │ │ ├── horse.svg │ │ │ │ ├── hospital-alt.svg │ │ │ │ ├── hospital-symbol.svg │ │ │ │ ├── hospital-user.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hot-tub.svg │ │ │ │ ├── hotdog.svg │ │ │ │ ├── hotel.svg │ │ │ │ ├── hourglass-end.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass-start.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── house-damage.svg │ │ │ │ ├── house-user.svg │ │ │ │ ├── hryvnia.svg │ │ │ │ ├── i-cursor.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── icicles.svg │ │ │ │ ├── icons.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card-alt.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── igloo.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── indent.svg │ │ │ │ ├── industry.svg │ │ │ │ ├── infinity.svg │ │ │ │ ├── info-circle.svg │ │ │ │ ├── info.svg │ │ │ │ ├── italic.svg │ │ │ │ ├── jedi.svg │ │ │ │ ├── joint.svg │ │ │ │ ├── journal-whills.svg │ │ │ │ ├── kaaba.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── khanda.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── kiwi-bird.svg │ │ │ │ ├── landmark.svg │ │ │ │ ├── language.svg │ │ │ │ ├── laptop-code.svg │ │ │ │ ├── laptop-house.svg │ │ │ │ ├── laptop-medical.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── layer-group.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── less-than-equal.svg │ │ │ │ ├── less-than.svg │ │ │ │ ├── level-down-alt.svg │ │ │ │ ├── level-up-alt.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── link.svg │ │ │ │ ├── lira-sign.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── list-ol.svg │ │ │ │ ├── list-ul.svg │ │ │ │ ├── list.svg │ │ │ │ ├── location-arrow.svg │ │ │ │ ├── lock-open.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ ├── low-vision.svg │ │ │ │ ├── luggage-cart.svg │ │ │ │ ├── lungs-virus.svg │ │ │ │ ├── lungs.svg │ │ │ │ ├── magic.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── mail-bulk.svg │ │ │ │ ├── male.svg │ │ │ │ ├── map-marked-alt.svg │ │ │ │ ├── map-marked.svg │ │ │ │ ├── map-marker-alt.svg │ │ │ │ ├── map-marker.svg │ │ │ │ ├── map-pin.svg │ │ │ │ ├── map-signs.svg │ │ │ │ ├── map.svg │ │ │ │ ├── marker.svg │ │ │ │ ├── mars-double.svg │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ ├── mars-stroke.svg │ │ │ │ ├── mars.svg │ │ │ │ ├── mask.svg │ │ │ │ ├── medal.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menorah.svg │ │ │ │ ├── mercury.svg │ │ │ │ ├── meteor.svg │ │ │ │ ├── microchip.svg │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ ├── microphone-alt.svg │ │ │ │ ├── microphone-slash.svg │ │ │ │ ├── microphone.svg │ │ │ │ ├── microscope.svg │ │ │ │ ├── minus-circle.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── mitten.svg │ │ │ │ ├── mobile-alt.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ ├── money-bill-wave.svg │ │ │ │ ├── money-bill.svg │ │ │ │ ├── money-check-alt.svg │ │ │ │ ├── money-check.svg │ │ │ │ ├── monument.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── mortar-pestle.svg │ │ │ │ ├── mosque.svg │ │ │ │ ├── motorcycle.svg │ │ │ │ ├── mountain.svg │ │ │ │ ├── mouse-pointer.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── mug-hot.svg │ │ │ │ ├── music.svg │ │ │ │ ├── network-wired.svg │ │ │ │ ├── neuter.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── not-equal.svg │ │ │ │ ├── notes-medical.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── oil-can.svg │ │ │ │ ├── om.svg │ │ │ │ ├── otter.svg │ │ │ │ ├── outdent.svg │ │ │ │ ├── pager.svg │ │ │ │ ├── paint-brush.svg │ │ │ │ ├── paint-roller.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── pallet.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── parachute-box.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── parking.svg │ │ │ │ ├── passport.svg │ │ │ │ ├── pastafarianism.svg │ │ │ │ ├── paste.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── paw.svg │ │ │ │ ├── peace.svg │ │ │ │ ├── pen-alt.svg │ │ │ │ ├── pen-fancy.svg │ │ │ │ ├── pen-nib.svg │ │ │ │ ├── pen-square.svg │ │ │ │ ├── pen.svg │ │ │ │ ├── pencil-alt.svg │ │ │ │ ├── pencil-ruler.svg │ │ │ │ ├── people-arrows.svg │ │ │ │ ├── people-carry.svg │ │ │ │ ├── pepper-hot.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── percentage.svg │ │ │ │ ├── person-booth.svg │ │ │ │ ├── phone-alt.svg │ │ │ │ ├── phone-slash.svg │ │ │ │ ├── phone-square-alt.svg │ │ │ │ ├── phone-square.svg │ │ │ │ ├── phone-volume.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── photo-video.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pills.svg │ │ │ │ ├── pizza-slice.svg │ │ │ │ ├── place-of-worship.svg │ │ │ │ ├── plane-arrival.svg │ │ │ │ ├── plane-departure.svg │ │ │ │ ├── plane-slash.svg │ │ │ │ ├── plane.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plus-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── poll-h.svg │ │ │ │ ├── poll.svg │ │ │ │ ├── poo-storm.svg │ │ │ │ ├── poo.svg │ │ │ │ ├── poop.svg │ │ │ │ ├── portrait.svg │ │ │ │ ├── pound-sign.svg │ │ │ │ ├── power-off.svg │ │ │ │ ├── pray.svg │ │ │ │ ├── praying-hands.svg │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ ├── prescription-bottle.svg │ │ │ │ ├── prescription.svg │ │ │ │ ├── print.svg │ │ │ │ ├── procedures.svg │ │ │ │ ├── project-diagram.svg │ │ │ │ ├── pump-medical.svg │ │ │ │ ├── pump-soap.svg │ │ │ │ ├── puzzle-piece.svg │ │ │ │ ├── qrcode.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quidditch.svg │ │ │ │ ├── quote-left.svg │ │ │ │ ├── quote-right.svg │ │ │ │ ├── quran.svg │ │ │ │ ├── radiation-alt.svg │ │ │ │ ├── radiation.svg │ │ │ │ ├── rainbow.svg │ │ │ │ ├── random.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── record-vinyl.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── redo-alt.svg │ │ │ │ ├── redo.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── remove-format.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── republican.svg │ │ │ │ ├── restroom.svg │ │ │ │ ├── retweet.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── ring.svg │ │ │ │ ├── road.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── route.svg │ │ │ │ ├── rss-square.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── ruble-sign.svg │ │ │ │ ├── ruler-combined.svg │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ ├── ruler-vertical.svg │ │ │ │ ├── ruler.svg │ │ │ │ ├── running.svg │ │ │ │ ├── rupee-sign.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── satellite-dish.svg │ │ │ │ ├── satellite.svg │ │ │ │ ├── save.svg │ │ │ │ ├── school.svg │ │ │ │ ├── screwdriver.svg │ │ │ │ ├── scroll.svg │ │ │ │ ├── sd-card.svg │ │ │ │ ├── search-dollar.svg │ │ │ │ ├── search-location.svg │ │ │ │ ├── search-minus.svg │ │ │ │ ├── search-plus.svg │ │ │ │ ├── search.svg │ │ │ │ ├── seedling.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── share-alt-square.svg │ │ │ │ ├── share-alt.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shekel-sign.svg │ │ │ │ ├── shield-alt.svg │ │ │ │ ├── shield-virus.svg │ │ │ │ ├── ship.svg │ │ │ │ ├── shipping-fast.svg │ │ │ │ ├── shoe-prints.svg │ │ │ │ ├── shopping-bag.svg │ │ │ │ ├── shopping-basket.svg │ │ │ │ ├── shopping-cart.svg │ │ │ │ ├── shower.svg │ │ │ │ ├── shuttle-van.svg │ │ │ │ ├── sign-in-alt.svg │ │ │ │ ├── sign-language.svg │ │ │ │ ├── sign-out-alt.svg │ │ │ │ ├── sign.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── signature.svg │ │ │ │ ├── sim-card.svg │ │ │ │ ├── sink.svg │ │ │ │ ├── sitemap.svg │ │ │ │ ├── skating.svg │ │ │ │ ├── skiing-nordic.svg │ │ │ │ ├── skiing.svg │ │ │ │ ├── skull-crossbones.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sleigh.svg │ │ │ │ ├── sliders-h.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── smog.svg │ │ │ │ ├── smoking-ban.svg │ │ │ │ ├── smoking.svg │ │ │ │ ├── sms.svg │ │ │ │ ├── snowboarding.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── snowman.svg │ │ │ │ ├── snowplow.svg │ │ │ │ ├── soap.svg │ │ │ │ ├── socks.svg │ │ │ │ ├── solar-panel.svg │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ ├── sort-amount-down-alt.svg │ │ │ │ ├── sort-amount-down.svg │ │ │ │ ├── sort-amount-up-alt.svg │ │ │ │ ├── sort-amount-up.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── spa.svg │ │ │ │ ├── space-shuttle.svg │ │ │ │ ├── spell-check.svg │ │ │ │ ├── spider.svg │ │ │ │ ├── spinner.svg │ │ │ │ ├── splotch.svg │ │ │ │ ├── spray-can.svg │ │ │ │ ├── square-full.svg │ │ │ │ ├── square-root-alt.svg │ │ │ │ ├── square.svg │ │ │ │ ├── stamp.svg │ │ │ │ ├── star-and-crescent.svg │ │ │ │ ├── star-half-alt.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star-of-david.svg │ │ │ │ ├── star-of-life.svg │ │ │ │ ├── star.svg │ │ │ │ ├── step-backward.svg │ │ │ │ ├── step-forward.svg │ │ │ │ ├── stethoscope.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── stopwatch-20.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── store-alt-slash.svg │ │ │ │ ├── store-alt.svg │ │ │ │ ├── store-slash.svg │ │ │ │ ├── store.svg │ │ │ │ ├── stream.svg │ │ │ │ ├── street-view.svg │ │ │ │ ├── strikethrough.svg │ │ │ │ ├── stroopwafel.svg │ │ │ │ ├── subscript.svg │ │ │ │ ├── subway.svg │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ ├── suitcase.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── superscript.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── swatchbook.svg │ │ │ │ ├── swimmer.svg │ │ │ │ ├── swimming-pool.svg │ │ │ │ ├── synagogue.svg │ │ │ │ ├── sync-alt.svg │ │ │ │ ├── sync.svg │ │ │ │ ├── syringe.svg │ │ │ │ ├── table-tennis.svg │ │ │ │ ├── table.svg │ │ │ │ ├── tablet-alt.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── tablets.svg │ │ │ │ ├── tachometer-alt.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── tags.svg │ │ │ │ ├── tape.svg │ │ │ │ ├── tasks.svg │ │ │ │ ├── taxi.svg │ │ │ │ ├── teeth-open.svg │ │ │ │ ├── teeth.svg │ │ │ │ ├── temperature-high.svg │ │ │ │ ├── temperature-low.svg │ │ │ │ ├── tenge.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-height.svg │ │ │ │ ├── text-width.svg │ │ │ │ ├── th-large.svg │ │ │ │ ├── th-list.svg │ │ │ │ ├── th.svg │ │ │ │ ├── theater-masks.svg │ │ │ │ ├── thermometer-empty.svg │ │ │ │ ├── thermometer-full.svg │ │ │ │ ├── thermometer-half.svg │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── thumbtack.svg │ │ │ │ ├── ticket-alt.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── times.svg │ │ │ │ ├── tint-slash.svg │ │ │ │ ├── tint.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── toggle-off.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── toilet-paper-slash.svg │ │ │ │ ├── toilet-paper.svg │ │ │ │ ├── toilet.svg │ │ │ │ ├── toolbox.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── tooth.svg │ │ │ │ ├── torah.svg │ │ │ │ ├── torii-gate.svg │ │ │ │ ├── tractor.svg │ │ │ │ ├── trademark.svg │ │ │ │ ├── traffic-light.svg │ │ │ │ ├── trailer.svg │ │ │ │ ├── train.svg │ │ │ │ ├── tram.svg │ │ │ │ ├── transgender-alt.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── trash-restore-alt.svg │ │ │ │ ├── trash-restore.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── truck-loading.svg │ │ │ │ ├── truck-monster.svg │ │ │ │ ├── truck-moving.svg │ │ │ │ ├── truck-pickup.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tshirt.svg │ │ │ │ ├── tty.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── umbrella-beach.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── underline.svg │ │ │ │ ├── undo-alt.svg │ │ │ │ ├── undo.svg │ │ │ │ ├── universal-access.svg │ │ │ │ ├── university.svg │ │ │ │ ├── unlink.svg │ │ │ │ ├── unlock-alt.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── user-alt-slash.svg │ │ │ │ ├── user-alt.svg │ │ │ │ ├── user-astronaut.svg │ │ │ │ ├── user-check.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user-clock.svg │ │ │ │ ├── user-cog.svg │ │ │ │ ├── user-edit.svg │ │ │ │ ├── user-friends.svg │ │ │ │ ├── user-graduate.svg │ │ │ │ ├── user-injured.svg │ │ │ │ ├── user-lock.svg │ │ │ │ ├── user-md.svg │ │ │ │ ├── user-minus.svg │ │ │ │ ├── user-ninja.svg │ │ │ │ ├── user-nurse.svg │ │ │ │ ├── user-plus.svg │ │ │ │ ├── user-secret.svg │ │ │ │ ├── user-shield.svg │ │ │ │ ├── user-slash.svg │ │ │ │ ├── user-tag.svg │ │ │ │ ├── user-tie.svg │ │ │ │ ├── user-times.svg │ │ │ │ ├── user.svg │ │ │ │ ├── users-cog.svg │ │ │ │ ├── users-slash.svg │ │ │ │ ├── users.svg │ │ │ │ ├── utensil-spoon.svg │ │ │ │ ├── utensils.svg │ │ │ │ ├── vector-square.svg │ │ │ │ ├── venus-double.svg │ │ │ │ ├── venus-mars.svg │ │ │ │ ├── venus.svg │ │ │ │ ├── vest-patches.svg │ │ │ │ ├── vest.svg │ │ │ │ ├── vial.svg │ │ │ │ ├── vials.svg │ │ │ │ ├── video-slash.svg │ │ │ │ ├── video.svg │ │ │ │ ├── vihara.svg │ │ │ │ ├── virus-slash.svg │ │ │ │ ├── virus.svg │ │ │ │ ├── viruses.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── volleyball-ball.svg │ │ │ │ ├── volume-down.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-up.svg │ │ │ │ ├── vote-yea.svg │ │ │ │ ├── vr-cardboard.svg │ │ │ │ ├── walking.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── warehouse.svg │ │ │ │ ├── water.svg │ │ │ │ ├── wave-square.svg │ │ │ │ ├── weight-hanging.svg │ │ │ │ ├── weight.svg │ │ │ │ ├── wheelchair.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wind.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── wine-bottle.svg │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ ├── wine-glass.svg │ │ │ │ ├── won-sign.svg │ │ │ │ ├── wrench.svg │ │ │ │ ├── x-ray.svg │ │ │ │ ├── yen-sign.svg │ │ │ │ └── yin-yang.svg │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ │ ├── jquery-easing │ │ ├── jquery.easing.compatibility.js │ │ ├── jquery.easing.js │ │ └── jquery.easing.min.js │ │ └── jquery │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map ├── css │ ├── .DS_Store │ ├── ajax-loader.gif │ ├── animate.css │ ├── bootstrap-datepicker.css │ ├── bootstrap.min.css │ ├── bootstrap │ │ ├── .DS_Store │ │ ├── bootstrap-grid.css │ │ └── bootstrap-reboot.css │ ├── css │ │ ├── .DS_Store │ │ ├── bootstrap-reboot.css │ │ └── mixins │ │ │ └── _text-hide.css │ ├── flaticon.css │ ├── jquery.timepicker.css │ ├── magnific-popup.css │ ├── owl.carousel.min.css │ ├── owl.theme.default.min.css │ └── style.css ├── fonts │ ├── .DS_Store │ └── flaticon │ │ ├── .DS_Store │ │ ├── backup.txt │ │ ├── font │ │ ├── Flaticon.eot │ │ ├── Flaticon.svg │ │ ├── Flaticon.ttf │ │ ├── Flaticon.woff │ │ ├── Flaticon.woff2 │ │ ├── _flaticon.scss │ │ ├── flaticon.css │ │ └── flaticon.html │ │ └── license │ │ └── license.pdf ├── images │ ├── .DS_Store │ ├── Produit-premix.png │ ├── about-1.jpg │ ├── about-2.jpg │ ├── about-3.jpg │ ├── about.jpg │ ├── bg_1.jpg │ ├── bg_2.jpg │ ├── bg_3.jpg │ ├── cat-food3.jpg │ ├── gallery-1.jpg │ ├── gallery-2.jpg │ ├── gallery-3.jpg │ ├── gallery-4.jpg │ ├── gallery-5.jpg │ ├── gallery-6.jpg │ ├── gallery-7.jpg │ ├── hygene1.jpg │ ├── hygene2.png │ ├── hygene3.png │ ├── image_1.jpg │ ├── image_2.jpg │ ├── image_3.jpg │ ├── image_4.jpg │ ├── image_5.jpg │ ├── image_6.jpg │ ├── img.jpg │ ├── loc.png │ ├── logo-01.png │ ├── person_1.jpg │ ├── person_2.jpg │ ├── person_3.jpg │ ├── person_4.jpg │ ├── pet-food1.jpg │ ├── pet-food2.jpg │ ├── pricing-1.jpg │ ├── pricing-2.jpg │ ├── pricing-3.jpg │ ├── staff-1.jpg │ ├── staff-2.jpg │ ├── staff-3.jpg │ ├── staff-4.jpg │ ├── staff-5.jpg │ ├── staff-6.jpg │ ├── staff-7.jpg │ └── staff-8.jpg ├── index.php ├── js │ ├── .DS_Store │ ├── bootstrap-datepicker.js │ ├── bootstrap.min.js │ ├── google-map.js │ ├── jquery-3.2.1.min.js │ ├── jquery-migrate-3.0.1.min.js │ ├── jquery.animateNumber.min.js │ ├── jquery.easing.1.3.js │ ├── jquery.magnific-popup.min.js │ ├── jquery.min.js │ ├── jquery.stellar.min.js │ ├── jquery.timepicker.min.js │ ├── jquery.waypoints.min.js │ ├── main.js │ ├── owl.carousel.min.js │ ├── popper.min.js │ └── scrollax.min.js └── scss │ ├── .DS_Store │ ├── bootstrap │ ├── .DS_Store │ ├── _alert.scss │ ├── _badge.scss │ ├── _breadcrumb.scss │ ├── _button-group.scss │ ├── _buttons.scss │ ├── _card.scss │ ├── _carousel.scss │ ├── _close.scss │ ├── _code.scss │ ├── _custom-forms.scss │ ├── _dropdown.scss │ ├── _forms.scss │ ├── _functions.scss │ ├── _grid.scss │ ├── _images.scss │ ├── _input-group.scss │ ├── _jumbotron.scss │ ├── _list-group.scss │ ├── _media.scss │ ├── _mixins.scss │ ├── _modal.scss │ ├── _nav.scss │ ├── _navbar.scss │ ├── _pagination.scss │ ├── _popover.scss │ ├── _print.scss │ ├── _progress.scss │ ├── _reboot.scss │ ├── _root.scss │ ├── _spinners.scss │ ├── _tables.scss │ ├── _toasts.scss │ ├── _tooltip.scss │ ├── _transitions.scss │ ├── _type.scss │ ├── _utilities.scss │ ├── _variables.scss │ ├── bootstrap-grid.scss │ ├── bootstrap-reboot.scss │ ├── bootstrap.scss │ ├── mixins │ │ ├── _alert.scss │ │ ├── _background-variant.scss │ │ ├── _badge.scss │ │ ├── _border-radius.scss │ │ ├── _box-shadow.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _caret.scss │ │ ├── _clearfix.scss │ │ ├── _float.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hover.scss │ │ ├── _image.scss │ │ ├── _list-group.scss │ │ ├── _lists.scss │ │ ├── _nav-divider.scss │ │ ├── _pagination.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _screen-reader.scss │ │ ├── _size.scss │ │ ├── _table-row.scss │ │ ├── _text-emphasis.scss │ │ ├── _text-hide.scss │ │ ├── _text-truncate.scss │ │ ├── _transition.scss │ │ └── _visibility.scss │ └── utilities │ │ ├── _align.scss │ │ ├── _background.scss │ │ ├── _borders.scss │ │ ├── _clearfix.scss │ │ ├── _display.scss │ │ ├── _embed.scss │ │ ├── _flex.scss │ │ ├── _float.scss │ │ ├── _overflow.scss │ │ ├── _position.scss │ │ ├── _screenreaders.scss │ │ ├── _shadows.scss │ │ ├── _sizing.scss │ │ ├── _spacing.scss │ │ ├── _text.scss │ │ └── _visibility.scss │ └── style.scss ├── src ├── Controller │ ├── .gitignore │ ├── AdminAccountController.php │ ├── AdminDashboardController.php │ ├── AdminParameterController.php │ ├── AdminUserController.php │ ├── BackController.php │ ├── FrontController.php │ ├── HomeController.php │ ├── RegistrationController.php │ ├── RegistrationController1.php │ ├── ResetPasswordController.php │ ├── SecurityController.php │ └── SecurityController1.php ├── Entity │ ├── .gitignore │ ├── Accouplement.php │ ├── Adoption.php │ ├── CategorieADOP.php │ ├── CategorieAcc.php │ ├── CategorieP.php │ ├── CategorieS.php │ ├── CategorieV.php │ ├── Produit.php │ ├── Reclamation.php │ ├── Reponse.php │ ├── ServiceS.php │ ├── ServiceV.php │ └── User.php ├── Form │ ├── ChangePasswordFormType.php │ ├── RegistrationFormType.php │ ├── RegistrationFormType1.php │ ├── ResetPasswordRequestFormType.php │ ├── UpdatePasswordType.php │ ├── UserAddType.php │ ├── UserEditType copy.php │ ├── UserEditType.php │ └── UserType.php ├── Kernel.php ├── Repository │ ├── .gitignore │ ├── AccouplementRepository.php │ ├── AdoptionRepository.php │ ├── CategorieADOPRepository.php │ ├── CategorieAccRepository.php │ ├── CategoriePRepository.php │ ├── CategorieSRepository.php │ ├── CategorieVRepository.php │ ├── ProduitRepository.php │ ├── ReclamationRepository.php │ ├── ReponseRepository.php │ ├── ResetPasswordRequestRepository.php │ ├── ServiceSRepository.php │ ├── ServiceVRepository.php │ └── UserRepository.php └── Security │ ├── AppCustomAuthenticator.php │ └── EmailVerifier.php ├── symfony.lock ├── templates ├── about.html.twig ├── accouplement.html.twig ├── admin │ ├── account │ │ ├── edit.html.twig │ │ └── index.html.twig │ ├── base.html.twig │ ├── dashboard │ │ └── index.html.twig │ ├── layout.html.twig │ ├── parameter │ │ └── update_password.html.twig │ ├── partials │ │ ├── _modal_logout.html.twig │ │ ├── sidebar.html.twig │ │ └── topbar.html.twig │ └── user │ │ ├── add.html.twig │ │ ├── edit.html.twig │ │ ├── index.html.twig │ │ └── show.html.twig ├── adoption.html.twig ├── back │ ├── back.html.twig │ ├── index.html.twig │ ├── login.html.twig │ └── register.html.twig ├── base-front.html.twig ├── base.html.twig ├── emails │ └── reset_password.html.twig ├── front │ ├── back.html.twig │ ├── index.html.twig │ ├── login.html.twig │ └── register.html.twig ├── home │ └── index.html.twig ├── partials │ ├── _macro.html.twig │ └── _navbar.html.twig ├── produits.html.twig ├── reclamations.html.twig ├── registration │ ├── confirmation_email.html.twig │ └── register.html.twig ├── security │ ├── forgot_password.html.twig │ ├── login.html.twig │ ├── registration.html.twig │ └── reset_password.html.twig ├── services.html.twig ├── vet.html.twig └── vet │ └── index.html.twig ├── tests └── bootstrap.php ├── translations └── .gitignore ├── var ├── cache │ └── dev │ │ ├── App_KernelDevDebugContainer.php │ │ ├── App_KernelDevDebugContainer.php.lock │ │ ├── App_KernelDevDebugContainer.php.meta │ │ ├── App_KernelDevDebugContainer.preload.php │ │ ├── App_KernelDevDebugContainer.xml │ │ ├── App_KernelDevDebugContainer.xml.meta │ │ ├── App_KernelDevDebugContainerCompiler.log │ │ ├── App_KernelDevDebugContainerDeprecations.log │ │ ├── Container3QoJEGd │ │ ├── App_KernelDevDebugContainer.php │ │ ├── getAccouplementRepositoryService.php │ │ ├── getAdminAccountControllerService.php │ │ ├── getAdminDashboardControllerService.php │ │ ├── getAdminParameterControllerService.php │ │ ├── getAdminUserControllerService.php │ │ ├── getAdoptionRepositoryService.php │ │ ├── getAnnotations_CacheWarmerService.php │ │ ├── getAppCustomAuthenticatorService.php │ │ ├── getBackControllerService.php │ │ ├── getCachePoolClearer_CacheWarmerService.php │ │ ├── getCacheWarmerService.php │ │ ├── getCache_AppClearerService.php │ │ ├── getCache_GlobalClearerService.php │ │ ├── getCache_SystemClearerService.php │ │ ├── getCategorieADOPRepositoryService.php │ │ ├── getCategorieAccRepositoryService.php │ │ ├── getCategoriePRepositoryService.php │ │ ├── getCategorieSRepositoryService.php │ │ ├── getCategorieVRepositoryService.php │ │ ├── getChangePasswordFormTypeService.php │ │ ├── getConfigBuilder_WarmerService.php │ │ ├── getConsole_CommandLoaderService.php │ │ ├── getConsole_Command_AboutService.php │ │ ├── getConsole_Command_AssetsInstallService.php │ │ ├── getConsole_Command_CacheClearService.php │ │ ├── getConsole_Command_CachePoolClearService.php │ │ ├── getConsole_Command_CachePoolDeleteService.php │ │ ├── getConsole_Command_CachePoolListService.php │ │ ├── getConsole_Command_CachePoolPruneService.php │ │ ├── getConsole_Command_CacheWarmupService.php │ │ ├── getConsole_Command_ConfigDebugService.php │ │ ├── getConsole_Command_ConfigDumpReferenceService.php │ │ ├── getConsole_Command_ContainerDebugService.php │ │ ├── getConsole_Command_ContainerLintService.php │ │ ├── getConsole_Command_DebugAutowiringService.php │ │ ├── getConsole_Command_DotenvDebugService.php │ │ ├── getConsole_Command_EventDispatcherDebugService.php │ │ ├── getConsole_Command_FormDebugService.php │ │ ├── getConsole_Command_MessengerConsumeMessagesService.php │ │ ├── getConsole_Command_MessengerDebugService.php │ │ ├── getConsole_Command_MessengerFailedMessagesRemoveService.php │ │ ├── getConsole_Command_MessengerFailedMessagesRetryService.php │ │ ├── getConsole_Command_MessengerFailedMessagesShowService.php │ │ ├── getConsole_Command_MessengerSetupTransportsService.php │ │ ├── getConsole_Command_MessengerStopWorkersService.php │ │ ├── getConsole_Command_RouterDebugService.php │ │ ├── getConsole_Command_RouterMatchService.php │ │ ├── getConsole_Command_SecretsDecryptToLocalService.php │ │ ├── getConsole_Command_SecretsEncryptFromLocalService.php │ │ ├── getConsole_Command_SecretsGenerateKeyService.php │ │ ├── getConsole_Command_SecretsListService.php │ │ ├── getConsole_Command_SecretsRemoveService.php │ │ ├── getConsole_Command_SecretsSetService.php │ │ ├── getConsole_Command_TranslationDebugService.php │ │ ├── getConsole_Command_TranslationExtractService.php │ │ ├── getConsole_Command_TranslationPullService.php │ │ ├── getConsole_Command_TranslationPushService.php │ │ ├── getConsole_Command_ValidatorDebugService.php │ │ ├── getConsole_Command_XliffLintService.php │ │ ├── getConsole_Command_YamlLintService.php │ │ ├── getConsole_ErrorListenerService.php │ │ ├── getContainer_EnvVarProcessorService.php │ │ ├── getContainer_EnvVarProcessorsLocatorService.php │ │ ├── getContainer_GetenvService.php │ │ ├── getDataCollector_Request_SessionCollectorService.php │ │ ├── getDebug_ArgumentResolver_DefaultService.php │ │ ├── getDebug_ArgumentResolver_NotTaggedControllerService.php │ │ ├── getDebug_ArgumentResolver_RequestAttributeService.php │ │ ├── getDebug_ArgumentResolver_RequestService.php │ │ ├── getDebug_ArgumentResolver_ServiceService.php │ │ ├── getDebug_ArgumentResolver_SessionService.php │ │ ├── getDebug_ArgumentResolver_VariadicService.php │ │ ├── getDebug_DumpListenerService.php │ │ ├── getDebug_FileLinkFormatter_UrlFormatService.php │ │ ├── getDebug_Security_Firewall_Authenticator_MainService.php │ │ ├── getDebug_Security_UserValueResolverService.php │ │ ├── getDebug_Security_Voter_Security_Access_AuthenticatedVoterService.php │ │ ├── getDebug_Security_Voter_Security_Access_ExpressionVoterService.php │ │ ├── getDebug_Security_Voter_Security_Access_SimpleRoleVoterService.php │ │ ├── getDebug_Security_Voter_VoteListenerService.php │ │ ├── getDoctrineMigrations_CurrentCommandService.php │ │ ├── getDoctrineMigrations_DiffCommandService.php │ │ ├── getDoctrineMigrations_DumpSchemaCommandService.php │ │ ├── getDoctrineMigrations_ExecuteCommandService.php │ │ ├── getDoctrineMigrations_GenerateCommandService.php │ │ ├── getDoctrineMigrations_LatestCommandService.php │ │ ├── getDoctrineMigrations_MigrateCommandService.php │ │ ├── getDoctrineMigrations_RollupCommandService.php │ │ ├── getDoctrineMigrations_StatusCommandService.php │ │ ├── getDoctrineMigrations_SyncMetadataCommandService.php │ │ ├── getDoctrineMigrations_UpToDateCommandService.php │ │ ├── getDoctrineMigrations_VersionCommandService.php │ │ ├── getDoctrineMigrations_VersionsCommandService.php │ │ ├── getDoctrine_CacheClearMetadataCommandService.php │ │ ├── getDoctrine_CacheClearQueryCacheCommandService.php │ │ ├── getDoctrine_CacheClearResultCommandService.php │ │ ├── getDoctrine_CacheCollectionRegionCommandService.php │ │ ├── getDoctrine_ClearEntityRegionCommandService.php │ │ ├── getDoctrine_ClearQueryRegionCommandService.php │ │ ├── getDoctrine_DatabaseCreateCommandService.php │ │ ├── getDoctrine_DatabaseDropCommandService.php │ │ ├── getDoctrine_EnsureProductionSettingsCommandService.php │ │ ├── getDoctrine_MappingConvertCommandService.php │ │ ├── getDoctrine_MappingImportCommandService.php │ │ ├── getDoctrine_MappingInfoCommandService.php │ │ ├── getDoctrine_Migrations_ContainerAwareMigrationsFactoryService.php │ │ ├── getDoctrine_Migrations_DependencyFactoryService.php │ │ ├── getDoctrine_Orm_Command_EntityManagerProviderService.php │ │ ├── getDoctrine_Orm_DefaultEntityManager_PropertyInfoExtractorService.php │ │ ├── getDoctrine_Orm_DefaultListeners_AttachEntityListenersService.php │ │ ├── getDoctrine_Orm_Listeners_DoctrineDbalCacheAdapterSchemaSubscriberService.php │ │ ├── getDoctrine_Orm_Listeners_DoctrineTokenProviderSchemaSubscriberService.php │ │ ├── getDoctrine_Orm_Listeners_PdoCacheAdapterDoctrineSchemaSubscriberService.php │ │ ├── getDoctrine_Orm_Messenger_DoctrineSchemaSubscriberService.php │ │ ├── getDoctrine_Orm_Messenger_EventSubscriber_DoctrineClearEntityManagerService.php │ │ ├── getDoctrine_Orm_ProxyCacheWarmerService.php │ │ ├── getDoctrine_Orm_Validator_UniqueService.php │ │ ├── getDoctrine_QueryDqlCommandService.php │ │ ├── getDoctrine_QuerySqlCommandService.php │ │ ├── getDoctrine_SchemaCreateCommandService.php │ │ ├── getDoctrine_SchemaDropCommandService.php │ │ ├── getDoctrine_SchemaUpdateCommandService.php │ │ ├── getDoctrine_SchemaValidateCommandService.php │ │ ├── getDoctrine_UlidGeneratorService.php │ │ ├── getDoctrine_UuidGeneratorService.php │ │ ├── getEmailVerifierService.php │ │ ├── getErrorControllerService.php │ │ ├── getErrorHandler_ErrorRenderer_HtmlService.php │ │ ├── getForm_ChoiceListFactory_CachedService.php │ │ ├── getForm_RegistryService.php │ │ ├── getForm_ServerParamsService.php │ │ ├── getForm_TypeExtension_CsrfService.php │ │ ├── getForm_TypeExtension_Form_DataCollectorService.php │ │ ├── getForm_TypeExtension_Form_HttpFoundationService.php │ │ ├── getForm_TypeExtension_Form_TransformationFailureHandlingService.php │ │ ├── getForm_TypeExtension_Form_ValidatorService.php │ │ ├── getForm_TypeExtension_Upload_ValidatorService.php │ │ ├── getForm_TypeGuesser_DoctrineService.php │ │ ├── getForm_TypeGuesser_ValidatorService.php │ │ ├── getForm_Type_ChoiceService.php │ │ ├── getForm_Type_ColorService.php │ │ ├── getForm_Type_EntityService.php │ │ ├── getForm_Type_FormService.php │ │ ├── getFragment_Renderer_InlineService.php │ │ ├── getFrontControllerService.php │ │ ├── getHomeControllerService.php │ │ ├── getLoaderInterfaceService.php │ │ ├── getMailer_MailerService.php │ │ ├── getMailer_TransportFactory_GmailService.php │ │ ├── getMailer_TransportFactory_MailchimpService.php │ │ ├── getMailer_TransportFactory_NativeService.php │ │ ├── getMailer_TransportFactory_NullService.php │ │ ├── getMailer_TransportFactory_SendmailService.php │ │ ├── getMailer_TransportFactory_SmtpService.php │ │ ├── getMailer_TransportsService.php │ │ ├── getMaker_AutoCommand_MakeAuthService.php │ │ ├── getMaker_AutoCommand_MakeCommandService.php │ │ ├── getMaker_AutoCommand_MakeControllerService.php │ │ ├── getMaker_AutoCommand_MakeCrudService.php │ │ ├── getMaker_AutoCommand_MakeDockerDatabaseService.php │ │ ├── getMaker_AutoCommand_MakeEntityService.php │ │ ├── getMaker_AutoCommand_MakeFixturesService.php │ │ ├── getMaker_AutoCommand_MakeFormService.php │ │ ├── getMaker_AutoCommand_MakeMessageService.php │ │ ├── getMaker_AutoCommand_MakeMessengerMiddlewareService.php │ │ ├── getMaker_AutoCommand_MakeMigrationService.php │ │ ├── getMaker_AutoCommand_MakeRegistrationFormService.php │ │ ├── getMaker_AutoCommand_MakeResetPasswordService.php │ │ ├── getMaker_AutoCommand_MakeSerializerEncoderService.php │ │ ├── getMaker_AutoCommand_MakeSerializerNormalizerService.php │ │ ├── getMaker_AutoCommand_MakeStimulusControllerService.php │ │ ├── getMaker_AutoCommand_MakeSubscriberService.php │ │ ├── getMaker_AutoCommand_MakeTestService.php │ │ ├── getMaker_AutoCommand_MakeTwigComponentService.php │ │ ├── getMaker_AutoCommand_MakeTwigExtensionService.php │ │ ├── getMaker_AutoCommand_MakeUserService.php │ │ ├── getMaker_AutoCommand_MakeValidatorService.php │ │ ├── getMaker_AutoCommand_MakeVoterService.php │ │ ├── getMaker_DoctrineHelperService.php │ │ ├── getMaker_EntityClassGeneratorService.php │ │ ├── getMaker_FileManagerService.php │ │ ├── getMaker_GeneratorService.php │ │ ├── getMaker_PhpCompatUtilService.php │ │ ├── getMaker_Renderer_FormTypeRendererService.php │ │ ├── getManagerRegistryAwareConnectionProviderService.php │ │ ├── getMessenger_Bus_Default_Middleware_HandleMessageService.php │ │ ├── getMessenger_Bus_Default_Middleware_TraceableService.php │ │ ├── getMessenger_Failure_SendFailedMessageToFailureTransportListenerService.php │ │ ├── getMessenger_Listener_StopWorkerOnRestartSignalListenerService.php │ │ ├── getMessenger_Middleware_SendMessageService.php │ │ ├── getMessenger_ReceiverLocatorService.php │ │ ├── getMessenger_Retry_MultiplierRetryStrategy_AsyncService.php │ │ ├── getMessenger_Retry_MultiplierRetryStrategy_FailedService.php │ │ ├── getMessenger_Retry_SendFailedMessageForRetryListenerService.php │ │ ├── getMessenger_RoutableMessageBusService.php │ │ ├── getMessenger_TransportFactoryService.php │ │ ├── getMessenger_Transport_AsyncService.php │ │ ├── getMessenger_Transport_Doctrine_FactoryService.php │ │ ├── getMessenger_Transport_FailedService.php │ │ ├── getMessenger_Transport_Sync_FactoryService.php │ │ ├── getMimeTypesService.php │ │ ├── getMonolog_Command_ServerLogService.php │ │ ├── getMonolog_Logger_MailerService.php │ │ ├── getMonolog_Logger_MessengerService.php │ │ ├── getNotifier_TransportFactory_NullService.php │ │ ├── getProduitRepositoryService.php │ │ ├── getProfilerControllerService.php │ │ ├── getPropertyAccessorService.php │ │ ├── getPropertyInfo_SerializerExtractorService.php │ │ ├── getReclamationRepositoryService.php │ │ ├── getRedirectControllerService.php │ │ ├── getRegistrationController1Service.php │ │ ├── getRegistrationControllerService.php │ │ ├── getRegistrationFormType1Service.php │ │ ├── getRegistrationFormTypeService.php │ │ ├── getReponseRepositoryService.php │ │ ├── getResetPasswordControllerService.php │ │ ├── getResetPasswordRemoveExpiredCommandService.php │ │ ├── getResetPasswordRequestFormTypeService.php │ │ ├── getResetPasswordRequestRepositoryService.php │ │ ├── getRouter_CacheWarmerService.php │ │ ├── getRouting_LoaderService.php │ │ ├── getRunSqlCommandService.php │ │ ├── getSecrets_VaultService.php │ │ ├── getSecurityController1Service.php │ │ ├── getSecurityControllerService.php │ │ ├── getSecurity_AccessListenerService.php │ │ ├── getSecurity_AuthenticationUtilsService.php │ │ ├── getSecurity_Authenticator_Manager_MainService.php │ │ ├── getSecurity_ChannelListenerService.php │ │ ├── getSecurity_Command_DebugFirewallService.php │ │ ├── getSecurity_Command_UserPasswordEncoderService.php │ │ ├── getSecurity_Command_UserPasswordHashService.php │ │ ├── getSecurity_Csrf_TokenStorageService.php │ │ ├── getSecurity_EncoderFactory_GenericService.php │ │ ├── getSecurity_Firewall_Map_Context_DevService.php │ │ ├── getSecurity_Firewall_Map_Context_MainService.php │ │ ├── getSecurity_HttpUtilsService.php │ │ ├── getSecurity_Listener_CheckAuthenticatorCredentialsService.php │ │ ├── getSecurity_Listener_CsrfProtectionService.php │ │ ├── getSecurity_Listener_Main_UserProviderService.php │ │ ├── getSecurity_Listener_PasswordMigratingService.php │ │ ├── getSecurity_Listener_Session_MainService.php │ │ ├── getSecurity_Listener_UserChecker_MainService.php │ │ ├── getSecurity_Listener_UserProviderService.php │ │ ├── getSecurity_Logout_Listener_CsrfTokenClearingService.php │ │ ├── getSecurity_Logout_Listener_Default_MainService.php │ │ ├── getSecurity_PasswordHasherFactoryService.php │ │ ├── getSecurity_UserAuthenticatorService.php │ │ ├── getSecurity_UserPasswordHasherService.php │ │ ├── getSecurity_User_Provider_Concrete_AppUserProviderService.php │ │ ├── getSecurity_Validator_UserPasswordService.php │ │ ├── getSerializer_Mapping_CacheWarmerService.php │ │ ├── getSerializer_Mapping_ClassMetadataFactoryService.php │ │ ├── getServiceSRepositoryService.php │ │ ├── getServiceVRepositoryService.php │ │ ├── getServicesResetterService.php │ │ ├── getSession_FactoryService.php │ │ ├── getSymfonycasts_ResetPassword_CleanerService.php │ │ ├── getTemplateControllerService.php │ │ ├── getTexter_TransportsService.php │ │ ├── getTranslation_ExtractorService.php │ │ ├── getTranslation_Loader_CsvService.php │ │ ├── getTranslation_Loader_DatService.php │ │ ├── getTranslation_Loader_IniService.php │ │ ├── getTranslation_Loader_JsonService.php │ │ ├── getTranslation_Loader_MoService.php │ │ ├── getTranslation_Loader_PhpService.php │ │ ├── getTranslation_Loader_PoService.php │ │ ├── getTranslation_Loader_QtService.php │ │ ├── getTranslation_Loader_ResService.php │ │ ├── getTranslation_Loader_XliffService.php │ │ ├── getTranslation_Loader_YmlService.php │ │ ├── getTranslation_ProviderCollectionService.php │ │ ├── getTranslation_ReaderService.php │ │ ├── getTranslation_WarmerService.php │ │ ├── getTranslation_WriterService.php │ │ ├── getTwig_Command_DebugService.php │ │ ├── getTwig_Command_LintService.php │ │ ├── getTwig_Form_EngineService.php │ │ ├── getTwig_Form_RendererService.php │ │ ├── getTwig_Mailer_MessageListenerService.php │ │ ├── getTwig_Runtime_HttpkernelService.php │ │ ├── getTwig_Runtime_SecurityCsrfService.php │ │ ├── getTwig_Runtime_SerializerService.php │ │ ├── getTwig_TemplateCacheWarmerService.php │ │ ├── getUpdatePasswordTypeService.php │ │ ├── getUser2Service.php │ │ ├── getUser3Service.php │ │ ├── getUserAddTypeService.php │ │ ├── getUserEditTypeService.php │ │ ├── getUserRepositoryService.php │ │ ├── getUserService.php │ │ ├── getUserTypeService.php │ │ ├── getValidator_EmailService.php │ │ ├── getValidator_ExpressionService.php │ │ ├── getValidator_Mapping_CacheWarmerService.php │ │ ├── getValidator_NotCompromisedPasswordService.php │ │ ├── getVarDumper_Command_ServerDumpService.php │ │ ├── getVarDumper_ContextualizedCliDumper_InnerService.php │ │ ├── getWebProfiler_Controller_ExceptionPanelService.php │ │ ├── getWebProfiler_Controller_ProfilerService.php │ │ ├── getWebProfiler_Controller_RouterService.php │ │ ├── get_Console_Command_About_LazyService.php │ │ ├── get_Console_Command_AssetsInstall_LazyService.php │ │ ├── get_Console_Command_CacheClear_LazyService.php │ │ ├── get_Console_Command_CachePoolClear_LazyService.php │ │ ├── get_Console_Command_CachePoolDelete_LazyService.php │ │ ├── get_Console_Command_CachePoolList_LazyService.php │ │ ├── get_Console_Command_CachePoolPrune_LazyService.php │ │ ├── get_Console_Command_CacheWarmup_LazyService.php │ │ ├── get_Console_Command_ConfigDebug_LazyService.php │ │ ├── get_Console_Command_ConfigDumpReference_LazyService.php │ │ ├── get_Console_Command_ContainerDebug_LazyService.php │ │ ├── get_Console_Command_ContainerLint_LazyService.php │ │ ├── get_Console_Command_DebugAutowiring_LazyService.php │ │ ├── get_Console_Command_DotenvDebug_LazyService.php │ │ ├── get_Console_Command_EventDispatcherDebug_LazyService.php │ │ ├── get_Console_Command_FormDebug_LazyService.php │ │ ├── get_Console_Command_MessengerConsumeMessages_LazyService.php │ │ ├── get_Console_Command_MessengerDebug_LazyService.php │ │ ├── get_Console_Command_MessengerFailedMessagesRemove_LazyService.php │ │ ├── get_Console_Command_MessengerFailedMessagesRetry_LazyService.php │ │ ├── get_Console_Command_MessengerFailedMessagesShow_LazyService.php │ │ ├── get_Console_Command_MessengerSetupTransports_LazyService.php │ │ ├── get_Console_Command_MessengerStopWorkers_LazyService.php │ │ ├── get_Console_Command_RouterDebug_LazyService.php │ │ ├── get_Console_Command_RouterMatch_LazyService.php │ │ ├── get_Console_Command_SecretsDecryptToLocal_LazyService.php │ │ ├── get_Console_Command_SecretsEncryptFromLocal_LazyService.php │ │ ├── get_Console_Command_SecretsGenerateKey_LazyService.php │ │ ├── get_Console_Command_SecretsList_LazyService.php │ │ ├── get_Console_Command_SecretsRemove_LazyService.php │ │ ├── get_Console_Command_SecretsSet_LazyService.php │ │ ├── get_Console_Command_TranslationDebug_LazyService.php │ │ ├── get_Console_Command_TranslationExtract_LazyService.php │ │ ├── get_Console_Command_TranslationPull_LazyService.php │ │ ├── get_Console_Command_TranslationPush_LazyService.php │ │ ├── get_Console_Command_ValidatorDebug_LazyService.php │ │ ├── get_Console_Command_XliffLint_LazyService.php │ │ ├── get_Console_Command_YamlLint_LazyService.php │ │ ├── get_Container_Private_CacheClearerService.php │ │ ├── get_Container_Private_FilesystemService.php │ │ ├── get_Container_Private_Form_FactoryService.php │ │ ├── get_Container_Private_Form_Type_FileService.php │ │ ├── get_Container_Private_Security_Csrf_TokenManagerService.php │ │ ├── get_Container_Private_Security_PasswordEncoderService.php │ │ ├── get_Container_Private_SerializerService.php │ │ ├── get_Container_Private_SessionService.php │ │ ├── get_Maker_AutoCommand_MakeAuth_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeCommand_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeController_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeCrud_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeDockerDatabase_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeEntity_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeFixtures_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeForm_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeMessage_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeMessengerMiddleware_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeMigration_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeRegistrationForm_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeResetPassword_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeSerializerEncoder_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeSerializerNormalizer_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeStimulusController_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeSubscriber_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeTest_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeTwigComponent_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeTwigExtension_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeUser_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeValidator_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeVoter_LazyService.php │ │ ├── get_Messenger_HandlerDescriptor_Lml2ICsService.php │ │ ├── get_Messenger_HandlerDescriptor_TGvt0LHService.php │ │ ├── get_Messenger_HandlerDescriptor_VMw0m61Service.php │ │ ├── get_Messenger_HandlerDescriptor_XZowc_TService.php │ │ ├── get_Monolog_Command_ServerLog_LazyService.php │ │ ├── get_Security_Command_DebugFirewall_LazyService.php │ │ ├── get_Security_Command_UserPasswordEncoder_LazyService.php │ │ ├── get_Security_Command_UserPasswordHash_LazyService.php │ │ ├── get_ServiceLocator_4T4EJFRService.php │ │ ├── get_ServiceLocator_9uW928tService.php │ │ ├── get_ServiceLocator_AKM6MDaService.php │ │ ├── get_ServiceLocator_C7f47p7Service.php │ │ ├── get_ServiceLocator_GPGtF8vService.php │ │ ├── get_ServiceLocator_IQAD6w2Service.php │ │ ├── get_ServiceLocator_KdKsWx5Service.php │ │ ├── get_ServiceLocator_Mx0UMmYService.php │ │ ├── get_ServiceLocator_PXhSQsUService.php │ │ ├── get_ServiceLocator_Q1F27w5Service.php │ │ ├── get_ServiceLocator_Q2ji3luService.php │ │ ├── get_ServiceLocator_QQzfbaGService.php │ │ ├── get_ServiceLocator_XUrKPVUService.php │ │ ├── get_ServiceLocator_XsyfP82Service.php │ │ ├── get_ServiceLocator_Y4J_A_EService.php │ │ ├── get_ServiceLocator_YU8H6veService.php │ │ ├── get_ServiceLocator_ZFcJjKUService.php │ │ ├── get_Session_DeprecatedService.php │ │ ├── get_Twig_Command_Debug_LazyService.php │ │ ├── get_Twig_Command_Lint_LazyService.php │ │ ├── get_VarDumper_Command_ServerDump_LazyService.php │ │ └── removed-ids.php │ │ ├── ContainerQ8ffCt7.legacy │ │ ├── ContainerQ8ffCt7 │ │ ├── App_KernelDevDebugContainer.php │ │ ├── getAccouplementRepositoryService.php │ │ ├── getAdminAccountControllerService.php │ │ ├── getAdminDashboardControllerService.php │ │ ├── getAdminParameterControllerService.php │ │ ├── getAdminUserControllerService.php │ │ ├── getAdoptionRepositoryService.php │ │ ├── getAnnotations_CacheWarmerService.php │ │ ├── getAppCustomAuthenticatorService.php │ │ ├── getBackControllerService.php │ │ ├── getCachePoolClearer_CacheWarmerService.php │ │ ├── getCacheWarmerService.php │ │ ├── getCache_AppClearerService.php │ │ ├── getCache_GlobalClearerService.php │ │ ├── getCache_SystemClearerService.php │ │ ├── getCategorieADOPRepositoryService.php │ │ ├── getCategorieAccRepositoryService.php │ │ ├── getCategoriePRepositoryService.php │ │ ├── getCategorieSRepositoryService.php │ │ ├── getCategorieVRepositoryService.php │ │ ├── getChangePasswordFormTypeService.php │ │ ├── getConfigBuilder_WarmerService.php │ │ ├── getConsole_CommandLoaderService.php │ │ ├── getConsole_Command_AboutService.php │ │ ├── getConsole_Command_AssetsInstallService.php │ │ ├── getConsole_Command_CacheClearService.php │ │ ├── getConsole_Command_CachePoolClearService.php │ │ ├── getConsole_Command_CachePoolDeleteService.php │ │ ├── getConsole_Command_CachePoolListService.php │ │ ├── getConsole_Command_CachePoolPruneService.php │ │ ├── getConsole_Command_CacheWarmupService.php │ │ ├── getConsole_Command_ConfigDebugService.php │ │ ├── getConsole_Command_ConfigDumpReferenceService.php │ │ ├── getConsole_Command_ContainerDebugService.php │ │ ├── getConsole_Command_ContainerLintService.php │ │ ├── getConsole_Command_DebugAutowiringService.php │ │ ├── getConsole_Command_DotenvDebugService.php │ │ ├── getConsole_Command_EventDispatcherDebugService.php │ │ ├── getConsole_Command_FormDebugService.php │ │ ├── getConsole_Command_MessengerConsumeMessagesService.php │ │ ├── getConsole_Command_MessengerDebugService.php │ │ ├── getConsole_Command_MessengerFailedMessagesRemoveService.php │ │ ├── getConsole_Command_MessengerFailedMessagesRetryService.php │ │ ├── getConsole_Command_MessengerFailedMessagesShowService.php │ │ ├── getConsole_Command_MessengerSetupTransportsService.php │ │ ├── getConsole_Command_MessengerStopWorkersService.php │ │ ├── getConsole_Command_RouterDebugService.php │ │ ├── getConsole_Command_RouterMatchService.php │ │ ├── getConsole_Command_SecretsDecryptToLocalService.php │ │ ├── getConsole_Command_SecretsEncryptFromLocalService.php │ │ ├── getConsole_Command_SecretsGenerateKeyService.php │ │ ├── getConsole_Command_SecretsListService.php │ │ ├── getConsole_Command_SecretsRemoveService.php │ │ ├── getConsole_Command_SecretsSetService.php │ │ ├── getConsole_Command_TranslationDebugService.php │ │ ├── getConsole_Command_TranslationExtractService.php │ │ ├── getConsole_Command_TranslationPullService.php │ │ ├── getConsole_Command_TranslationPushService.php │ │ ├── getConsole_Command_ValidatorDebugService.php │ │ ├── getConsole_Command_XliffLintService.php │ │ ├── getConsole_Command_YamlLintService.php │ │ ├── getConsole_ErrorListenerService.php │ │ ├── getContainer_EnvVarProcessorService.php │ │ ├── getContainer_EnvVarProcessorsLocatorService.php │ │ ├── getContainer_GetenvService.php │ │ ├── getDataCollector_Request_SessionCollectorService.php │ │ ├── getDebug_ArgumentResolver_DefaultService.php │ │ ├── getDebug_ArgumentResolver_NotTaggedControllerService.php │ │ ├── getDebug_ArgumentResolver_RequestAttributeService.php │ │ ├── getDebug_ArgumentResolver_RequestService.php │ │ ├── getDebug_ArgumentResolver_ServiceService.php │ │ ├── getDebug_ArgumentResolver_SessionService.php │ │ ├── getDebug_ArgumentResolver_VariadicService.php │ │ ├── getDebug_DumpListenerService.php │ │ ├── getDebug_FileLinkFormatter_UrlFormatService.php │ │ ├── getDebug_Security_Firewall_Authenticator_MainService.php │ │ ├── getDebug_Security_UserValueResolverService.php │ │ ├── getDebug_Security_Voter_Security_Access_AuthenticatedVoterService.php │ │ ├── getDebug_Security_Voter_Security_Access_ExpressionVoterService.php │ │ ├── getDebug_Security_Voter_Security_Access_SimpleRoleVoterService.php │ │ ├── getDebug_Security_Voter_VoteListenerService.php │ │ ├── getDoctrineMigrations_CurrentCommandService.php │ │ ├── getDoctrineMigrations_DiffCommandService.php │ │ ├── getDoctrineMigrations_DumpSchemaCommandService.php │ │ ├── getDoctrineMigrations_ExecuteCommandService.php │ │ ├── getDoctrineMigrations_GenerateCommandService.php │ │ ├── getDoctrineMigrations_LatestCommandService.php │ │ ├── getDoctrineMigrations_MigrateCommandService.php │ │ ├── getDoctrineMigrations_RollupCommandService.php │ │ ├── getDoctrineMigrations_StatusCommandService.php │ │ ├── getDoctrineMigrations_SyncMetadataCommandService.php │ │ ├── getDoctrineMigrations_UpToDateCommandService.php │ │ ├── getDoctrineMigrations_VersionCommandService.php │ │ ├── getDoctrineMigrations_VersionsCommandService.php │ │ ├── getDoctrine_CacheClearMetadataCommandService.php │ │ ├── getDoctrine_CacheClearQueryCacheCommandService.php │ │ ├── getDoctrine_CacheClearResultCommandService.php │ │ ├── getDoctrine_CacheCollectionRegionCommandService.php │ │ ├── getDoctrine_ClearEntityRegionCommandService.php │ │ ├── getDoctrine_ClearQueryRegionCommandService.php │ │ ├── getDoctrine_DatabaseCreateCommandService.php │ │ ├── getDoctrine_DatabaseDropCommandService.php │ │ ├── getDoctrine_EnsureProductionSettingsCommandService.php │ │ ├── getDoctrine_MappingConvertCommandService.php │ │ ├── getDoctrine_MappingImportCommandService.php │ │ ├── getDoctrine_MappingInfoCommandService.php │ │ ├── getDoctrine_Migrations_ContainerAwareMigrationsFactoryService.php │ │ ├── getDoctrine_Migrations_DependencyFactoryService.php │ │ ├── getDoctrine_Orm_Command_EntityManagerProviderService.php │ │ ├── getDoctrine_Orm_DefaultEntityManager_PropertyInfoExtractorService.php │ │ ├── getDoctrine_Orm_DefaultListeners_AttachEntityListenersService.php │ │ ├── getDoctrine_Orm_Listeners_DoctrineDbalCacheAdapterSchemaSubscriberService.php │ │ ├── getDoctrine_Orm_Listeners_DoctrineTokenProviderSchemaSubscriberService.php │ │ ├── getDoctrine_Orm_Listeners_PdoCacheAdapterDoctrineSchemaSubscriberService.php │ │ ├── getDoctrine_Orm_Messenger_DoctrineSchemaSubscriberService.php │ │ ├── getDoctrine_Orm_Messenger_EventSubscriber_DoctrineClearEntityManagerService.php │ │ ├── getDoctrine_Orm_ProxyCacheWarmerService.php │ │ ├── getDoctrine_Orm_Validator_UniqueService.php │ │ ├── getDoctrine_QueryDqlCommandService.php │ │ ├── getDoctrine_QuerySqlCommandService.php │ │ ├── getDoctrine_SchemaCreateCommandService.php │ │ ├── getDoctrine_SchemaDropCommandService.php │ │ ├── getDoctrine_SchemaUpdateCommandService.php │ │ ├── getDoctrine_SchemaValidateCommandService.php │ │ ├── getDoctrine_UlidGeneratorService.php │ │ ├── getDoctrine_UuidGeneratorService.php │ │ ├── getEmailVerifierService.php │ │ ├── getErrorControllerService.php │ │ ├── getErrorHandler_ErrorRenderer_HtmlService.php │ │ ├── getForm_ChoiceListFactory_CachedService.php │ │ ├── getForm_RegistryService.php │ │ ├── getForm_ServerParamsService.php │ │ ├── getForm_TypeExtension_CsrfService.php │ │ ├── getForm_TypeExtension_Form_DataCollectorService.php │ │ ├── getForm_TypeExtension_Form_HttpFoundationService.php │ │ ├── getForm_TypeExtension_Form_TransformationFailureHandlingService.php │ │ ├── getForm_TypeExtension_Form_ValidatorService.php │ │ ├── getForm_TypeExtension_Upload_ValidatorService.php │ │ ├── getForm_TypeGuesser_DoctrineService.php │ │ ├── getForm_TypeGuesser_ValidatorService.php │ │ ├── getForm_Type_ChoiceService.php │ │ ├── getForm_Type_ColorService.php │ │ ├── getForm_Type_EntityService.php │ │ ├── getForm_Type_FormService.php │ │ ├── getFragment_Renderer_InlineService.php │ │ ├── getFrontControllerService.php │ │ ├── getHomeControllerService.php │ │ ├── getLoaderInterfaceService.php │ │ ├── getMailer_MailerService.php │ │ ├── getMailer_TransportFactory_GmailService.php │ │ ├── getMailer_TransportFactory_NativeService.php │ │ ├── getMailer_TransportFactory_NullService.php │ │ ├── getMailer_TransportFactory_SendmailService.php │ │ ├── getMailer_TransportFactory_SmtpService.php │ │ ├── getMailer_TransportsService.php │ │ ├── getMaker_AutoCommand_MakeAuthService.php │ │ ├── getMaker_AutoCommand_MakeCommandService.php │ │ ├── getMaker_AutoCommand_MakeControllerService.php │ │ ├── getMaker_AutoCommand_MakeCrudService.php │ │ ├── getMaker_AutoCommand_MakeDockerDatabaseService.php │ │ ├── getMaker_AutoCommand_MakeEntityService.php │ │ ├── getMaker_AutoCommand_MakeFixturesService.php │ │ ├── getMaker_AutoCommand_MakeFormService.php │ │ ├── getMaker_AutoCommand_MakeMessageService.php │ │ ├── getMaker_AutoCommand_MakeMessengerMiddlewareService.php │ │ ├── getMaker_AutoCommand_MakeMigrationService.php │ │ ├── getMaker_AutoCommand_MakeRegistrationFormService.php │ │ ├── getMaker_AutoCommand_MakeResetPasswordService.php │ │ ├── getMaker_AutoCommand_MakeSerializerEncoderService.php │ │ ├── getMaker_AutoCommand_MakeSerializerNormalizerService.php │ │ ├── getMaker_AutoCommand_MakeStimulusControllerService.php │ │ ├── getMaker_AutoCommand_MakeSubscriberService.php │ │ ├── getMaker_AutoCommand_MakeTestService.php │ │ ├── getMaker_AutoCommand_MakeTwigComponentService.php │ │ ├── getMaker_AutoCommand_MakeTwigExtensionService.php │ │ ├── getMaker_AutoCommand_MakeUserService.php │ │ ├── getMaker_AutoCommand_MakeValidatorService.php │ │ ├── getMaker_AutoCommand_MakeVoterService.php │ │ ├── getMaker_DoctrineHelperService.php │ │ ├── getMaker_EntityClassGeneratorService.php │ │ ├── getMaker_FileManagerService.php │ │ ├── getMaker_GeneratorService.php │ │ ├── getMaker_PhpCompatUtilService.php │ │ ├── getMaker_Renderer_FormTypeRendererService.php │ │ ├── getManagerRegistryAwareConnectionProviderService.php │ │ ├── getMessenger_Bus_Default_Middleware_HandleMessageService.php │ │ ├── getMessenger_Bus_Default_Middleware_TraceableService.php │ │ ├── getMessenger_Failure_SendFailedMessageToFailureTransportListenerService.php │ │ ├── getMessenger_Listener_StopWorkerOnRestartSignalListenerService.php │ │ ├── getMessenger_Middleware_SendMessageService.php │ │ ├── getMessenger_ReceiverLocatorService.php │ │ ├── getMessenger_Retry_MultiplierRetryStrategy_AsyncService.php │ │ ├── getMessenger_Retry_MultiplierRetryStrategy_FailedService.php │ │ ├── getMessenger_Retry_SendFailedMessageForRetryListenerService.php │ │ ├── getMessenger_RoutableMessageBusService.php │ │ ├── getMessenger_TransportFactoryService.php │ │ ├── getMessenger_Transport_AsyncService.php │ │ ├── getMessenger_Transport_Doctrine_FactoryService.php │ │ ├── getMessenger_Transport_FailedService.php │ │ ├── getMessenger_Transport_Sync_FactoryService.php │ │ ├── getMimeTypesService.php │ │ ├── getMonolog_Command_ServerLogService.php │ │ ├── getMonolog_Logger_MailerService.php │ │ ├── getMonolog_Logger_MessengerService.php │ │ ├── getNotifier_TransportFactory_NullService.php │ │ ├── getProduitRepositoryService.php │ │ ├── getProfilerControllerService.php │ │ ├── getPropertyAccessorService.php │ │ ├── getPropertyInfo_SerializerExtractorService.php │ │ ├── getReclamationRepositoryService.php │ │ ├── getRedirectControllerService.php │ │ ├── getRegistrationController1Service.php │ │ ├── getRegistrationControllerService.php │ │ ├── getRegistrationFormType1Service.php │ │ ├── getRegistrationFormTypeService.php │ │ ├── getReponseRepositoryService.php │ │ ├── getResetPasswordControllerService.php │ │ ├── getResetPasswordRemoveExpiredCommandService.php │ │ ├── getResetPasswordRequestFormTypeService.php │ │ ├── getResetPasswordRequestRepositoryService.php │ │ ├── getRouter_CacheWarmerService.php │ │ ├── getRouting_LoaderService.php │ │ ├── getRunSqlCommandService.php │ │ ├── getSecrets_VaultService.php │ │ ├── getSecurityController1Service.php │ │ ├── getSecurityControllerService.php │ │ ├── getSecurity_AccessListenerService.php │ │ ├── getSecurity_AuthenticationUtilsService.php │ │ ├── getSecurity_Authenticator_Manager_MainService.php │ │ ├── getSecurity_ChannelListenerService.php │ │ ├── getSecurity_Command_DebugFirewallService.php │ │ ├── getSecurity_Command_UserPasswordEncoderService.php │ │ ├── getSecurity_Command_UserPasswordHashService.php │ │ ├── getSecurity_Csrf_TokenStorageService.php │ │ ├── getSecurity_EncoderFactory_GenericService.php │ │ ├── getSecurity_Firewall_Map_Context_DevService.php │ │ ├── getSecurity_Firewall_Map_Context_MainService.php │ │ ├── getSecurity_HttpUtilsService.php │ │ ├── getSecurity_Listener_CheckAuthenticatorCredentialsService.php │ │ ├── getSecurity_Listener_CsrfProtectionService.php │ │ ├── getSecurity_Listener_Main_UserProviderService.php │ │ ├── getSecurity_Listener_PasswordMigratingService.php │ │ ├── getSecurity_Listener_Session_MainService.php │ │ ├── getSecurity_Listener_UserChecker_MainService.php │ │ ├── getSecurity_Listener_UserProviderService.php │ │ ├── getSecurity_Logout_Listener_CsrfTokenClearingService.php │ │ ├── getSecurity_Logout_Listener_Default_MainService.php │ │ ├── getSecurity_PasswordHasherFactoryService.php │ │ ├── getSecurity_UserAuthenticatorService.php │ │ ├── getSecurity_UserPasswordHasherService.php │ │ ├── getSecurity_User_Provider_Concrete_AppUserProviderService.php │ │ ├── getSecurity_Validator_UserPasswordService.php │ │ ├── getSerializer_Mapping_CacheWarmerService.php │ │ ├── getSerializer_Mapping_ClassMetadataFactoryService.php │ │ ├── getServiceSRepositoryService.php │ │ ├── getServiceVRepositoryService.php │ │ ├── getServicesResetterService.php │ │ ├── getSession_FactoryService.php │ │ ├── getSymfonycasts_ResetPassword_CleanerService.php │ │ ├── getTemplateControllerService.php │ │ ├── getTexter_TransportsService.php │ │ ├── getTranslation_ExtractorService.php │ │ ├── getTranslation_Loader_CsvService.php │ │ ├── getTranslation_Loader_DatService.php │ │ ├── getTranslation_Loader_IniService.php │ │ ├── getTranslation_Loader_JsonService.php │ │ ├── getTranslation_Loader_MoService.php │ │ ├── getTranslation_Loader_PhpService.php │ │ ├── getTranslation_Loader_PoService.php │ │ ├── getTranslation_Loader_QtService.php │ │ ├── getTranslation_Loader_ResService.php │ │ ├── getTranslation_Loader_XliffService.php │ │ ├── getTranslation_Loader_YmlService.php │ │ ├── getTranslation_ProviderCollectionService.php │ │ ├── getTranslation_ReaderService.php │ │ ├── getTranslation_WarmerService.php │ │ ├── getTranslation_WriterService.php │ │ ├── getTwig_Command_DebugService.php │ │ ├── getTwig_Command_LintService.php │ │ ├── getTwig_Form_EngineService.php │ │ ├── getTwig_Form_RendererService.php │ │ ├── getTwig_Mailer_MessageListenerService.php │ │ ├── getTwig_Runtime_HttpkernelService.php │ │ ├── getTwig_Runtime_SecurityCsrfService.php │ │ ├── getTwig_Runtime_SerializerService.php │ │ ├── getTwig_TemplateCacheWarmerService.php │ │ ├── getUpdatePasswordTypeService.php │ │ ├── getUser2Service.php │ │ ├── getUser3Service.php │ │ ├── getUserAddTypeService.php │ │ ├── getUserEditTypeService.php │ │ ├── getUserRepositoryService.php │ │ ├── getUserService.php │ │ ├── getUserTypeService.php │ │ ├── getValidator_EmailService.php │ │ ├── getValidator_ExpressionService.php │ │ ├── getValidator_Mapping_CacheWarmerService.php │ │ ├── getValidator_NotCompromisedPasswordService.php │ │ ├── getVarDumper_Command_ServerDumpService.php │ │ ├── getVarDumper_ContextualizedCliDumper_InnerService.php │ │ ├── getWebProfiler_Controller_ExceptionPanelService.php │ │ ├── getWebProfiler_Controller_ProfilerService.php │ │ ├── getWebProfiler_Controller_RouterService.php │ │ ├── get_Console_Command_About_LazyService.php │ │ ├── get_Console_Command_AssetsInstall_LazyService.php │ │ ├── get_Console_Command_CacheClear_LazyService.php │ │ ├── get_Console_Command_CachePoolClear_LazyService.php │ │ ├── get_Console_Command_CachePoolDelete_LazyService.php │ │ ├── get_Console_Command_CachePoolList_LazyService.php │ │ ├── get_Console_Command_CachePoolPrune_LazyService.php │ │ ├── get_Console_Command_CacheWarmup_LazyService.php │ │ ├── get_Console_Command_ConfigDebug_LazyService.php │ │ ├── get_Console_Command_ConfigDumpReference_LazyService.php │ │ ├── get_Console_Command_ContainerDebug_LazyService.php │ │ ├── get_Console_Command_ContainerLint_LazyService.php │ │ ├── get_Console_Command_DebugAutowiring_LazyService.php │ │ ├── get_Console_Command_DotenvDebug_LazyService.php │ │ ├── get_Console_Command_EventDispatcherDebug_LazyService.php │ │ ├── get_Console_Command_FormDebug_LazyService.php │ │ ├── get_Console_Command_MessengerConsumeMessages_LazyService.php │ │ ├── get_Console_Command_MessengerDebug_LazyService.php │ │ ├── get_Console_Command_MessengerFailedMessagesRemove_LazyService.php │ │ ├── get_Console_Command_MessengerFailedMessagesRetry_LazyService.php │ │ ├── get_Console_Command_MessengerFailedMessagesShow_LazyService.php │ │ ├── get_Console_Command_MessengerSetupTransports_LazyService.php │ │ ├── get_Console_Command_MessengerStopWorkers_LazyService.php │ │ ├── get_Console_Command_RouterDebug_LazyService.php │ │ ├── get_Console_Command_RouterMatch_LazyService.php │ │ ├── get_Console_Command_SecretsDecryptToLocal_LazyService.php │ │ ├── get_Console_Command_SecretsEncryptFromLocal_LazyService.php │ │ ├── get_Console_Command_SecretsGenerateKey_LazyService.php │ │ ├── get_Console_Command_SecretsList_LazyService.php │ │ ├── get_Console_Command_SecretsRemove_LazyService.php │ │ ├── get_Console_Command_SecretsSet_LazyService.php │ │ ├── get_Console_Command_TranslationDebug_LazyService.php │ │ ├── get_Console_Command_TranslationExtract_LazyService.php │ │ ├── get_Console_Command_TranslationPull_LazyService.php │ │ ├── get_Console_Command_TranslationPush_LazyService.php │ │ ├── get_Console_Command_ValidatorDebug_LazyService.php │ │ ├── get_Console_Command_XliffLint_LazyService.php │ │ ├── get_Console_Command_YamlLint_LazyService.php │ │ ├── get_Container_Private_CacheClearerService.php │ │ ├── get_Container_Private_FilesystemService.php │ │ ├── get_Container_Private_Form_FactoryService.php │ │ ├── get_Container_Private_Form_Type_FileService.php │ │ ├── get_Container_Private_Security_Csrf_TokenManagerService.php │ │ ├── get_Container_Private_Security_PasswordEncoderService.php │ │ ├── get_Container_Private_SerializerService.php │ │ ├── get_Container_Private_SessionService.php │ │ ├── get_Maker_AutoCommand_MakeAuth_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeCommand_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeController_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeCrud_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeDockerDatabase_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeEntity_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeFixtures_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeForm_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeMessage_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeMessengerMiddleware_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeMigration_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeRegistrationForm_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeResetPassword_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeSerializerEncoder_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeSerializerNormalizer_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeStimulusController_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeSubscriber_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeTest_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeTwigComponent_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeTwigExtension_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeUser_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeValidator_LazyService.php │ │ ├── get_Maker_AutoCommand_MakeVoter_LazyService.php │ │ ├── get_Messenger_HandlerDescriptor_Lml2ICsService.php │ │ ├── get_Messenger_HandlerDescriptor_TGvt0LHService.php │ │ ├── get_Messenger_HandlerDescriptor_VMw0m61Service.php │ │ ├── get_Messenger_HandlerDescriptor_XZowc_TService.php │ │ ├── get_Monolog_Command_ServerLog_LazyService.php │ │ ├── get_Security_Command_DebugFirewall_LazyService.php │ │ ├── get_Security_Command_UserPasswordEncoder_LazyService.php │ │ ├── get_Security_Command_UserPasswordHash_LazyService.php │ │ ├── get_ServiceLocator_4T4EJFRService.php │ │ ├── get_ServiceLocator_9uW928tService.php │ │ ├── get_ServiceLocator_AKM6MDaService.php │ │ ├── get_ServiceLocator_C7f47p7Service.php │ │ ├── get_ServiceLocator_GPGtF8vService.php │ │ ├── get_ServiceLocator_IQAD6w2Service.php │ │ ├── get_ServiceLocator_KdKsWx5Service.php │ │ ├── get_ServiceLocator_Mx0UMmYService.php │ │ ├── get_ServiceLocator_PXhSQsUService.php │ │ ├── get_ServiceLocator_Q1F27w5Service.php │ │ ├── get_ServiceLocator_Q2ji3luService.php │ │ ├── get_ServiceLocator_QQzfbaGService.php │ │ ├── get_ServiceLocator_XUrKPVUService.php │ │ ├── get_ServiceLocator_XsyfP82Service.php │ │ ├── get_ServiceLocator_Y4J_A_EService.php │ │ ├── get_ServiceLocator_YU8H6veService.php │ │ ├── get_ServiceLocator_ZFcJjKUService.php │ │ ├── get_Session_DeprecatedService.php │ │ ├── get_Twig_Command_Debug_LazyService.php │ │ ├── get_Twig_Command_Lint_LazyService.php │ │ ├── get_VarDumper_Command_ServerDump_LazyService.php │ │ └── removed-ids.php │ │ ├── Symfony │ │ └── Config │ │ │ ├── DebugConfig.php │ │ │ ├── Doctrine │ │ │ ├── Dbal │ │ │ │ ├── ConnectionConfig.php │ │ │ │ ├── ConnectionConfig │ │ │ │ │ ├── ReplicaConfig.php │ │ │ │ │ └── SlaveConfig.php │ │ │ │ └── TypeConfig.php │ │ │ ├── DbalConfig.php │ │ │ ├── Orm │ │ │ │ ├── ControllerResolverConfig.php │ │ │ │ ├── EntityManagerConfig.php │ │ │ │ └── EntityManagerConfig │ │ │ │ │ ├── DqlConfig.php │ │ │ │ │ ├── EntityListeners │ │ │ │ │ ├── EntityConfig.php │ │ │ │ │ └── EntityConfig │ │ │ │ │ │ ├── ListenerConfig.php │ │ │ │ │ │ └── ListenerConfig │ │ │ │ │ │ └── EventConfig.php │ │ │ │ │ ├── EntityListenersConfig.php │ │ │ │ │ ├── FilterConfig.php │ │ │ │ │ ├── MappingConfig.php │ │ │ │ │ ├── MetadataCacheDriverConfig.php │ │ │ │ │ ├── QueryCacheDriverConfig.php │ │ │ │ │ ├── ResultCacheDriverConfig.php │ │ │ │ │ ├── SecondLevelCache │ │ │ │ │ ├── LoggerConfig.php │ │ │ │ │ ├── RegionCacheDriverConfig.php │ │ │ │ │ ├── RegionConfig.php │ │ │ │ │ └── RegionConfig │ │ │ │ │ │ └── CacheDriverConfig.php │ │ │ │ │ └── SecondLevelCacheConfig.php │ │ │ └── OrmConfig.php │ │ │ ├── DoctrineConfig.php │ │ │ ├── DoctrineMigrations │ │ │ ├── Storage │ │ │ │ └── TableStorageConfig.php │ │ │ └── StorageConfig.php │ │ │ ├── DoctrineMigrationsConfig.php │ │ │ ├── Framework │ │ │ ├── AnnotationsConfig.php │ │ │ ├── Assets │ │ │ │ └── PackageConfig.php │ │ │ ├── AssetsConfig.php │ │ │ ├── Cache │ │ │ │ └── PoolConfig.php │ │ │ ├── CacheConfig.php │ │ │ ├── CsrfProtectionConfig.php │ │ │ ├── EsiConfig.php │ │ │ ├── ExceptionConfig.php │ │ │ ├── Form │ │ │ │ └── CsrfProtectionConfig.php │ │ │ ├── FormConfig.php │ │ │ ├── FragmentsConfig.php │ │ │ ├── HttpCacheConfig.php │ │ │ ├── HttpClient │ │ │ │ ├── DefaultOptions │ │ │ │ │ ├── PeerFingerprintConfig.php │ │ │ │ │ ├── RetryFailed │ │ │ │ │ │ └── HttpCodeConfig.php │ │ │ │ │ └── RetryFailedConfig.php │ │ │ │ ├── DefaultOptionsConfig.php │ │ │ │ ├── ScopedClientConfig.php │ │ │ │ └── ScopedClientConfig │ │ │ │ │ ├── PeerFingerprintConfig.php │ │ │ │ │ ├── RetryFailed │ │ │ │ │ └── HttpCodeConfig.php │ │ │ │ │ └── RetryFailedConfig.php │ │ │ ├── HttpClientConfig.php │ │ │ ├── LockConfig.php │ │ │ ├── Mailer │ │ │ │ ├── EnvelopeConfig.php │ │ │ │ └── HeaderConfig.php │ │ │ ├── MailerConfig.php │ │ │ ├── Messenger │ │ │ │ ├── BusConfig.php │ │ │ │ ├── BusConfig │ │ │ │ │ └── MiddlewareConfig.php │ │ │ │ ├── RoutingConfig.php │ │ │ │ ├── Serializer │ │ │ │ │ └── SymfonySerializerConfig.php │ │ │ │ ├── SerializerConfig.php │ │ │ │ ├── TransportConfig.php │ │ │ │ └── TransportConfig │ │ │ │ │ └── RetryStrategyConfig.php │ │ │ ├── MessengerConfig.php │ │ │ ├── Notifier │ │ │ │ └── AdminRecipientConfig.php │ │ │ ├── NotifierConfig.php │ │ │ ├── PhpErrorsConfig.php │ │ │ ├── ProfilerConfig.php │ │ │ ├── PropertyAccessConfig.php │ │ │ ├── PropertyInfoConfig.php │ │ │ ├── RateLimiter │ │ │ │ ├── LimiterConfig.php │ │ │ │ └── LimiterConfig │ │ │ │ │ └── RateConfig.php │ │ │ ├── RateLimiterConfig.php │ │ │ ├── RequestConfig.php │ │ │ ├── RouterConfig.php │ │ │ ├── SecretsConfig.php │ │ │ ├── Serializer │ │ │ │ └── MappingConfig.php │ │ │ ├── SerializerConfig.php │ │ │ ├── SessionConfig.php │ │ │ ├── SsiConfig.php │ │ │ ├── Translator │ │ │ │ ├── ProviderConfig.php │ │ │ │ └── PseudoLocalizationConfig.php │ │ │ ├── TranslatorConfig.php │ │ │ ├── UidConfig.php │ │ │ ├── Validation │ │ │ │ ├── AutoMappingConfig.php │ │ │ │ ├── MappingConfig.php │ │ │ │ └── NotCompromisedPasswordConfig.php │ │ │ ├── ValidationConfig.php │ │ │ ├── WebLinkConfig.php │ │ │ ├── Workflows │ │ │ │ ├── WorkflowsConfig.php │ │ │ │ └── WorkflowsConfig │ │ │ │ │ ├── AuditTrailConfig.php │ │ │ │ │ ├── MarkingStoreConfig.php │ │ │ │ │ ├── PlaceConfig.php │ │ │ │ │ └── TransitionConfig.php │ │ │ └── WorkflowsConfig.php │ │ │ ├── FrameworkConfig.php │ │ │ ├── MakerConfig.php │ │ │ ├── Monolog │ │ │ ├── HandlerConfig.php │ │ │ └── HandlerConfig │ │ │ │ ├── ChannelsConfig.php │ │ │ │ ├── ElasticsearchConfig.php │ │ │ │ ├── EmailPrototypeConfig.php │ │ │ │ ├── ExcludedHttpCodeConfig.php │ │ │ │ ├── MongoConfig.php │ │ │ │ ├── PredisConfig.php │ │ │ │ ├── ProcessPsr3MessagesConfig.php │ │ │ │ ├── PublisherConfig.php │ │ │ │ ├── RedisConfig.php │ │ │ │ └── VerbosityLevelsConfig.php │ │ │ ├── MonologConfig.php │ │ │ ├── Security │ │ │ ├── AccessControlConfig.php │ │ │ ├── AccessDecisionManagerConfig.php │ │ │ ├── EncoderConfig.php │ │ │ ├── FirewallConfig.php │ │ │ ├── FirewallConfig │ │ │ │ ├── AnonymousConfig.php │ │ │ │ ├── FormLoginConfig.php │ │ │ │ ├── FormLoginLdapConfig.php │ │ │ │ ├── GuardConfig.php │ │ │ │ ├── HttpBasicConfig.php │ │ │ │ ├── HttpBasicLdapConfig.php │ │ │ │ ├── JsonLoginConfig.php │ │ │ │ ├── JsonLoginLdapConfig.php │ │ │ │ ├── LoginLinkConfig.php │ │ │ │ ├── LoginThrottlingConfig.php │ │ │ │ ├── Logout │ │ │ │ │ └── DeleteCookieConfig.php │ │ │ │ ├── LogoutConfig.php │ │ │ │ ├── RememberMe │ │ │ │ │ ├── TokenProvider │ │ │ │ │ │ └── DoctrineConfig.php │ │ │ │ │ └── TokenProviderConfig.php │ │ │ │ ├── RememberMeConfig.php │ │ │ │ ├── RemoteUserConfig.php │ │ │ │ ├── SwitchUserConfig.php │ │ │ │ └── X509Config.php │ │ │ ├── PasswordHasherConfig.php │ │ │ ├── ProviderConfig.php │ │ │ └── ProviderConfig │ │ │ │ ├── ChainConfig.php │ │ │ │ ├── EntityConfig.php │ │ │ │ ├── LdapConfig.php │ │ │ │ ├── Memory │ │ │ │ └── UserConfig.php │ │ │ │ └── MemoryConfig.php │ │ │ ├── SecurityConfig.php │ │ │ ├── SensioFrameworkExtra │ │ │ ├── CacheConfig.php │ │ │ ├── RequestConfig.php │ │ │ ├── RouterConfig.php │ │ │ ├── SecurityConfig.php │ │ │ ├── TemplatingConfig.php │ │ │ └── ViewConfig.php │ │ │ ├── SensioFrameworkExtraConfig.php │ │ │ ├── SymfonycastsResetPasswordConfig.php │ │ │ ├── SymfonycastsVerifyEmailConfig.php │ │ │ ├── Twig │ │ │ ├── DateConfig.php │ │ │ ├── GlobalConfig.php │ │ │ └── NumberFormatConfig.php │ │ │ ├── TwigConfig.php │ │ │ ├── TwigExtra │ │ │ ├── CacheConfig.php │ │ │ ├── CssinlinerConfig.php │ │ │ ├── HtmlConfig.php │ │ │ ├── InkyConfig.php │ │ │ ├── IntlConfig.php │ │ │ ├── MarkdownConfig.php │ │ │ └── StringConfig.php │ │ │ ├── TwigExtraConfig.php │ │ │ └── WebProfilerConfig.php │ │ ├── annotations.map │ │ ├── annotations.php │ │ ├── pools │ │ └── system │ │ │ └── tx-LgAR3k9 │ │ │ ├── 0 │ │ │ ├── 0 │ │ │ │ └── 1+Q1qxqgyZhOisMfGuyw │ │ │ ├── 2 │ │ │ │ └── PznOHVH+v8S8ZROmYmTw │ │ │ ├── 6 │ │ │ │ └── IzqJyl5VYX08Trvr0HaA │ │ │ ├── F │ │ │ │ └── k4qwxbF96Qw5ugGVNg0A │ │ │ └── H │ │ │ │ └── zO5xDzic-s5FyjMrz1uA │ │ │ ├── 1 │ │ │ ├── 8 │ │ │ │ └── LUArz0j30pjtlthnrYYg │ │ │ ├── B │ │ │ │ └── 1MkdDTY1++HO5ySad9jA │ │ │ ├── H │ │ │ │ ├── -h43UlIjMIhWKV1pY-Qw │ │ │ │ └── gltAixTx6dRljSWlzCYg │ │ │ ├── K │ │ │ │ └── whXziGCiWI2UOsK+1Oog │ │ │ ├── M │ │ │ │ └── kdqVfHP3+pEzTCg8IYsw │ │ │ ├── P │ │ │ │ └── 4t7w-ePfa26zGDV90Ytg │ │ │ ├── T │ │ │ │ └── dH2IA6isXSzTk5D-hMfg │ │ │ ├── W │ │ │ │ └── EUYT+Dq9wMYhPkkaVttQ │ │ │ └── Z │ │ │ │ └── KJPZkIr1EQhoMniqgHLw │ │ │ ├── 2 │ │ │ ├── - │ │ │ │ ├── 01UljUBsL84YZdrp7PGQ │ │ │ │ └── KcjZHBoGYkVu3MgxWjRA │ │ │ ├── A │ │ │ │ └── LNISgNB3FQZAmF-HUIjw │ │ │ └── Y │ │ │ │ └── eHq+9vUmgm9YSvkx971w │ │ │ ├── 3 │ │ │ ├── A │ │ │ │ └── fs95wLeZWP7QitrDzVyg │ │ │ ├── C │ │ │ │ └── TT0coicATL64A6KOKGWQ │ │ │ ├── R │ │ │ │ └── 4T7J2w-l61+0c40Jki4A │ │ │ ├── T │ │ │ │ ├── csvdRihhMN2A2Kz-m6Hw │ │ │ │ └── l-A373wxL3eCAxEqdMqw │ │ │ └── Y │ │ │ │ └── 8BYQuyO+0dNG3XhvHREA │ │ │ ├── 4 │ │ │ ├── E │ │ │ │ └── vv9DVoosc1V74RqhaoCQ │ │ │ ├── Q │ │ │ │ └── gbT53TceJchgsVqW+uEw │ │ │ ├── S │ │ │ │ └── pe76Rx2s7fSeXvn9gf9w │ │ │ └── X │ │ │ │ └── ug48l2JlOC0b2-nVyhIg │ │ │ ├── 5 │ │ │ ├── 3 │ │ │ │ └── P+KOFESVeEswGvu7cz2g │ │ │ ├── G │ │ │ │ └── h6Wn0mnLZxIMlAJO8nfQ │ │ │ ├── X │ │ │ │ └── E23uSuZB37x7cWRzRA6A │ │ │ └── Y │ │ │ │ └── QR0MDyNMbLANH7rFpaRw │ │ │ ├── 6 │ │ │ ├── T │ │ │ │ └── Xu7RNPo2kvg88exEIXAQ │ │ │ └── Z │ │ │ │ └── nOt3eEXURBprJk2YXamg │ │ │ ├── 7 │ │ │ ├── G │ │ │ │ └── 3UBeCsAyMkAIyVLlGMmg │ │ │ └── M │ │ │ │ └── ejq13sua36AUrXYIgLyA │ │ │ ├── 8 │ │ │ ├── 8 │ │ │ │ └── EwgD4WHdPNnTzefoE1FA │ │ │ ├── G │ │ │ │ └── 2mcHAirHfb+qPn2UCGsA │ │ │ ├── J │ │ │ │ └── jrc1F3YyD98sKrP9TpFA │ │ │ ├── P │ │ │ │ └── rCW4p1gVRkzaVKc59nvA │ │ │ └── Y │ │ │ │ └── vTV1Rya4y7d2zfMPDvew │ │ │ ├── 9 │ │ │ ├── A │ │ │ │ └── scTW-Kcp8l9u-bNArBYw │ │ │ ├── F │ │ │ │ └── D9vOy4ps2vwXAN3EvobA │ │ │ ├── K │ │ │ │ └── i10RTWk6wh2TU-icCdKg │ │ │ ├── L │ │ │ │ └── -vvJc-ORJvpKruuveHJQ │ │ │ ├── R │ │ │ │ └── 6cNSKTY3BwCeiCBWD33Q │ │ │ ├── X │ │ │ │ ├── 4ml38SvZop5s3s3Y+x+A │ │ │ │ ├── GDAzflIM4HL-6sDxes4A │ │ │ │ └── q3JP2Z+N4KQLXjIEH9lw │ │ │ └── Y │ │ │ │ └── +guqLdMIFuLFzBZr71lg │ │ │ ├── + │ │ │ ├── K │ │ │ │ └── xSRAiiiOGqw3ufHa14BA │ │ │ ├── M │ │ │ │ └── 6HFFvEO4lJb30+i7zAHA │ │ │ ├── R │ │ │ │ └── pke4hFMm88GAEXH3z0DA │ │ │ └── V │ │ │ │ └── 7UTbP-PaNO8zQ0xMPZLg │ │ │ ├── - │ │ │ ├── 0 │ │ │ │ └── wptuIg0E4z9ZAWEo+SKg │ │ │ ├── 7 │ │ │ │ ├── 2cqXFQ83vSsiBrFfjawQ │ │ │ │ └── itU4uYQY9aYsVbIyf4wA │ │ │ ├── H │ │ │ │ └── sjRnvR0efyK2xH8VD2Lw │ │ │ ├── J │ │ │ │ └── bR2aE5-BpHxGNx41jtmw │ │ │ ├── O │ │ │ │ └── -yJbEb68G4AR+4XTA9gg │ │ │ └── W │ │ │ │ └── BCGFW3Qejml-3wfV22oA │ │ │ ├── A │ │ │ ├── 1 │ │ │ │ ├── 1+dLcTCojptov5E3Ed1Q │ │ │ │ └── Wth3ASooMLv63jdtkcrw │ │ │ ├── D │ │ │ │ └── L7yRgdp7OrL7me3OWoRQ │ │ │ ├── I │ │ │ │ └── k-gT+-3vseBoe+TKTU1g │ │ │ ├── P │ │ │ │ └── o7MdNSjvavn+DldwAimA │ │ │ ├── U │ │ │ │ └── EGRCklOvIN752ByaxzTw │ │ │ └── Y │ │ │ │ └── W+f2nArqIye35M-88XEw │ │ │ ├── B │ │ │ ├── 2 │ │ │ │ └── ZGN1GD-wuCOlv-+757Vg │ │ │ ├── B │ │ │ │ ├── H79JmAQt16NRZ7d2N9hw │ │ │ │ └── V-Efd20DsmG7Z09QAPAA │ │ │ ├── J │ │ │ │ └── jWNcf6f+uAXnIHj47H2w │ │ │ ├── R │ │ │ │ └── KJPmu1EXldawgN745XOQ │ │ │ ├── T │ │ │ │ └── C4GQdb+TZGxVwwm11Vtw │ │ │ └── Y │ │ │ │ ├── RLmTcfRlo9NZQApAmFVQ │ │ │ │ └── SwIxk2EuhDI8fyjwH-2g │ │ │ ├── C │ │ │ ├── 6 │ │ │ │ └── fR4+u88I8xCpELevyjPw │ │ │ ├── A │ │ │ │ └── BRHBNjl4MIhAHKfIO0Ww │ │ │ ├── H │ │ │ │ └── 45QLwwuMaHMeiEC6uTow │ │ │ └── K │ │ │ │ └── KSR7Rn9w74cZCdZ5D-Iw │ │ │ ├── D │ │ │ ├── 3 │ │ │ │ └── ST37pdAyJt8KGp2UBHlg │ │ │ ├── 6 │ │ │ │ └── lOby0SR3Wdn0oNKzcr2A │ │ │ ├── B │ │ │ │ └── 72ELl5Rr9ZTfcvQmlLnw │ │ │ ├── H │ │ │ │ └── kfgpPN3PuDHH6vRYEEDQ │ │ │ ├── K │ │ │ │ └── ZJglcZi2p+hKknLUG0xQ │ │ │ ├── L │ │ │ │ └── WDt-et6XOFVlngzMaEug │ │ │ ├── M │ │ │ │ └── uj9-ifwwK0AfMSy2Rb9A │ │ │ ├── Q │ │ │ │ └── hNA3Qix4TUxJVCWjy3Hg │ │ │ └── S │ │ │ │ └── 8JajFyT2ClV9MMTovurg │ │ │ ├── E │ │ │ ├── 9 │ │ │ │ └── eOqYStKOHFJyaUBnwkaw │ │ │ ├── E │ │ │ │ └── X1wYwFPX1cO6+74xzytQ │ │ │ ├── F │ │ │ │ └── Hd-6qjCS+lypzZY0Fcaw │ │ │ ├── H │ │ │ │ └── UVNI1-ViyYOL+AgjDIJw │ │ │ ├── L │ │ │ │ └── 5A5bSdrR0mHrYxPSHYPw │ │ │ └── U │ │ │ │ └── NeoK+RECf3mFpNWkSjaw │ │ │ ├── F │ │ │ ├── 0 │ │ │ │ └── bomLB8XzS6oagCXsdqYA │ │ │ ├── A │ │ │ │ ├── gpkdeppYfnzY4qvbYnAQ │ │ │ │ └── y3yBpla4RRIrh9KyU-fw │ │ │ ├── I │ │ │ │ └── apLQ8K17wrdRYztb9x-w │ │ │ ├── R │ │ │ │ └── 5VAxfDXSEwMLC+HfDF1A │ │ │ ├── S │ │ │ │ ├── dz0qdcmWuUmVAh3WGnBA │ │ │ │ └── ui9SmLON8C41k+JNfSEA │ │ │ ├── V │ │ │ │ └── KDGISr-Df2niWdXWeGuw │ │ │ └── X │ │ │ │ └── wRql7e9SVkzppVLXvAoA │ │ │ ├── G │ │ │ ├── 4 │ │ │ │ └── L3lbHKTQL8XpCXL-zn8w │ │ │ ├── 9 │ │ │ │ └── IYO6MFr-lWfZkRd-ENDA │ │ │ ├── D │ │ │ │ └── v0Cl0S3hWlqVyBSuHwkg │ │ │ ├── I │ │ │ │ └── k8vXg6WDMZ-VROsVJ1Lw │ │ │ ├── V │ │ │ │ ├── KOtE6oR7FzDVqFGxslcQ │ │ │ │ ├── pyBgiePhTy7tILwbMHyQ │ │ │ │ └── z-22D4C3c-K39uQaGJsA │ │ │ ├── W │ │ │ │ └── XPKZjEJiCV4hmRWfZtkw │ │ │ └── Z │ │ │ │ └── BrxMStGGZRqXcnFRrV9Q │ │ │ ├── H │ │ │ ├── 1 │ │ │ │ └── mbBbhhlTUAp271nWHT+Q │ │ │ ├── 2 │ │ │ │ ├── ml1PSjRYYbtGebgolsRQ │ │ │ │ └── muRT1lWbKeCXzELXadeg │ │ │ ├── B │ │ │ │ ├── 1zcY3I3AQSqLDrAR8-GQ │ │ │ │ └── kU01JblJ3kaiUGoRA5NQ │ │ │ ├── D │ │ │ │ └── KSUpDOgNfIFzlnuT8d0w │ │ │ ├── H │ │ │ │ └── aLC8SN-jsryXs+dicMBQ │ │ │ ├── I │ │ │ │ └── RvhBiTkjBlibV8GMUt1A │ │ │ ├── L │ │ │ │ └── ZP67ehKo8qQj1SgEJ4pA │ │ │ ├── M │ │ │ │ ├── VOmwE8bFkJ7AHw2R0hEg │ │ │ │ └── X8Hg7f7wd9FcNaNyV49w │ │ │ ├── N │ │ │ │ └── CwFXKLysE3LDjCXJY3Xg │ │ │ ├── U │ │ │ │ └── YiPOmd8exqxWghXvEHIA │ │ │ └── W │ │ │ │ ├── 3jm2lgQSkvxVsE6z3sMA │ │ │ │ └── iyqipNXDlvtU4D-rJGVg │ │ │ ├── I │ │ │ ├── 6 │ │ │ │ ├── Em7oL81z0HyWtwMLyaLw │ │ │ │ └── ZS0QUpCOCgGh7xW9Hc3g │ │ │ ├── - │ │ │ │ └── pmx2HYHmy3KhPKmYVdxQ │ │ │ ├── A │ │ │ │ └── +2zbPRDr-084a-siJG7Q │ │ │ ├── B │ │ │ │ └── TLiSZeCntNOzeJUFWFlw │ │ │ ├── D │ │ │ │ └── WU6hWO8ABAdvubTAUNTA │ │ │ ├── E │ │ │ │ ├── R-kymJUg82x6lrSDUUlw │ │ │ │ └── ghK9o19wainZI2NKeG4g │ │ │ ├── G │ │ │ │ └── qWdiLZG8APLmWh830rSQ │ │ │ ├── Q │ │ │ │ └── VQzZ98AlIOSoG7rHg08g │ │ │ ├── V │ │ │ │ └── hrLt+4VU3vtca4WJVU6w │ │ │ ├── X │ │ │ │ └── Mhu-6UkNXpdca2w5almg │ │ │ ├── Y │ │ │ │ └── oJIqlIQCfXeSEiu2poPQ │ │ │ └── Z │ │ │ │ ├── -3WbinczipIkpkkAgwYw │ │ │ │ └── w014NlKnwOhHnphw5E7A │ │ │ ├── J │ │ │ ├── D │ │ │ │ └── LJJvrlylOZxhKmizv4EQ │ │ │ ├── O │ │ │ │ └── QB1MP9EikJSKX-bSjZ-Q │ │ │ ├── Q │ │ │ │ └── -lHXjXHrqkTa-bg1YEHQ │ │ │ ├── R │ │ │ │ └── wn1xi9wM9PNdSfrcj9mw │ │ │ └── S │ │ │ │ ├── b2t-7FV7ylOJMOV72Kdw │ │ │ │ ├── pP3VKVPOZf5gNN0Hx5tg │ │ │ │ └── uQrTK+J01EQlqa8unwQw │ │ │ ├── K │ │ │ ├── 0 │ │ │ │ └── vMMDtU8mN9-BF74IdXcA │ │ │ ├── + │ │ │ │ └── sjHNTirv4UzWUeLIz3mQ │ │ │ ├── A │ │ │ │ └── F7xpWtV7pHduCKU6rJUg │ │ │ ├── E │ │ │ │ └── psIs4r8bqTK3P7POztxw │ │ │ ├── I │ │ │ │ └── -QLxtUKN56DZ1g-5UaVw │ │ │ ├── N │ │ │ │ └── I1NtDPHVkioZDnQ8W5tg │ │ │ ├── P │ │ │ │ └── 0MXE0wit6R8m9UtYGjYg │ │ │ ├── Q │ │ │ │ └── P4EiZ6zvLclJ3HZtyeJg │ │ │ ├── V │ │ │ │ └── 0KI9yQkeV+33t7Zz8CIg │ │ │ └── X │ │ │ │ └── B2qDUbiN1ZsmegnJAvHg │ │ │ ├── L │ │ │ ├── D │ │ │ │ └── uBDKGCRn+ZWmqvjT2KYA │ │ │ ├── E │ │ │ │ └── 3a05GL130gGy73C0sfvQ │ │ │ ├── L │ │ │ │ └── 6UbnCckhB+kMCvK5QlGQ │ │ │ ├── M │ │ │ │ └── h43M+kc5kAkSXLSJdd0Q │ │ │ ├── O │ │ │ │ └── yokyAP4lu8luHua7u-fw │ │ │ ├── R │ │ │ │ └── iHpdA0ywcFOS+3L9NglA │ │ │ ├── S │ │ │ │ └── -fcj5aNdA9ADuJKOSkRw │ │ │ ├── U │ │ │ │ └── OuPnitte4JnS-yfySztQ │ │ │ ├── X │ │ │ │ └── 40FfuA7fbyfA9TSYjE1Q │ │ │ └── Y │ │ │ │ ├── kqUOjZbZLJtdY17mCQMw │ │ │ │ └── ptM6LtkfCmwWbo4tFLcQ │ │ │ ├── M │ │ │ ├── I │ │ │ │ └── GMrqOGSGXWdgXlPuL+9w │ │ │ ├── N │ │ │ │ └── Ro-K2+we+OKBiogHwUqw │ │ │ ├── Q │ │ │ │ └── ch0bhU9pe3QHUkF2fDlA │ │ │ ├── Y │ │ │ │ └── 6ttbzJSeg-dCqKSkPgKA │ │ │ └── Z │ │ │ │ └── ag9XnQNkiGB7tF8c8trg │ │ │ ├── N │ │ │ ├── 3 │ │ │ │ └── flwcDeRqV-nibQoCNqMg │ │ │ ├── 5 │ │ │ │ └── OrbSBE676E+rRUrw57LQ │ │ │ ├── + │ │ │ │ └── vY1MLZgO4A5sDQcRYAxw │ │ │ ├── H │ │ │ │ └── XJO6wUB2b-WLMvwkzZkw │ │ │ ├── I │ │ │ │ └── gfKFrQnREbg64OvUo+3g │ │ │ ├── J │ │ │ │ └── peAO71b7odo9ryuVIHFg │ │ │ ├── R │ │ │ │ └── ppdB5MlDWZcVNYV6-2Tw │ │ │ ├── T │ │ │ │ └── OJzZkVeAdfICnprXk6Ug │ │ │ ├── U │ │ │ │ ├── Gc2oNCq8OpwtLjGDIzfg │ │ │ │ ├── cMWPd4Iz8XgBDGTeHhvw │ │ │ │ └── iSIEfpjiqCppD3q0YmOw │ │ │ └── Z │ │ │ │ └── L8KmqQxD2ZsBeERghCig │ │ │ ├── O │ │ │ ├── 8 │ │ │ │ └── 05TWOBXPN4ekeh2jHqgQ │ │ │ ├── B │ │ │ │ └── K5UrHn94fozRY8fFJIow │ │ │ ├── N │ │ │ │ └── mZMunMZ+e2kl0C9XS4vQ │ │ │ ├── P │ │ │ │ └── +Rh1dILJePETFsqNqOtw │ │ │ └── X │ │ │ │ └── +TgTXGJxnW+4YckQdbHw │ │ │ ├── P │ │ │ ├── 2 │ │ │ │ └── JiYtuOLuu5U+Gi9VCDRQ │ │ │ ├── C │ │ │ │ └── etcAObaJ20AA7vByvRWg │ │ │ ├── D │ │ │ │ └── LO8pQ2CjRQwXEnVaDckw │ │ │ ├── H │ │ │ │ └── SjM9rgW0iidr1XKxhTdg │ │ │ ├── N │ │ │ │ └── xmr5F0sOf6bdRJgDF5sw │ │ │ └── O │ │ │ │ └── nQ1VssgvXAaBhnGN8rDw │ │ │ ├── Q │ │ │ ├── 8 │ │ │ │ └── -BAYaXSS+A5VzV66xNFw │ │ │ ├── F │ │ │ │ └── hTpVt2MjJGhwM2Q0Y0mQ │ │ │ ├── H │ │ │ │ └── 6-MmzETEJFiPH6fm3rKw │ │ │ ├── I │ │ │ │ └── 23vWkyE7PIGH0btcJCrA │ │ │ ├── L │ │ │ │ └── LqQucIcrnqjkDrul3G4Q │ │ │ ├── M │ │ │ │ └── 2nOGq7Q6m3qcN0PTylqA │ │ │ ├── N │ │ │ │ └── RzQOUTRK21dMaQeK6K6Q │ │ │ ├── S │ │ │ │ └── AFv73GfFjKcNyogiH40A │ │ │ ├── W │ │ │ │ └── ao5DuKH4JtiXPoFNJafw │ │ │ └── Z │ │ │ │ └── 2nxVOnW7I20S+YOCaUOA │ │ │ ├── R │ │ │ ├── B │ │ │ │ └── kLyYelHXKhMLdb9ZOtKg │ │ │ ├── N │ │ │ │ └── iQ2GJnr-M0GtYui5BzhQ │ │ │ ├── Q │ │ │ │ └── gh+-Fzd9Ov1RtVDYsgYA │ │ │ ├── R │ │ │ │ ├── +JDtatQMG-WTwp13Krsg │ │ │ │ └── S9gkAxJREj+chzHqrrPw │ │ │ ├── S │ │ │ │ └── ZHtW57GXMzLtgnD1qkfw │ │ │ └── T │ │ │ │ └── BR3Iw-yfDCsR4Ejw4kCQ │ │ │ ├── S │ │ │ ├── B │ │ │ │ └── WZpnvoNvpmtBtDZExa6w │ │ │ ├── G │ │ │ │ └── LHR3f7XGvcAuLEZCgKVA │ │ │ ├── M │ │ │ │ ├── EXZjM6mT5ArTSORRPe1w │ │ │ │ └── bcs-x9E-mYHPO7BbmDwQ │ │ │ └── X │ │ │ │ └── 2oi2lOOjsjPazkiz+1jw │ │ │ ├── T │ │ │ ├── 2 │ │ │ │ └── J+0E1lnPisc2fMZxjF5A │ │ │ ├── 6 │ │ │ │ └── t0w53-+5iCD8DA2D6MJg │ │ │ ├── 8 │ │ │ │ └── MoHlB5XAGlRkgl-E24LA │ │ │ ├── A │ │ │ │ └── 4smyXMFxtsObTEg6O9iQ │ │ │ ├── K │ │ │ │ └── 9gco-dETGAckjIG2YrLQ │ │ │ ├── L │ │ │ │ └── +bQOPzr63iYl7i-4kKIA │ │ │ ├── M │ │ │ │ └── CEhtNZfLjFxg9svA6ZmA │ │ │ └── O │ │ │ │ └── qYf5kDmiIevCDYtK-Nxg │ │ │ ├── U │ │ │ ├── 1 │ │ │ │ └── vg6uN98qd0irAc+u21YQ │ │ │ ├── 4 │ │ │ │ └── 6doiIsEcPXdT2SqT8N+g │ │ │ ├── + │ │ │ │ └── nkAivMxGtTX1sZHFIYrQ │ │ │ ├── M │ │ │ │ ├── aJJYbBTCjPCA1E84FEZA │ │ │ │ └── e4liIDriKus6E20eZGCw │ │ │ ├── N │ │ │ │ ├── 4dCQzqrv61ihcvQeJEmA │ │ │ │ └── sNR+QYSu4VJcBnmjEPJw │ │ │ ├── P │ │ │ │ ├── VGCQcg7nVOrghCatGQ1w │ │ │ │ └── aVuPUkOKtSsd1itsDRfw │ │ │ └── Q │ │ │ │ └── KlKRPBnpH1dRiHYpvl4w │ │ │ ├── V │ │ │ ├── 7 │ │ │ │ └── v33BwM-Qvay4aSTSdKHQ │ │ │ ├── F │ │ │ │ └── 7H7FgxsBejK4hpnGtAeg │ │ │ ├── N │ │ │ │ └── 33jn+Yujhntyec7UvalA │ │ │ ├── P │ │ │ │ └── nVrILGmo4CQ1rMs8PPkw │ │ │ ├── T │ │ │ │ └── 7L0EPNArl4sVbyxECaOQ │ │ │ ├── U │ │ │ │ └── ceTNIYcqSne16bHWK80A │ │ │ ├── V │ │ │ │ └── PRm9l1PIDKYxGRxI+rrQ │ │ │ ├── W │ │ │ │ └── o3bsk38WIOxtdl3Tm7+g │ │ │ ├── X │ │ │ │ └── 9Zy34ppsuja-9KiPOjnQ │ │ │ └── Y │ │ │ │ └── vkysk5sEr8lNDL4EHyaQ │ │ │ ├── W │ │ │ ├── 4 │ │ │ │ └── j+yph-abKvBIGzkwyAmQ │ │ │ ├── 9 │ │ │ │ ├── JeSdvwe4YU58BGfHVL6g │ │ │ │ └── j06lqpwBQkjh6r5NRgiQ │ │ │ ├── A │ │ │ │ ├── 7Nprp0A7h5FFQl60YWIA │ │ │ │ └── 9WIUPqXSvdnt4GCVp3Ng │ │ │ ├── D │ │ │ │ └── SsDL8QPr-PJrtT1dyDJg │ │ │ ├── H │ │ │ │ └── MYQYF9MdsYwD2fbqzh8g │ │ │ ├── I │ │ │ │ └── GZijHuj+cvHEa0wQh-WQ │ │ │ ├── P │ │ │ │ └── NU+-mOO4v2257bCKerWQ │ │ │ ├── S │ │ │ │ └── +krxtLYjftI9Ei7SqJ2g │ │ │ └── U │ │ │ │ └── dkehyVTI7ILwtVN4U2OA │ │ │ ├── X │ │ │ ├── 8 │ │ │ │ └── iSQz9GHfdmUEBqFzhoZg │ │ │ ├── - │ │ │ │ └── 1sD0t6GR7bBKz3m4N4MA │ │ │ ├── I │ │ │ │ └── 1N+MJdeYVsLwS2fdlFtA │ │ │ ├── J │ │ │ │ └── 1hLqtAnZK0TBx5EdTfVQ │ │ │ ├── L │ │ │ │ └── ByABL+mVoEoxPdxzSROg │ │ │ ├── P │ │ │ │ └── -k0bwdwFcNJoA2jBDtOQ │ │ │ ├── T │ │ │ │ └── WY+5QnL7N5fZykJ+Ge1Q │ │ │ ├── U │ │ │ │ └── TwOWVUiGQ7ySu9h4lxFw │ │ │ ├── V │ │ │ │ └── FOYLGZxc3L7vxC371hBg │ │ │ ├── W │ │ │ │ └── gt6JU-+eu-Ekh2c7bjWQ │ │ │ ├── Y │ │ │ │ └── 1wkewU32Vcmb4nrhh-mA │ │ │ └── Z │ │ │ │ └── 9Tuci2x0DOfE1YRKhE4Q │ │ │ ├── Y │ │ │ ├── 3 │ │ │ │ └── cOcHiTZPqGNP9J6TYSGQ │ │ │ ├── 5 │ │ │ │ └── WvoZKFqup60JnYrDDpTQ │ │ │ ├── 7 │ │ │ │ └── yj5S8OLwU1uIQT7VbBFQ │ │ │ ├── E │ │ │ │ └── 0Ud1iXKXa2UyD2utLPiA │ │ │ ├── G │ │ │ │ └── SN30K78bqC1Rx7iavEow │ │ │ ├── I │ │ │ │ └── 6QLn9Hc1bWzIkBSJn50A │ │ │ ├── J │ │ │ │ ├── P3xeVohWRtT1y1EvBYlg │ │ │ │ └── VRX7BOxTWAgp2Ie00N-A │ │ │ ├── O │ │ │ │ └── 2NDz7pbJMKrTUnFWplGw │ │ │ └── X │ │ │ │ └── n37v7a4D7h+wggPXmHww │ │ │ └── Z │ │ │ ├── 9 │ │ │ └── iVQ5JmsdXgM8+NFyplZg │ │ │ ├── - │ │ │ └── clBBCweaDw0j1+u6O3kg │ │ │ ├── A │ │ │ └── Ahd-OqeGJxaXbx2MZYAQ │ │ │ ├── D │ │ │ └── JyIRr7K-LTF0sngJypQQ │ │ │ ├── G │ │ │ └── KpJocVoALsx8iv7E8EBg │ │ │ ├── R │ │ │ └── eVNJzlADTyyvfgCoC3uw │ │ │ ├── S │ │ │ └── NA69PYSIA668XP5HbfNw │ │ │ ├── T │ │ │ └── DXb6ADLajTzJNI4pEwOA │ │ │ └── Z │ │ │ └── mQPUWlodBH8SH5szz2Qw │ │ ├── profiler │ │ ├── 17 │ │ │ ├── 01 │ │ │ │ └── e40117 │ │ │ └── 4d │ │ │ │ └── e24d17 │ │ ├── 19 │ │ │ └── 84 │ │ │ │ └── 028419 │ │ ├── 41 │ │ │ └── c1 │ │ │ │ └── 4bc141 │ │ ├── 52 │ │ │ ├── 92 │ │ │ │ └── 3d9252 │ │ │ └── f5 │ │ │ │ └── 73f552 │ │ ├── 63 │ │ │ └── fd │ │ │ │ └── eafd63 │ │ ├── 64 │ │ │ └── 77 │ │ │ │ └── 4a7764 │ │ ├── 84 │ │ │ └── a5 │ │ │ │ └── 6ba584 │ │ ├── 91 │ │ │ └── 88 │ │ │ │ └── 008891 │ │ ├── 01 │ │ │ └── 64 │ │ │ │ └── 5b6401 │ │ ├── 0b │ │ │ └── 8c │ │ │ │ └── dc8c0b │ │ ├── 1e │ │ │ └── fb │ │ │ │ └── eefb1e │ │ ├── 2d │ │ │ └── 9c │ │ │ │ └── e99c2d │ │ ├── 2f │ │ │ └── e3 │ │ │ │ └── 44e32f │ │ ├── 3c │ │ │ └── 67 │ │ │ │ └── 26673c │ │ ├── 3e │ │ │ └── 17 │ │ │ │ └── bc173e │ │ ├── 3f │ │ │ └── ec │ │ │ │ └── 2eec3f │ │ ├── 4a │ │ │ ├── 30 │ │ │ │ └── 05304a │ │ │ ├── 06 │ │ │ │ └── 1c064a │ │ │ └── bd │ │ │ │ └── f6bd4a │ │ ├── 9b │ │ │ └── 20 │ │ │ │ └── 39209b │ │ ├── a2 │ │ │ └── 12 │ │ │ │ └── af12a2 │ │ ├── a4 │ │ │ └── b4 │ │ │ │ └── e3b4a4 │ │ ├── af │ │ │ └── 00 │ │ │ │ └── 5b00af │ │ ├── b2 │ │ │ └── ba │ │ │ │ └── dcbab2 │ │ ├── c6 │ │ │ └── 3a │ │ │ │ └── d83ac6 │ │ ├── d1 │ │ │ └── 3b │ │ │ │ └── eb3bd1 │ │ ├── d6 │ │ │ └── 85 │ │ │ │ └── f685d6 │ │ ├── da │ │ │ └── ed │ │ │ │ └── a2edda │ │ ├── e4 │ │ │ └── a1 │ │ │ │ └── 5aa1e4 │ │ ├── e9 │ │ │ └── 3d │ │ │ │ └── 063de9 │ │ ├── ee │ │ │ ├── 00 │ │ │ │ └── c700ee │ │ │ └── c9 │ │ │ │ └── 57c9ee │ │ ├── f2 │ │ │ └── a6 │ │ │ │ └── b7a6f2 │ │ ├── f4 │ │ │ └── 24 │ │ │ │ └── 6724f4 │ │ ├── fa │ │ │ └── 41 │ │ │ │ └── c341fa │ │ └── index.csv │ │ ├── serialization.php │ │ ├── translations │ │ ├── catalogue.af.ax7PkVB.php │ │ ├── catalogue.af.ax7PkVB.php.meta │ │ ├── catalogue.ar.ax7PkVB.php │ │ ├── catalogue.ar.ax7PkVB.php.meta │ │ ├── catalogue.az.ax7PkVB.php │ │ ├── catalogue.az.ax7PkVB.php.meta │ │ ├── catalogue.be.ax7PkVB.php │ │ ├── catalogue.be.ax7PkVB.php.meta │ │ ├── catalogue.bg.ax7PkVB.php │ │ ├── catalogue.bg.ax7PkVB.php.meta │ │ ├── catalogue.bs.ax7PkVB.php │ │ ├── catalogue.bs.ax7PkVB.php.meta │ │ ├── catalogue.ca.ax7PkVB.php │ │ ├── catalogue.ca.ax7PkVB.php.meta │ │ ├── catalogue.cs.ax7PkVB.php │ │ ├── catalogue.cs.ax7PkVB.php.meta │ │ ├── catalogue.cy.ax7PkVB.php │ │ ├── catalogue.cy.ax7PkVB.php.meta │ │ ├── catalogue.da.ax7PkVB.php │ │ ├── catalogue.da.ax7PkVB.php.meta │ │ ├── catalogue.de.ax7PkVB.php │ │ ├── catalogue.de.ax7PkVB.php.meta │ │ ├── catalogue.el.ax7PkVB.php │ │ ├── catalogue.el.ax7PkVB.php.meta │ │ ├── catalogue.en.ax7PkVB.php │ │ ├── catalogue.en.ax7PkVB.php.meta │ │ ├── catalogue.es.ax7PkVB.php │ │ ├── catalogue.es.ax7PkVB.php.meta │ │ ├── catalogue.et.ax7PkVB.php │ │ ├── catalogue.et.ax7PkVB.php.meta │ │ ├── catalogue.eu.ax7PkVB.php │ │ ├── catalogue.eu.ax7PkVB.php.meta │ │ ├── catalogue.fa.ax7PkVB.php │ │ ├── catalogue.fa.ax7PkVB.php.meta │ │ ├── catalogue.fi.ax7PkVB.php │ │ ├── catalogue.fi.ax7PkVB.php.meta │ │ ├── catalogue.fr.ax7PkVB.php │ │ ├── catalogue.fr.ax7PkVB.php.meta │ │ ├── catalogue.gl.ax7PkVB.php │ │ ├── catalogue.gl.ax7PkVB.php.meta │ │ ├── catalogue.he.ax7PkVB.php │ │ ├── catalogue.he.ax7PkVB.php.meta │ │ ├── catalogue.hr.ax7PkVB.php │ │ ├── catalogue.hr.ax7PkVB.php.meta │ │ ├── catalogue.hu.ax7PkVB.php │ │ ├── catalogue.hu.ax7PkVB.php.meta │ │ ├── catalogue.hy.ax7PkVB.php │ │ ├── catalogue.hy.ax7PkVB.php.meta │ │ ├── catalogue.id.ax7PkVB.php │ │ ├── catalogue.id.ax7PkVB.php.meta │ │ ├── catalogue.it.ax7PkVB.php │ │ ├── catalogue.it.ax7PkVB.php.meta │ │ ├── catalogue.ja.ax7PkVB.php │ │ ├── catalogue.ja.ax7PkVB.php.meta │ │ ├── catalogue.lb.ax7PkVB.php │ │ ├── catalogue.lb.ax7PkVB.php.meta │ │ ├── catalogue.lt.ax7PkVB.php │ │ ├── catalogue.lt.ax7PkVB.php.meta │ │ ├── catalogue.lv.ax7PkVB.php │ │ ├── catalogue.lv.ax7PkVB.php.meta │ │ ├── catalogue.mn.ax7PkVB.php │ │ ├── catalogue.mn.ax7PkVB.php.meta │ │ ├── catalogue.my.ax7PkVB.php │ │ ├── catalogue.my.ax7PkVB.php.meta │ │ ├── catalogue.nb.ax7PkVB.php │ │ ├── catalogue.nb.ax7PkVB.php.meta │ │ ├── catalogue.nl.ax7PkVB.php │ │ ├── catalogue.nl.ax7PkVB.php.meta │ │ ├── catalogue.nn.ax7PkVB.php │ │ ├── catalogue.nn.ax7PkVB.php.meta │ │ ├── catalogue.no.ax7PkVB.php │ │ ├── catalogue.no.ax7PkVB.php.meta │ │ ├── catalogue.pl.ax7PkVB.php │ │ ├── catalogue.pl.ax7PkVB.php.meta │ │ ├── catalogue.pt.ax7PkVB.php │ │ ├── catalogue.pt.ax7PkVB.php.meta │ │ ├── catalogue.pt_BR.ax7PkVB.php │ │ ├── catalogue.pt_BR.ax7PkVB.php.meta │ │ ├── catalogue.ro.ax7PkVB.php │ │ ├── catalogue.ro.ax7PkVB.php.meta │ │ ├── catalogue.ru.ax7PkVB.php │ │ ├── catalogue.ru.ax7PkVB.php.meta │ │ ├── catalogue.sk.ax7PkVB.php │ │ ├── catalogue.sk.ax7PkVB.php.meta │ │ ├── catalogue.sl.ax7PkVB.php │ │ ├── catalogue.sl.ax7PkVB.php.meta │ │ ├── catalogue.sq.ax7PkVB.php │ │ ├── catalogue.sq.ax7PkVB.php.meta │ │ ├── catalogue.sr.ax7PkVB.php │ │ ├── catalogue.sr.ax7PkVB.php.meta │ │ ├── catalogue.sr_Cyrl.ax7PkVB.php │ │ ├── catalogue.sr_Cyrl.ax7PkVB.php.meta │ │ ├── catalogue.sr_Latn.ax7PkVB.php │ │ ├── catalogue.sr_Latn.ax7PkVB.php.meta │ │ ├── catalogue.sv.ax7PkVB.php │ │ ├── catalogue.sv.ax7PkVB.php.meta │ │ ├── catalogue.th.ax7PkVB.php │ │ ├── catalogue.th.ax7PkVB.php.meta │ │ ├── catalogue.tl.ax7PkVB.php │ │ ├── catalogue.tl.ax7PkVB.php.meta │ │ ├── catalogue.tr.ax7PkVB.php │ │ ├── catalogue.tr.ax7PkVB.php.meta │ │ ├── catalogue.uk.ax7PkVB.php │ │ ├── catalogue.uk.ax7PkVB.php.meta │ │ ├── catalogue.ur.ax7PkVB.php │ │ ├── catalogue.ur.ax7PkVB.php.meta │ │ ├── catalogue.uz.ax7PkVB.php │ │ ├── catalogue.uz.ax7PkVB.php.meta │ │ ├── catalogue.vi.ax7PkVB.php │ │ ├── catalogue.vi.ax7PkVB.php.meta │ │ ├── catalogue.zh_CN.ax7PkVB.php │ │ ├── catalogue.zh_CN.ax7PkVB.php.meta │ │ ├── catalogue.zh_TW.ax7PkVB.php │ │ └── catalogue.zh_TW.ax7PkVB.php.meta │ │ ├── twig │ │ ├── 11 │ │ │ └── 11f65df215490785b7c1ee181c69a203.php │ │ ├── 12 │ │ │ └── 12af09d992cda7ba5eb9da56e4232147.php │ │ ├── 16 │ │ │ └── 163b6554a1498e62609aac4ea36ff0e2.php │ │ ├── 17 │ │ │ └── 177104aa1c54bb387c0799d19dbab14e.php │ │ ├── 18 │ │ │ └── 18419b3c97296db066d152328ad54d49.php │ │ ├── 21 │ │ │ └── 21b9bb42aaf18091e18c47d12f996090.php │ │ ├── 22 │ │ │ ├── 221c09d942457673c273fd62b40a43eb.php │ │ │ └── 22d5729d8ed84d937b665c9398f4168b.php │ │ ├── 27 │ │ │ └── 27cbf1f366fd4fa73c887f110599b341.php │ │ ├── 28 │ │ │ └── 284a2df6a08f5cd8398d7dc84fb0e375.php │ │ ├── 29 │ │ │ └── 29163693347dfa74c58133cd5ac4e81f.php │ │ ├── 34 │ │ │ └── 34b56460096c1741d3fff5ac2a65fb70.php │ │ ├── 36 │ │ │ └── 36029b5a1225089537efee7361f52ec3.php │ │ ├── 37 │ │ │ └── 370476ab45121d8dcc3b459c255374ad.php │ │ ├── 39 │ │ │ └── 39b3446f0ea225aeb826da415415a794.php │ │ ├── 40 │ │ │ └── 400a8d203a368e77f2d3c66350056a2d.php │ │ ├── 43 │ │ │ └── 43ca2d16d9e5d4f09b8c1f746ce53a4f.php │ │ ├── 44 │ │ │ └── 4435e60e033b217fc788c08c7c5e59a6.php │ │ ├── 48 │ │ │ └── 48e351f528e773ef4ffc3428076e0f27.php │ │ ├── 50 │ │ │ └── 5097c2f99ab7d0822756f0195eec3f49.php │ │ ├── 52 │ │ │ └── 525321143994f0b5c32dad1995a4152f.php │ │ ├── 53 │ │ │ └── 531d46bf165e95e6cc1d892d7b005cd2.php │ │ ├── 54 │ │ │ └── 5436123137ee998367161f8247adc234.php │ │ ├── 55 │ │ │ └── 558d7630c7b30b0ccd0cab687c6e4163.php │ │ ├── 56 │ │ │ ├── 56a6ee4ce67c9c5c1838e73482b27271.php │ │ │ └── 56b71b21bafeab7118c2ba2cb50b42e5.php │ │ ├── 58 │ │ │ └── 5828ad1989c9d43333e0a9d2a59910c7.php │ │ ├── 60 │ │ │ └── 60c8927253315a31a2f3d38e0b65bb20.php │ │ ├── 61 │ │ │ ├── 618f1446bd45bb371327094bed4ca11d.php │ │ │ └── 61edccd14e898291cefbcbe5dc099cd7.php │ │ ├── 64 │ │ │ └── 646b5e545e864040b025471f3c136463.php │ │ ├── 65 │ │ │ ├── 6516d7f17d0b44d6ccc65e39ea7db822.php │ │ │ └── 655617466966bd0b5dfb0ee9f8575a1e.php │ │ ├── 68 │ │ │ └── 68fcc1f0f9ce23452c9d915baab52aeb.php │ │ ├── 69 │ │ │ ├── 694f6cecd4bb9357b1caece74bd9f756.php │ │ │ ├── 6986d98620ebb14842fc28ad755b4955.php │ │ │ └── 69fafe0909c501b4f39376736494f63f.php │ │ ├── 74 │ │ │ └── 741a4bb2864098e8e1a02cee410973a2.php │ │ ├── 75 │ │ │ └── 75d4ba87101aded60ab44ab036675493.php │ │ ├── 83 │ │ │ └── 835c51d3aa7a8087abe4c68a39034a00.php │ │ ├── 87 │ │ │ └── 87bf62e5d70d78fc0a2b3c63ba0020d8.php │ │ ├── 91 │ │ │ └── 91fccc971391d8ffd287011a3da88f0b.php │ │ ├── 92 │ │ │ └── 92566f38019689285c165b82ab3d540a.php │ │ ├── 93 │ │ │ └── 9346e49ff5347c543a4b3afc8023ebac.php │ │ ├── 95 │ │ │ ├── 9555da67cc8a604b5e73d2cf2cf8930e.php │ │ │ └── 95d50daeb00d08831f691dca442b879a.php │ │ ├── 96 │ │ │ └── 967fb042753a7380ec489f46b7995e8d.php │ │ ├── 98 │ │ │ └── 9862daf5ef746758d7e7e859a115ece1.php │ │ ├── 00 │ │ │ └── 00a7676526acd6ea2f01e43f951525a2.php │ │ ├── 02 │ │ │ └── 02b6aacc4f60614e59985328cc422c47.php │ │ ├── 05 │ │ │ └── 054319367762b09d2d248132bb58a0fe.php │ │ ├── 07 │ │ │ ├── 07026e8d0da820f711e77a076c5fcc82.php │ │ │ └── 07b6a7c7a7f3e8bd05e05a6459af86ae.php │ │ ├── 08 │ │ │ └── 082445a752c6cf2da8f67e999961e66d.php │ │ ├── 09 │ │ │ └── 099c1e962706d06f204c8bcd4202eccd.php │ │ ├── 0a │ │ │ ├── 0a62d556b45f599ad89353c0e0e4d7e8.php │ │ │ └── 0a7b33f03fd787ee97636f5baf5b9ed6.php │ │ ├── 0b │ │ │ └── 0b4840c5b4fcbb52719116175f98316d.php │ │ ├── 0c │ │ │ └── 0c0c56465c0cb2e1402c8d958bfeb6d9.php │ │ ├── 0d │ │ │ └── 0dedb4a345f45e507d69b4765b9cb584.php │ │ ├── 0f │ │ │ ├── 0f1a9787a93eb9036786adbd19d8d115.php │ │ │ └── 0f8c25c3464402e5981b793b993812dd.php │ │ ├── 1b │ │ │ ├── 1b37f3b261b03831266853617e02f473.php │ │ │ └── 1b4f2926838101b0595b269e3e55a28a.php │ │ ├── 1d │ │ │ └── 1dceb10f8146fb3f666e5dbd9a4d58c5.php │ │ ├── 2a │ │ │ └── 2a9a63669317ef9a9ede61418fa57609.php │ │ ├── 2b │ │ │ ├── 2b4ce1d8d7af90c79f688f67e259d37d.php │ │ │ └── 2ba13e11976876d013a19c8a033b8a24.php │ │ ├── 2d │ │ │ └── 2d0ba6ea5ad743a64b21491f9d73798d.php │ │ ├── 2e │ │ │ ├── 2e8c3b9fe9b90d5e40b0741fc57a374e.php │ │ │ └── 2eb218a0b9cb40249f5054b461615a4d.php │ │ ├── 3b │ │ │ ├── 3b7e46bec14ae75787c099f5a2fcb381.php │ │ │ └── 3bf1c0d6620f5f593bcdf7490e5badd5.php │ │ ├── 3f │ │ │ ├── 3f0144dad6f8077f3683871a037635ac.php │ │ │ └── 3f5f1605f063e16504424f73c1109d8b.php │ │ ├── 4a │ │ │ └── 4a1eae38d94a108cd4294244106146c0.php │ │ ├── 4e │ │ │ ├── 4e3f5d5fb3351121fa4c94a8dbe22dc8.php │ │ │ ├── 4e7c7060f0f78629cdc4b527b44fed81.php │ │ │ └── 4ef54e26423d176bbf3981bf48ae7674.php │ │ ├── 5c │ │ │ ├── 5c2ed3d8d9c2f4f2623cd00ae4d7fce6.php │ │ │ └── 5cf4a8bc15ccb8e90d0f822d10f01d28.php │ │ ├── 6a │ │ │ └── 6a9553dc5c41cb5f1739f636a144e6e2.php │ │ ├── 6b │ │ │ └── 6b815a85154b8e20415aaddf683c82f5.php │ │ ├── 6c │ │ │ └── 6c4e08b446302c967501f115af15423b.php │ │ ├── 7c │ │ │ └── 7c47276dc2061607a48565e2ca47bdae.php │ │ ├── 7e │ │ │ ├── 7e0480c5ae04cb1242f8479771b6f7db.php │ │ │ └── 7e2bb0d07808a47a265c1d9b2e26237c.php │ │ ├── 7f │ │ │ └── 7f73dbf6c57def650ef65984f7b65382.php │ │ ├── 8c │ │ │ └── 8cb8d59093df1bc5f59dd7f6357c05fe.php │ │ ├── 9a │ │ │ ├── 9a0dc409b1b1e1bbd2f4833686f5cd26.php │ │ │ └── 9af03a66f0cce66e757377bbd8c4d56c.php │ │ ├── 9b │ │ │ └── 9b168e312207dcba254970c5654dc22f.php │ │ ├── 9c │ │ │ └── 9cb264214a0819230f84ee0ec98722a2.php │ │ ├── 9e │ │ │ └── 9e1f78b4cc35adf86322239ef2f7bd1f.php │ │ ├── a2 │ │ │ └── a254c3fd1c71b07b20d154b00bb995a2.php │ │ ├── a4 │ │ │ └── a4eaa9b7a62c9c986c5bb4b8d6f7de92.php │ │ ├── a8 │ │ │ └── a88d115a4181fd4d2b3bb40d03958b73.php │ │ ├── ab │ │ │ ├── ab56715589d6e158d408099d231e998e.php │ │ │ └── abe5aeef2b01184135e8f51eecb76227.php │ │ ├── ae │ │ │ └── aeb3a5599a32bec7ff94f7f1976e7625.php │ │ ├── b0 │ │ │ └── b084b57458c9f38ec462819a8fc1a0b0.php │ │ ├── b1 │ │ │ └── b1250b9f7ed0954e406332aa32bc3be3.php │ │ ├── bc │ │ │ └── bc317e46eeebf4efbddb21ec3aa41999.php │ │ ├── bd │ │ │ └── bd6a75ead1b8e3c3255fe1d94a908946.php │ │ ├── c0 │ │ │ ├── c00c496afba158fe44bcb1922141bccc.php │ │ │ └── c06f861fcf0636b1fa3c45108b917ffd.php │ │ ├── c2 │ │ │ └── c2d0c66253d2a6da7f3b0c0bb9f89bbf.php │ │ ├── c5 │ │ │ └── c556c4c52bffcce31bd69f46c5c5e329.php │ │ ├── c8 │ │ │ └── c826f5f7a621b9c4c9d82d4dc0b04b44.php │ │ ├── c9 │ │ │ └── c96690b6a01cf100f77af4992a997443.php │ │ ├── cb │ │ │ └── cbb5397aa0ff5bd785e96928422f4b5a.php │ │ ├── d1 │ │ │ ├── d159098c870ae98ee15abe94ebb74c23.php │ │ │ └── d1e2a5abe0bba1ed68db46ec3cfcb815.php │ │ ├── d2 │ │ │ └── d20946c5fee96bf34b6a73aabaa3600a.php │ │ ├── d3 │ │ │ └── d33ea3c541a3a11c3c0795f5c5dee36c.php │ │ ├── d4 │ │ │ ├── d42f2b2854b6da1f9ef128af86affbc5.php │ │ │ └── d47efaaf0d3bf6f6f594cb7d0948c34a.php │ │ ├── d8 │ │ │ ├── d833a9def284a6445923034652219b9a.php │ │ │ └── d83d9987d4de2580d3fc9837a3e5a547.php │ │ ├── da │ │ │ └── dab2b9926567500f9483af29f6c3567b.php │ │ ├── db │ │ │ └── db0a22d8fc5c4f5a9b64153100b9949d.php │ │ ├── dc │ │ │ └── dcdb9d170082c805cf4f02029bbb7d8f.php │ │ ├── dd │ │ │ └── ddff3b10bc07485490eec1f299496658.php │ │ ├── e1 │ │ │ └── e15d654397f3063461b29eb166c85541.php │ │ ├── e5 │ │ │ └── e5d6b57ef8ed5c310c1c75d13ec2f839.php │ │ ├── e6 │ │ │ └── e6cb4b794e23eb91a97dab5a13a5e45f.php │ │ ├── ea │ │ │ ├── eaa93eb71a80ff4bb0568bf3761ac482.php │ │ │ └── eab13b9f1485ca45d6c1eeb1ef7c27b6.php │ │ ├── eb │ │ │ └── eb77572a52c3516882855418de6f462f.php │ │ ├── ed │ │ │ └── edc1a59ce4ca403179f817e18e4cea8f.php │ │ ├── f0 │ │ │ ├── f0da1b2bef04ce4831ce90b105e2b4bd.php │ │ │ └── f0eef483bd0be09f75ff2270fd06059e.php │ │ ├── f1 │ │ │ ├── f136831b20150b5784cfe7c30194ae70.php │ │ │ └── f13cbdb7d27da38af458cc9c1e7b44ec.php │ │ ├── f3 │ │ │ └── f322264d97695011d1b13f838bed9b36.php │ │ ├── fd │ │ │ └── fde8ad09501aa773448f0395e55b0250.php │ │ └── ff │ │ │ ├── ffac6d2deee1469361ed1f5154b842be.php │ │ │ └── ffbd0fb15764672a4058924bf4fb1e1d.php │ │ ├── url_generating_routes.php │ │ ├── url_generating_routes.php.meta │ │ ├── url_matching_routes.php │ │ ├── url_matching_routes.php.meta │ │ └── validation.php └── log │ └── dev.log └── vendor ├── autoload.php ├── autoload_runtime.php ├── bin ├── doctrine ├── doctrine-dbal ├── doctrine-dbal.bat ├── doctrine-migrations ├── doctrine-migrations.bat ├── doctrine.bat ├── patch-type-declarations ├── patch-type-declarations.bat ├── php-parse ├── php-parse.bat ├── phpunit ├── phpunit.bat ├── simple-phpunit ├── simple-phpunit.bat ├── sql-formatter ├── sql-formatter.bat ├── var-dump-server ├── var-dump-server.bat ├── yaml-lint └── yaml-lint.bat ├── 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 ├── doctrine ├── annotations │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── docs │ │ └── en │ │ │ ├── annotations.rst │ │ │ ├── custom.rst │ │ │ ├── index.rst │ │ │ └── sidebar.rst │ ├── lib │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Annotations │ │ │ ├── Annotation.php │ │ │ ├── Annotation │ │ │ ├── Attribute.php │ │ │ ├── Attributes.php │ │ │ ├── Enum.php │ │ │ ├── IgnoreAnnotation.php │ │ │ ├── NamedArgumentConstructor.php │ │ │ ├── Required.php │ │ │ └── Target.php │ │ │ ├── AnnotationException.php │ │ │ ├── AnnotationReader.php │ │ │ ├── AnnotationRegistry.php │ │ │ ├── CachedReader.php │ │ │ ├── DocLexer.php │ │ │ ├── DocParser.php │ │ │ ├── FileCacheReader.php │ │ │ ├── ImplicitlyIgnoredAnnotationNames.php │ │ │ ├── IndexedReader.php │ │ │ ├── NamedArgumentConstructorAnnotation.php │ │ │ ├── PhpParser.php │ │ │ ├── PsrCachedReader.php │ │ │ ├── Reader.php │ │ │ ├── SimpleAnnotationReader.php │ │ │ └── TokenParser.php │ └── psalm.xml ├── cache │ ├── LICENSE │ ├── README.md │ ├── UPGRADE-1.11.md │ ├── UPGRADE-1.4.md │ ├── composer.json │ └── lib │ │ └── Doctrine │ │ └── Common │ │ └── Cache │ │ ├── Cache.php │ │ ├── CacheProvider.php │ │ ├── ClearableCache.php │ │ ├── FlushableCache.php │ │ ├── MultiDeleteCache.php │ │ ├── MultiGetCache.php │ │ ├── MultiOperationCache.php │ │ ├── MultiPutCache.php │ │ └── Psr6 │ │ ├── CacheAdapter.php │ │ ├── CacheItem.php │ │ ├── DoctrineProvider.php │ │ ├── InvalidArgument.php │ │ └── TypedCacheItem.php ├── collections │ ├── .doctrine-project.json │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── UPGRADE.md │ ├── composer.json │ ├── docs │ │ └── en │ │ │ ├── derived-collections.rst │ │ │ ├── expression-builder.rst │ │ │ ├── expressions.rst │ │ │ ├── index.rst │ │ │ ├── lazy-collections.rst │ │ │ ├── serialization.rst │ │ │ └── sidebar.rst │ └── src │ │ ├── AbstractLazyCollection.php │ │ ├── ArrayCollection.php │ │ ├── Collection.php │ │ ├── Criteria.php │ │ ├── Expr │ │ ├── ClosureExpressionVisitor.php │ │ ├── Comparison.php │ │ ├── CompositeExpression.php │ │ ├── Expression.php │ │ ├── ExpressionVisitor.php │ │ └── Value.php │ │ ├── ExpressionBuilder.php │ │ ├── ReadableCollection.php │ │ └── Selectable.php ├── common │ ├── .doctrine-project.json │ ├── LICENSE │ ├── README.md │ ├── UPGRADE_TO_2_1 │ ├── UPGRADE_TO_2_2 │ ├── composer.json │ ├── docs │ │ └── en │ │ │ ├── index.rst │ │ │ └── reference │ │ │ └── class-loading.rst │ ├── phpstan.neon.dist │ ├── psalm.xml │ └── src │ │ ├── ClassLoader.php │ │ ├── CommonException.php │ │ ├── Comparable.php │ │ ├── Proxy │ │ ├── AbstractProxyFactory.php │ │ ├── Autoloader.php │ │ ├── Exception │ │ │ ├── InvalidArgumentException.php │ │ │ ├── OutOfBoundsException.php │ │ │ ├── ProxyException.php │ │ │ └── UnexpectedValueException.php │ │ ├── Proxy.php │ │ ├── ProxyDefinition.php │ │ └── ProxyGenerator.php │ │ └── Util │ │ ├── ClassUtils.php │ │ └── Debug.php ├── dbal │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── bin │ │ ├── doctrine-dbal │ │ └── doctrine-dbal.php │ ├── composer.json │ ├── src │ │ ├── ArrayParameterType.php │ │ ├── ArrayParameters │ │ │ ├── Exception.php │ │ │ └── Exception │ │ │ │ ├── MissingNamedParameter.php │ │ │ │ └── MissingPositionalParameter.php │ │ ├── Cache │ │ │ ├── ArrayResult.php │ │ │ ├── CacheException.php │ │ │ └── QueryCacheProfile.php │ │ ├── ColumnCase.php │ │ ├── Configuration.php │ │ ├── Connection.php │ │ ├── ConnectionException.php │ │ ├── Connections │ │ │ └── PrimaryReadReplicaConnection.php │ │ ├── Driver.php │ │ ├── Driver │ │ │ ├── API │ │ │ │ ├── ExceptionConverter.php │ │ │ │ ├── IBMDB2 │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ ├── MySQL │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ ├── OCI │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ ├── PostgreSQL │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ ├── SQLSrv │ │ │ │ │ └── ExceptionConverter.php │ │ │ │ └── SQLite │ │ │ │ │ ├── ExceptionConverter.php │ │ │ │ │ └── UserDefinedFunctions.php │ │ │ ├── AbstractDB2Driver.php │ │ │ ├── AbstractException.php │ │ │ ├── AbstractMySQLDriver.php │ │ │ ├── AbstractOracleDriver.php │ │ │ ├── AbstractOracleDriver │ │ │ │ └── EasyConnectString.php │ │ │ ├── AbstractPostgreSQLDriver.php │ │ │ ├── AbstractSQLServerDriver.php │ │ │ ├── AbstractSQLServerDriver │ │ │ │ └── Exception │ │ │ │ │ └── PortWithoutHost.php │ │ │ ├── AbstractSQLiteDriver.php │ │ │ ├── AbstractSQLiteDriver │ │ │ │ └── Middleware │ │ │ │ │ └── EnableForeignKeys.php │ │ │ ├── Connection.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ │ └── UnknownParameterType.php │ │ │ ├── FetchUtils.php │ │ │ ├── IBMDB2 │ │ │ │ ├── Connection.php │ │ │ │ ├── DataSourceName.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception │ │ │ │ │ ├── CannotCopyStreamToStream.php │ │ │ │ │ ├── CannotCreateTemporaryFile.php │ │ │ │ │ ├── ConnectionError.php │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── PrepareFailed.php │ │ │ │ │ └── StatementError.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── Middleware.php │ │ │ ├── Middleware │ │ │ │ ├── AbstractConnectionMiddleware.php │ │ │ │ ├── AbstractDriverMiddleware.php │ │ │ │ ├── AbstractResultMiddleware.php │ │ │ │ └── AbstractStatementMiddleware.php │ │ │ ├── Mysqli │ │ │ │ ├── Connection.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception │ │ │ │ │ ├── ConnectionError.php │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ ├── FailedReadingStreamOffset.php │ │ │ │ │ ├── HostRequired.php │ │ │ │ │ ├── InvalidCharset.php │ │ │ │ │ ├── InvalidOption.php │ │ │ │ │ ├── NonStreamResourceUsedAsLargeObject.php │ │ │ │ │ └── StatementError.php │ │ │ │ ├── Initializer.php │ │ │ │ ├── Initializer │ │ │ │ │ ├── Charset.php │ │ │ │ │ ├── Options.php │ │ │ │ │ └── Secure.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── OCI8 │ │ │ │ ├── Connection.php │ │ │ │ ├── ConvertPositionalToNamedPlaceholders.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ ├── Error.php │ │ │ │ │ ├── NonTerminatedStringLiteral.php │ │ │ │ │ ├── SequenceDoesNotExist.php │ │ │ │ │ └── UnknownParameterIndex.php │ │ │ │ ├── ExecutionMode.php │ │ │ │ ├── Middleware │ │ │ │ │ └── InitializeSession.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── PDO │ │ │ │ ├── Connection.php │ │ │ │ ├── Exception.php │ │ │ │ ├── MySQL │ │ │ │ │ └── Driver.php │ │ │ │ ├── OCI │ │ │ │ │ └── Driver.php │ │ │ │ ├── PDOException.php │ │ │ │ ├── ParameterTypeMap.php │ │ │ │ ├── PgSQL │ │ │ │ │ └── Driver.php │ │ │ │ ├── Result.php │ │ │ │ ├── SQLSrv │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── Driver.php │ │ │ │ │ └── Statement.php │ │ │ │ ├── SQLite │ │ │ │ │ └── Driver.php │ │ │ │ └── Statement.php │ │ │ ├── PgSQL │ │ │ │ ├── Connection.php │ │ │ │ ├── ConvertParameters.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Exception │ │ │ │ │ ├── UnexpectedValue.php │ │ │ │ │ └── UnknownParameter.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── Result.php │ │ │ ├── SQLSrv │ │ │ │ ├── Connection.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception │ │ │ │ │ └── Error.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── SQLite3 │ │ │ │ ├── Connection.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Result.php │ │ │ │ └── Statement.php │ │ │ ├── ServerInfoAwareConnection.php │ │ │ └── Statement.php │ │ ├── DriverManager.php │ │ ├── Event │ │ │ ├── ConnectionEventArgs.php │ │ │ ├── Listeners │ │ │ │ ├── OracleSessionInit.php │ │ │ │ ├── SQLSessionInit.php │ │ │ │ └── SQLiteSessionInit.php │ │ │ ├── SchemaAlterTableAddColumnEventArgs.php │ │ │ ├── SchemaAlterTableChangeColumnEventArgs.php │ │ │ ├── SchemaAlterTableEventArgs.php │ │ │ ├── SchemaAlterTableRemoveColumnEventArgs.php │ │ │ ├── SchemaAlterTableRenameColumnEventArgs.php │ │ │ ├── SchemaColumnDefinitionEventArgs.php │ │ │ ├── SchemaCreateTableColumnEventArgs.php │ │ │ ├── SchemaCreateTableEventArgs.php │ │ │ ├── SchemaDropTableEventArgs.php │ │ │ ├── SchemaEventArgs.php │ │ │ ├── SchemaIndexDefinitionEventArgs.php │ │ │ ├── TransactionBeginEventArgs.php │ │ │ ├── TransactionCommitEventArgs.php │ │ │ ├── TransactionEventArgs.php │ │ │ └── TransactionRollBackEventArgs.php │ │ ├── Events.php │ │ ├── Exception.php │ │ ├── Exception │ │ │ ├── ConnectionException.php │ │ │ ├── ConnectionLost.php │ │ │ ├── ConstraintViolationException.php │ │ │ ├── DatabaseDoesNotExist.php │ │ │ ├── DatabaseObjectExistsException.php │ │ │ ├── DatabaseObjectNotFoundException.php │ │ │ ├── DatabaseRequired.php │ │ │ ├── DeadlockException.php │ │ │ ├── DriverException.php │ │ │ ├── ForeignKeyConstraintViolationException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidFieldNameException.php │ │ │ ├── InvalidLockMode.php │ │ │ ├── LockWaitTimeoutException.php │ │ │ ├── MalformedDsnException.php │ │ │ ├── NoKeyValue.php │ │ │ ├── NonUniqueFieldNameException.php │ │ │ ├── NotNullConstraintViolationException.php │ │ │ ├── ReadOnlyException.php │ │ │ ├── RetryableException.php │ │ │ ├── SchemaDoesNotExist.php │ │ │ ├── ServerException.php │ │ │ ├── SyntaxErrorException.php │ │ │ ├── TableExistsException.php │ │ │ ├── TableNotFoundException.php │ │ │ └── UniqueConstraintViolationException.php │ │ ├── ExpandArrayParameters.php │ │ ├── FetchMode.php │ │ ├── Id │ │ │ ├── TableGenerator.php │ │ │ └── TableGeneratorSchemaVisitor.php │ │ ├── LockMode.php │ │ ├── Logging │ │ │ ├── Connection.php │ │ │ ├── DebugStack.php │ │ │ ├── Driver.php │ │ │ ├── LoggerChain.php │ │ │ ├── Middleware.php │ │ │ ├── SQLLogger.php │ │ │ └── Statement.php │ │ ├── ParameterType.php │ │ ├── Platforms │ │ │ ├── AbstractMySQLPlatform.php │ │ │ ├── AbstractPlatform.php │ │ │ ├── DB2Platform.php │ │ │ ├── DateIntervalUnit.php │ │ │ ├── Keywords │ │ │ │ ├── DB2Keywords.php │ │ │ │ ├── KeywordList.php │ │ │ │ ├── MariaDBKeywords.php │ │ │ │ ├── MariaDb102Keywords.php │ │ │ │ ├── MySQL57Keywords.php │ │ │ │ ├── MySQL80Keywords.php │ │ │ │ ├── MySQLKeywords.php │ │ │ │ ├── OracleKeywords.php │ │ │ │ ├── PostgreSQL100Keywords.php │ │ │ │ ├── PostgreSQL94Keywords.php │ │ │ │ ├── PostgreSQLKeywords.php │ │ │ │ ├── ReservedKeywordsValidator.php │ │ │ │ ├── SQLServer2012Keywords.php │ │ │ │ ├── SQLServerKeywords.php │ │ │ │ └── SQLiteKeywords.php │ │ │ ├── MariaDBPlatform.php │ │ │ ├── MariaDb1027Platform.php │ │ │ ├── MySQL │ │ │ │ ├── CollationMetadataProvider.php │ │ │ │ ├── CollationMetadataProvider │ │ │ │ │ ├── CachingCollationMetadataProvider.php │ │ │ │ │ └── ConnectionCollationMetadataProvider.php │ │ │ │ └── Comparator.php │ │ │ ├── MySQL57Platform.php │ │ │ ├── MySQL80Platform.php │ │ │ ├── MySQLPlatform.php │ │ │ ├── OraclePlatform.php │ │ │ ├── PostgreSQL100Platform.php │ │ │ ├── PostgreSQL94Platform.php │ │ │ ├── PostgreSQLPlatform.php │ │ │ ├── SQLServer │ │ │ │ └── Comparator.php │ │ │ ├── SQLServer2012Platform.php │ │ │ ├── SQLServerPlatform.php │ │ │ ├── SQLite │ │ │ │ └── Comparator.php │ │ │ ├── SqlitePlatform.php │ │ │ └── TrimMode.php │ │ ├── Portability │ │ │ ├── Connection.php │ │ │ ├── Converter.php │ │ │ ├── Driver.php │ │ │ ├── Middleware.php │ │ │ ├── OptimizeFlags.php │ │ │ ├── Result.php │ │ │ └── Statement.php │ │ ├── Query.php │ │ ├── Query │ │ │ ├── Expression │ │ │ │ ├── CompositeExpression.php │ │ │ │ └── ExpressionBuilder.php │ │ │ ├── QueryBuilder.php │ │ │ └── QueryException.php │ │ ├── Result.php │ │ ├── SQL │ │ │ ├── Builder │ │ │ │ ├── CreateSchemaObjectsSQLBuilder.php │ │ │ │ └── DropSchemaObjectsSQLBuilder.php │ │ │ ├── Parser.php │ │ │ └── Parser │ │ │ │ ├── Exception.php │ │ │ │ ├── Exception │ │ │ │ └── RegularExpressionError.php │ │ │ │ └── Visitor.php │ │ ├── Schema │ │ │ ├── AbstractAsset.php │ │ │ ├── AbstractSchemaManager.php │ │ │ ├── Column.php │ │ │ ├── ColumnDiff.php │ │ │ ├── Comparator.php │ │ │ ├── Constraint.php │ │ │ ├── DB2SchemaManager.php │ │ │ ├── DefaultSchemaManagerFactory.php │ │ │ ├── Exception │ │ │ │ ├── ColumnAlreadyExists.php │ │ │ │ ├── ColumnDoesNotExist.php │ │ │ │ ├── ForeignKeyDoesNotExist.php │ │ │ │ ├── IndexAlreadyExists.php │ │ │ │ ├── IndexDoesNotExist.php │ │ │ │ ├── IndexNameInvalid.php │ │ │ │ ├── InvalidTableName.php │ │ │ │ ├── NamedForeignKeyRequired.php │ │ │ │ ├── NamespaceAlreadyExists.php │ │ │ │ ├── SequenceAlreadyExists.php │ │ │ │ ├── SequenceDoesNotExist.php │ │ │ │ ├── TableAlreadyExists.php │ │ │ │ ├── TableDoesNotExist.php │ │ │ │ ├── UniqueConstraintDoesNotExist.php │ │ │ │ └── UnknownColumnOption.php │ │ │ ├── ForeignKeyConstraint.php │ │ │ ├── Identifier.php │ │ │ ├── Index.php │ │ │ ├── LegacySchemaManagerFactory.php │ │ │ ├── MySQLSchemaManager.php │ │ │ ├── OracleSchemaManager.php │ │ │ ├── PostgreSQLSchemaManager.php │ │ │ ├── SQLServerSchemaManager.php │ │ │ ├── Schema.php │ │ │ ├── SchemaConfig.php │ │ │ ├── SchemaDiff.php │ │ │ ├── SchemaException.php │ │ │ ├── SchemaManagerFactory.php │ │ │ ├── Sequence.php │ │ │ ├── SqliteSchemaManager.php │ │ │ ├── Table.php │ │ │ ├── TableDiff.php │ │ │ ├── UniqueConstraint.php │ │ │ ├── View.php │ │ │ └── Visitor │ │ │ │ ├── AbstractVisitor.php │ │ │ │ ├── CreateSchemaSqlCollector.php │ │ │ │ ├── DropSchemaSqlCollector.php │ │ │ │ ├── Graphviz.php │ │ │ │ ├── NamespaceVisitor.php │ │ │ │ ├── RemoveNamespacedAssets.php │ │ │ │ └── Visitor.php │ │ ├── Statement.php │ │ ├── Tools │ │ │ ├── Console │ │ │ │ ├── Command │ │ │ │ │ ├── ReservedWordsCommand.php │ │ │ │ │ └── RunSqlCommand.php │ │ │ │ ├── ConnectionNotFound.php │ │ │ │ ├── ConnectionProvider.php │ │ │ │ ├── ConnectionProvider │ │ │ │ │ └── SingleConnectionProvider.php │ │ │ │ └── ConsoleRunner.php │ │ │ └── DsnParser.php │ │ ├── TransactionIsolationLevel.php │ │ ├── Types │ │ │ ├── ArrayType.php │ │ │ ├── AsciiStringType.php │ │ │ ├── BigIntType.php │ │ │ ├── BinaryType.php │ │ │ ├── BlobType.php │ │ │ ├── BooleanType.php │ │ │ ├── ConversionException.php │ │ │ ├── DateImmutableType.php │ │ │ ├── DateIntervalType.php │ │ │ ├── DateTimeImmutableType.php │ │ │ ├── DateTimeType.php │ │ │ ├── DateTimeTzImmutableType.php │ │ │ ├── DateTimeTzType.php │ │ │ ├── DateType.php │ │ │ ├── DecimalType.php │ │ │ ├── FloatType.php │ │ │ ├── GuidType.php │ │ │ ├── IntegerType.php │ │ │ ├── JsonType.php │ │ │ ├── ObjectType.php │ │ │ ├── PhpDateTimeMappingType.php │ │ │ ├── PhpIntegerMappingType.php │ │ │ ├── SimpleArrayType.php │ │ │ ├── SmallIntType.php │ │ │ ├── StringType.php │ │ │ ├── TextType.php │ │ │ ├── TimeImmutableType.php │ │ │ ├── TimeType.php │ │ │ ├── Type.php │ │ │ ├── TypeRegistry.php │ │ │ ├── Types.php │ │ │ ├── VarDateTimeImmutableType.php │ │ │ └── VarDateTimeType.php │ │ └── VersionAwarePlatformDriver.php │ └── static-analysis │ │ ├── driver-manager-get-available-drivers-return-type.php │ │ └── driver-manager-retrieves-correct-connection-type.php ├── deprecations │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── lib │ │ └── Doctrine │ │ │ └── Deprecations │ │ │ ├── Deprecation.php │ │ │ └── PHPUnit │ │ │ └── VerifyDeprecations.php │ └── phpcs.xml ├── doctrine-bundle │ ├── .doctrine-project.json │ ├── .symfony.bundle.yaml │ ├── Attribute │ │ ├── AsDoctrineListener.php │ │ ├── AsEntityListener.php │ │ └── AsMiddleware.php │ ├── CacheWarmer │ │ └── DoctrineMetadataCacheWarmer.php │ ├── Command │ │ ├── CreateDatabaseDoctrineCommand.php │ │ ├── DoctrineCommand.php │ │ ├── DropDatabaseDoctrineCommand.php │ │ ├── ImportMappingDoctrineCommand.php │ │ └── Proxy │ │ │ ├── ClearMetadataCacheDoctrineCommand.php │ │ │ ├── ClearQueryCacheDoctrineCommand.php │ │ │ ├── ClearResultCacheDoctrineCommand.php │ │ │ ├── CollectionRegionDoctrineCommand.php │ │ │ ├── ConvertMappingDoctrineCommand.php │ │ │ ├── CreateSchemaDoctrineCommand.php │ │ │ ├── DoctrineCommandHelper.php │ │ │ ├── DropSchemaDoctrineCommand.php │ │ │ ├── EnsureProductionSettingsDoctrineCommand.php │ │ │ ├── EntityRegionCacheDoctrineCommand.php │ │ │ ├── InfoDoctrineCommand.php │ │ │ ├── OrmProxyCommand.php │ │ │ ├── QueryRegionCacheDoctrineCommand.php │ │ │ ├── RunDqlDoctrineCommand.php │ │ │ ├── RunSqlDoctrineCommand.php │ │ │ ├── UpdateSchemaDoctrineCommand.php │ │ │ └── ValidateSchemaCommand.php │ ├── ConnectionFactory.php │ ├── Controller │ │ └── ProfilerController.php │ ├── DataCollector │ │ └── DoctrineDataCollector.php │ ├── Dbal │ │ ├── BlacklistSchemaAssetFilter.php │ │ ├── Logging │ │ │ └── BacktraceLogger.php │ │ ├── ManagerRegistryAwareConnectionProvider.php │ │ ├── RegexSchemaAssetFilter.php │ │ └── SchemaAssetsFilterManager.php │ ├── DependencyInjection │ │ ├── Compiler │ │ │ ├── CacheCompatibilityPass.php │ │ │ ├── CacheSchemaSubscriberPass.php │ │ │ ├── DbalSchemaFilterPass.php │ │ │ ├── DoctrineOrmMappingsPass.php │ │ │ ├── EntityListenerPass.php │ │ │ ├── IdGeneratorPass.php │ │ │ ├── MiddlewaresPass.php │ │ │ ├── RemoveLoggingMiddlewarePass.php │ │ │ ├── RemoveProfilerControllerPass.php │ │ │ ├── ServiceRepositoryCompilerPass.php │ │ │ └── WellKnownSchemaFilterPass.php │ │ ├── Configuration.php │ │ └── DoctrineExtension.php │ ├── DoctrineBundle.php │ ├── EventSubscriber │ │ └── EventSubscriberInterface.php │ ├── LICENSE │ ├── ManagerConfigurator.php │ ├── Mapping │ │ ├── ClassMetadataCollection.php │ │ ├── ClassMetadataFactory.php │ │ ├── ContainerEntityListenerResolver.php │ │ ├── DisconnectedMetadataFactory.php │ │ ├── EntityListenerServiceResolver.php │ │ └── MappingDriver.php │ ├── Middleware │ │ ├── BacktraceDebugDataHolder.php │ │ ├── ConnectionNameAwareInterface.php │ │ └── DebugMiddleware.php │ ├── Orm │ │ └── ManagerRegistryAwareEntityManagerProvider.php │ ├── README.md │ ├── Registry.php │ ├── Repository │ │ ├── ContainerRepositoryFactory.php │ │ ├── LazyServiceEntityRepository.php │ │ ├── ServiceEntityRepository.php │ │ └── ServiceEntityRepositoryInterface.php │ ├── Resources │ │ ├── config │ │ │ ├── dbal.xml │ │ │ ├── messenger.xml │ │ │ ├── middlewares.xml │ │ │ ├── orm.xml │ │ │ └── schema │ │ │ │ └── doctrine-1.0.xsd │ │ └── views │ │ │ └── Collector │ │ │ ├── db.html.twig │ │ │ ├── explain.html.twig │ │ │ └── icon.svg │ ├── Twig │ │ └── DoctrineExtension.php │ ├── UPGRADE-1.11.md │ ├── UPGRADE-1.12.md │ ├── UPGRADE-2.0.md │ ├── UPGRADE-2.1.md │ ├── UPGRADE-2.2.md │ ├── UPGRADE-2.3.md │ ├── UPGRADE-2.4.md │ ├── UPGRADE-2.5.md │ ├── UPGRADE-2.6.md │ ├── UPGRADE-2.8.md │ ├── UPGRADE-3.0.md │ ├── composer.json │ ├── phpcs.xml.dist │ └── psalm.xml.dist ├── doctrine-migrations-bundle │ ├── .symfony.bundle.yaml │ ├── Changelog.md │ ├── Collector │ │ ├── MigrationsCollector.php │ │ └── MigrationsFlattener.php │ ├── DependencyInjection │ │ ├── CompilerPass │ │ │ └── ConfigureDependencyFactoryPass.php │ │ ├── Configuration.php │ │ └── DoctrineMigrationsExtension.php │ ├── DoctrineMigrationsBundle.php │ ├── LICENSE │ ├── MigrationsFactory │ │ └── ContainerAwareMigrationFactory.php │ ├── README.markdown │ ├── Resources │ │ ├── config │ │ │ ├── schema │ │ │ │ └── doctrine_migrations-3.0.xsd │ │ │ └── services.xml │ │ ├── doc │ │ │ └── index.rst │ │ └── views │ │ │ └── Collector │ │ │ ├── icon.svg │ │ │ └── migrations.html.twig │ ├── UPGRADE.md │ ├── composer.json │ ├── phpstan.neon.dist │ ├── psalm-baseline.xml │ └── psalm.xml ├── event-manager │ ├── LICENSE │ ├── README.md │ ├── UPGRADE.md │ ├── composer.json │ ├── phpstan.neon.dist │ ├── psalm.xml │ └── src │ │ ├── EventArgs.php │ │ ├── EventManager.php │ │ └── EventSubscriber.php ├── inflector │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── docs │ │ └── en │ │ │ └── index.rst │ └── lib │ │ └── Doctrine │ │ └── Inflector │ │ ├── CachedWordInflector.php │ │ ├── GenericLanguageInflectorFactory.php │ │ ├── Inflector.php │ │ ├── InflectorFactory.php │ │ ├── Language.php │ │ ├── LanguageInflectorFactory.php │ │ ├── NoopWordInflector.php │ │ ├── Rules │ │ ├── English │ │ │ ├── Inflectible.php │ │ │ ├── InflectorFactory.php │ │ │ ├── Rules.php │ │ │ └── Uninflected.php │ │ ├── French │ │ │ ├── Inflectible.php │ │ │ ├── InflectorFactory.php │ │ │ ├── Rules.php │ │ │ └── Uninflected.php │ │ ├── NorwegianBokmal │ │ │ ├── Inflectible.php │ │ │ ├── InflectorFactory.php │ │ │ ├── Rules.php │ │ │ └── Uninflected.php │ │ ├── Pattern.php │ │ ├── Patterns.php │ │ ├── Portuguese │ │ │ ├── Inflectible.php │ │ │ ├── InflectorFactory.php │ │ │ ├── Rules.php │ │ │ └── Uninflected.php │ │ ├── Ruleset.php │ │ ├── Spanish │ │ │ ├── Inflectible.php │ │ │ ├── InflectorFactory.php │ │ │ ├── Rules.php │ │ │ └── Uninflected.php │ │ ├── Substitution.php │ │ ├── Substitutions.php │ │ ├── Transformation.php │ │ ├── Transformations.php │ │ ├── Turkish │ │ │ ├── Inflectible.php │ │ │ ├── InflectorFactory.php │ │ │ ├── Rules.php │ │ │ └── Uninflected.php │ │ └── Word.php │ │ ├── RulesetInflector.php │ │ └── WordInflector.php ├── instantiator │ ├── .doctrine-project.json │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── docs │ │ └── en │ │ │ ├── index.rst │ │ │ └── sidebar.rst │ ├── psalm.xml │ └── src │ │ └── Doctrine │ │ └── Instantiator │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ └── UnexpectedValueException.php │ │ ├── Instantiator.php │ │ └── InstantiatorInterface.php ├── lexer │ ├── LICENSE │ ├── README.md │ ├── UPGRADE.md │ ├── composer.json │ └── src │ │ ├── AbstractLexer.php │ │ └── Token.php ├── migrations │ ├── LICENSE │ ├── README.md │ ├── UPGRADE.md │ ├── bin │ │ ├── doctrine-migrations │ │ └── doctrine-migrations.php │ ├── build-phar.sh │ ├── composer.json │ ├── docs │ │ └── en │ │ │ ├── explanation │ │ │ └── implicit-commits.rst │ │ │ ├── index.rst │ │ │ ├── reference │ │ │ ├── configuration.rst │ │ │ ├── custom-configuration.rst │ │ │ ├── custom-integration.rst │ │ │ ├── events.rst │ │ │ ├── generating-migrations.rst │ │ │ ├── integrations.rst │ │ │ ├── introduction.rst │ │ │ ├── managing-migrations.rst │ │ │ ├── migration-classes.rst │ │ │ └── version-numbers.rst │ │ │ └── sidebar.rst │ ├── download-box.sh │ ├── lib │ │ └── Doctrine │ │ │ └── Migrations │ │ │ ├── AbstractMigration.php │ │ │ ├── Configuration │ │ │ ├── Configuration.php │ │ │ ├── Connection │ │ │ │ ├── ConfigurationFile.php │ │ │ │ ├── ConnectionLoader.php │ │ │ │ ├── ConnectionRegistryConnection.php │ │ │ │ ├── Exception │ │ │ │ │ ├── ConnectionNotSpecified.php │ │ │ │ │ ├── FileNotFound.php │ │ │ │ │ ├── InvalidConfiguration.php │ │ │ │ │ └── LoaderException.php │ │ │ │ └── ExistingConnection.php │ │ │ ├── EntityManager │ │ │ │ ├── ConfigurationFile.php │ │ │ │ ├── EntityManagerLoader.php │ │ │ │ ├── Exception │ │ │ │ │ ├── FileNotFound.php │ │ │ │ │ ├── InvalidConfiguration.php │ │ │ │ │ └── LoaderException.php │ │ │ │ ├── ExistingEntityManager.php │ │ │ │ └── ManagerRegistryEntityManager.php │ │ │ ├── Exception │ │ │ │ ├── ConfigurationException.php │ │ │ │ ├── FileNotFound.php │ │ │ │ ├── FrozenConfiguration.php │ │ │ │ ├── InvalidLoader.php │ │ │ │ └── UnknownConfigurationValue.php │ │ │ └── Migration │ │ │ │ ├── ConfigurationArray.php │ │ │ │ ├── ConfigurationFile.php │ │ │ │ ├── ConfigurationFileWithFallback.php │ │ │ │ ├── ConfigurationLoader.php │ │ │ │ ├── Exception │ │ │ │ ├── InvalidConfigurationFormat.php │ │ │ │ ├── InvalidConfigurationKey.php │ │ │ │ ├── JsonNotValid.php │ │ │ │ ├── MissingConfigurationFile.php │ │ │ │ ├── XmlNotValid.php │ │ │ │ ├── YamlNotAvailable.php │ │ │ │ └── YamlNotValid.php │ │ │ │ ├── ExistingConfiguration.php │ │ │ │ ├── FormattedFile.php │ │ │ │ ├── JsonFile.php │ │ │ │ ├── PhpFile.php │ │ │ │ ├── XML │ │ │ │ └── configuration.xsd │ │ │ │ ├── XmlFile.php │ │ │ │ └── YamlFile.php │ │ │ ├── DbalMigrator.php │ │ │ ├── DependencyFactory.php │ │ │ ├── Event │ │ │ ├── Listeners │ │ │ │ └── AutoCommitListener.php │ │ │ ├── MigrationsEventArgs.php │ │ │ └── MigrationsVersionEventArgs.php │ │ │ ├── EventDispatcher.php │ │ │ ├── Events.php │ │ │ ├── Exception │ │ │ ├── AbortMigration.php │ │ │ ├── AlreadyAtVersion.php │ │ │ ├── ControlException.php │ │ │ ├── DependencyException.php │ │ │ ├── DuplicateMigrationVersion.php │ │ │ ├── FrozenDependencies.php │ │ │ ├── IrreversibleMigration.php │ │ │ ├── MetadataStorageError.php │ │ │ ├── MigrationClassNotFound.php │ │ │ ├── MigrationConfigurationConflict.php │ │ │ ├── MigrationException.php │ │ │ ├── MigrationNotAvailable.php │ │ │ ├── MigrationNotExecuted.php │ │ │ ├── MissingDependency.php │ │ │ ├── NoMigrationsFoundWithCriteria.php │ │ │ ├── NoMigrationsToExecute.php │ │ │ ├── NoTablesFound.php │ │ │ ├── PlanAlreadyExecuted.php │ │ │ ├── RollupFailed.php │ │ │ ├── SkipMigration.php │ │ │ └── UnknownMigrationVersion.php │ │ │ ├── FileQueryWriter.php │ │ │ ├── FilesystemMigrationsRepository.php │ │ │ ├── Finder │ │ │ ├── Exception │ │ │ │ ├── FinderException.php │ │ │ │ ├── InvalidDirectory.php │ │ │ │ └── NameIsReserved.php │ │ │ ├── Finder.php │ │ │ ├── GlobFinder.php │ │ │ ├── MigrationFinder.php │ │ │ └── RecursiveRegexFinder.php │ │ │ ├── Generator │ │ │ ├── ClassNameGenerator.php │ │ │ ├── ConcatenationFileBuilder.php │ │ │ ├── DiffGenerator.php │ │ │ ├── Exception │ │ │ │ ├── GeneratorException.php │ │ │ │ ├── InvalidTemplateSpecified.php │ │ │ │ └── NoChangesDetected.php │ │ │ ├── FileBuilder.php │ │ │ ├── Generator.php │ │ │ └── SqlGenerator.php │ │ │ ├── InlineParameterFormatter.php │ │ │ ├── Metadata │ │ │ ├── AvailableMigration.php │ │ │ ├── AvailableMigrationsList.php │ │ │ ├── AvailableMigrationsSet.php │ │ │ ├── ExecutedMigration.php │ │ │ ├── ExecutedMigrationsList.php │ │ │ ├── MigrationPlan.php │ │ │ ├── MigrationPlanList.php │ │ │ └── Storage │ │ │ │ ├── MetadataStorage.php │ │ │ │ ├── MetadataStorageConfiguration.php │ │ │ │ ├── TableMetadataStorage.php │ │ │ │ └── TableMetadataStorageConfiguration.php │ │ │ ├── MigrationsRepository.php │ │ │ ├── Migrator.php │ │ │ ├── MigratorConfiguration.php │ │ │ ├── ParameterFormatter.php │ │ │ ├── Provider │ │ │ ├── DBALSchemaDiffProvider.php │ │ │ ├── EmptySchemaProvider.php │ │ │ ├── Exception │ │ │ │ ├── NoMappingFound.php │ │ │ │ └── ProviderException.php │ │ │ ├── LazySchemaDiffProvider.php │ │ │ ├── OrmSchemaProvider.php │ │ │ ├── SchemaDiffProvider.php │ │ │ ├── SchemaProvider.php │ │ │ └── StubSchemaProvider.php │ │ │ ├── Query │ │ │ ├── Exception │ │ │ │ └── InvalidArguments.php │ │ │ └── Query.php │ │ │ ├── QueryWriter.php │ │ │ ├── Rollup.php │ │ │ ├── SchemaDumper.php │ │ │ ├── Tools │ │ │ ├── BooleanStringFormatter.php │ │ │ ├── BytesFormatter.php │ │ │ ├── Console │ │ │ │ ├── Command │ │ │ │ │ ├── CurrentCommand.php │ │ │ │ │ ├── DiffCommand.php │ │ │ │ │ ├── DoctrineCommand.php │ │ │ │ │ ├── DumpSchemaCommand.php │ │ │ │ │ ├── ExecuteCommand.php │ │ │ │ │ ├── GenerateCommand.php │ │ │ │ │ ├── LatestCommand.php │ │ │ │ │ ├── ListCommand.php │ │ │ │ │ ├── MigrateCommand.php │ │ │ │ │ ├── RollupCommand.php │ │ │ │ │ ├── StatusCommand.php │ │ │ │ │ ├── SyncMetadataCommand.php │ │ │ │ │ ├── UpToDateCommand.php │ │ │ │ │ └── VersionCommand.php │ │ │ │ ├── ConsoleInputMigratorConfigurationFactory.php │ │ │ │ ├── ConsoleLogger.php │ │ │ │ ├── ConsoleRunner.php │ │ │ │ ├── Exception │ │ │ │ │ ├── ConsoleException.php │ │ │ │ │ ├── DependenciesNotSatisfied.php │ │ │ │ │ ├── DirectoryDoesNotExist.php │ │ │ │ │ ├── FileTypeNotSupported.php │ │ │ │ │ ├── InvalidOptionUsage.php │ │ │ │ │ ├── SchemaDumpRequiresNoMigrations.php │ │ │ │ │ ├── VersionAlreadyExists.php │ │ │ │ │ └── VersionDoesNotExist.php │ │ │ │ ├── Helper │ │ │ │ │ ├── ConfigurationHelper.php │ │ │ │ │ ├── MigrationDirectoryHelper.php │ │ │ │ │ └── MigrationStatusInfosHelper.php │ │ │ │ └── MigratorConfigurationFactory.php │ │ │ └── TransactionHelper.php │ │ │ └── Version │ │ │ ├── AliasResolver.php │ │ │ ├── AlphabeticalComparator.php │ │ │ ├── Comparator.php │ │ │ ├── CurrentMigrationStatusCalculator.php │ │ │ ├── DbalExecutor.php │ │ │ ├── DbalMigrationFactory.php │ │ │ ├── DefaultAliasResolver.php │ │ │ ├── Direction.php │ │ │ ├── ExecutionResult.php │ │ │ ├── Executor.php │ │ │ ├── MigrationFactory.php │ │ │ ├── MigrationPlanCalculator.php │ │ │ ├── MigrationStatusCalculator.php │ │ │ ├── SortedMigrationPlanCalculator.php │ │ │ ├── State.php │ │ │ └── Version.php │ └── phpstan.neon.dist ├── orm │ ├── .gitmodules │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── UPGRADE.md │ ├── bin │ │ ├── doctrine │ │ ├── doctrine-pear.php │ │ ├── doctrine.bat │ │ └── doctrine.php │ ├── composer.json │ ├── doctrine-mapping.xsd │ └── lib │ │ └── Doctrine │ │ └── ORM │ │ ├── AbstractQuery.php │ │ ├── Cache.php │ │ ├── Cache │ │ ├── AssociationCacheEntry.php │ │ ├── CacheConfiguration.php │ │ ├── CacheEntry.php │ │ ├── CacheException.php │ │ ├── CacheFactory.php │ │ ├── CacheKey.php │ │ ├── CollectionCacheEntry.php │ │ ├── CollectionCacheKey.php │ │ ├── CollectionHydrator.php │ │ ├── ConcurrentRegion.php │ │ ├── DefaultCache.php │ │ ├── DefaultCacheFactory.php │ │ ├── DefaultCollectionHydrator.php │ │ ├── DefaultEntityHydrator.php │ │ ├── DefaultQueryCache.php │ │ ├── EntityCacheEntry.php │ │ ├── EntityCacheKey.php │ │ ├── EntityHydrator.php │ │ ├── Exception │ │ │ ├── CacheException.php │ │ │ ├── CannotUpdateReadOnlyCollection.php │ │ │ ├── CannotUpdateReadOnlyEntity.php │ │ │ ├── FeatureNotImplemented.php │ │ │ ├── InvalidResultCacheDriver.php │ │ │ ├── MetadataCacheNotConfigured.php │ │ │ ├── MetadataCacheUsesNonPersistentCache.php │ │ │ ├── NonCacheableEntity.php │ │ │ ├── NonCacheableEntityAssociation.php │ │ │ ├── QueryCacheNotConfigured.php │ │ │ └── QueryCacheUsesNonPersistentCache.php │ │ ├── Lock.php │ │ ├── LockException.php │ │ ├── Logging │ │ │ ├── CacheLogger.php │ │ │ ├── CacheLoggerChain.php │ │ │ └── StatisticsCacheLogger.php │ │ ├── MultiGetRegion.php │ │ ├── Persister │ │ │ ├── CachedPersister.php │ │ │ ├── Collection │ │ │ │ ├── AbstractCollectionPersister.php │ │ │ │ ├── CachedCollectionPersister.php │ │ │ │ ├── NonStrictReadWriteCachedCollectionPersister.php │ │ │ │ ├── ReadOnlyCachedCollectionPersister.php │ │ │ │ └── ReadWriteCachedCollectionPersister.php │ │ │ └── Entity │ │ │ │ ├── AbstractEntityPersister.php │ │ │ │ ├── CachedEntityPersister.php │ │ │ │ ├── NonStrictReadWriteCachedEntityPersister.php │ │ │ │ ├── ReadOnlyCachedEntityPersister.php │ │ │ │ └── ReadWriteCachedEntityPersister.php │ │ ├── QueryCache.php │ │ ├── QueryCacheEntry.php │ │ ├── QueryCacheKey.php │ │ ├── QueryCacheValidator.php │ │ ├── Region.php │ │ ├── Region │ │ │ ├── DefaultMultiGetRegion.php │ │ │ ├── DefaultRegion.php │ │ │ ├── FileLockRegion.php │ │ │ └── UpdateTimestampCache.php │ │ ├── RegionsConfiguration.php │ │ ├── TimestampCacheEntry.php │ │ ├── TimestampCacheKey.php │ │ ├── TimestampQueryCacheValidator.php │ │ └── TimestampRegion.php │ │ ├── Configuration.php │ │ ├── Decorator │ │ └── EntityManagerDecorator.php │ │ ├── EntityManager.php │ │ ├── EntityManagerInterface.php │ │ ├── EntityNotFoundException.php │ │ ├── EntityRepository.php │ │ ├── Event │ │ ├── LifecycleEventArgs.php │ │ ├── ListenersInvoker.php │ │ ├── LoadClassMetadataEventArgs.php │ │ ├── OnClassMetadataNotFoundEventArgs.php │ │ ├── OnClearEventArgs.php │ │ ├── OnFlushEventArgs.php │ │ ├── PostFlushEventArgs.php │ │ ├── PostLoadEventArgs.php │ │ ├── PostPersistEventArgs.php │ │ ├── PostRemoveEventArgs.php │ │ ├── PostUpdateEventArgs.php │ │ ├── PreFlushEventArgs.php │ │ ├── PrePersistEventArgs.php │ │ ├── PreRemoveEventArgs.php │ │ └── PreUpdateEventArgs.php │ │ ├── Events.php │ │ ├── Exception │ │ ├── ConfigurationException.php │ │ ├── EntityManagerClosed.php │ │ ├── EntityMissingAssignedId.php │ │ ├── InvalidEntityRepository.php │ │ ├── InvalidHydrationMode.php │ │ ├── ManagerException.php │ │ ├── MismatchedEventManager.php │ │ ├── MissingIdentifierField.php │ │ ├── MissingMappingDriverImplementation.php │ │ ├── MultipleSelectorsFoundException.php │ │ ├── NamedNativeQueryNotFound.php │ │ ├── NamedQueryNotFound.php │ │ ├── NotSupported.php │ │ ├── ORMException.php │ │ ├── PersisterException.php │ │ ├── ProxyClassesAlwaysRegenerating.php │ │ ├── RepositoryException.php │ │ ├── SchemaToolException.php │ │ ├── UnexpectedAssociationValue.php │ │ ├── UnknownEntityNamespace.php │ │ └── UnrecognizedIdentifierFields.php │ │ ├── Id │ │ ├── AbstractIdGenerator.php │ │ ├── AssignedGenerator.php │ │ ├── BigIntegerIdentityGenerator.php │ │ ├── IdentityGenerator.php │ │ ├── SequenceGenerator.php │ │ ├── TableGenerator.php │ │ └── UuidGenerator.php │ │ ├── Internal │ │ ├── CommitOrder │ │ │ ├── Edge.php │ │ │ ├── Vertex.php │ │ │ └── VertexState.php │ │ ├── CommitOrderCalculator.php │ │ ├── Hydration │ │ │ ├── AbstractHydrator.php │ │ │ ├── ArrayHydrator.php │ │ │ ├── HydrationException.php │ │ │ ├── IterableResult.php │ │ │ ├── ObjectHydrator.php │ │ │ ├── ScalarColumnHydrator.php │ │ │ ├── ScalarHydrator.php │ │ │ ├── SimpleObjectHydrator.php │ │ │ └── SingleScalarHydrator.php │ │ ├── HydrationCompleteHandler.php │ │ └── SQLResultCasing.php │ │ ├── LazyCriteriaCollection.php │ │ ├── Mapping │ │ ├── Annotation.php │ │ ├── AnsiQuoteStrategy.php │ │ ├── AssociationOverride.php │ │ ├── AssociationOverrides.php │ │ ├── AttributeOverride.php │ │ ├── AttributeOverrides.php │ │ ├── Builder │ │ │ ├── AssociationBuilder.php │ │ │ ├── ClassMetadataBuilder.php │ │ │ ├── EmbeddedBuilder.php │ │ │ ├── EntityListenerBuilder.php │ │ │ ├── FieldBuilder.php │ │ │ ├── ManyToManyAssociationBuilder.php │ │ │ └── OneToManyAssociationBuilder.php │ │ ├── Cache.php │ │ ├── ChainTypedFieldMapper.php │ │ ├── ChangeTrackingPolicy.php │ │ ├── ClassMetadata.php │ │ ├── ClassMetadataFactory.php │ │ ├── ClassMetadataInfo.php │ │ ├── Column.php │ │ ├── ColumnResult.php │ │ ├── CustomIdGenerator.php │ │ ├── DefaultEntityListenerResolver.php │ │ ├── DefaultNamingStrategy.php │ │ ├── DefaultQuoteStrategy.php │ │ ├── DefaultTypedFieldMapper.php │ │ ├── DiscriminatorColumn.php │ │ ├── DiscriminatorMap.php │ │ ├── Driver │ │ │ ├── AnnotationDriver.php │ │ │ ├── AttributeDriver.php │ │ │ ├── AttributeReader.php │ │ │ ├── CompatibilityAnnotationDriver.php │ │ │ ├── DatabaseDriver.php │ │ │ ├── DriverChain.php │ │ │ ├── PHPDriver.php │ │ │ ├── RepeatableAttributeCollection.php │ │ │ ├── SimplifiedXmlDriver.php │ │ │ ├── SimplifiedYamlDriver.php │ │ │ ├── StaticPHPDriver.php │ │ │ ├── XmlDriver.php │ │ │ └── YamlDriver.php │ │ ├── Embeddable.php │ │ ├── Embedded.php │ │ ├── Entity.php │ │ ├── EntityListenerResolver.php │ │ ├── EntityListeners.php │ │ ├── EntityResult.php │ │ ├── Exception │ │ │ ├── CannotGenerateIds.php │ │ │ ├── InvalidCustomGenerator.php │ │ │ └── UnknownGeneratorType.php │ │ ├── FieldResult.php │ │ ├── GeneratedValue.php │ │ ├── HasLifecycleCallbacks.php │ │ ├── Id.php │ │ ├── Index.php │ │ ├── InheritanceType.php │ │ ├── InverseJoinColumn.php │ │ ├── JoinColumn.php │ │ ├── JoinColumnProperties.php │ │ ├── JoinColumns.php │ │ ├── JoinTable.php │ │ ├── ManyToMany.php │ │ ├── ManyToOne.php │ │ ├── MappedSuperclass.php │ │ ├── MappingAttribute.php │ │ ├── MappingException.php │ │ ├── NamedNativeQueries.php │ │ ├── NamedNativeQuery.php │ │ ├── NamedQueries.php │ │ ├── NamedQuery.php │ │ ├── NamingStrategy.php │ │ ├── OneToMany.php │ │ ├── OneToOne.php │ │ ├── OrderBy.php │ │ ├── PostLoad.php │ │ ├── PostPersist.php │ │ ├── PostRemove.php │ │ ├── PostUpdate.php │ │ ├── PreFlush.php │ │ ├── PrePersist.php │ │ ├── PreRemove.php │ │ ├── PreUpdate.php │ │ ├── QuoteStrategy.php │ │ ├── Reflection │ │ │ └── ReflectionPropertiesGetter.php │ │ ├── ReflectionEmbeddedProperty.php │ │ ├── ReflectionEnumProperty.php │ │ ├── ReflectionReadonlyProperty.php │ │ ├── SequenceGenerator.php │ │ ├── SqlResultSetMapping.php │ │ ├── SqlResultSetMappings.php │ │ ├── Table.php │ │ ├── TypedFieldMapper.php │ │ ├── UnderscoreNamingStrategy.php │ │ ├── UniqueConstraint.php │ │ └── Version.php │ │ ├── NativeQuery.php │ │ ├── NoResultException.php │ │ ├── NonUniqueResultException.php │ │ ├── ORMException.php │ │ ├── ORMInvalidArgumentException.php │ │ ├── ORMSetup.php │ │ ├── OptimisticLockException.php │ │ ├── PersistentCollection.php │ │ ├── Persisters │ │ ├── Collection │ │ │ ├── AbstractCollectionPersister.php │ │ │ ├── CollectionPersister.php │ │ │ ├── ManyToManyPersister.php │ │ │ └── OneToManyPersister.php │ │ ├── Entity │ │ │ ├── AbstractEntityInheritancePersister.php │ │ │ ├── BasicEntityPersister.php │ │ │ ├── CachedPersisterContext.php │ │ │ ├── EntityPersister.php │ │ │ ├── JoinedSubclassPersister.php │ │ │ └── SingleTablePersister.php │ │ ├── Exception │ │ │ ├── CantUseInOperatorOnCompositeKeys.php │ │ │ ├── InvalidOrientation.php │ │ │ └── UnrecognizedField.php │ │ ├── MatchingAssociationFieldRequiresObject.php │ │ ├── PersisterException.php │ │ ├── SqlExpressionVisitor.php │ │ └── SqlValueVisitor.php │ │ ├── PessimisticLockException.php │ │ ├── Proxy │ │ ├── Autoloader.php │ │ ├── Proxy.php │ │ └── ProxyFactory.php │ │ ├── Query.php │ │ ├── Query │ │ ├── AST │ │ │ ├── ASTException.php │ │ │ ├── AggregateExpression.php │ │ │ ├── ArithmeticExpression.php │ │ │ ├── ArithmeticFactor.php │ │ │ ├── ArithmeticTerm.php │ │ │ ├── BetweenExpression.php │ │ │ ├── CoalesceExpression.php │ │ │ ├── CollectionMemberExpression.php │ │ │ ├── ComparisonExpression.php │ │ │ ├── ConditionalExpression.php │ │ │ ├── ConditionalFactor.php │ │ │ ├── ConditionalPrimary.php │ │ │ ├── ConditionalTerm.php │ │ │ ├── DeleteClause.php │ │ │ ├── DeleteStatement.php │ │ │ ├── EmptyCollectionComparisonExpression.php │ │ │ ├── ExistsExpression.php │ │ │ ├── FromClause.php │ │ │ ├── Functions │ │ │ │ ├── AbsFunction.php │ │ │ │ ├── AvgFunction.php │ │ │ │ ├── BitAndFunction.php │ │ │ │ ├── BitOrFunction.php │ │ │ │ ├── ConcatFunction.php │ │ │ │ ├── CountFunction.php │ │ │ │ ├── CurrentDateFunction.php │ │ │ │ ├── CurrentTimeFunction.php │ │ │ │ ├── CurrentTimestampFunction.php │ │ │ │ ├── DateAddFunction.php │ │ │ │ ├── DateDiffFunction.php │ │ │ │ ├── DateSubFunction.php │ │ │ │ ├── FunctionNode.php │ │ │ │ ├── IdentityFunction.php │ │ │ │ ├── LengthFunction.php │ │ │ │ ├── LocateFunction.php │ │ │ │ ├── LowerFunction.php │ │ │ │ ├── MaxFunction.php │ │ │ │ ├── MinFunction.php │ │ │ │ ├── ModFunction.php │ │ │ │ ├── SizeFunction.php │ │ │ │ ├── SqrtFunction.php │ │ │ │ ├── SubstringFunction.php │ │ │ │ ├── SumFunction.php │ │ │ │ ├── TrimFunction.php │ │ │ │ └── UpperFunction.php │ │ │ ├── GeneralCaseExpression.php │ │ │ ├── GroupByClause.php │ │ │ ├── HavingClause.php │ │ │ ├── IdentificationVariableDeclaration.php │ │ │ ├── InExpression.php │ │ │ ├── InListExpression.php │ │ │ ├── InSubselectExpression.php │ │ │ ├── IndexBy.php │ │ │ ├── InputParameter.php │ │ │ ├── InstanceOfExpression.php │ │ │ ├── Join.php │ │ │ ├── JoinAssociationDeclaration.php │ │ │ ├── JoinAssociationPathExpression.php │ │ │ ├── JoinClassPathExpression.php │ │ │ ├── JoinVariableDeclaration.php │ │ │ ├── LikeExpression.php │ │ │ ├── Literal.php │ │ │ ├── NewObjectExpression.php │ │ │ ├── Node.php │ │ │ ├── NullComparisonExpression.php │ │ │ ├── NullIfExpression.php │ │ │ ├── OrderByClause.php │ │ │ ├── OrderByItem.php │ │ │ ├── ParenthesisExpression.php │ │ │ ├── PartialObjectExpression.php │ │ │ ├── PathExpression.php │ │ │ ├── QuantifiedExpression.php │ │ │ ├── RangeVariableDeclaration.php │ │ │ ├── SelectClause.php │ │ │ ├── SelectExpression.php │ │ │ ├── SelectStatement.php │ │ │ ├── SimpleArithmeticExpression.php │ │ │ ├── SimpleCaseExpression.php │ │ │ ├── SimpleSelectClause.php │ │ │ ├── SimpleSelectExpression.php │ │ │ ├── SimpleWhenClause.php │ │ │ ├── Subselect.php │ │ │ ├── SubselectFromClause.php │ │ │ ├── SubselectIdentificationVariableDeclaration.php │ │ │ ├── TypedExpression.php │ │ │ ├── UpdateClause.php │ │ │ ├── UpdateItem.php │ │ │ ├── UpdateStatement.php │ │ │ ├── WhenClause.php │ │ │ └── WhereClause.php │ │ ├── Exec │ │ │ ├── AbstractSqlExecutor.php │ │ │ ├── MultiTableDeleteExecutor.php │ │ │ ├── MultiTableUpdateExecutor.php │ │ │ ├── SingleSelectExecutor.php │ │ │ └── SingleTableDeleteUpdateExecutor.php │ │ ├── Expr.php │ │ ├── Expr │ │ │ ├── Andx.php │ │ │ ├── Base.php │ │ │ ├── Comparison.php │ │ │ ├── Composite.php │ │ │ ├── From.php │ │ │ ├── Func.php │ │ │ ├── GroupBy.php │ │ │ ├── Join.php │ │ │ ├── Literal.php │ │ │ ├── Math.php │ │ │ ├── OrderBy.php │ │ │ ├── Orx.php │ │ │ └── Select.php │ │ ├── Filter │ │ │ ├── FilterException.php │ │ │ └── SQLFilter.php │ │ ├── FilterCollection.php │ │ ├── Lexer.php │ │ ├── Parameter.php │ │ ├── ParameterTypeInferer.php │ │ ├── Parser.php │ │ ├── ParserResult.php │ │ ├── Printer.php │ │ ├── QueryException.php │ │ ├── QueryExpressionVisitor.php │ │ ├── ResultSetMapping.php │ │ ├── ResultSetMappingBuilder.php │ │ ├── SqlWalker.php │ │ ├── TreeWalker.php │ │ ├── TreeWalkerAdapter.php │ │ ├── TreeWalkerChain.php │ │ └── TreeWalkerChainIterator.php │ │ ├── QueryBuilder.php │ │ ├── Repository │ │ ├── DefaultRepositoryFactory.php │ │ ├── Exception │ │ │ ├── InvalidFindByCall.php │ │ │ └── InvalidMagicMethodCall.php │ │ └── RepositoryFactory.php │ │ ├── Tools │ │ ├── AttachEntityListenersListener.php │ │ ├── Console │ │ │ ├── Command │ │ │ │ ├── AbstractEntityManagerCommand.php │ │ │ │ ├── ClearCache │ │ │ │ │ ├── CollectionRegionCommand.php │ │ │ │ │ ├── EntityRegionCommand.php │ │ │ │ │ ├── MetadataCommand.php │ │ │ │ │ ├── QueryCommand.php │ │ │ │ │ ├── QueryRegionCommand.php │ │ │ │ │ └── ResultCommand.php │ │ │ │ ├── ConvertDoctrine1SchemaCommand.php │ │ │ │ ├── ConvertMappingCommand.php │ │ │ │ ├── EnsureProductionSettingsCommand.php │ │ │ │ ├── GenerateEntitiesCommand.php │ │ │ │ ├── GenerateProxiesCommand.php │ │ │ │ ├── GenerateRepositoriesCommand.php │ │ │ │ ├── InfoCommand.php │ │ │ │ ├── MappingDescribeCommand.php │ │ │ │ ├── RunDqlCommand.php │ │ │ │ ├── SchemaTool │ │ │ │ │ ├── AbstractCommand.php │ │ │ │ │ ├── CreateCommand.php │ │ │ │ │ ├── DropCommand.php │ │ │ │ │ └── UpdateCommand.php │ │ │ │ └── ValidateSchemaCommand.php │ │ │ ├── ConsoleRunner.php │ │ │ ├── EntityManagerProvider.php │ │ │ ├── EntityManagerProvider │ │ │ │ ├── ConnectionFromManagerProvider.php │ │ │ │ ├── HelperSetManagerProvider.php │ │ │ │ ├── SingleManagerProvider.php │ │ │ │ └── UnknownManagerException.php │ │ │ ├── Helper │ │ │ │ └── EntityManagerHelper.php │ │ │ └── MetadataFilter.php │ │ ├── ConvertDoctrine1Schema.php │ │ ├── DebugUnitOfWorkListener.php │ │ ├── DisconnectedClassMetadataFactory.php │ │ ├── EntityGenerator.php │ │ ├── EntityRepositoryGenerator.php │ │ ├── Event │ │ │ ├── GenerateSchemaEventArgs.php │ │ │ └── GenerateSchemaTableEventArgs.php │ │ ├── Exception │ │ │ ├── MissingColumnException.php │ │ │ └── NotSupported.php │ │ ├── Export │ │ │ ├── ClassMetadataExporter.php │ │ │ ├── Driver │ │ │ │ ├── AbstractExporter.php │ │ │ │ ├── AnnotationExporter.php │ │ │ │ ├── PhpExporter.php │ │ │ │ ├── XmlExporter.php │ │ │ │ └── YamlExporter.php │ │ │ └── ExportException.php │ │ ├── Pagination │ │ │ ├── CountOutputWalker.php │ │ │ ├── CountWalker.php │ │ │ ├── Exception │ │ │ │ └── RowNumberOverFunctionNotEnabled.php │ │ │ ├── LimitSubqueryOutputWalker.php │ │ │ ├── LimitSubqueryWalker.php │ │ │ ├── Paginator.php │ │ │ ├── RowNumberOverFunction.php │ │ │ └── WhereInWalker.php │ │ ├── ResolveTargetEntityListener.php │ │ ├── SchemaTool.php │ │ ├── SchemaValidator.php │ │ ├── Setup.php │ │ ├── ToolEvents.php │ │ └── ToolsException.php │ │ ├── TransactionRequiredException.php │ │ ├── UnexpectedResultException.php │ │ ├── UnitOfWork.php │ │ ├── Utility │ │ ├── HierarchyDiscriminatorResolver.php │ │ ├── IdentifierFlattener.php │ │ └── PersisterHelper.php │ │ └── Version.php ├── persistence │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── UPGRADE.md │ ├── composer.json │ ├── psalm-baseline.xml │ ├── psalm.phpstub │ └── src │ │ └── Persistence │ │ ├── AbstractManagerRegistry.php │ │ ├── ConnectionRegistry.php │ │ ├── Event │ │ ├── LifecycleEventArgs.php │ │ ├── LoadClassMetadataEventArgs.php │ │ ├── ManagerEventArgs.php │ │ ├── OnClearEventArgs.php │ │ └── PreUpdateEventArgs.php │ │ ├── ManagerRegistry.php │ │ ├── Mapping │ │ ├── AbstractClassMetadataFactory.php │ │ ├── ClassMetadata.php │ │ ├── ClassMetadataFactory.php │ │ ├── Driver │ │ │ ├── ColocatedMappingDriver.php │ │ │ ├── DefaultFileLocator.php │ │ │ ├── FileDriver.php │ │ │ ├── FileLocator.php │ │ │ ├── MappingDriver.php │ │ │ ├── MappingDriverChain.php │ │ │ ├── PHPDriver.php │ │ │ ├── StaticPHPDriver.php │ │ │ └── SymfonyFileLocator.php │ │ ├── MappingException.php │ │ ├── ProxyClassNameResolver.php │ │ ├── ReflectionService.php │ │ ├── RuntimeReflectionService.php │ │ └── StaticReflectionService.php │ │ ├── NotifyPropertyChanged.php │ │ ├── ObjectManager.php │ │ ├── ObjectManagerDecorator.php │ │ ├── ObjectRepository.php │ │ ├── PropertyChangedListener.php │ │ ├── Proxy.php │ │ └── Reflection │ │ ├── EnumReflectionProperty.php │ │ ├── RuntimePublicReflectionProperty.php │ │ ├── RuntimeReflectionProperty.php │ │ ├── TypedNoDefaultReflectionProperty.php │ │ ├── TypedNoDefaultReflectionPropertyBase.php │ │ └── TypedNoDefaultRuntimePublicReflectionProperty.php └── sql-formatter │ ├── CONTRIBUTING.md │ ├── LICENSE.txt │ ├── README.md │ ├── bin │ └── sql-formatter │ ├── composer.json │ └── src │ ├── CliHighlighter.php │ ├── Cursor.php │ ├── Highlighter.php │ ├── HtmlHighlighter.php │ ├── NullHighlighter.php │ ├── SqlFormatter.php │ ├── Token.php │ └── Tokenizer.php ├── egulias └── email-validator │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── composer.json │ └── src │ ├── EmailLexer.php │ ├── EmailParser.php │ ├── EmailValidator.php │ ├── MessageIDParser.php │ ├── Parser.php │ ├── Parser │ ├── Comment.php │ ├── CommentStrategy │ │ ├── CommentStrategy.php │ │ ├── DomainComment.php │ │ └── LocalComment.php │ ├── DomainLiteral.php │ ├── DomainPart.php │ ├── DoubleQuote.php │ ├── FoldingWhiteSpace.php │ ├── IDLeftPart.php │ ├── IDRightPart.php │ ├── LocalPart.php │ └── PartParser.php │ ├── Result │ ├── InvalidEmail.php │ ├── MultipleErrors.php │ ├── Reason │ │ ├── AtextAfterCFWS.php │ │ ├── CRLFAtTheEnd.php │ │ ├── CRLFX2.php │ │ ├── CRNoLF.php │ │ ├── CharNotAllowed.php │ │ ├── CommaInDomain.php │ │ ├── CommentsInIDRight.php │ │ ├── ConsecutiveAt.php │ │ ├── ConsecutiveDot.php │ │ ├── DetailedReason.php │ │ ├── DomainAcceptsNoMail.php │ │ ├── DomainHyphened.php │ │ ├── DomainTooLong.php │ │ ├── DotAtEnd.php │ │ ├── DotAtStart.php │ │ ├── EmptyReason.php │ │ ├── ExceptionFound.php │ │ ├── ExpectingATEXT.php │ │ ├── ExpectingCTEXT.php │ │ ├── ExpectingDTEXT.php │ │ ├── ExpectingDomainLiteralClose.php │ │ ├── LabelTooLong.php │ │ ├── LocalOrReservedDomain.php │ │ ├── NoDNSRecord.php │ │ ├── NoDomainPart.php │ │ ├── NoLocalPart.php │ │ ├── RFCWarnings.php │ │ ├── Reason.php │ │ ├── SpoofEmail.php │ │ ├── UnOpenedComment.php │ │ ├── UnableToGetDNSRecord.php │ │ ├── UnclosedComment.php │ │ ├── UnclosedQuotedString.php │ │ └── UnusualElements.php │ ├── Result.php │ ├── SpoofEmail.php │ └── ValidEmail.php │ ├── Validation │ ├── DNSCheckValidation.php │ ├── DNSGetRecordWrapper.php │ ├── DNSRecords.php │ ├── EmailValidation.php │ ├── Exception │ │ └── EmptyValidationList.php │ ├── Extra │ │ └── SpoofCheckValidation.php │ ├── MessageIDValidation.php │ ├── MultipleValidationWithAnd.php │ ├── NoRFCWarningsValidation.php │ └── RFCValidation.php │ └── Warning │ ├── AddressLiteral.php │ ├── CFWSNearAt.php │ ├── CFWSWithFWS.php │ ├── Comment.php │ ├── DeprecatedComment.php │ ├── DomainLiteral.php │ ├── EmailTooLong.php │ ├── IPV6BadChar.php │ ├── IPV6ColonEnd.php │ ├── IPV6ColonStart.php │ ├── IPV6Deprecated.php │ ├── IPV6DoubleColon.php │ ├── IPV6GroupCount.php │ ├── IPV6MaxGroups.php │ ├── LocalTooLong.php │ ├── NoDNSMXRecord.php │ ├── ObsoleteDTEXT.php │ ├── QuotedPart.php │ ├── QuotedString.php │ ├── TLD.php │ └── Warning.php ├── friendsofphp └── proxy-manager-lts │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── ProxyManager │ ├── Autoloader │ ├── Autoloader.php │ └── AutoloaderInterface.php │ ├── Configuration.php │ ├── Exception │ ├── DisabledMethodException.php │ ├── ExceptionInterface.php │ ├── FileNotWritableException.php │ ├── InvalidProxiedClassException.php │ ├── InvalidProxyDirectoryException.php │ └── UnsupportedProxiedClassException.php │ ├── Factory │ ├── AbstractBaseFactory.php │ ├── AccessInterceptorScopeLocalizerFactory.php │ ├── AccessInterceptorValueHolderFactory.php │ ├── LazyLoadingGhostFactory.php │ ├── LazyLoadingValueHolderFactory.php │ ├── NullObjectFactory.php │ ├── RemoteObject │ │ ├── Adapter │ │ │ ├── BaseAdapter.php │ │ │ ├── JsonRpc.php │ │ │ ├── Soap.php │ │ │ └── XmlRpc.php │ │ └── AdapterInterface.php │ └── RemoteObjectFactory.php │ ├── FileLocator │ ├── FileLocator.php │ └── FileLocatorInterface.php │ ├── Generator │ ├── ClassGenerator.php │ ├── MagicMethodGenerator.php │ ├── MethodGenerator.php │ ├── Util │ │ ├── ClassGeneratorUtils.php │ │ ├── IdentifierSuffixer.php │ │ ├── ProxiedMethodReturnExpression.php │ │ └── UniqueIdentifierGenerator.php │ └── ValueGenerator.php │ ├── GeneratorStrategy │ ├── BaseGeneratorStrategy.php │ ├── EvaluatingGeneratorStrategy.php │ ├── FileWriterGeneratorStrategy.php │ └── GeneratorStrategyInterface.php │ ├── Inflector │ ├── ClassNameInflector.php │ ├── ClassNameInflectorInterface.php │ └── Util │ │ ├── ParameterEncoder.php │ │ └── ParameterHasher.php │ ├── Proxy │ ├── AccessInterceptorInterface.php │ ├── AccessInterceptorValueHolderInterface.php │ ├── Exception │ │ └── RemoteObjectException.php │ ├── FallbackValueHolderInterface.php │ ├── GhostObjectInterface.php │ ├── LazyLoadingInterface.php │ ├── NullObjectInterface.php │ ├── ProxyInterface.php │ ├── RemoteObjectInterface.php │ ├── SmartReferenceInterface.php │ ├── ValueHolderInterface.php │ └── VirtualProxyInterface.php │ ├── ProxyGenerator │ ├── AccessInterceptor │ │ ├── MethodGenerator │ │ │ ├── MagicWakeup.php │ │ │ ├── SetMethodPrefixInterceptor.php │ │ │ └── SetMethodSuffixInterceptor.php │ │ └── PropertyGenerator │ │ │ ├── MethodPrefixInterceptors.php │ │ │ └── MethodSuffixInterceptors.php │ ├── AccessInterceptorScopeLocalizer │ │ └── MethodGenerator │ │ │ ├── BindProxyProperties.php │ │ │ ├── InterceptedMethod.php │ │ │ ├── MagicClone.php │ │ │ ├── MagicGet.php │ │ │ ├── MagicIsset.php │ │ │ ├── MagicSet.php │ │ │ ├── MagicSleep.php │ │ │ ├── MagicUnset.php │ │ │ ├── StaticProxyConstructor.php │ │ │ └── Util │ │ │ └── InterceptorGenerator.php │ ├── AccessInterceptorScopeLocalizerGenerator.php │ ├── AccessInterceptorValueHolder │ │ └── MethodGenerator │ │ │ ├── InterceptedMethod.php │ │ │ ├── MagicClone.php │ │ │ ├── MagicGet.php │ │ │ ├── MagicIsset.php │ │ │ ├── MagicSet.php │ │ │ ├── MagicUnset.php │ │ │ ├── StaticProxyConstructor.php │ │ │ └── Util │ │ │ └── InterceptorGenerator.php │ ├── AccessInterceptorValueHolderGenerator.php │ ├── Assertion │ │ └── CanProxyAssertion.php │ ├── LazyLoading │ │ └── MethodGenerator │ │ │ └── StaticProxyConstructor.php │ ├── LazyLoadingGhost │ │ ├── MethodGenerator │ │ │ ├── CallInitializer.php │ │ │ ├── GetProxyInitializer.php │ │ │ ├── InitializeProxy.php │ │ │ ├── IsProxyInitialized.php │ │ │ ├── MagicClone.php │ │ │ ├── MagicGet.php │ │ │ ├── MagicIsset.php │ │ │ ├── MagicSet.php │ │ │ ├── MagicSleep.php │ │ │ ├── MagicUnset.php │ │ │ ├── SetProxyInitializer.php │ │ │ └── SkipDestructor.php │ │ └── PropertyGenerator │ │ │ ├── InitializationTracker.php │ │ │ ├── InitializerProperty.php │ │ │ ├── PrivatePropertiesMap.php │ │ │ └── ProtectedPropertiesMap.php │ ├── LazyLoadingGhostGenerator.php │ ├── LazyLoadingValueHolder │ │ ├── MethodGenerator │ │ │ ├── GetProxyInitializer.php │ │ │ ├── InitializeProxy.php │ │ │ ├── IsProxyInitialized.php │ │ │ ├── LazyLoadingMethodInterceptor.php │ │ │ ├── MagicClone.php │ │ │ ├── MagicGet.php │ │ │ ├── MagicIsset.php │ │ │ ├── MagicSet.php │ │ │ ├── MagicSleep.php │ │ │ ├── MagicUnset.php │ │ │ ├── SetProxyInitializer.php │ │ │ └── SkipDestructor.php │ │ └── PropertyGenerator │ │ │ ├── InitializerProperty.php │ │ │ └── ValueHolderProperty.php │ ├── LazyLoadingValueHolderGenerator.php │ ├── NullObject │ │ └── MethodGenerator │ │ │ ├── NullObjectMethodInterceptor.php │ │ │ └── StaticProxyConstructor.php │ ├── NullObjectGenerator.php │ ├── PropertyGenerator │ │ └── PublicPropertiesMap.php │ ├── ProxyGeneratorInterface.php │ ├── RemoteObject │ │ ├── MethodGenerator │ │ │ ├── MagicGet.php │ │ │ ├── MagicIsset.php │ │ │ ├── MagicSet.php │ │ │ ├── MagicUnset.php │ │ │ ├── RemoteObjectMethod.php │ │ │ └── StaticProxyConstructor.php │ │ └── PropertyGenerator │ │ │ └── AdapterProperty.php │ ├── RemoteObjectGenerator.php │ ├── Util │ │ ├── GetMethodIfExists.php │ │ ├── Properties.php │ │ ├── ProxiedMethodsFilter.php │ │ ├── PublicScopeSimulator.php │ │ └── UnsetPropertiesGenerator.php │ └── ValueHolder │ │ └── MethodGenerator │ │ ├── Constructor.php │ │ ├── GetWrappedValueHolderValue.php │ │ └── MagicSleep.php │ ├── Signature │ ├── ClassSignatureGenerator.php │ ├── ClassSignatureGeneratorInterface.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidSignatureException.php │ │ └── MissingSignatureException.php │ ├── SignatureChecker.php │ ├── SignatureCheckerInterface.php │ ├── SignatureGenerator.php │ └── SignatureGeneratorInterface.php │ ├── Stub │ └── EmptyClassStub.php │ └── Version.php ├── laminas └── laminas-code │ ├── COPYRIGHT.md │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── renovate.json │ └── src │ ├── DeclareStatement.php │ ├── Exception │ ├── BadMethodCallException.php │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ └── RuntimeException.php │ ├── Generator │ ├── AbstractGenerator.php │ ├── AbstractMemberGenerator.php │ ├── BodyGenerator.php │ ├── ClassGenerator.php │ ├── DocBlock │ │ ├── Tag.php │ │ ├── Tag │ │ │ ├── AbstractTypeableTag.php │ │ │ ├── AuthorTag.php │ │ │ ├── GenericTag.php │ │ │ ├── LicenseTag.php │ │ │ ├── MethodTag.php │ │ │ ├── ParamTag.php │ │ │ ├── PropertyTag.php │ │ │ ├── ReturnTag.php │ │ │ ├── TagInterface.php │ │ │ ├── ThrowsTag.php │ │ │ └── VarTag.php │ │ └── TagManager.php │ ├── DocBlockGenerator.php │ ├── EnumGenerator │ │ ├── Cases │ │ │ ├── BackedCases.php │ │ │ ├── CaseFactory.php │ │ │ └── PureCases.php │ │ ├── EnumGenerator.php │ │ └── Name.php │ ├── Exception │ │ ├── ClassNotFoundException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ └── RuntimeException.php │ ├── FileGenerator.php │ ├── GeneratorInterface.php │ ├── InterfaceGenerator.php │ ├── MethodGenerator.php │ ├── ParameterGenerator.php │ ├── PromotedParameterGenerator.php │ ├── PropertyGenerator.php │ ├── PropertyValueGenerator.php │ ├── TraitGenerator.php │ ├── TraitUsageGenerator.php │ ├── TraitUsageInterface.php │ ├── TypeGenerator.php │ ├── TypeGenerator │ │ ├── AtomicType.php │ │ ├── CompositeType.php │ │ ├── IntersectionType.php │ │ └── UnionType.php │ └── ValueGenerator.php │ ├── Generic │ └── Prototype │ │ ├── PrototypeClassFactory.php │ │ ├── PrototypeGenericInterface.php │ │ └── PrototypeInterface.php │ ├── Reflection │ ├── ClassReflection.php │ ├── DocBlock │ │ ├── Tag │ │ │ ├── AuthorTag.php │ │ │ ├── GenericTag.php │ │ │ ├── LicenseTag.php │ │ │ ├── MethodTag.php │ │ │ ├── ParamTag.php │ │ │ ├── PhpDocTypedTagInterface.php │ │ │ ├── PropertyTag.php │ │ │ ├── ReturnTag.php │ │ │ ├── TagInterface.php │ │ │ ├── ThrowsTag.php │ │ │ └── VarTag.php │ │ └── TagManager.php │ ├── DocBlockReflection.php │ ├── Exception │ │ ├── BadMethodCallException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ └── RuntimeException.php │ ├── FunctionReflection.php │ ├── MethodReflection.php │ ├── ParameterReflection.php │ ├── PropertyReflection.php │ └── ReflectionInterface.php │ └── Scanner │ └── DocBlockScanner.php ├── monolog └── monolog │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── UPGRADE.md │ ├── composer.json │ └── src │ └── Monolog │ ├── Attribute │ └── AsMonologProcessor.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 │ └── 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 │ ├── SwiftMailerHandler.php │ ├── SymfonyMailerHandler.php │ ├── SyslogHandler.php │ ├── SyslogUdp │ │ └── UdpSocket.php │ ├── SyslogUdpHandler.php │ ├── TelegramBotHandler.php │ ├── TestHandler.php │ ├── WebRequestRecognizerTrait.php │ ├── WhatFailureGroupHandler.php │ └── ZendMonitorHandler.php │ ├── LogRecord.php │ ├── Logger.php │ ├── Processor │ ├── GitProcessor.php │ ├── HostnameProcessor.php │ ├── IntrospectionProcessor.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 │ ├── Test │ └── TestCase.php │ └── Utils.php ├── myclabs └── deep-copy │ ├── .github │ ├── FUNDING.yml │ └── workflows │ │ └── ci.yaml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── DeepCopy │ ├── DeepCopy.php │ ├── Exception │ ├── CloneException.php │ └── PropertyException.php │ ├── Filter │ ├── 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 │ ├── 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 │ ├── grammar │ ├── README.md │ ├── parser.template │ ├── php5.y │ ├── php7.y │ ├── phpyLang.php │ ├── rebuildParsers.php │ ├── tokens.template │ └── tokens.y │ └── 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 │ └── TokenStream.php │ ├── JsonDecoder.php │ ├── Lexer.php │ ├── Lexer │ ├── Emulative.php │ └── TokenEmulator │ │ ├── AttributeEmulator.php │ │ ├── CoaleseEqualTokenEmulator.php │ │ ├── EnumTokenEmulator.php │ │ ├── ExplicitOctalEmulator.php │ │ ├── FlexibleDocStringEmulator.php │ │ ├── FnTokenEmulator.php │ │ ├── KeywordEmulator.php │ │ ├── MatchTokenEmulator.php │ │ ├── NullsafeTokenEmulator.php │ │ ├── NumericLiteralSeparatorEmulator.php │ │ ├── ReadonlyFunctionTokenEmulator.php │ │ ├── ReadonlyTokenEmulator.php │ │ ├── ReverseEmulator.php │ │ └── TokenEmulator.php │ ├── NameContext.php │ ├── Node.php │ ├── Node │ ├── Arg.php │ ├── Attribute.php │ ├── AttributeGroup.php │ ├── ComplexType.php │ ├── Const_.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 │ ├── IntersectionType.php │ ├── MatchArm.php │ ├── Name.php │ ├── Name │ │ ├── FullyQualified.php │ │ └── Relative.php │ ├── NullableType.php │ ├── Param.php │ ├── Scalar.php │ ├── Scalar │ │ ├── DNumber.php │ │ ├── Encapsed.php │ │ ├── EncapsedStringPart.php │ │ ├── LNumber.php │ │ ├── MagicConst.php │ │ ├── MagicConst │ │ │ ├── Class_.php │ │ │ ├── Dir.php │ │ │ ├── File.php │ │ │ ├── Function_.php │ │ │ ├── Line.php │ │ │ ├── Method.php │ │ │ ├── Namespace_.php │ │ │ └── Trait_.php │ │ └── String_.php │ ├── Stmt.php │ ├── Stmt │ │ ├── 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 │ │ ├── Throw_.php │ │ ├── TraitUse.php │ │ ├── TraitUseAdaptation.php │ │ ├── TraitUseAdaptation │ │ │ ├── Alias.php │ │ │ └── Precedence.php │ │ ├── Trait_.php │ │ ├── TryCatch.php │ │ ├── Unset_.php │ │ ├── UseUse.php │ │ ├── Use_.php │ │ └── While_.php │ ├── UnionType.php │ ├── VarLikeIdentifier.php │ └── VariadicPlaceholder.php │ ├── NodeAbstract.php │ ├── NodeDumper.php │ ├── NodeFinder.php │ ├── NodeTraverser.php │ ├── NodeTraverserInterface.php │ ├── NodeVisitor.php │ ├── NodeVisitor │ ├── CloningVisitor.php │ ├── FindingVisitor.php │ ├── FirstFindingVisitor.php │ ├── NameResolver.php │ ├── NodeConnectingVisitor.php │ └── ParentConnectingVisitor.php │ ├── NodeVisitorAbstract.php │ ├── Parser.php │ ├── Parser │ ├── Multiple.php │ ├── Php5.php │ ├── Php7.php │ └── Tokens.php │ ├── ParserAbstract.php │ ├── ParserFactory.php │ ├── PrettyPrinter │ └── Standard.php │ └── PrettyPrinterAbstract.php ├── phar-io ├── manifest │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ └── 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 │ │ ├── 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 └── version │ ├── CHANGELOG.md │ ├── 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 ├── phpdocumentor ├── reflection-common │ ├── .github │ │ ├── dependabot.yml │ │ └── workflows │ │ │ └── push.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Element.php │ │ ├── File.php │ │ ├── Fqsen.php │ │ ├── Location.php │ │ ├── Project.php │ │ └── ProjectFactory.php ├── reflection-docblock │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── DocBlock.php │ │ ├── DocBlock │ │ ├── Description.php │ │ ├── DescriptionFactory.php │ │ ├── ExampleFinder.php │ │ ├── Serializer.php │ │ ├── StandardTagFactory.php │ │ ├── Tag.php │ │ ├── TagFactory.php │ │ └── Tags │ │ │ ├── Author.php │ │ │ ├── BaseTag.php │ │ │ ├── Covers.php │ │ │ ├── Deprecated.php │ │ │ ├── Example.php │ │ │ ├── Factory │ │ │ └── StaticMethod.php │ │ │ ├── Formatter.php │ │ │ ├── Formatter │ │ │ ├── AlignFormatter.php │ │ │ └── PassthroughFormatter.php │ │ │ ├── Generic.php │ │ │ ├── InvalidTag.php │ │ │ ├── Link.php │ │ │ ├── Method.php │ │ │ ├── Param.php │ │ │ ├── Property.php │ │ │ ├── PropertyRead.php │ │ │ ├── PropertyWrite.php │ │ │ ├── Reference │ │ │ ├── Fqsen.php │ │ │ ├── Reference.php │ │ │ └── Url.php │ │ │ ├── Return_.php │ │ │ ├── See.php │ │ │ ├── Since.php │ │ │ ├── Source.php │ │ │ ├── TagWithType.php │ │ │ ├── Throws.php │ │ │ ├── Uses.php │ │ │ ├── Var_.php │ │ │ └── Version.php │ │ ├── DocBlockFactory.php │ │ ├── DocBlockFactoryInterface.php │ │ ├── Exception │ │ └── PcreException.php │ │ └── Utils.php └── type-resolver │ ├── .yamllint.yaml │ ├── LICENSE │ ├── README.md │ ├── composer-require-checker.json │ ├── composer.json │ ├── rector.php │ └── src │ ├── FqsenResolver.php │ ├── PseudoType.php │ ├── PseudoTypes │ ├── CallableString.php │ ├── False_.php │ ├── HtmlEscapedString.php │ ├── IntegerRange.php │ ├── List_.php │ ├── LiteralString.php │ ├── LowercaseString.php │ ├── NegativeInteger.php │ ├── NonEmptyLowercaseString.php │ ├── NonEmptyString.php │ ├── NumericString.php │ ├── Numeric_.php │ ├── PositiveInteger.php │ ├── TraitString.php │ └── True_.php │ ├── Type.php │ ├── TypeResolver.php │ └── Types │ ├── AbstractList.php │ ├── AggregatedType.php │ ├── ArrayKey.php │ ├── Array_.php │ ├── Boolean.php │ ├── Callable_.php │ ├── ClassString.php │ ├── Collection.php │ ├── Compound.php │ ├── Context.php │ ├── ContextFactory.php │ ├── Expression.php │ ├── Float_.php │ ├── Integer.php │ ├── InterfaceString.php │ ├── Intersection.php │ ├── Iterable_.php │ ├── Mixed_.php │ ├── Never_.php │ ├── Null_.php │ ├── Nullable.php │ ├── Object_.php │ ├── Parent_.php │ ├── Resource_.php │ ├── Scalar.php │ ├── Self_.php │ ├── Static_.php │ ├── String_.php │ ├── This.php │ └── Void_.php ├── phpstan └── phpdoc-parser │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── Ast │ ├── ConstExpr │ │ ├── ConstExprArrayItemNode.php │ │ ├── ConstExprArrayNode.php │ │ ├── ConstExprFalseNode.php │ │ ├── ConstExprFloatNode.php │ │ ├── ConstExprIntegerNode.php │ │ ├── ConstExprNode.php │ │ ├── ConstExprNullNode.php │ │ ├── ConstExprStringNode.php │ │ ├── ConstExprTrueNode.php │ │ └── ConstFetchNode.php │ ├── Node.php │ ├── NodeAttributes.php │ ├── PhpDoc │ │ ├── AssertTagMethodValueNode.php │ │ ├── AssertTagPropertyValueNode.php │ │ ├── AssertTagValueNode.php │ │ ├── DeprecatedTagValueNode.php │ │ ├── ExtendsTagValueNode.php │ │ ├── GenericTagValueNode.php │ │ ├── ImplementsTagValueNode.php │ │ ├── InvalidTagValueNode.php │ │ ├── MethodTagValueNode.php │ │ ├── MethodTagValueParameterNode.php │ │ ├── MixinTagValueNode.php │ │ ├── ParamOutTagValueNode.php │ │ ├── ParamTagValueNode.php │ │ ├── PhpDocChildNode.php │ │ ├── PhpDocNode.php │ │ ├── PhpDocTagNode.php │ │ ├── PhpDocTagValueNode.php │ │ ├── PhpDocTextNode.php │ │ ├── PropertyTagValueNode.php │ │ ├── ReturnTagValueNode.php │ │ ├── SelfOutTagValueNode.php │ │ ├── TemplateTagValueNode.php │ │ ├── ThrowsTagValueNode.php │ │ ├── TypeAliasImportTagValueNode.php │ │ ├── TypeAliasTagValueNode.php │ │ ├── TypelessParamTagValueNode.php │ │ ├── UsesTagValueNode.php │ │ └── VarTagValueNode.php │ └── Type │ │ ├── ArrayShapeItemNode.php │ │ ├── ArrayShapeNode.php │ │ ├── ArrayTypeNode.php │ │ ├── CallableTypeNode.php │ │ ├── CallableTypeParameterNode.php │ │ ├── ConditionalTypeForParameterNode.php │ │ ├── ConditionalTypeNode.php │ │ ├── ConstTypeNode.php │ │ ├── GenericTypeNode.php │ │ ├── IdentifierTypeNode.php │ │ ├── IntersectionTypeNode.php │ │ ├── NullableTypeNode.php │ │ ├── OffsetAccessTypeNode.php │ │ ├── ThisTypeNode.php │ │ ├── TypeNode.php │ │ └── UnionTypeNode.php │ ├── Lexer │ └── Lexer.php │ └── Parser │ ├── ConstExprParser.php │ ├── ParserException.php │ ├── PhpDocParser.php │ ├── TokenIterator.php │ └── TypeParser.php ├── phpunit ├── php-code-coverage │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── CodeCoverage.php │ │ ├── Driver │ │ ├── Driver.php │ │ ├── PcovDriver.php │ │ ├── PhpdbgDriver.php │ │ ├── Selector.php │ │ ├── Xdebug2Driver.php │ │ └── Xdebug3Driver.php │ │ ├── Exception │ │ ├── BranchAndPathCoverageNotSupportedException.php │ │ ├── DeadCodeDetectionNotSupportedException.php │ │ ├── DirectoryCouldNotBeCreatedException.php │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ ├── NoCodeCoverageDriverAvailableException.php │ │ ├── NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php │ │ ├── ParserException.php │ │ ├── PathExistsButIsNotDirectoryException.php │ │ ├── PcovNotAvailableException.php │ │ ├── PhpdbgNotAvailableException.php │ │ ├── ReflectionException.php │ │ ├── ReportAlreadyFinalizedException.php │ │ ├── StaticAnalysisCacheNotConfiguredException.php │ │ ├── TestIdMissingException.php │ │ ├── UnintentionallyCoveredCodeException.php │ │ ├── WriteOperationFailedException.php │ │ ├── WrongXdebugVersionException.php │ │ ├── Xdebug2NotEnabledException.php │ │ ├── Xdebug3NotEnabledException.php │ │ ├── XdebugNotAvailableException.php │ │ └── XmlException.php │ │ ├── Filter.php │ │ ├── Node │ │ ├── AbstractNode.php │ │ ├── Builder.php │ │ ├── CrapIndex.php │ │ ├── Directory.php │ │ ├── File.php │ │ └── Iterator.php │ │ ├── ProcessedCodeCoverageData.php │ │ ├── RawCodeCoverageData.php │ │ ├── Report │ │ ├── Clover.php │ │ ├── Cobertura.php │ │ ├── Crap4j.php │ │ ├── Html │ │ │ ├── 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.min.js │ │ │ │ ├── d3.min.js │ │ │ │ ├── file.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── nv.d3.min.js │ │ │ │ └── popper.min.js │ │ │ │ ├── line.html.dist │ │ │ │ ├── lines.html.dist │ │ │ │ ├── method_item.html.dist │ │ │ │ ├── method_item_branch.html.dist │ │ │ │ └── paths.html.dist │ │ ├── PHP.php │ │ ├── Text.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 │ │ ├── Util │ │ ├── Filesystem.php │ │ └── Percentage.php │ │ └── Version.php ├── php-file-iterator │ ├── .psalm │ │ ├── baseline.xml │ │ └── config.xml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Facade.php │ │ ├── Factory.php │ │ └── Iterator.php ├── php-invoker │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Invoker.php │ │ └── exceptions │ │ ├── Exception.php │ │ ├── ProcessControlExtensionNotLoadedException.php │ │ └── TimeoutException.php ├── php-text-template │ ├── .psalm │ │ ├── baseline.xml │ │ └── config.xml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Template.php │ │ └── exceptions │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ └── RuntimeException.php ├── php-timer │ ├── .psalm │ │ ├── baseline.xml │ │ └── config.xml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Duration.php │ │ ├── ResourceUsageFormatter.php │ │ ├── Timer.php │ │ └── exceptions │ │ ├── Exception.php │ │ ├── NoActiveTimerException.php │ │ └── TimeSinceStartOfRequestNotAvailableException.php └── phpunit │ ├── .phpstorm.meta.php │ ├── ChangeLog-8.5.md │ ├── ChangeLog-9.6.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ ├── phpunit │ ├── phpunit.xsd │ ├── schema │ ├── 8.5.xsd │ └── 9.2.xsd │ └── src │ ├── Exception.php │ ├── Framework │ ├── Assert.php │ ├── Assert │ │ └── Functions.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 │ │ │ ├── ExceptionMessage.php │ │ │ └── ExceptionMessageRegularExpression.php │ │ ├── Filesystem │ │ │ ├── DirectoryExists.php │ │ │ ├── FileExists.php │ │ │ ├── IsReadable.php │ │ │ └── IsWritable.php │ │ ├── IsAnything.php │ │ ├── IsIdentical.php │ │ ├── JsonMatches.php │ │ ├── JsonMatchesErrorMessageProvider.php │ │ ├── Math │ │ │ ├── IsFinite.php │ │ │ ├── IsInfinite.php │ │ │ └── IsNan.php │ │ ├── Object │ │ │ ├── ClassHasAttribute.php │ │ │ ├── ClassHasStaticAttribute.php │ │ │ ├── ObjectEquals.php │ │ │ └── ObjectHasAttribute.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 │ │ │ ├── StringMatchesFormatDescription.php │ │ │ └── StringStartsWith.php │ │ ├── Traversable │ │ │ ├── ArrayHasKey.php │ │ │ ├── TraversableContains.php │ │ │ ├── TraversableContainsEqual.php │ │ │ ├── TraversableContainsIdentical.php │ │ │ └── TraversableContainsOnly.php │ │ └── Type │ │ │ ├── IsInstanceOf.php │ │ │ ├── IsNull.php │ │ │ └── IsType.php │ ├── DataProviderTestSuite.php │ ├── Error │ │ ├── Deprecated.php │ │ ├── Error.php │ │ ├── Notice.php │ │ └── Warning.php │ ├── ErrorTestCase.php │ ├── Exception │ │ ├── ActualValueIsNotAnObjectException.php │ │ ├── AssertionFailedError.php │ │ ├── CodeCoverageException.php │ │ ├── ComparisonMethodDoesNotAcceptParameterTypeException.php │ │ ├── ComparisonMethodDoesNotDeclareBoolReturnTypeException.php │ │ ├── ComparisonMethodDoesNotDeclareExactlyOneParameterException.php │ │ ├── ComparisonMethodDoesNotDeclareParameterTypeException.php │ │ ├── ComparisonMethodDoesNotExistException.php │ │ ├── CoveredCodeNotExecutedException.php │ │ ├── Error.php │ │ ├── Exception.php │ │ ├── ExpectationFailedException.php │ │ ├── IncompleteTestError.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidCoversTargetException.php │ │ ├── InvalidDataProviderException.php │ │ ├── MissingCoversAnnotationException.php │ │ ├── NoChildTestSuiteException.php │ │ ├── OutputError.php │ │ ├── PHPTAssertionFailedError.php │ │ ├── RiskyTestError.php │ │ ├── SkippedTestError.php │ │ ├── SkippedTestSuiteError.php │ │ ├── SyntheticError.php │ │ ├── SyntheticSkippedError.php │ │ ├── UnintentionallyCoveredCodeError.php │ │ └── Warning.php │ ├── ExceptionWrapper.php │ ├── ExecutionOrderDependency.php │ ├── IncompleteTest.php │ ├── IncompleteTestCase.php │ ├── InvalidParameterGroupException.php │ ├── MockObject │ │ ├── Api │ │ │ ├── Api.php │ │ │ └── Method.php │ │ ├── Builder │ │ │ ├── Identity.php │ │ │ ├── InvocationMocker.php │ │ │ ├── InvocationStubber.php │ │ │ ├── MethodNameMatch.php │ │ │ ├── ParametersMatch.php │ │ │ └── Stub.php │ │ ├── ConfigurableMethod.php │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── CannotUseAddMethodsException.php │ │ │ ├── CannotUseOnlyMethodsException.php │ │ │ ├── ClassAlreadyExistsException.php │ │ │ ├── ClassIsFinalException.php │ │ │ ├── ClassIsReadonlyException.php │ │ │ ├── ConfigurableMethodsAlreadyInitializedException.php │ │ │ ├── DuplicateMethodException.php │ │ │ ├── Exception.php │ │ │ ├── IncompatibleReturnValueException.php │ │ │ ├── InvalidMethodNameException.php │ │ │ ├── MatchBuilderNotFoundException.php │ │ │ ├── MatcherAlreadyRegisteredException.php │ │ │ ├── MethodCannotBeConfiguredException.php │ │ │ ├── MethodNameAlreadyConfiguredException.php │ │ │ ├── MethodNameNotConfiguredException.php │ │ │ ├── MethodParametersAlreadyConfiguredException.php │ │ │ ├── OriginalConstructorInvocationRequiredException.php │ │ │ ├── ReflectionException.php │ │ │ ├── ReturnValueNotConfiguredException.php │ │ │ ├── RuntimeException.php │ │ │ ├── SoapExtensionNotAvailableException.php │ │ │ ├── UnknownClassException.php │ │ │ ├── UnknownTraitException.php │ │ │ └── UnknownTypeException.php │ │ ├── Generator.php │ │ ├── Generator │ │ │ ├── deprecation.tpl │ │ │ ├── intersection.tpl │ │ │ ├── mocked_class.tpl │ │ │ ├── mocked_method.tpl │ │ │ ├── mocked_method_never_or_void.tpl │ │ │ ├── mocked_static_method.tpl │ │ │ ├── proxied_method.tpl │ │ │ ├── proxied_method_never_or_void.tpl │ │ │ ├── trait_class.tpl │ │ │ ├── wsdl_class.tpl │ │ │ └── wsdl_method.tpl │ │ ├── Invocation.php │ │ ├── InvocationHandler.php │ │ ├── Matcher.php │ │ ├── MethodNameConstraint.php │ │ ├── MockBuilder.php │ │ ├── MockClass.php │ │ ├── MockMethod.php │ │ ├── MockMethodSet.php │ │ ├── MockObject.php │ │ ├── MockTrait.php │ │ ├── MockType.php │ │ ├── Rule │ │ │ ├── AnyInvokedCount.php │ │ │ ├── AnyParameters.php │ │ │ ├── ConsecutiveParameters.php │ │ │ ├── InvocationOrder.php │ │ │ ├── InvokedAtIndex.php │ │ │ ├── InvokedAtLeastCount.php │ │ │ ├── InvokedAtLeastOnce.php │ │ │ ├── InvokedAtMostCount.php │ │ │ ├── InvokedCount.php │ │ │ ├── MethodName.php │ │ │ ├── Parameters.php │ │ │ └── ParametersRule.php │ │ ├── Stub.php │ │ ├── Stub │ │ │ ├── ConsecutiveCalls.php │ │ │ ├── Exception.php │ │ │ ├── ReturnArgument.php │ │ │ ├── ReturnCallback.php │ │ │ ├── ReturnReference.php │ │ │ ├── ReturnSelf.php │ │ │ ├── ReturnStub.php │ │ │ ├── ReturnValueMap.php │ │ │ └── Stub.php │ │ └── Verifiable.php │ ├── Reorderable.php │ ├── SelfDescribing.php │ ├── SkippedTest.php │ ├── SkippedTestCase.php │ ├── Test.php │ ├── TestBuilder.php │ ├── TestCase.php │ ├── TestFailure.php │ ├── TestListener.php │ ├── TestListenerDefaultImplementation.php │ ├── TestResult.php │ ├── TestSuite.php │ ├── TestSuiteIterator.php │ └── WarningTestCase.php │ ├── Runner │ ├── BaseTestRunner.php │ ├── DefaultTestResultCache.php │ ├── Exception.php │ ├── Extension │ │ ├── ExtensionHandler.php │ │ └── PharLoader.php │ ├── Filter │ │ ├── ExcludeGroupFilterIterator.php │ │ ├── Factory.php │ │ ├── GroupFilterIterator.php │ │ ├── IncludeGroupFilterIterator.php │ │ └── NameFilterIterator.php │ ├── Hook │ │ ├── AfterIncompleteTestHook.php │ │ ├── AfterLastTestHook.php │ │ ├── AfterRiskyTestHook.php │ │ ├── AfterSkippedTestHook.php │ │ ├── AfterSuccessfulTestHook.php │ │ ├── AfterTestErrorHook.php │ │ ├── AfterTestFailureHook.php │ │ ├── AfterTestHook.php │ │ ├── AfterTestWarningHook.php │ │ ├── BeforeFirstTestHook.php │ │ ├── BeforeTestHook.php │ │ ├── Hook.php │ │ ├── TestHook.php │ │ └── TestListenerAdapter.php │ ├── NullTestResultCache.php │ ├── PhptTestCase.php │ ├── ResultCacheExtension.php │ ├── StandardTestSuiteLoader.php │ ├── TestResultCache.php │ ├── TestSuiteLoader.php │ ├── TestSuiteSorter.php │ └── Version.php │ ├── TextUI │ ├── CliArguments │ │ ├── Builder.php │ │ ├── Configuration.php │ │ ├── Exception.php │ │ └── Mapper.php │ ├── Command.php │ ├── DefaultResultPrinter.php │ ├── Exception │ │ ├── Exception.php │ │ ├── ReflectionException.php │ │ ├── RuntimeException.php │ │ ├── TestDirectoryNotFoundException.php │ │ └── TestFileNotFoundException.php │ ├── Help.php │ ├── ResultPrinter.php │ ├── TestRunner.php │ ├── TestSuiteMapper.php │ └── XmlConfiguration │ │ ├── CodeCoverage │ │ ├── CodeCoverage.php │ │ ├── Filter │ │ │ ├── Directory.php │ │ │ ├── DirectoryCollection.php │ │ │ └── DirectoryCollectionIterator.php │ │ ├── FilterMapper.php │ │ └── Report │ │ │ ├── Clover.php │ │ │ ├── Cobertura.php │ │ │ ├── Crap4j.php │ │ │ ├── Html.php │ │ │ ├── Php.php │ │ │ ├── Text.php │ │ │ └── Xml.php │ │ ├── Configuration.php │ │ ├── Exception.php │ │ ├── Filesystem │ │ ├── Directory.php │ │ ├── DirectoryCollection.php │ │ ├── DirectoryCollectionIterator.php │ │ ├── File.php │ │ ├── FileCollection.php │ │ └── FileCollectionIterator.php │ │ ├── Generator.php │ │ ├── Group │ │ ├── Group.php │ │ ├── GroupCollection.php │ │ ├── GroupCollectionIterator.php │ │ └── Groups.php │ │ ├── Loader.php │ │ ├── Logging │ │ ├── Junit.php │ │ ├── Logging.php │ │ ├── TeamCity.php │ │ ├── TestDox │ │ │ ├── Html.php │ │ │ ├── Text.php │ │ │ └── Xml.php │ │ └── Text.php │ │ ├── Migration │ │ ├── MigrationBuilder.php │ │ ├── MigrationBuilderException.php │ │ ├── MigrationException.php │ │ ├── Migrations │ │ │ ├── ConvertLogTypes.php │ │ │ ├── CoverageCloverToReport.php │ │ │ ├── CoverageCrap4jToReport.php │ │ │ ├── CoverageHtmlToReport.php │ │ │ ├── CoveragePhpToReport.php │ │ │ ├── CoverageTextToReport.php │ │ │ ├── CoverageXmlToReport.php │ │ │ ├── IntroduceCoverageElement.php │ │ │ ├── LogToReportMigration.php │ │ │ ├── Migration.php │ │ │ ├── MoveAttributesFromFilterWhitelistToCoverage.php │ │ │ ├── MoveAttributesFromRootToCoverage.php │ │ │ ├── MoveWhitelistDirectoriesToCoverage.php │ │ │ ├── MoveWhitelistExcludesToCoverage.php │ │ │ ├── RemoveCacheTokensAttribute.php │ │ │ ├── RemoveEmptyFilter.php │ │ │ ├── RemoveLogTypes.php │ │ │ └── UpdateSchemaLocationTo93.php │ │ └── Migrator.php │ │ ├── PHP │ │ ├── Constant.php │ │ ├── ConstantCollection.php │ │ ├── ConstantCollectionIterator.php │ │ ├── IniSetting.php │ │ ├── IniSettingCollection.php │ │ ├── IniSettingCollectionIterator.php │ │ ├── Php.php │ │ ├── PhpHandler.php │ │ ├── Variable.php │ │ ├── VariableCollection.php │ │ └── VariableCollectionIterator.php │ │ ├── PHPUnit │ │ ├── Extension.php │ │ ├── ExtensionCollection.php │ │ ├── ExtensionCollectionIterator.php │ │ └── PHPUnit.php │ │ └── TestSuite │ │ ├── TestDirectory.php │ │ ├── TestDirectoryCollection.php │ │ ├── TestDirectoryCollectionIterator.php │ │ ├── TestFile.php │ │ ├── TestFileCollection.php │ │ ├── TestFileCollectionIterator.php │ │ ├── TestSuite.php │ │ ├── TestSuiteCollection.php │ │ └── TestSuiteCollectionIterator.php │ └── Util │ ├── Annotation │ ├── DocBlock.php │ └── Registry.php │ ├── Blacklist.php │ ├── Cloner.php │ ├── Color.php │ ├── ErrorHandler.php │ ├── Exception.php │ ├── ExcludeList.php │ ├── FileLoader.php │ ├── Filesystem.php │ ├── Filter.php │ ├── GlobalState.php │ ├── InvalidDataSetException.php │ ├── Json.php │ ├── Log │ ├── JUnit.php │ └── TeamCity.php │ ├── PHP │ ├── AbstractPhpProcess.php │ ├── DefaultPhpProcess.php │ ├── Template │ │ ├── PhptTestCase.tpl │ │ ├── TestCaseClass.tpl │ │ └── TestCaseMethod.tpl │ └── WindowsPhpProcess.php │ ├── Printer.php │ ├── Reflection.php │ ├── RegularExpression.php │ ├── Test.php │ ├── TestDox │ ├── CliTestDoxPrinter.php │ ├── HtmlResultPrinter.php │ ├── NamePrettifier.php │ ├── ResultPrinter.php │ ├── TestDoxPrinter.php │ ├── TextResultPrinter.php │ └── XmlResultPrinter.php │ ├── TextTestListRenderer.php │ ├── Type.php │ ├── VersionComparisonOperator.php │ ├── XdebugFilterScriptGenerator.php │ ├── Xml.php │ ├── Xml │ ├── Exception.php │ ├── FailedSchemaDetectionResult.php │ ├── Loader.php │ ├── SchemaDetectionResult.php │ ├── SchemaDetector.php │ ├── SchemaFinder.php │ ├── SnapshotNodeList.php │ ├── SuccessfulSchemaDetectionResult.php │ ├── ValidationResult.php │ └── Validator.php │ └── XmlTestListRenderer.php ├── psr ├── cache │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── composer.json │ └── src │ │ ├── CacheException.php │ │ ├── CacheItemInterface.php │ │ ├── CacheItemPoolInterface.php │ │ └── InvalidArgumentException.php ├── container │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ContainerExceptionInterface.php │ │ ├── ContainerInterface.php │ │ └── NotFoundExceptionInterface.php ├── event-dispatcher │ ├── .editorconfig │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── EventDispatcherInterface.php │ │ ├── ListenerProviderInterface.php │ │ └── StoppableEventInterface.php ├── link │ ├── .editorconfig │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ └── src │ │ ├── EvolvableLinkInterface.php │ │ ├── EvolvableLinkProviderInterface.php │ │ ├── LinkInterface.php │ │ └── LinkProviderInterface.php └── log │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── AbstractLogger.php │ ├── InvalidArgumentException.php │ ├── LogLevel.php │ ├── LoggerAwareInterface.php │ ├── LoggerAwareTrait.php │ ├── LoggerInterface.php │ ├── LoggerTrait.php │ └── NullLogger.php ├── sebastian ├── cli-parser │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── infection.json │ └── src │ │ ├── Parser.php │ │ └── exceptions │ │ ├── AmbiguousOptionException.php │ │ ├── Exception.php │ │ ├── OptionDoesNotAllowArgumentException.php │ │ ├── RequiredOptionArgumentMissingException.php │ │ └── UnknownOptionException.php ├── code-unit-reverse-lookup │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ └── Wizard.php ├── code-unit │ ├── .psalm │ │ ├── baseline.xml │ │ └── config.xml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ClassMethodUnit.php │ │ ├── ClassUnit.php │ │ ├── CodeUnit.php │ │ ├── CodeUnitCollection.php │ │ ├── CodeUnitCollectionIterator.php │ │ ├── FunctionUnit.php │ │ ├── InterfaceMethodUnit.php │ │ ├── InterfaceUnit.php │ │ ├── Mapper.php │ │ ├── TraitMethodUnit.php │ │ ├── TraitUnit.php │ │ └── exceptions │ │ ├── Exception.php │ │ ├── InvalidCodeUnitException.php │ │ ├── NoTraitException.php │ │ └── ReflectionException.php ├── comparator │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── ArrayComparator.php │ │ ├── Comparator.php │ │ ├── ComparisonFailure.php │ │ ├── DOMNodeComparator.php │ │ ├── DateTimeComparator.php │ │ ├── DoubleComparator.php │ │ ├── ExceptionComparator.php │ │ ├── Factory.php │ │ ├── MockObjectComparator.php │ │ ├── NumericComparator.php │ │ ├── ObjectComparator.php │ │ ├── ResourceComparator.php │ │ ├── ScalarComparator.php │ │ ├── SplObjectStorageComparator.php │ │ ├── TypeComparator.php │ │ └── exceptions │ │ ├── Exception.php │ │ └── RuntimeException.php ├── complexity │ ├── .psalm │ │ ├── baseline.xml │ │ └── config.xml │ ├── ChangeLog.md │ ├── 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 │ ├── ChangeLog.md │ ├── 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 │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Console.php │ │ ├── OperatingSystem.php │ │ └── Runtime.php ├── exporter │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ └── Exporter.php ├── global-state │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── CodeExporter.php │ │ ├── ExcludeList.php │ │ ├── Restorer.php │ │ ├── Snapshot.php │ │ └── exceptions │ │ ├── Exception.php │ │ └── RuntimeException.php ├── lines-of-code │ ├── .psalm │ │ ├── baseline.xml │ │ └── config.xml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Counter.php │ │ ├── Exception │ │ ├── Exception.php │ │ ├── IllogicalValuesException.php │ │ ├── NegativeValueException.php │ │ └── RuntimeException.php │ │ ├── LineCountingVisitor.php │ │ └── LinesOfCode.php ├── object-enumerator │ ├── .psalm │ │ ├── baseline.xml │ │ └── config.xml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml │ └── src │ │ ├── Enumerator.php │ │ ├── Exception.php │ │ └── InvalidArgumentException.php ├── object-reflector │ ├── .psalm │ │ ├── baseline.xml │ │ └── config.xml │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ └── ObjectReflector.php ├── recursion-context │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Context.php │ │ ├── Exception.php │ │ └── InvalidArgumentException.php ├── resource-operations │ ├── .gitattributes │ ├── .gitignore │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── build │ │ └── generate.php │ ├── composer.json │ └── src │ │ └── ResourceOperations.php ├── type │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.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 │ ├── .gitattributes │ ├── .gitignore │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Version.php ├── sensio └── framework-extra-bundle │ ├── .gitattributes │ ├── .github │ └── workflows │ │ └── tests.yaml │ ├── .gitignore │ ├── .php_cs.dist │ ├── .symfony.bundle.yaml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── Configuration │ ├── Cache.php │ ├── ConfigurationAnnotation.php │ ├── ConfigurationInterface.php │ ├── Entity.php │ ├── IsGranted.php │ ├── Method.php │ ├── ParamConverter.php │ ├── Route.php │ ├── Security.php │ └── Template.php │ ├── DependencyInjection │ ├── Compiler │ │ ├── AddExpressionLanguageProvidersPass.php │ │ ├── AddParamConverterPass.php │ │ └── OptimizerPass.php │ ├── Configuration.php │ └── SensioFrameworkExtraExtension.php │ ├── EventListener │ ├── ControllerListener.php │ ├── HttpCacheListener.php │ ├── IsGrantedListener.php │ ├── ParamConverterListener.php │ ├── SecurityListener.php │ └── TemplateListener.php │ ├── Request │ ├── ArgumentNameConverter.php │ └── ParamConverter │ │ ├── DateTimeParamConverter.php │ │ ├── DoctrineParamConverter.php │ │ ├── ParamConverterInterface.php │ │ └── ParamConverterManager.php │ ├── Resources │ ├── config │ │ ├── annotations.xml │ │ ├── cache.xml │ │ ├── converters.xml │ │ ├── routing-4.4.xml │ │ ├── routing.xml │ │ ├── security.xml │ │ └── view.xml │ └── doc │ │ ├── annotations │ │ ├── cache.rst │ │ ├── converters.rst │ │ ├── routing.rst │ │ ├── security.rst │ │ └── view.rst │ │ └── index.rst │ ├── Routing │ └── AnnotatedRouteControllerLoader.php │ ├── Security │ └── ExpressionLanguage.php │ ├── SensioFrameworkExtraBundle.php │ └── Templating │ └── TemplateGuesser.php ├── symfony ├── amqp-messenger │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── Transport │ │ ├── AmqpFactory.php │ │ ├── AmqpReceivedStamp.php │ │ ├── AmqpReceiver.php │ │ ├── AmqpSender.php │ │ ├── AmqpStamp.php │ │ ├── AmqpTransport.php │ │ ├── AmqpTransportFactory.php │ │ └── Connection.php │ └── composer.json ├── asset │ ├── CHANGELOG.md │ ├── Context │ │ ├── ContextInterface.php │ │ ├── NullContext.php │ │ └── RequestStackContext.php │ ├── Exception │ │ ├── AssetNotFoundException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── LogicException.php │ │ └── RuntimeException.php │ ├── LICENSE │ ├── Package.php │ ├── PackageInterface.php │ ├── Packages.php │ ├── PathPackage.php │ ├── README.md │ ├── UrlPackage.php │ ├── VersionStrategy │ │ ├── EmptyVersionStrategy.php │ │ ├── JsonManifestVersionStrategy.php │ │ ├── RemoteJsonManifestVersionStrategy.php │ │ ├── StaticVersionStrategy.php │ │ └── VersionStrategyInterface.php │ └── composer.json ├── browser-kit │ ├── AbstractBrowser.php │ ├── CHANGELOG.md │ ├── Cookie.php │ ├── CookieJar.php │ ├── Exception │ │ └── BadMethodCallException.php │ ├── History.php │ ├── HttpBrowser.php │ ├── LICENSE │ ├── README.md │ ├── Request.php │ ├── Response.php │ ├── Test │ │ └── Constraint │ │ │ ├── BrowserCookieValueSame.php │ │ │ └── BrowserHasCookie.php │ └── composer.json ├── cache-contracts │ ├── .gitignore │ ├── CHANGELOG.md │ ├── CacheInterface.php │ ├── CacheTrait.php │ ├── CallbackInterface.php │ ├── ItemInterface.php │ ├── LICENSE │ ├── README.md │ ├── TagAwareCacheInterface.php │ └── composer.json ├── cache │ ├── Adapter │ │ ├── AbstractAdapter.php │ │ ├── AbstractTagAwareAdapter.php │ │ ├── AdapterInterface.php │ │ ├── ApcuAdapter.php │ │ ├── ArrayAdapter.php │ │ ├── ChainAdapter.php │ │ ├── CouchbaseBucketAdapter.php │ │ ├── CouchbaseCollectionAdapter.php │ │ ├── DoctrineAdapter.php │ │ ├── DoctrineDbalAdapter.php │ │ ├── FilesystemAdapter.php │ │ ├── FilesystemTagAwareAdapter.php │ │ ├── MemcachedAdapter.php │ │ ├── NullAdapter.php │ │ ├── ParameterNormalizer.php │ │ ├── PdoAdapter.php │ │ ├── PhpArrayAdapter.php │ │ ├── PhpFilesAdapter.php │ │ ├── ProxyAdapter.php │ │ ├── Psr16Adapter.php │ │ ├── RedisAdapter.php │ │ ├── RedisTagAwareAdapter.php │ │ ├── TagAwareAdapter.php │ │ ├── TagAwareAdapterInterface.php │ │ ├── TraceableAdapter.php │ │ └── TraceableTagAwareAdapter.php │ ├── CHANGELOG.md │ ├── CacheItem.php │ ├── DataCollector │ │ └── CacheDataCollector.php │ ├── DependencyInjection │ │ ├── CacheCollectorPass.php │ │ ├── CachePoolClearerPass.php │ │ ├── CachePoolPass.php │ │ └── CachePoolPrunerPass.php │ ├── DoctrineProvider.php │ ├── Exception │ │ ├── CacheException.php │ │ ├── InvalidArgumentException.php │ │ └── LogicException.php │ ├── LICENSE │ ├── LockRegistry.php │ ├── Marshaller │ │ ├── DefaultMarshaller.php │ │ ├── DeflateMarshaller.php │ │ ├── MarshallerInterface.php │ │ ├── SodiumMarshaller.php │ │ └── TagAwareMarshaller.php │ ├── Messenger │ │ ├── EarlyExpirationDispatcher.php │ │ ├── EarlyExpirationHandler.php │ │ └── EarlyExpirationMessage.php │ ├── PruneableInterface.php │ ├── Psr16Cache.php │ ├── README.md │ ├── ResettableInterface.php │ ├── Traits │ │ ├── AbstractAdapterTrait.php │ │ ├── ContractsTrait.php │ │ ├── FilesystemCommonTrait.php │ │ ├── FilesystemTrait.php │ │ ├── ProxyTrait.php │ │ ├── RedisClusterNodeProxy.php │ │ ├── RedisClusterProxy.php │ │ ├── RedisProxy.php │ │ └── RedisTrait.php │ └── composer.json ├── config │ ├── Builder │ │ ├── ClassBuilder.php │ │ ├── ConfigBuilderGenerator.php │ │ ├── ConfigBuilderGeneratorInterface.php │ │ ├── ConfigBuilderInterface.php │ │ ├── Method.php │ │ └── Property.php │ ├── CHANGELOG.md │ ├── ConfigCache.php │ ├── ConfigCacheFactory.php │ ├── ConfigCacheFactoryInterface.php │ ├── ConfigCacheInterface.php │ ├── Definition │ │ ├── ArrayNode.php │ │ ├── BaseNode.php │ │ ├── BooleanNode.php │ │ ├── Builder │ │ │ ├── ArrayNodeDefinition.php │ │ │ ├── BooleanNodeDefinition.php │ │ │ ├── BuilderAwareInterface.php │ │ │ ├── EnumNodeDefinition.php │ │ │ ├── ExprBuilder.php │ │ │ ├── FloatNodeDefinition.php │ │ │ ├── IntegerNodeDefinition.php │ │ │ ├── MergeBuilder.php │ │ │ ├── NodeBuilder.php │ │ │ ├── NodeDefinition.php │ │ │ ├── NodeParentInterface.php │ │ │ ├── NormalizationBuilder.php │ │ │ ├── NumericNodeDefinition.php │ │ │ ├── ParentNodeDefinitionInterface.php │ │ │ ├── ScalarNodeDefinition.php │ │ │ ├── TreeBuilder.php │ │ │ ├── ValidationBuilder.php │ │ │ └── VariableNodeDefinition.php │ │ ├── ConfigurationInterface.php │ │ ├── Dumper │ │ │ ├── XmlReferenceDumper.php │ │ │ └── YamlReferenceDumper.php │ │ ├── EnumNode.php │ │ ├── Exception │ │ │ ├── DuplicateKeyException.php │ │ │ ├── Exception.php │ │ │ ├── ForbiddenOverwriteException.php │ │ │ ├── InvalidConfigurationException.php │ │ │ ├── InvalidDefinitionException.php │ │ │ ├── InvalidTypeException.php │ │ │ └── UnsetKeyException.php │ │ ├── FloatNode.php │ │ ├── IntegerNode.php │ │ ├── NodeInterface.php │ │ ├── NumericNode.php │ │ ├── Processor.php │ │ ├── PrototypeNodeInterface.php │ │ ├── PrototypedArrayNode.php │ │ ├── ScalarNode.php │ │ └── VariableNode.php │ ├── Exception │ │ ├── FileLoaderImportCircularReferenceException.php │ │ ├── FileLocatorFileNotFoundException.php │ │ └── LoaderLoadException.php │ ├── FileLocator.php │ ├── FileLocatorInterface.php │ ├── LICENSE │ ├── Loader │ │ ├── DelegatingLoader.php │ │ ├── FileLoader.php │ │ ├── GlobFileLoader.php │ │ ├── Loader.php │ │ ├── LoaderInterface.php │ │ ├── LoaderResolver.php │ │ ├── LoaderResolverInterface.php │ │ └── ParamConfigurator.php │ ├── README.md │ ├── Resource │ │ ├── ClassExistenceResource.php │ │ ├── ComposerResource.php │ │ ├── DirectoryResource.php │ │ ├── FileExistenceResource.php │ │ ├── FileResource.php │ │ ├── GlobResource.php │ │ ├── ReflectionClassResource.php │ │ ├── ResourceInterface.php │ │ ├── SelfCheckingResourceChecker.php │ │ └── SelfCheckingResourceInterface.php │ ├── ResourceCheckerConfigCache.php │ ├── ResourceCheckerConfigCacheFactory.php │ ├── ResourceCheckerInterface.php │ ├── Util │ │ ├── Exception │ │ │ ├── InvalidXmlException.php │ │ │ └── XmlParsingException.php │ │ └── XmlUtils.php │ └── composer.json ├── console │ ├── Application.php │ ├── Attribute │ │ └── AsCommand.php │ ├── CHANGELOG.md │ ├── CI │ │ └── GithubActionReporter.php │ ├── Color.php │ ├── Command │ │ ├── Command.php │ │ ├── CompleteCommand.php │ │ ├── DumpCompletionCommand.php │ │ ├── HelpCommand.php │ │ ├── LazyCommand.php │ │ ├── ListCommand.php │ │ ├── LockableTrait.php │ │ └── SignalableCommandInterface.php │ ├── CommandLoader │ │ ├── CommandLoaderInterface.php │ │ ├── ContainerCommandLoader.php │ │ └── FactoryCommandLoader.php │ ├── Completion │ │ ├── CompletionInput.php │ │ ├── CompletionSuggestions.php │ │ ├── Output │ │ │ ├── BashCompletionOutput.php │ │ │ └── CompletionOutputInterface.php │ │ └── Suggestion.php │ ├── ConsoleEvents.php │ ├── Cursor.php │ ├── DependencyInjection │ │ └── AddConsoleCommandPass.php │ ├── Descriptor │ │ ├── ApplicationDescription.php │ │ ├── Descriptor.php │ │ ├── DescriptorInterface.php │ │ ├── JsonDescriptor.php │ │ ├── MarkdownDescriptor.php │ │ ├── TextDescriptor.php │ │ └── XmlDescriptor.php │ ├── Event │ │ ├── ConsoleCommandEvent.php │ │ ├── ConsoleErrorEvent.php │ │ ├── ConsoleEvent.php │ │ ├── ConsoleSignalEvent.php │ │ └── ConsoleTerminateEvent.php │ ├── EventListener │ │ └── ErrorListener.php │ ├── Exception │ │ ├── CommandNotFoundException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidOptionException.php │ │ ├── LogicException.php │ │ ├── MissingInputException.php │ │ ├── NamespaceNotFoundException.php │ │ └── RuntimeException.php │ ├── Formatter │ │ ├── NullOutputFormatter.php │ │ ├── NullOutputFormatterStyle.php │ │ ├── OutputFormatter.php │ │ ├── OutputFormatterInterface.php │ │ ├── OutputFormatterStyle.php │ │ ├── OutputFormatterStyleInterface.php │ │ ├── OutputFormatterStyleStack.php │ │ └── WrappableOutputFormatterInterface.php │ ├── Helper │ │ ├── DebugFormatterHelper.php │ │ ├── DescriptorHelper.php │ │ ├── Dumper.php │ │ ├── FormatterHelper.php │ │ ├── Helper.php │ │ ├── HelperInterface.php │ │ ├── HelperSet.php │ │ ├── InputAwareHelper.php │ │ ├── ProcessHelper.php │ │ ├── ProgressBar.php │ │ ├── ProgressIndicator.php │ │ ├── QuestionHelper.php │ │ ├── SymfonyQuestionHelper.php │ │ ├── Table.php │ │ ├── TableCell.php │ │ ├── TableCellStyle.php │ │ ├── TableRows.php │ │ ├── TableSeparator.php │ │ └── TableStyle.php │ ├── Input │ │ ├── ArgvInput.php │ │ ├── ArrayInput.php │ │ ├── Input.php │ │ ├── InputArgument.php │ │ ├── InputAwareInterface.php │ │ ├── InputDefinition.php │ │ ├── InputInterface.php │ │ ├── InputOption.php │ │ ├── StreamableInputInterface.php │ │ └── StringInput.php │ ├── LICENSE │ ├── Logger │ │ └── ConsoleLogger.php │ ├── Output │ │ ├── BufferedOutput.php │ │ ├── ConsoleOutput.php │ │ ├── ConsoleOutputInterface.php │ │ ├── ConsoleSectionOutput.php │ │ ├── NullOutput.php │ │ ├── Output.php │ │ ├── OutputInterface.php │ │ ├── StreamOutput.php │ │ └── TrimmedBufferOutput.php │ ├── Question │ │ ├── ChoiceQuestion.php │ │ ├── ConfirmationQuestion.php │ │ └── Question.php │ ├── README.md │ ├── Resources │ │ ├── bin │ │ │ └── hiddeninput.exe │ │ └── completion.bash │ ├── SignalRegistry │ │ └── SignalRegistry.php │ ├── SingleCommandApplication.php │ ├── Style │ │ ├── OutputStyle.php │ │ ├── StyleInterface.php │ │ └── SymfonyStyle.php │ ├── Terminal.php │ ├── Tester │ │ ├── ApplicationTester.php │ │ ├── CommandCompletionTester.php │ │ ├── CommandTester.php │ │ ├── Constraint │ │ │ └── CommandIsSuccessful.php │ │ └── TesterTrait.php │ └── composer.json ├── css-selector │ ├── CHANGELOG.md │ ├── CssSelectorConverter.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── ExpressionErrorException.php │ │ ├── InternalErrorException.php │ │ ├── ParseException.php │ │ └── SyntaxErrorException.php │ ├── LICENSE │ ├── Node │ │ ├── AbstractNode.php │ │ ├── AttributeNode.php │ │ ├── ClassNode.php │ │ ├── CombinedSelectorNode.php │ │ ├── ElementNode.php │ │ ├── FunctionNode.php │ │ ├── HashNode.php │ │ ├── NegationNode.php │ │ ├── NodeInterface.php │ │ ├── PseudoNode.php │ │ ├── SelectorNode.php │ │ └── Specificity.php │ ├── Parser │ │ ├── Handler │ │ │ ├── CommentHandler.php │ │ │ ├── HandlerInterface.php │ │ │ ├── HashHandler.php │ │ │ ├── IdentifierHandler.php │ │ │ ├── NumberHandler.php │ │ │ ├── StringHandler.php │ │ │ └── WhitespaceHandler.php │ │ ├── Parser.php │ │ ├── ParserInterface.php │ │ ├── Reader.php │ │ ├── Shortcut │ │ │ ├── ClassParser.php │ │ │ ├── ElementParser.php │ │ │ ├── EmptyStringParser.php │ │ │ └── HashParser.php │ │ ├── Token.php │ │ ├── TokenStream.php │ │ └── Tokenizer │ │ │ ├── Tokenizer.php │ │ │ ├── TokenizerEscaping.php │ │ │ └── TokenizerPatterns.php │ ├── README.md │ ├── XPath │ │ ├── Extension │ │ │ ├── AbstractExtension.php │ │ │ ├── AttributeMatchingExtension.php │ │ │ ├── CombinationExtension.php │ │ │ ├── ExtensionInterface.php │ │ │ ├── FunctionExtension.php │ │ │ ├── HtmlExtension.php │ │ │ ├── NodeExtension.php │ │ │ └── PseudoClassExtension.php │ │ ├── Translator.php │ │ ├── TranslatorInterface.php │ │ └── XPathExpr.php │ └── composer.json ├── debug-bundle │ ├── CHANGELOG.md │ ├── Command │ │ └── ServerDumpPlaceholderCommand.php │ ├── DebugBundle.php │ ├── DependencyInjection │ │ ├── Compiler │ │ │ └── DumpDataCollectorPass.php │ │ ├── Configuration.php │ │ └── DebugExtension.php │ ├── LICENSE │ ├── README.md │ ├── Resources │ │ ├── config │ │ │ ├── schema │ │ │ │ └── debug-1.0.xsd │ │ │ └── services.php │ │ └── views │ │ │ └── Profiler │ │ │ ├── dump.html.twig │ │ │ └── icon.svg │ └── composer.json ├── dependency-injection │ ├── Alias.php │ ├── Argument │ │ ├── AbstractArgument.php │ │ ├── ArgumentInterface.php │ │ ├── BoundArgument.php │ │ ├── IteratorArgument.php │ │ ├── ReferenceSetArgumentTrait.php │ │ ├── RewindableGenerator.php │ │ ├── ServiceClosureArgument.php │ │ ├── ServiceLocator.php │ │ ├── ServiceLocatorArgument.php │ │ └── TaggedIteratorArgument.php │ ├── Attribute │ │ ├── AsTaggedItem.php │ │ ├── Autoconfigure.php │ │ ├── AutoconfigureTag.php │ │ ├── TaggedIterator.php │ │ ├── TaggedLocator.php │ │ ├── Target.php │ │ └── When.php │ ├── CHANGELOG.md │ ├── ChildDefinition.php │ ├── Compiler │ │ ├── AbstractRecursivePass.php │ │ ├── AliasDeprecatedPublicServicesPass.php │ │ ├── AnalyzeServiceReferencesPass.php │ │ ├── AttributeAutoconfigurationPass.php │ │ ├── AutoAliasServicePass.php │ │ ├── AutowirePass.php │ │ ├── AutowireRequiredMethodsPass.php │ │ ├── AutowireRequiredPropertiesPass.php │ │ ├── CheckArgumentsValidityPass.php │ │ ├── CheckCircularReferencesPass.php │ │ ├── CheckDefinitionValidityPass.php │ │ ├── CheckExceptionOnInvalidReferenceBehaviorPass.php │ │ ├── CheckReferenceValidityPass.php │ │ ├── CheckTypeDeclarationsPass.php │ │ ├── Compiler.php │ │ ├── CompilerPassInterface.php │ │ ├── DecoratorServicePass.php │ │ ├── DefinitionErrorExceptionPass.php │ │ ├── ExtensionCompilerPass.php │ │ ├── InlineServiceDefinitionsPass.php │ │ ├── MergeExtensionConfigurationPass.php │ │ ├── PassConfig.php │ │ ├── PriorityTaggedServiceTrait.php │ │ ├── RegisterAutoconfigureAttributesPass.php │ │ ├── RegisterEnvVarProcessorsPass.php │ │ ├── RegisterReverseContainerPass.php │ │ ├── RegisterServiceSubscribersPass.php │ │ ├── RemoveAbstractDefinitionsPass.php │ │ ├── RemovePrivateAliasesPass.php │ │ ├── RemoveUnusedDefinitionsPass.php │ │ ├── ReplaceAliasByActualDefinitionPass.php │ │ ├── ResolveBindingsPass.php │ │ ├── ResolveChildDefinitionsPass.php │ │ ├── ResolveClassPass.php │ │ ├── ResolveDecoratorStackPass.php │ │ ├── ResolveEnvPlaceholdersPass.php │ │ ├── ResolveFactoryClassPass.php │ │ ├── ResolveHotPathPass.php │ │ ├── ResolveInstanceofConditionalsPass.php │ │ ├── ResolveInvalidReferencesPass.php │ │ ├── ResolveNamedArgumentsPass.php │ │ ├── ResolveNoPreloadPass.php │ │ ├── ResolveParameterPlaceHoldersPass.php │ │ ├── ResolvePrivatesPass.php │ │ ├── ResolveReferencesToAliasesPass.php │ │ ├── ResolveServiceSubscribersPass.php │ │ ├── ResolveTaggedIteratorArgumentPass.php │ │ ├── ServiceLocatorTagPass.php │ │ ├── ServiceReferenceGraph.php │ │ ├── ServiceReferenceGraphEdge.php │ │ ├── ServiceReferenceGraphNode.php │ │ └── ValidateEnvPlaceholdersPass.php │ ├── Config │ │ ├── ContainerParametersResource.php │ │ └── ContainerParametersResourceChecker.php │ ├── Container.php │ ├── ContainerAwareInterface.php │ ├── ContainerAwareTrait.php │ ├── ContainerBuilder.php │ ├── ContainerInterface.php │ ├── Definition.php │ ├── Dumper │ │ ├── Dumper.php │ │ ├── DumperInterface.php │ │ ├── GraphvizDumper.php │ │ ├── PhpDumper.php │ │ ├── Preloader.php │ │ ├── XmlDumper.php │ │ └── YamlDumper.php │ ├── EnvVarLoaderInterface.php │ ├── EnvVarProcessor.php │ ├── EnvVarProcessorInterface.php │ ├── Exception │ │ ├── AutowiringFailedException.php │ │ ├── BadMethodCallException.php │ │ ├── EnvNotFoundException.php │ │ ├── EnvParameterException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidParameterTypeException.php │ │ ├── LogicException.php │ │ ├── OutOfBoundsException.php │ │ ├── ParameterCircularReferenceException.php │ │ ├── ParameterNotFoundException.php │ │ ├── RuntimeException.php │ │ ├── ServiceCircularReferenceException.php │ │ └── ServiceNotFoundException.php │ ├── ExpressionLanguage.php │ ├── ExpressionLanguageProvider.php │ ├── Extension │ │ ├── ConfigurationExtensionInterface.php │ │ ├── Extension.php │ │ ├── ExtensionInterface.php │ │ └── PrependExtensionInterface.php │ ├── LICENSE │ ├── LazyProxy │ │ ├── Instantiator │ │ │ ├── InstantiatorInterface.php │ │ │ └── RealServiceInstantiator.php │ │ ├── PhpDumper │ │ │ ├── DumperInterface.php │ │ │ └── NullDumper.php │ │ └── ProxyHelper.php │ ├── Loader │ │ ├── ClosureLoader.php │ │ ├── Configurator │ │ │ ├── AbstractConfigurator.php │ │ │ ├── AbstractServiceConfigurator.php │ │ │ ├── AliasConfigurator.php │ │ │ ├── ClosureReferenceConfigurator.php │ │ │ ├── ContainerConfigurator.php │ │ │ ├── DefaultsConfigurator.php │ │ │ ├── EnvConfigurator.php │ │ │ ├── InlineServiceConfigurator.php │ │ │ ├── InstanceofConfigurator.php │ │ │ ├── ParametersConfigurator.php │ │ │ ├── PrototypeConfigurator.php │ │ │ ├── ReferenceConfigurator.php │ │ │ ├── ServiceConfigurator.php │ │ │ ├── ServicesConfigurator.php │ │ │ └── Traits │ │ │ │ ├── AbstractTrait.php │ │ │ │ ├── ArgumentTrait.php │ │ │ │ ├── AutoconfigureTrait.php │ │ │ │ ├── AutowireTrait.php │ │ │ │ ├── BindTrait.php │ │ │ │ ├── CallTrait.php │ │ │ │ ├── ClassTrait.php │ │ │ │ ├── ConfiguratorTrait.php │ │ │ │ ├── DecorateTrait.php │ │ │ │ ├── DeprecateTrait.php │ │ │ │ ├── FactoryTrait.php │ │ │ │ ├── FileTrait.php │ │ │ │ ├── LazyTrait.php │ │ │ │ ├── ParentTrait.php │ │ │ │ ├── PropertyTrait.php │ │ │ │ ├── PublicTrait.php │ │ │ │ ├── ShareTrait.php │ │ │ │ ├── SyntheticTrait.php │ │ │ │ └── TagTrait.php │ │ ├── DirectoryLoader.php │ │ ├── FileLoader.php │ │ ├── GlobFileLoader.php │ │ ├── IniFileLoader.php │ │ ├── PhpFileLoader.php │ │ ├── XmlFileLoader.php │ │ ├── YamlFileLoader.php │ │ └── schema │ │ │ └── dic │ │ │ └── services │ │ │ └── services-1.0.xsd │ ├── Parameter.php │ ├── ParameterBag │ │ ├── ContainerBag.php │ │ ├── ContainerBagInterface.php │ │ ├── EnvPlaceholderParameterBag.php │ │ ├── FrozenParameterBag.php │ │ ├── ParameterBag.php │ │ └── ParameterBagInterface.php │ ├── README.md │ ├── Reference.php │ ├── ReverseContainer.php │ ├── ServiceLocator.php │ ├── TaggedContainerInterface.php │ ├── TypedReference.php │ ├── Variable.php │ └── composer.json ├── deprecation-contracts │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── function.php ├── doctrine-bridge │ ├── CHANGELOG.md │ ├── CacheWarmer │ │ └── ProxyCacheWarmer.php │ ├── ContainerAwareEventManager.php │ ├── DataCollector │ │ ├── DoctrineDataCollector.php │ │ └── ObjectParameter.php │ ├── DataFixtures │ │ └── ContainerAwareLoader.php │ ├── DependencyInjection │ │ ├── AbstractDoctrineExtension.php │ │ ├── CompilerPass │ │ │ ├── DoctrineValidationPass.php │ │ │ ├── RegisterEventListenersAndSubscribersPass.php │ │ │ ├── RegisterMappingsPass.php │ │ │ └── RegisterUidTypePass.php │ │ └── Security │ │ │ └── UserProvider │ │ │ └── EntityFactory.php │ ├── Form │ │ ├── ChoiceList │ │ │ ├── DoctrineChoiceLoader.php │ │ │ ├── EntityLoaderInterface.php │ │ │ ├── IdReader.php │ │ │ └── ORMQueryBuilderLoader.php │ │ ├── DataTransformer │ │ │ └── CollectionToArrayTransformer.php │ │ ├── DoctrineOrmExtension.php │ │ ├── DoctrineOrmTypeGuesser.php │ │ ├── EventListener │ │ │ └── MergeDoctrineCollectionListener.php │ │ └── Type │ │ │ ├── DoctrineType.php │ │ │ └── EntityType.php │ ├── IdGenerator │ │ ├── UlidGenerator.php │ │ └── UuidGenerator.php │ ├── LICENSE │ ├── Logger │ │ └── DbalLogger.php │ ├── ManagerRegistry.php │ ├── Messenger │ │ ├── AbstractDoctrineMiddleware.php │ │ ├── DoctrineClearEntityManagerWorkerSubscriber.php │ │ ├── DoctrineCloseConnectionMiddleware.php │ │ ├── DoctrineOpenTransactionLoggerMiddleware.php │ │ ├── DoctrinePingConnectionMiddleware.php │ │ └── DoctrineTransactionMiddleware.php │ ├── Middleware │ │ └── Debug │ │ │ ├── Connection.php │ │ │ ├── DebugDataHolder.php │ │ │ ├── Driver.php │ │ │ ├── Middleware.php │ │ │ ├── Query.php │ │ │ └── Statement.php │ ├── PropertyInfo │ │ └── DoctrineExtractor.php │ ├── README.md │ ├── SchemaListener │ │ ├── DoctrineDbalCacheAdapterSchemaSubscriber.php │ │ ├── MessengerTransportDoctrineSchemaSubscriber.php │ │ ├── PdoCacheAdapterDoctrineSchemaSubscriber.php │ │ └── RememberMeTokenProviderDoctrineSchemaSubscriber.php │ ├── Security │ │ ├── RememberMe │ │ │ └── DoctrineTokenProvider.php │ │ └── User │ │ │ ├── EntityUserProvider.php │ │ │ └── UserLoaderInterface.php │ ├── Test │ │ ├── DoctrineTestHelper.php │ │ └── TestRepositoryFactory.php │ ├── Types │ │ ├── AbstractUidType.php │ │ ├── UlidType.php │ │ └── UuidType.php │ ├── Validator │ │ ├── Constraints │ │ │ ├── UniqueEntity.php │ │ │ └── UniqueEntityValidator.php │ │ ├── DoctrineInitializer.php │ │ └── DoctrineLoader.php │ └── composer.json ├── doctrine-messenger │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── Transport │ │ ├── Connection.php │ │ ├── DoctrineReceivedStamp.php │ │ ├── DoctrineReceiver.php │ │ ├── DoctrineSender.php │ │ ├── DoctrineTransport.php │ │ ├── DoctrineTransportFactory.php │ │ └── PostgreSqlConnection.php │ └── composer.json ├── dom-crawler │ ├── AbstractUriElement.php │ ├── CHANGELOG.md │ ├── Crawler.php │ ├── Field │ │ ├── ChoiceFormField.php │ │ ├── FileFormField.php │ │ ├── FormField.php │ │ ├── InputFormField.php │ │ └── TextareaFormField.php │ ├── Form.php │ ├── FormFieldRegistry.php │ ├── Image.php │ ├── LICENSE │ ├── Link.php │ ├── README.md │ ├── Test │ │ └── Constraint │ │ │ ├── CrawlerSelectorAttributeValueSame.php │ │ │ ├── CrawlerSelectorExists.php │ │ │ ├── CrawlerSelectorTextContains.php │ │ │ └── CrawlerSelectorTextSame.php │ ├── UriResolver.php │ └── composer.json ├── dotenv │ ├── CHANGELOG.md │ ├── Command │ │ ├── DebugCommand.php │ │ └── DotenvDumpCommand.php │ ├── Dotenv.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── FormatException.php │ │ ├── FormatExceptionContext.php │ │ └── PathException.php │ ├── LICENSE │ ├── README.md │ └── composer.json ├── error-handler │ ├── BufferingLogger.php │ ├── CHANGELOG.md │ ├── Debug.php │ ├── DebugClassLoader.php │ ├── Error │ │ ├── ClassNotFoundError.php │ │ ├── FatalError.php │ │ ├── OutOfMemoryError.php │ │ ├── UndefinedFunctionError.php │ │ └── UndefinedMethodError.php │ ├── ErrorEnhancer │ │ ├── ClassNotFoundErrorEnhancer.php │ │ ├── ErrorEnhancerInterface.php │ │ ├── UndefinedFunctionErrorEnhancer.php │ │ └── UndefinedMethodErrorEnhancer.php │ ├── ErrorHandler.php │ ├── ErrorRenderer │ │ ├── CliErrorRenderer.php │ │ ├── ErrorRendererInterface.php │ │ ├── HtmlErrorRenderer.php │ │ └── SerializerErrorRenderer.php │ ├── Exception │ │ ├── FlattenException.php │ │ └── SilencedErrorContext.php │ ├── Internal │ │ └── TentativeTypes.php │ ├── LICENSE │ ├── README.md │ ├── Resources │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── error.css │ │ │ │ ├── exception.css │ │ │ │ └── exception_full.css │ │ │ ├── images │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── favicon.png.base64 │ │ │ │ ├── icon-book.svg │ │ │ │ ├── icon-copy.svg │ │ │ │ ├── icon-minus-square-o.svg │ │ │ │ ├── icon-minus-square.svg │ │ │ │ ├── icon-plus-square-o.svg │ │ │ │ ├── icon-plus-square.svg │ │ │ │ ├── icon-support.svg │ │ │ │ ├── symfony-ghost.svg.php │ │ │ │ └── symfony-logo.svg │ │ │ └── js │ │ │ │ └── exception.js │ │ ├── bin │ │ │ ├── extract-tentative-return-types.php │ │ │ └── patch-type-declarations │ │ └── views │ │ │ ├── error.html.php │ │ │ ├── exception.html.php │ │ │ ├── exception_full.html.php │ │ │ ├── logs.html.php │ │ │ ├── trace.html.php │ │ │ ├── traces.html.php │ │ │ └── traces_text.html.php │ ├── ThrowableUtils.php │ └── composer.json ├── event-dispatcher-contracts │ ├── CHANGELOG.md │ ├── Event.php │ ├── EventDispatcherInterface.php │ ├── LICENSE │ ├── README.md │ └── composer.json ├── event-dispatcher │ ├── Attribute │ │ └── AsEventListener.php │ ├── CHANGELOG.md │ ├── Debug │ │ ├── TraceableEventDispatcher.php │ │ └── WrappedListener.php │ ├── DependencyInjection │ │ ├── AddEventAliasesPass.php │ │ └── RegisterListenersPass.php │ ├── EventDispatcher.php │ ├── EventDispatcherInterface.php │ ├── EventSubscriberInterface.php │ ├── GenericEvent.php │ ├── ImmutableEventDispatcher.php │ ├── LICENSE │ ├── LegacyEventDispatcherProxy.php │ ├── README.md │ └── composer.json ├── expression-language │ ├── CHANGELOG.md │ ├── Compiler.php │ ├── Expression.php │ ├── ExpressionFunction.php │ ├── ExpressionFunctionProviderInterface.php │ ├── ExpressionLanguage.php │ ├── LICENSE │ ├── Lexer.php │ ├── Node │ │ ├── ArgumentsNode.php │ │ ├── ArrayNode.php │ │ ├── BinaryNode.php │ │ ├── ConditionalNode.php │ │ ├── ConstantNode.php │ │ ├── FunctionNode.php │ │ ├── GetAttrNode.php │ │ ├── NameNode.php │ │ ├── Node.php │ │ └── UnaryNode.php │ ├── ParsedExpression.php │ ├── Parser.php │ ├── README.md │ ├── Resources │ │ └── bin │ │ │ └── generate_operator_regex.php │ ├── SerializedParsedExpression.php │ ├── SyntaxError.php │ ├── Token.php │ ├── TokenStream.php │ └── composer.json ├── filesystem │ ├── CHANGELOG.md │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── FileNotFoundException.php │ │ ├── IOException.php │ │ ├── IOExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ └── RuntimeException.php │ ├── Filesystem.php │ ├── LICENSE │ ├── Path.php │ ├── README.md │ └── composer.json ├── finder │ ├── CHANGELOG.md │ ├── Comparator │ │ ├── Comparator.php │ │ ├── DateComparator.php │ │ └── NumberComparator.php │ ├── Exception │ │ ├── AccessDeniedException.php │ │ └── DirectoryNotFoundException.php │ ├── Finder.php │ ├── Gitignore.php │ ├── Glob.php │ ├── Iterator │ │ ├── CustomFilterIterator.php │ │ ├── DateRangeFilterIterator.php │ │ ├── DepthRangeFilterIterator.php │ │ ├── ExcludeDirectoryFilterIterator.php │ │ ├── FileTypeFilterIterator.php │ │ ├── FilecontentFilterIterator.php │ │ ├── FilenameFilterIterator.php │ │ ├── LazyIterator.php │ │ ├── MultiplePcreFilterIterator.php │ │ ├── PathFilterIterator.php │ │ ├── RecursiveDirectoryIterator.php │ │ ├── SizeRangeFilterIterator.php │ │ ├── SortableIterator.php │ │ └── VcsIgnoredFilterIterator.php │ ├── LICENSE │ ├── README.md │ ├── SplFileInfo.php │ └── composer.json ├── flex │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Command │ │ ├── DumpEnvCommand.php │ │ ├── InstallRecipesCommand.php │ │ ├── RecipesCommand.php │ │ └── UpdateRecipesCommand.php │ │ ├── Configurator.php │ │ ├── Configurator │ │ ├── AbstractConfigurator.php │ │ ├── BundlesConfigurator.php │ │ ├── ComposerScriptsConfigurator.php │ │ ├── ContainerConfigurator.php │ │ ├── CopyFromPackageConfigurator.php │ │ ├── CopyFromRecipeConfigurator.php │ │ ├── DockerComposeConfigurator.php │ │ ├── DockerfileConfigurator.php │ │ ├── EnvConfigurator.php │ │ ├── GitignoreConfigurator.php │ │ └── MakefileConfigurator.php │ │ ├── Downloader.php │ │ ├── Event │ │ └── UpdateEvent.php │ │ ├── Flex.php │ │ ├── GithubApi.php │ │ ├── InformationOperation.php │ │ ├── Lock.php │ │ ├── Options.php │ │ ├── PackageFilter.php │ │ ├── PackageJsonSynchronizer.php │ │ ├── PackageResolver.php │ │ ├── Path.php │ │ ├── Recipe.php │ │ ├── Response.php │ │ ├── ScriptExecutor.php │ │ ├── SymfonyBundle.php │ │ ├── Unpack │ │ ├── Operation.php │ │ └── Result.php │ │ ├── Unpacker.php │ │ └── Update │ │ ├── DiffHelper.php │ │ ├── RecipePatch.php │ │ ├── RecipePatcher.php │ │ └── RecipeUpdate.php ├── form │ ├── AbstractExtension.php │ ├── AbstractRendererEngine.php │ ├── AbstractType.php │ ├── AbstractTypeExtension.php │ ├── Button.php │ ├── ButtonBuilder.php │ ├── ButtonTypeInterface.php │ ├── CHANGELOG.md │ ├── CallbackTransformer.php │ ├── ChoiceList │ │ ├── ArrayChoiceList.php │ │ ├── ChoiceList.php │ │ ├── ChoiceListInterface.php │ │ ├── Factory │ │ │ ├── Cache │ │ │ │ ├── AbstractStaticOption.php │ │ │ │ ├── ChoiceAttr.php │ │ │ │ ├── ChoiceFieldName.php │ │ │ │ ├── ChoiceFilter.php │ │ │ │ ├── ChoiceLabel.php │ │ │ │ ├── ChoiceLoader.php │ │ │ │ ├── ChoiceTranslationParameters.php │ │ │ │ ├── ChoiceValue.php │ │ │ │ ├── GroupBy.php │ │ │ │ └── PreferredChoice.php │ │ │ ├── CachingFactoryDecorator.php │ │ │ ├── ChoiceListFactoryInterface.php │ │ │ ├── DefaultChoiceListFactory.php │ │ │ └── PropertyAccessDecorator.php │ │ ├── LazyChoiceList.php │ │ ├── Loader │ │ │ ├── AbstractChoiceLoader.php │ │ │ ├── CallbackChoiceLoader.php │ │ │ ├── ChoiceLoaderInterface.php │ │ │ ├── FilterChoiceLoaderDecorator.php │ │ │ └── IntlCallbackChoiceLoader.php │ │ └── View │ │ │ ├── ChoiceGroupView.php │ │ │ ├── ChoiceListView.php │ │ │ └── ChoiceView.php │ ├── ClearableErrorsInterface.php │ ├── ClickableInterface.php │ ├── Command │ │ └── DebugCommand.php │ ├── Console │ │ ├── Descriptor │ │ │ ├── Descriptor.php │ │ │ ├── JsonDescriptor.php │ │ │ └── TextDescriptor.php │ │ └── Helper │ │ │ └── DescriptorHelper.php │ ├── DataAccessorInterface.php │ ├── DataMapperInterface.php │ ├── DataTransformerInterface.php │ ├── DependencyInjection │ │ └── FormPass.php │ ├── Event │ │ ├── PostSetDataEvent.php │ │ ├── PostSubmitEvent.php │ │ ├── PreSetDataEvent.php │ │ ├── PreSubmitEvent.php │ │ └── SubmitEvent.php │ ├── Exception │ │ ├── AccessException.php │ │ ├── AlreadySubmittedException.php │ │ ├── BadMethodCallException.php │ │ ├── ErrorMappingException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidConfigurationException.php │ │ ├── LogicException.php │ │ ├── OutOfBoundsException.php │ │ ├── RuntimeException.php │ │ ├── StringCastException.php │ │ ├── TransformationFailedException.php │ │ └── UnexpectedTypeException.php │ ├── Extension │ │ ├── Core │ │ │ ├── CoreExtension.php │ │ │ ├── DataAccessor │ │ │ │ ├── CallbackAccessor.php │ │ │ │ ├── ChainAccessor.php │ │ │ │ └── PropertyPathAccessor.php │ │ │ ├── DataMapper │ │ │ │ ├── CheckboxListMapper.php │ │ │ │ ├── DataMapper.php │ │ │ │ ├── PropertyPathMapper.php │ │ │ │ └── RadioListMapper.php │ │ │ ├── DataTransformer │ │ │ │ ├── ArrayToPartsTransformer.php │ │ │ │ ├── BaseDateTimeTransformer.php │ │ │ │ ├── BooleanToStringTransformer.php │ │ │ │ ├── ChoiceToValueTransformer.php │ │ │ │ ├── ChoicesToValuesTransformer.php │ │ │ │ ├── DataTransformerChain.php │ │ │ │ ├── DateIntervalToArrayTransformer.php │ │ │ │ ├── DateIntervalToStringTransformer.php │ │ │ │ ├── DateTimeImmutableToDateTimeTransformer.php │ │ │ │ ├── DateTimeToArrayTransformer.php │ │ │ │ ├── DateTimeToHtml5LocalDateTimeTransformer.php │ │ │ │ ├── DateTimeToLocalizedStringTransformer.php │ │ │ │ ├── DateTimeToRfc3339Transformer.php │ │ │ │ ├── DateTimeToStringTransformer.php │ │ │ │ ├── DateTimeToTimestampTransformer.php │ │ │ │ ├── DateTimeZoneToStringTransformer.php │ │ │ │ ├── IntegerToLocalizedStringTransformer.php │ │ │ │ ├── IntlTimeZoneToStringTransformer.php │ │ │ │ ├── MoneyToLocalizedStringTransformer.php │ │ │ │ ├── NumberToLocalizedStringTransformer.php │ │ │ │ ├── PercentToLocalizedStringTransformer.php │ │ │ │ ├── StringToFloatTransformer.php │ │ │ │ ├── UlidToStringTransformer.php │ │ │ │ ├── UuidToStringTransformer.php │ │ │ │ ├── ValueToDuplicatesTransformer.php │ │ │ │ └── WeekToArrayTransformer.php │ │ │ ├── EventListener │ │ │ │ ├── FixUrlProtocolListener.php │ │ │ │ ├── MergeCollectionListener.php │ │ │ │ ├── ResizeFormListener.php │ │ │ │ ├── TransformationFailureListener.php │ │ │ │ └── TrimListener.php │ │ │ └── Type │ │ │ │ ├── BaseType.php │ │ │ │ ├── BirthdayType.php │ │ │ │ ├── ButtonType.php │ │ │ │ ├── CheckboxType.php │ │ │ │ ├── ChoiceType.php │ │ │ │ ├── CollectionType.php │ │ │ │ ├── ColorType.php │ │ │ │ ├── CountryType.php │ │ │ │ ├── CurrencyType.php │ │ │ │ ├── DateIntervalType.php │ │ │ │ ├── DateTimeType.php │ │ │ │ ├── DateType.php │ │ │ │ ├── EmailType.php │ │ │ │ ├── EnumType.php │ │ │ │ ├── FileType.php │ │ │ │ ├── FormType.php │ │ │ │ ├── HiddenType.php │ │ │ │ ├── IntegerType.php │ │ │ │ ├── LanguageType.php │ │ │ │ ├── LocaleType.php │ │ │ │ ├── MoneyType.php │ │ │ │ ├── NumberType.php │ │ │ │ ├── PasswordType.php │ │ │ │ ├── PercentType.php │ │ │ │ ├── RadioType.php │ │ │ │ ├── RangeType.php │ │ │ │ ├── RepeatedType.php │ │ │ │ ├── ResetType.php │ │ │ │ ├── SearchType.php │ │ │ │ ├── SubmitType.php │ │ │ │ ├── TelType.php │ │ │ │ ├── TextType.php │ │ │ │ ├── TextareaType.php │ │ │ │ ├── TimeType.php │ │ │ │ ├── TimezoneType.php │ │ │ │ ├── TransformationFailureExtension.php │ │ │ │ ├── UlidType.php │ │ │ │ ├── UrlType.php │ │ │ │ ├── UuidType.php │ │ │ │ └── WeekType.php │ │ ├── Csrf │ │ │ ├── CsrfExtension.php │ │ │ ├── EventListener │ │ │ │ └── CsrfValidationListener.php │ │ │ └── Type │ │ │ │ └── FormTypeCsrfExtension.php │ │ ├── DataCollector │ │ │ ├── DataCollectorExtension.php │ │ │ ├── EventListener │ │ │ │ └── DataCollectorListener.php │ │ │ ├── FormDataCollector.php │ │ │ ├── FormDataCollectorInterface.php │ │ │ ├── FormDataExtractor.php │ │ │ ├── FormDataExtractorInterface.php │ │ │ ├── Proxy │ │ │ │ ├── ResolvedTypeDataCollectorProxy.php │ │ │ │ └── ResolvedTypeFactoryDataCollectorProxy.php │ │ │ └── Type │ │ │ │ └── DataCollectorTypeExtension.php │ │ ├── DependencyInjection │ │ │ └── DependencyInjectionExtension.php │ │ ├── HttpFoundation │ │ │ ├── HttpFoundationExtension.php │ │ │ ├── HttpFoundationRequestHandler.php │ │ │ └── Type │ │ │ │ └── FormTypeHttpFoundationExtension.php │ │ └── Validator │ │ │ ├── Constraints │ │ │ ├── Form.php │ │ │ └── FormValidator.php │ │ │ ├── EventListener │ │ │ └── ValidationListener.php │ │ │ ├── Type │ │ │ ├── BaseValidatorExtension.php │ │ │ ├── FormTypeValidatorExtension.php │ │ │ ├── RepeatedTypeValidatorExtension.php │ │ │ ├── SubmitTypeValidatorExtension.php │ │ │ └── UploadValidatorExtension.php │ │ │ ├── Util │ │ │ └── ServerParams.php │ │ │ ├── ValidatorExtension.php │ │ │ ├── ValidatorTypeGuesser.php │ │ │ └── ViolationMapper │ │ │ ├── MappingRule.php │ │ │ ├── RelativePath.php │ │ │ ├── ViolationMapper.php │ │ │ ├── ViolationMapperInterface.php │ │ │ ├── ViolationPath.php │ │ │ └── ViolationPathIterator.php │ ├── FileUploadError.php │ ├── Form.php │ ├── FormBuilder.php │ ├── FormBuilderInterface.php │ ├── FormConfigBuilder.php │ ├── FormConfigBuilderInterface.php │ ├── FormConfigInterface.php │ ├── FormError.php │ ├── FormErrorIterator.php │ ├── FormEvent.php │ ├── FormEvents.php │ ├── FormExtensionInterface.php │ ├── FormFactory.php │ ├── FormFactoryBuilder.php │ ├── FormFactoryBuilderInterface.php │ ├── FormFactoryInterface.php │ ├── FormInterface.php │ ├── FormRegistry.php │ ├── FormRegistryInterface.php │ ├── FormRenderer.php │ ├── FormRendererEngineInterface.php │ ├── FormRendererInterface.php │ ├── FormTypeExtensionInterface.php │ ├── FormTypeGuesserChain.php │ ├── FormTypeGuesserInterface.php │ ├── FormTypeInterface.php │ ├── FormView.php │ ├── Forms.php │ ├── Guess │ │ ├── Guess.php │ │ ├── TypeGuess.php │ │ └── ValueGuess.php │ ├── LICENSE │ ├── NativeRequestHandler.php │ ├── PreloadedExtension.php │ ├── README.md │ ├── RequestHandlerInterface.php │ ├── ResolvedFormType.php │ ├── ResolvedFormTypeFactory.php │ ├── ResolvedFormTypeFactoryInterface.php │ ├── ResolvedFormTypeInterface.php │ ├── Resources │ │ ├── config │ │ │ └── validation.xml │ │ └── translations │ │ │ ├── validators.af.xlf │ │ │ ├── validators.ar.xlf │ │ │ ├── validators.az.xlf │ │ │ ├── validators.be.xlf │ │ │ ├── validators.bg.xlf │ │ │ ├── validators.bs.xlf │ │ │ ├── validators.ca.xlf │ │ │ ├── validators.cs.xlf │ │ │ ├── validators.da.xlf │ │ │ ├── validators.de.xlf │ │ │ ├── validators.el.xlf │ │ │ ├── validators.en.xlf │ │ │ ├── validators.es.xlf │ │ │ ├── validators.et.xlf │ │ │ ├── validators.eu.xlf │ │ │ ├── validators.fa.xlf │ │ │ ├── validators.fi.xlf │ │ │ ├── validators.fr.xlf │ │ │ ├── validators.gl.xlf │ │ │ ├── validators.he.xlf │ │ │ ├── validators.hr.xlf │ │ │ ├── validators.hu.xlf │ │ │ ├── validators.hy.xlf │ │ │ ├── validators.id.xlf │ │ │ ├── validators.it.xlf │ │ │ ├── validators.ja.xlf │ │ │ ├── validators.lb.xlf │ │ │ ├── validators.lt.xlf │ │ │ ├── validators.lv.xlf │ │ │ ├── validators.mn.xlf │ │ │ ├── validators.my.xlf │ │ │ ├── validators.nb.xlf │ │ │ ├── validators.nl.xlf │ │ │ ├── validators.nn.xlf │ │ │ ├── validators.no.xlf │ │ │ ├── validators.pl.xlf │ │ │ ├── validators.pt.xlf │ │ │ ├── validators.pt_BR.xlf │ │ │ ├── validators.ro.xlf │ │ │ ├── validators.ru.xlf │ │ │ ├── validators.sk.xlf │ │ │ ├── validators.sl.xlf │ │ │ ├── validators.sq.xlf │ │ │ ├── validators.sr_Cyrl.xlf │ │ │ ├── validators.sr_Latn.xlf │ │ │ ├── validators.sv.xlf │ │ │ ├── validators.th.xlf │ │ │ ├── validators.tl.xlf │ │ │ ├── validators.tr.xlf │ │ │ ├── validators.uk.xlf │ │ │ ├── validators.ur.xlf │ │ │ ├── validators.uz.xlf │ │ │ ├── validators.vi.xlf │ │ │ ├── validators.zh_CN.xlf │ │ │ └── validators.zh_TW.xlf │ ├── ReversedTransformer.php │ ├── SubmitButton.php │ ├── SubmitButtonBuilder.php │ ├── SubmitButtonTypeInterface.php │ ├── Test │ │ ├── FormBuilderInterface.php │ │ ├── FormIntegrationTestCase.php │ │ ├── FormInterface.php │ │ ├── FormPerformanceTestCase.php │ │ ├── Traits │ │ │ └── ValidatorExtensionTrait.php │ │ └── TypeTestCase.php │ ├── Util │ │ ├── FormUtil.php │ │ ├── InheritDataAwareIterator.php │ │ ├── OptionsResolverWrapper.php │ │ ├── OrderedHashMap.php │ │ ├── OrderedHashMapIterator.php │ │ ├── ServerParams.php │ │ └── StringUtil.php │ └── composer.json ├── framework-bundle │ ├── CHANGELOG.md │ ├── CacheWarmer │ │ ├── AbstractPhpFileCacheWarmer.php │ │ ├── AnnotationsCacheWarmer.php │ │ ├── CachePoolClearerCacheWarmer.php │ │ ├── ConfigBuilderCacheWarmer.php │ │ ├── RouterCacheWarmer.php │ │ ├── SerializerCacheWarmer.php │ │ ├── TranslationsCacheWarmer.php │ │ └── ValidatorCacheWarmer.php │ ├── Command │ │ ├── AboutCommand.php │ │ ├── AbstractConfigCommand.php │ │ ├── AssetsInstallCommand.php │ │ ├── BuildDebugContainerTrait.php │ │ ├── CacheClearCommand.php │ │ ├── CachePoolClearCommand.php │ │ ├── CachePoolDeleteCommand.php │ │ ├── CachePoolListCommand.php │ │ ├── CachePoolPruneCommand.php │ │ ├── CacheWarmupCommand.php │ │ ├── ConfigDebugCommand.php │ │ ├── ConfigDumpReferenceCommand.php │ │ ├── ContainerDebugCommand.php │ │ ├── ContainerLintCommand.php │ │ ├── DebugAutowiringCommand.php │ │ ├── EventDispatcherDebugCommand.php │ │ ├── RouterDebugCommand.php │ │ ├── RouterMatchCommand.php │ │ ├── SecretsDecryptToLocalCommand.php │ │ ├── SecretsEncryptFromLocalCommand.php │ │ ├── SecretsGenerateKeysCommand.php │ │ ├── SecretsListCommand.php │ │ ├── SecretsRemoveCommand.php │ │ ├── SecretsSetCommand.php │ │ ├── TranslationDebugCommand.php │ │ ├── TranslationUpdateCommand.php │ │ ├── WorkflowDumpCommand.php │ │ ├── XliffLintCommand.php │ │ └── YamlLintCommand.php │ ├── Console │ │ ├── Application.php │ │ ├── Descriptor │ │ │ ├── Descriptor.php │ │ │ ├── JsonDescriptor.php │ │ │ ├── MarkdownDescriptor.php │ │ │ ├── TextDescriptor.php │ │ │ └── XmlDescriptor.php │ │ └── Helper │ │ │ └── DescriptorHelper.php │ ├── Controller │ │ ├── AbstractController.php │ │ ├── ControllerResolver.php │ │ ├── RedirectController.php │ │ └── TemplateController.php │ ├── DataCollector │ │ ├── AbstractDataCollector.php │ │ ├── RouterDataCollector.php │ │ └── TemplateAwareDataCollectorInterface.php │ ├── DependencyInjection │ │ ├── Compiler │ │ │ ├── AddAnnotationsCachedReaderPass.php │ │ │ ├── AddDebugLogProcessorPass.php │ │ │ ├── AddExpressionLanguageProvidersPass.php │ │ │ ├── AssetsContextPass.php │ │ │ ├── ContainerBuilderDebugDumpPass.php │ │ │ ├── DataCollectorTranslatorPass.php │ │ │ ├── LoggingTranslatorPass.php │ │ │ ├── ProfilerPass.php │ │ │ ├── RemoveUnusedSessionMarshallingHandlerPass.php │ │ │ ├── SessionPass.php │ │ │ ├── TestServiceContainerRealRefPass.php │ │ │ ├── TestServiceContainerWeakRefPass.php │ │ │ ├── UnusedTagsPass.php │ │ │ └── WorkflowGuardListenerPass.php │ │ ├── Configuration.php │ │ └── FrameworkExtension.php │ ├── EventListener │ │ └── SuggestMissingPackageSubscriber.php │ ├── FrameworkBundle.php │ ├── HttpCache │ │ └── HttpCache.php │ ├── Kernel │ │ └── MicroKernelTrait.php │ ├── KernelBrowser.php │ ├── LICENSE │ ├── README.md │ ├── Resources │ │ ├── bin │ │ │ └── check-unused-known-tags.php │ │ └── config │ │ │ ├── annotations.php │ │ │ ├── assets.php │ │ │ ├── cache.php │ │ │ ├── cache_debug.php │ │ │ ├── collectors.php │ │ │ ├── console.php │ │ │ ├── debug.php │ │ │ ├── debug_prod.php │ │ │ ├── error_renderer.php │ │ │ ├── esi.php │ │ │ ├── form.php │ │ │ ├── form_csrf.php │ │ │ ├── form_debug.php │ │ │ ├── fragment_listener.php │ │ │ ├── fragment_renderer.php │ │ │ ├── http_client.php │ │ │ ├── http_client_debug.php │ │ │ ├── identity_translator.php │ │ │ ├── lock.php │ │ │ ├── mailer.php │ │ │ ├── mailer_debug.php │ │ │ ├── mailer_transports.php │ │ │ ├── messenger.php │ │ │ ├── messenger_debug.php │ │ │ ├── mime_type.php │ │ │ ├── notifier.php │ │ │ ├── notifier_debug.php │ │ │ ├── notifier_transports.php │ │ │ ├── profiling.php │ │ │ ├── property_access.php │ │ │ ├── property_info.php │ │ │ ├── rate_limiter.php │ │ │ ├── request.php │ │ │ ├── routing.php │ │ │ ├── routing │ │ │ └── errors.xml │ │ │ ├── schema │ │ │ └── symfony-1.0.xsd │ │ │ ├── secrets.php │ │ │ ├── security_csrf.php │ │ │ ├── serializer.php │ │ │ ├── services.php │ │ │ ├── session.php │ │ │ ├── ssi.php │ │ │ ├── test.php │ │ │ ├── translation.php │ │ │ ├── translation_debug.php │ │ │ ├── translation_providers.php │ │ │ ├── uid.php │ │ │ ├── validator.php │ │ │ ├── validator_debug.php │ │ │ ├── web.php │ │ │ ├── web_link.php │ │ │ └── workflow.php │ ├── Routing │ │ ├── AnnotatedRouteControllerLoader.php │ │ ├── DelegatingLoader.php │ │ ├── RedirectableCompiledUrlMatcher.php │ │ ├── RouteLoaderInterface.php │ │ └── Router.php │ ├── Secrets │ │ ├── AbstractVault.php │ │ ├── DotenvVault.php │ │ └── SodiumVault.php │ ├── Session │ │ ├── DeprecatedSessionFactory.php │ │ └── ServiceSessionFactory.php │ ├── Test │ │ ├── BrowserKitAssertionsTrait.php │ │ ├── DomCrawlerAssertionsTrait.php │ │ ├── KernelTestCase.php │ │ ├── MailerAssertionsTrait.php │ │ ├── TestBrowserToken.php │ │ ├── TestContainer.php │ │ ├── WebTestAssertionsTrait.php │ │ └── WebTestCase.php │ ├── Translation │ │ └── Translator.php │ └── composer.json ├── google-mailer │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── Transport │ │ ├── GmailSmtpTransport.php │ │ └── GmailTransportFactory.php │ └── composer.json ├── http-client-contracts │ ├── .gitignore │ ├── CHANGELOG.md │ ├── ChunkInterface.php │ ├── Exception │ │ ├── ClientExceptionInterface.php │ │ ├── DecodingExceptionInterface.php │ │ ├── ExceptionInterface.php │ │ ├── HttpExceptionInterface.php │ │ ├── RedirectionExceptionInterface.php │ │ ├── ServerExceptionInterface.php │ │ ├── TimeoutExceptionInterface.php │ │ └── TransportExceptionInterface.php │ ├── HttpClientInterface.php │ ├── LICENSE │ ├── README.md │ ├── ResponseInterface.php │ ├── ResponseStreamInterface.php │ ├── Test │ │ ├── Fixtures │ │ │ └── web │ │ │ │ └── index.php │ │ ├── HttpClientTestCase.php │ │ └── TestHttpServer.php │ └── composer.json ├── http-client │ ├── AmpHttpClient.php │ ├── AsyncDecoratorTrait.php │ ├── CHANGELOG.md │ ├── CachingHttpClient.php │ ├── Chunk │ │ ├── DataChunk.php │ │ ├── ErrorChunk.php │ │ ├── FirstChunk.php │ │ ├── InformationalChunk.php │ │ ├── LastChunk.php │ │ └── ServerSentEvent.php │ ├── CurlHttpClient.php │ ├── DataCollector │ │ └── HttpClientDataCollector.php │ ├── DecoratorTrait.php │ ├── DependencyInjection │ │ └── HttpClientPass.php │ ├── EventSourceHttpClient.php │ ├── Exception │ │ ├── ClientException.php │ │ ├── EventSourceException.php │ │ ├── HttpExceptionTrait.php │ │ ├── InvalidArgumentException.php │ │ ├── JsonException.php │ │ ├── RedirectionException.php │ │ ├── ServerException.php │ │ ├── TimeoutException.php │ │ └── TransportException.php │ ├── HttpClient.php │ ├── HttpClientTrait.php │ ├── HttpOptions.php │ ├── HttplugClient.php │ ├── Internal │ │ ├── AmpBody.php │ │ ├── AmpClientState.php │ │ ├── AmpListener.php │ │ ├── AmpResolver.php │ │ ├── Canary.php │ │ ├── ClientState.php │ │ ├── CurlClientState.php │ │ ├── DnsCache.php │ │ ├── HttplugWaitLoop.php │ │ ├── NativeClientState.php │ │ └── PushedResponse.php │ ├── LICENSE │ ├── MockHttpClient.php │ ├── NativeHttpClient.php │ ├── NoPrivateNetworkHttpClient.php │ ├── Psr18Client.php │ ├── README.md │ ├── Response │ │ ├── AmpResponse.php │ │ ├── AsyncContext.php │ │ ├── AsyncResponse.php │ │ ├── CommonResponseTrait.php │ │ ├── CurlResponse.php │ │ ├── HttplugPromise.php │ │ ├── MockResponse.php │ │ ├── NativeResponse.php │ │ ├── ResponseStream.php │ │ ├── StreamWrapper.php │ │ ├── StreamableInterface.php │ │ ├── TraceableResponse.php │ │ └── TransportResponseTrait.php │ ├── Retry │ │ ├── GenericRetryStrategy.php │ │ └── RetryStrategyInterface.php │ ├── RetryableHttpClient.php │ ├── ScopingHttpClient.php │ ├── TraceableHttpClient.php │ └── composer.json ├── http-foundation │ ├── AcceptHeader.php │ ├── AcceptHeaderItem.php │ ├── BinaryFileResponse.php │ ├── CHANGELOG.md │ ├── Cookie.php │ ├── Exception │ │ ├── BadRequestException.php │ │ ├── ConflictingHeadersException.php │ │ ├── JsonException.php │ │ ├── RequestExceptionInterface.php │ │ ├── SessionNotFoundException.php │ │ └── SuspiciousOperationException.php │ ├── ExpressionRequestMatcher.php │ ├── File │ │ ├── Exception │ │ │ ├── AccessDeniedException.php │ │ │ ├── CannotWriteFileException.php │ │ │ ├── ExtensionFileException.php │ │ │ ├── FileException.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── FormSizeFileException.php │ │ │ ├── IniSizeFileException.php │ │ │ ├── NoFileException.php │ │ │ ├── NoTmpDirFileException.php │ │ │ ├── PartialFileException.php │ │ │ ├── UnexpectedTypeException.php │ │ │ └── UploadException.php │ │ ├── File.php │ │ ├── Stream.php │ │ └── UploadedFile.php │ ├── FileBag.php │ ├── HeaderBag.php │ ├── HeaderUtils.php │ ├── InputBag.php │ ├── IpUtils.php │ ├── JsonResponse.php │ ├── LICENSE │ ├── ParameterBag.php │ ├── README.md │ ├── RateLimiter │ │ ├── AbstractRequestRateLimiter.php │ │ └── RequestRateLimiterInterface.php │ ├── RedirectResponse.php │ ├── Request.php │ ├── RequestMatcher.php │ ├── RequestMatcherInterface.php │ ├── RequestStack.php │ ├── Response.php │ ├── ResponseHeaderBag.php │ ├── ServerBag.php │ ├── Session │ │ ├── Attribute │ │ │ ├── AttributeBag.php │ │ │ ├── AttributeBagInterface.php │ │ │ └── NamespacedAttributeBag.php │ │ ├── Flash │ │ │ ├── AutoExpireFlashBag.php │ │ │ ├── FlashBag.php │ │ │ └── FlashBagInterface.php │ │ ├── Session.php │ │ ├── SessionBagInterface.php │ │ ├── SessionBagProxy.php │ │ ├── SessionFactory.php │ │ ├── SessionFactoryInterface.php │ │ ├── SessionInterface.php │ │ ├── SessionUtils.php │ │ └── Storage │ │ │ ├── Handler │ │ │ ├── AbstractSessionHandler.php │ │ │ ├── IdentityMarshaller.php │ │ │ ├── MarshallingSessionHandler.php │ │ │ ├── MemcachedSessionHandler.php │ │ │ ├── MigratingSessionHandler.php │ │ │ ├── MongoDbSessionHandler.php │ │ │ ├── NativeFileSessionHandler.php │ │ │ ├── NullSessionHandler.php │ │ │ ├── PdoSessionHandler.php │ │ │ ├── RedisSessionHandler.php │ │ │ ├── SessionHandlerFactory.php │ │ │ └── StrictSessionHandler.php │ │ │ ├── MetadataBag.php │ │ │ ├── MockArraySessionStorage.php │ │ │ ├── MockFileSessionStorage.php │ │ │ ├── MockFileSessionStorageFactory.php │ │ │ ├── NativeSessionStorage.php │ │ │ ├── NativeSessionStorageFactory.php │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ ├── PhpBridgeSessionStorageFactory.php │ │ │ ├── Proxy │ │ │ ├── AbstractProxy.php │ │ │ └── SessionHandlerProxy.php │ │ │ ├── ServiceSessionFactory.php │ │ │ ├── SessionStorageFactoryInterface.php │ │ │ └── SessionStorageInterface.php │ ├── StreamedResponse.php │ ├── Test │ │ └── Constraint │ │ │ ├── RequestAttributeValueSame.php │ │ │ ├── ResponseCookieValueSame.php │ │ │ ├── ResponseFormatSame.php │ │ │ ├── ResponseHasCookie.php │ │ │ ├── ResponseHasHeader.php │ │ │ ├── ResponseHeaderSame.php │ │ │ ├── ResponseIsRedirected.php │ │ │ ├── ResponseIsSuccessful.php │ │ │ ├── ResponseIsUnprocessable.php │ │ │ └── ResponseStatusCodeSame.php │ ├── UrlHelper.php │ └── composer.json ├── http-kernel │ ├── Attribute │ │ ├── ArgumentInterface.php │ │ └── AsController.php │ ├── Bundle │ │ ├── Bundle.php │ │ └── BundleInterface.php │ ├── CHANGELOG.md │ ├── CacheClearer │ │ ├── CacheClearerInterface.php │ │ ├── ChainCacheClearer.php │ │ └── Psr6CacheClearer.php │ ├── CacheWarmer │ │ ├── CacheWarmer.php │ │ ├── CacheWarmerAggregate.php │ │ ├── CacheWarmerInterface.php │ │ └── WarmableInterface.php │ ├── Config │ │ └── FileLocator.php │ ├── Controller │ │ ├── ArgumentResolver.php │ │ ├── ArgumentResolver │ │ │ ├── DefaultValueResolver.php │ │ │ ├── NotTaggedControllerValueResolver.php │ │ │ ├── RequestAttributeValueResolver.php │ │ │ ├── RequestValueResolver.php │ │ │ ├── ServiceValueResolver.php │ │ │ ├── SessionValueResolver.php │ │ │ ├── TraceableValueResolver.php │ │ │ └── VariadicValueResolver.php │ │ ├── ArgumentResolverInterface.php │ │ ├── ArgumentValueResolverInterface.php │ │ ├── ContainerControllerResolver.php │ │ ├── ControllerReference.php │ │ ├── ControllerResolver.php │ │ ├── ControllerResolverInterface.php │ │ ├── ErrorController.php │ │ ├── TraceableArgumentResolver.php │ │ └── TraceableControllerResolver.php │ ├── ControllerMetadata │ │ ├── ArgumentMetadata.php │ │ ├── ArgumentMetadataFactory.php │ │ └── ArgumentMetadataFactoryInterface.php │ ├── DataCollector │ │ ├── AjaxDataCollector.php │ │ ├── ConfigDataCollector.php │ │ ├── DataCollector.php │ │ ├── DataCollectorInterface.php │ │ ├── DumpDataCollector.php │ │ ├── EventDataCollector.php │ │ ├── ExceptionDataCollector.php │ │ ├── LateDataCollectorInterface.php │ │ ├── LoggerDataCollector.php │ │ ├── MemoryDataCollector.php │ │ ├── RequestDataCollector.php │ │ ├── RouterDataCollector.php │ │ └── TimeDataCollector.php │ ├── Debug │ │ ├── FileLinkFormatter.php │ │ └── TraceableEventDispatcher.php │ ├── DependencyInjection │ │ ├── AddAnnotatedClassesToCachePass.php │ │ ├── ConfigurableExtension.php │ │ ├── ControllerArgumentValueResolverPass.php │ │ ├── Extension.php │ │ ├── FragmentRendererPass.php │ │ ├── LazyLoadingFragmentHandler.php │ │ ├── LoggerPass.php │ │ ├── MergeExtensionConfigurationPass.php │ │ ├── RegisterControllerArgumentLocatorsPass.php │ │ ├── RegisterLocaleAwareServicesPass.php │ │ ├── RemoveEmptyControllerArgumentLocatorsPass.php │ │ ├── ResettableServicePass.php │ │ └── ServicesResetter.php │ ├── Event │ │ ├── ControllerArgumentsEvent.php │ │ ├── ControllerEvent.php │ │ ├── ExceptionEvent.php │ │ ├── FinishRequestEvent.php │ │ ├── KernelEvent.php │ │ ├── RequestEvent.php │ │ ├── ResponseEvent.php │ │ ├── TerminateEvent.php │ │ └── ViewEvent.php │ ├── EventListener │ │ ├── AbstractSessionListener.php │ │ ├── AbstractTestSessionListener.php │ │ ├── AddRequestFormatsListener.php │ │ ├── DebugHandlersListener.php │ │ ├── DisallowRobotsIndexingListener.php │ │ ├── DumpListener.php │ │ ├── ErrorListener.php │ │ ├── FragmentListener.php │ │ ├── LocaleAwareListener.php │ │ ├── LocaleListener.php │ │ ├── ProfilerListener.php │ │ ├── ResponseListener.php │ │ ├── RouterListener.php │ │ ├── SessionListener.php │ │ ├── StreamedResponseListener.php │ │ ├── SurrogateListener.php │ │ ├── TestSessionListener.php │ │ └── ValidateRequestListener.php │ ├── Exception │ │ ├── AccessDeniedHttpException.php │ │ ├── BadRequestHttpException.php │ │ ├── ConflictHttpException.php │ │ ├── ControllerDoesNotReturnResponseException.php │ │ ├── GoneHttpException.php │ │ ├── HttpException.php │ │ ├── HttpExceptionInterface.php │ │ ├── InvalidMetadataException.php │ │ ├── LengthRequiredHttpException.php │ │ ├── MethodNotAllowedHttpException.php │ │ ├── NotAcceptableHttpException.php │ │ ├── NotFoundHttpException.php │ │ ├── PreconditionFailedHttpException.php │ │ ├── PreconditionRequiredHttpException.php │ │ ├── ServiceUnavailableHttpException.php │ │ ├── TooManyRequestsHttpException.php │ │ ├── UnauthorizedHttpException.php │ │ ├── UnexpectedSessionUsageException.php │ │ ├── UnprocessableEntityHttpException.php │ │ └── UnsupportedMediaTypeHttpException.php │ ├── Fragment │ │ ├── AbstractSurrogateFragmentRenderer.php │ │ ├── EsiFragmentRenderer.php │ │ ├── FragmentHandler.php │ │ ├── FragmentRendererInterface.php │ │ ├── FragmentUriGenerator.php │ │ ├── FragmentUriGeneratorInterface.php │ │ ├── HIncludeFragmentRenderer.php │ │ ├── InlineFragmentRenderer.php │ │ ├── RoutableFragmentRenderer.php │ │ └── SsiFragmentRenderer.php │ ├── HttpCache │ │ ├── AbstractSurrogate.php │ │ ├── Esi.php │ │ ├── HttpCache.php │ │ ├── ResponseCacheStrategy.php │ │ ├── ResponseCacheStrategyInterface.php │ │ ├── Ssi.php │ │ ├── Store.php │ │ ├── StoreInterface.php │ │ ├── SubRequestHandler.php │ │ └── SurrogateInterface.php │ ├── HttpClientKernel.php │ ├── HttpKernel.php │ ├── HttpKernelBrowser.php │ ├── HttpKernelInterface.php │ ├── Kernel.php │ ├── KernelEvents.php │ ├── KernelInterface.php │ ├── LICENSE │ ├── Log │ │ ├── DebugLoggerInterface.php │ │ └── Logger.php │ ├── Profiler │ │ ├── FileProfilerStorage.php │ │ ├── Profile.php │ │ ├── Profiler.php │ │ └── ProfilerStorageInterface.php │ ├── README.md │ ├── RebootableInterface.php │ ├── Resources │ │ └── welcome.html.php │ ├── TerminableInterface.php │ ├── UriSigner.php │ └── composer.json ├── intl │ ├── CHANGELOG.md │ ├── Collator │ │ └── Collator.php │ ├── Countries.php │ ├── Currencies.php │ ├── Data │ │ ├── Bundle │ │ │ ├── Compiler │ │ │ │ ├── BundleCompilerInterface.php │ │ │ │ └── GenrbCompiler.php │ │ │ ├── Reader │ │ │ │ ├── BufferedBundleReader.php │ │ │ │ ├── BundleEntryReader.php │ │ │ │ ├── BundleEntryReaderInterface.php │ │ │ │ ├── BundleReaderInterface.php │ │ │ │ ├── IntlBundleReader.php │ │ │ │ ├── JsonBundleReader.php │ │ │ │ └── PhpBundleReader.php │ │ │ └── Writer │ │ │ │ ├── BundleWriterInterface.php │ │ │ │ ├── JsonBundleWriter.php │ │ │ │ ├── PhpBundleWriter.php │ │ │ │ └── TextBundleWriter.php │ │ ├── Generator │ │ │ ├── AbstractDataGenerator.php │ │ │ ├── CurrencyDataGenerator.php │ │ │ ├── FallbackTrait.php │ │ │ ├── GeneratorConfig.php │ │ │ ├── LanguageDataGenerator.php │ │ │ ├── LocaleDataGenerator.php │ │ │ ├── RegionDataGenerator.php │ │ │ ├── ScriptDataGenerator.php │ │ │ └── TimezoneDataGenerator.php │ │ └── Util │ │ │ ├── ArrayAccessibleResourceBundle.php │ │ │ ├── LocaleScanner.php │ │ │ ├── RecursiveArrayAccess.php │ │ │ └── RingBuffer.php │ ├── DateFormatter │ │ ├── DateFormat │ │ │ ├── AmPmTransformer.php │ │ │ ├── DayOfWeekTransformer.php │ │ │ ├── DayOfYearTransformer.php │ │ │ ├── DayTransformer.php │ │ │ ├── FullTransformer.php │ │ │ ├── Hour1200Transformer.php │ │ │ ├── Hour1201Transformer.php │ │ │ ├── Hour2400Transformer.php │ │ │ ├── Hour2401Transformer.php │ │ │ ├── HourTransformer.php │ │ │ ├── MinuteTransformer.php │ │ │ ├── MonthTransformer.php │ │ │ ├── QuarterTransformer.php │ │ │ ├── SecondTransformer.php │ │ │ ├── TimezoneTransformer.php │ │ │ ├── Transformer.php │ │ │ └── YearTransformer.php │ │ └── IntlDateFormatter.php │ ├── Exception │ │ ├── BadMethodCallException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── MethodArgumentNotImplementedException.php │ │ ├── MethodArgumentValueNotImplementedException.php │ │ ├── MethodNotImplementedException.php │ │ ├── MissingResourceException.php │ │ ├── NotImplementedException.php │ │ ├── OutOfBoundsException.php │ │ ├── ResourceBundleNotFoundException.php │ │ ├── RuntimeException.php │ │ └── UnexpectedTypeException.php │ ├── Globals │ │ └── IntlGlobals.php │ ├── Intl.php │ ├── LICENSE │ ├── Languages.php │ ├── Locale.php │ ├── Locale │ │ └── Locale.php │ ├── Locales.php │ ├── NumberFormatter │ │ └── NumberFormatter.php │ ├── README.md │ ├── ResourceBundle.php │ ├── Resources │ │ ├── bin │ │ │ ├── autoload.php │ │ │ ├── common.php │ │ │ ├── compile │ │ │ └── update-data.php │ │ ├── data │ │ │ ├── currencies │ │ │ │ ├── af.php │ │ │ │ ├── af_NA.php │ │ │ │ ├── ak.php │ │ │ │ ├── am.php │ │ │ │ ├── ar.php │ │ │ │ ├── ar_DJ.php │ │ │ │ ├── ar_ER.php │ │ │ │ ├── ar_KM.php │ │ │ │ ├── ar_LB.php │ │ │ │ ├── ar_SO.php │ │ │ │ ├── ar_SS.php │ │ │ │ ├── as.php │ │ │ │ ├── az.php │ │ │ │ ├── az_Cyrl.php │ │ │ │ ├── be.php │ │ │ │ ├── bg.php │ │ │ │ ├── bm.php │ │ │ │ ├── bn.php │ │ │ │ ├── bn_IN.php │ │ │ │ ├── bo.php │ │ │ │ ├── bo_IN.php │ │ │ │ ├── br.php │ │ │ │ ├── bs.php │ │ │ │ ├── bs_Cyrl.php │ │ │ │ ├── ca.php │ │ │ │ ├── ca_FR.php │ │ │ │ ├── ce.php │ │ │ │ ├── cs.php │ │ │ │ ├── cv.php │ │ │ │ ├── cy.php │ │ │ │ ├── da.php │ │ │ │ ├── de.php │ │ │ │ ├── de_CH.php │ │ │ │ ├── de_LI.php │ │ │ │ ├── de_LU.php │ │ │ │ ├── dz.php │ │ │ │ ├── ee.php │ │ │ │ ├── el.php │ │ │ │ ├── en.php │ │ │ │ ├── en_001.php │ │ │ │ ├── en_150.php │ │ │ │ ├── en_AE.php │ │ │ │ ├── en_AG.php │ │ │ │ ├── en_AI.php │ │ │ │ ├── en_AU.php │ │ │ │ ├── en_BB.php │ │ │ │ ├── en_BI.php │ │ │ │ ├── en_BM.php │ │ │ │ ├── en_BS.php │ │ │ │ ├── en_BW.php │ │ │ │ ├── en_BZ.php │ │ │ │ ├── en_CA.php │ │ │ │ ├── en_CC.php │ │ │ │ ├── en_CK.php │ │ │ │ ├── en_CX.php │ │ │ │ ├── en_DK.php │ │ │ │ ├── en_DM.php │ │ │ │ ├── en_ER.php │ │ │ │ ├── en_FJ.php │ │ │ │ ├── en_FK.php │ │ │ │ ├── en_GD.php │ │ │ │ ├── en_GG.php │ │ │ │ ├── en_GH.php │ │ │ │ ├── en_GI.php │ │ │ │ ├── en_GM.php │ │ │ │ ├── en_GY.php │ │ │ │ ├── en_IM.php │ │ │ │ ├── en_IN.php │ │ │ │ ├── en_JE.php │ │ │ │ ├── en_JM.php │ │ │ │ ├── en_KE.php │ │ │ │ ├── en_KI.php │ │ │ │ ├── en_KN.php │ │ │ │ ├── en_KY.php │ │ │ │ ├── en_LC.php │ │ │ │ ├── en_LR.php │ │ │ │ ├── en_LS.php │ │ │ │ ├── en_MG.php │ │ │ │ ├── en_MO.php │ │ │ │ ├── en_MS.php │ │ │ │ ├── en_MT.php │ │ │ │ ├── en_MU.php │ │ │ │ ├── en_MV.php │ │ │ │ ├── en_MW.php │ │ │ │ ├── en_MY.php │ │ │ │ ├── en_NA.php │ │ │ │ ├── en_NF.php │ │ │ │ ├── en_NG.php │ │ │ │ ├── en_NH.php │ │ │ │ ├── en_NR.php │ │ │ │ ├── en_NU.php │ │ │ │ ├── en_NZ.php │ │ │ │ ├── en_PG.php │ │ │ │ ├── en_PH.php │ │ │ │ ├── en_PK.php │ │ │ │ ├── en_PN.php │ │ │ │ ├── en_RW.php │ │ │ │ ├── en_SB.php │ │ │ │ ├── en_SC.php │ │ │ │ ├── en_SE.php │ │ │ │ ├── en_SG.php │ │ │ │ ├── en_SH.php │ │ │ │ ├── en_SL.php │ │ │ │ ├── en_SS.php │ │ │ │ ├── en_SX.php │ │ │ │ ├── en_SZ.php │ │ │ │ ├── en_TK.php │ │ │ │ ├── en_TO.php │ │ │ │ ├── en_TT.php │ │ │ │ ├── en_TV.php │ │ │ │ ├── en_TZ.php │ │ │ │ ├── en_UG.php │ │ │ │ ├── en_VC.php │ │ │ │ ├── en_VU.php │ │ │ │ ├── en_WS.php │ │ │ │ ├── en_ZA.php │ │ │ │ ├── en_ZM.php │ │ │ │ ├── es.php │ │ │ │ ├── es_419.php │ │ │ │ ├── es_AR.php │ │ │ │ ├── es_BO.php │ │ │ │ ├── es_BR.php │ │ │ │ ├── es_BZ.php │ │ │ │ ├── es_CL.php │ │ │ │ ├── es_CO.php │ │ │ │ ├── es_CR.php │ │ │ │ ├── es_CU.php │ │ │ │ ├── es_DO.php │ │ │ │ ├── es_EC.php │ │ │ │ ├── es_GQ.php │ │ │ │ ├── es_GT.php │ │ │ │ ├── es_HN.php │ │ │ │ ├── es_MX.php │ │ │ │ ├── es_NI.php │ │ │ │ ├── es_PA.php │ │ │ │ ├── es_PE.php │ │ │ │ ├── es_PH.php │ │ │ │ ├── es_PR.php │ │ │ │ ├── es_PY.php │ │ │ │ ├── es_SV.php │ │ │ │ ├── es_US.php │ │ │ │ ├── es_UY.php │ │ │ │ ├── es_VE.php │ │ │ │ ├── et.php │ │ │ │ ├── eu.php │ │ │ │ ├── fa.php │ │ │ │ ├── fa_AF.php │ │ │ │ ├── ff.php │ │ │ │ ├── ff_Adlm.php │ │ │ │ ├── ff_Adlm_BF.php │ │ │ │ ├── ff_Adlm_CM.php │ │ │ │ ├── ff_Adlm_GH.php │ │ │ │ ├── ff_Adlm_GM.php │ │ │ │ ├── ff_Adlm_GW.php │ │ │ │ ├── ff_Adlm_LR.php │ │ │ │ ├── ff_Adlm_MR.php │ │ │ │ ├── ff_Adlm_NE.php │ │ │ │ ├── ff_Adlm_NG.php │ │ │ │ ├── ff_Adlm_SL.php │ │ │ │ ├── ff_Adlm_SN.php │ │ │ │ ├── ff_GN.php │ │ │ │ ├── ff_Latn_GH.php │ │ │ │ ├── ff_Latn_GM.php │ │ │ │ ├── ff_Latn_GN.php │ │ │ │ ├── ff_Latn_LR.php │ │ │ │ ├── ff_Latn_MR.php │ │ │ │ ├── ff_Latn_NG.php │ │ │ │ ├── ff_Latn_SL.php │ │ │ │ ├── ff_MR.php │ │ │ │ ├── fi.php │ │ │ │ ├── fo.php │ │ │ │ ├── fo_DK.php │ │ │ │ ├── fr.php │ │ │ │ ├── fr_BI.php │ │ │ │ ├── fr_CA.php │ │ │ │ ├── fr_CD.php │ │ │ │ ├── fr_DJ.php │ │ │ │ ├── fr_DZ.php │ │ │ │ ├── fr_GN.php │ │ │ │ ├── fr_HT.php │ │ │ │ ├── fr_KM.php │ │ │ │ ├── fr_LU.php │ │ │ │ ├── fr_MG.php │ │ │ │ ├── fr_MR.php │ │ │ │ ├── fr_MU.php │ │ │ │ ├── fr_RW.php │ │ │ │ ├── fr_SC.php │ │ │ │ ├── fr_SY.php │ │ │ │ ├── fr_TN.php │ │ │ │ ├── fr_VU.php │ │ │ │ ├── fy.php │ │ │ │ ├── ga.php │ │ │ │ ├── gd.php │ │ │ │ ├── gl.php │ │ │ │ ├── gu.php │ │ │ │ ├── ha.php │ │ │ │ ├── ha_GH.php │ │ │ │ ├── he.php │ │ │ │ ├── hi.php │ │ │ │ ├── hi_Latn.php │ │ │ │ ├── hr.php │ │ │ │ ├── hr_BA.php │ │ │ │ ├── hu.php │ │ │ │ ├── hy.php │ │ │ │ ├── ia.php │ │ │ │ ├── id.php │ │ │ │ ├── ig.php │ │ │ │ ├── ii.php │ │ │ │ ├── in.php │ │ │ │ ├── is.php │ │ │ │ ├── it.php │ │ │ │ ├── iw.php │ │ │ │ ├── ja.php │ │ │ │ ├── jv.php │ │ │ │ ├── ka.php │ │ │ │ ├── ki.php │ │ │ │ ├── kk.php │ │ │ │ ├── kl.php │ │ │ │ ├── km.php │ │ │ │ ├── kn.php │ │ │ │ ├── ko.php │ │ │ │ ├── ks.php │ │ │ │ ├── ks_Deva.php │ │ │ │ ├── ku.php │ │ │ │ ├── ky.php │ │ │ │ ├── lb.php │ │ │ │ ├── lg.php │ │ │ │ ├── ln.php │ │ │ │ ├── ln_AO.php │ │ │ │ ├── lo.php │ │ │ │ ├── lt.php │ │ │ │ ├── lu.php │ │ │ │ ├── lv.php │ │ │ │ ├── meta.php │ │ │ │ ├── mg.php │ │ │ │ ├── mi.php │ │ │ │ ├── mk.php │ │ │ │ ├── ml.php │ │ │ │ ├── mn.php │ │ │ │ ├── mo.php │ │ │ │ ├── mr.php │ │ │ │ ├── ms.php │ │ │ │ ├── ms_BN.php │ │ │ │ ├── ms_ID.php │ │ │ │ ├── ms_SG.php │ │ │ │ ├── mt.php │ │ │ │ ├── my.php │ │ │ │ ├── nd.php │ │ │ │ ├── ne.php │ │ │ │ ├── nl.php │ │ │ │ ├── nl_AW.php │ │ │ │ ├── nl_BQ.php │ │ │ │ ├── nl_CW.php │ │ │ │ ├── nl_SR.php │ │ │ │ ├── nl_SX.php │ │ │ │ ├── nn.php │ │ │ │ ├── no.php │ │ │ │ ├── no_NO.php │ │ │ │ ├── om.php │ │ │ │ ├── om_KE.php │ │ │ │ ├── or.php │ │ │ │ ├── os.php │ │ │ │ ├── os_RU.php │ │ │ │ ├── pa.php │ │ │ │ ├── pa_Arab.php │ │ │ │ ├── pl.php │ │ │ │ ├── ps.php │ │ │ │ ├── ps_PK.php │ │ │ │ ├── pt.php │ │ │ │ ├── pt_AO.php │ │ │ │ ├── pt_CV.php │ │ │ │ ├── pt_LU.php │ │ │ │ ├── pt_MO.php │ │ │ │ ├── pt_MZ.php │ │ │ │ ├── pt_PT.php │ │ │ │ ├── pt_ST.php │ │ │ │ ├── qu.php │ │ │ │ ├── qu_BO.php │ │ │ │ ├── qu_EC.php │ │ │ │ ├── rm.php │ │ │ │ ├── rn.php │ │ │ │ ├── ro.php │ │ │ │ ├── ro_MD.php │ │ │ │ ├── root.php │ │ │ │ ├── ru.php │ │ │ │ ├── ru_BY.php │ │ │ │ ├── ru_KG.php │ │ │ │ ├── ru_KZ.php │ │ │ │ ├── ru_MD.php │ │ │ │ ├── rw.php │ │ │ │ ├── sa.php │ │ │ │ ├── sc.php │ │ │ │ ├── sd.php │ │ │ │ ├── sd_Deva.php │ │ │ │ ├── se.php │ │ │ │ ├── se_SE.php │ │ │ │ ├── sg.php │ │ │ │ ├── sh.php │ │ │ │ ├── sh_BA.php │ │ │ │ ├── si.php │ │ │ │ ├── sk.php │ │ │ │ ├── sl.php │ │ │ │ ├── sn.php │ │ │ │ ├── so.php │ │ │ │ ├── so_DJ.php │ │ │ │ ├── so_ET.php │ │ │ │ ├── so_KE.php │ │ │ │ ├── sq.php │ │ │ │ ├── sq_MK.php │ │ │ │ ├── sr.php │ │ │ │ ├── sr_BA.php │ │ │ │ ├── sr_Cyrl_BA.php │ │ │ │ ├── sr_Latn.php │ │ │ │ ├── sr_Latn_BA.php │ │ │ │ ├── su.php │ │ │ │ ├── sv.php │ │ │ │ ├── sw.php │ │ │ │ ├── sw_CD.php │ │ │ │ ├── sw_KE.php │ │ │ │ ├── sw_UG.php │ │ │ │ ├── ta.php │ │ │ │ ├── ta_LK.php │ │ │ │ ├── ta_MY.php │ │ │ │ ├── ta_SG.php │ │ │ │ ├── te.php │ │ │ │ ├── tg.php │ │ │ │ ├── th.php │ │ │ │ ├── ti.php │ │ │ │ ├── ti_ER.php │ │ │ │ ├── tk.php │ │ │ │ ├── tl.php │ │ │ │ ├── to.php │ │ │ │ ├── tr.php │ │ │ │ ├── tt.php │ │ │ │ ├── ug.php │ │ │ │ ├── uk.php │ │ │ │ ├── ur.php │ │ │ │ ├── ur_IN.php │ │ │ │ ├── uz.php │ │ │ │ ├── uz_Arab.php │ │ │ │ ├── uz_Cyrl.php │ │ │ │ ├── vi.php │ │ │ │ ├── wo.php │ │ │ │ ├── xh.php │ │ │ │ ├── yi.php │ │ │ │ ├── yo.php │ │ │ │ ├── yo_BJ.php │ │ │ │ ├── zh.php │ │ │ │ ├── zh_HK.php │ │ │ │ ├── zh_Hans_HK.php │ │ │ │ ├── zh_Hans_MO.php │ │ │ │ ├── zh_Hans_SG.php │ │ │ │ ├── zh_Hant.php │ │ │ │ ├── zh_Hant_HK.php │ │ │ │ ├── zh_Hant_MO.php │ │ │ │ ├── zh_MO.php │ │ │ │ ├── zh_SG.php │ │ │ │ └── zu.php │ │ │ ├── git-info.txt │ │ │ ├── languages │ │ │ │ ├── af.php │ │ │ │ ├── ak.php │ │ │ │ ├── am.php │ │ │ │ ├── ar.php │ │ │ │ ├── ar_EG.php │ │ │ │ ├── ar_LY.php │ │ │ │ ├── ar_SA.php │ │ │ │ ├── as.php │ │ │ │ ├── az.php │ │ │ │ ├── az_Cyrl.php │ │ │ │ ├── be.php │ │ │ │ ├── bg.php │ │ │ │ ├── bm.php │ │ │ │ ├── bn.php │ │ │ │ ├── bn_IN.php │ │ │ │ ├── bo.php │ │ │ │ ├── br.php │ │ │ │ ├── bs.php │ │ │ │ ├── bs_Cyrl.php │ │ │ │ ├── ca.php │ │ │ │ ├── ce.php │ │ │ │ ├── cs.php │ │ │ │ ├── cv.php │ │ │ │ ├── cy.php │ │ │ │ ├── da.php │ │ │ │ ├── de.php │ │ │ │ ├── de_AT.php │ │ │ │ ├── de_CH.php │ │ │ │ ├── dz.php │ │ │ │ ├── ee.php │ │ │ │ ├── el.php │ │ │ │ ├── en.php │ │ │ │ ├── en_001.php │ │ │ │ ├── en_AU.php │ │ │ │ ├── en_CA.php │ │ │ │ ├── en_GB.php │ │ │ │ ├── en_IN.php │ │ │ │ ├── eo.php │ │ │ │ ├── es.php │ │ │ │ ├── es_419.php │ │ │ │ ├── es_AR.php │ │ │ │ ├── es_BO.php │ │ │ │ ├── es_CL.php │ │ │ │ ├── es_CO.php │ │ │ │ ├── es_CR.php │ │ │ │ ├── es_DO.php │ │ │ │ ├── es_EC.php │ │ │ │ ├── es_GT.php │ │ │ │ ├── es_HN.php │ │ │ │ ├── es_MX.php │ │ │ │ ├── es_NI.php │ │ │ │ ├── es_PA.php │ │ │ │ ├── es_PE.php │ │ │ │ ├── es_PR.php │ │ │ │ ├── es_PY.php │ │ │ │ ├── es_SV.php │ │ │ │ ├── es_US.php │ │ │ │ ├── es_VE.php │ │ │ │ ├── et.php │ │ │ │ ├── eu.php │ │ │ │ ├── fa.php │ │ │ │ ├── fa_AF.php │ │ │ │ ├── ff.php │ │ │ │ ├── ff_Adlm.php │ │ │ │ ├── fi.php │ │ │ │ ├── fo.php │ │ │ │ ├── fr.php │ │ │ │ ├── fr_BE.php │ │ │ │ ├── fr_CA.php │ │ │ │ ├── fr_CH.php │ │ │ │ ├── fy.php │ │ │ │ ├── ga.php │ │ │ │ ├── gd.php │ │ │ │ ├── gl.php │ │ │ │ ├── gu.php │ │ │ │ ├── gv.php │ │ │ │ ├── ha.php │ │ │ │ ├── he.php │ │ │ │ ├── hi.php │ │ │ │ ├── hi_Latn.php │ │ │ │ ├── hr.php │ │ │ │ ├── hu.php │ │ │ │ ├── hy.php │ │ │ │ ├── ia.php │ │ │ │ ├── id.php │ │ │ │ ├── ig.php │ │ │ │ ├── ii.php │ │ │ │ ├── in.php │ │ │ │ ├── is.php │ │ │ │ ├── it.php │ │ │ │ ├── iw.php │ │ │ │ ├── ja.php │ │ │ │ ├── jv.php │ │ │ │ ├── ka.php │ │ │ │ ├── ki.php │ │ │ │ ├── kk.php │ │ │ │ ├── kl.php │ │ │ │ ├── km.php │ │ │ │ ├── kn.php │ │ │ │ ├── ko.php │ │ │ │ ├── ks.php │ │ │ │ ├── ks_Deva.php │ │ │ │ ├── ku.php │ │ │ │ ├── kw.php │ │ │ │ ├── ky.php │ │ │ │ ├── lb.php │ │ │ │ ├── lg.php │ │ │ │ ├── ln.php │ │ │ │ ├── lo.php │ │ │ │ ├── lt.php │ │ │ │ ├── lu.php │ │ │ │ ├── lv.php │ │ │ │ ├── meta.php │ │ │ │ ├── mg.php │ │ │ │ ├── mi.php │ │ │ │ ├── mk.php │ │ │ │ ├── ml.php │ │ │ │ ├── mn.php │ │ │ │ ├── mo.php │ │ │ │ ├── mr.php │ │ │ │ ├── ms.php │ │ │ │ ├── mt.php │ │ │ │ ├── my.php │ │ │ │ ├── nd.php │ │ │ │ ├── ne.php │ │ │ │ ├── nl.php │ │ │ │ ├── nn.php │ │ │ │ ├── no.php │ │ │ │ ├── no_NO.php │ │ │ │ ├── om.php │ │ │ │ ├── or.php │ │ │ │ ├── os.php │ │ │ │ ├── pa.php │ │ │ │ ├── pa_Arab.php │ │ │ │ ├── pl.php │ │ │ │ ├── ps.php │ │ │ │ ├── ps_PK.php │ │ │ │ ├── pt.php │ │ │ │ ├── pt_PT.php │ │ │ │ ├── qu.php │ │ │ │ ├── rm.php │ │ │ │ ├── rn.php │ │ │ │ ├── ro.php │ │ │ │ ├── ro_MD.php │ │ │ │ ├── ru.php │ │ │ │ ├── rw.php │ │ │ │ ├── sa.php │ │ │ │ ├── sc.php │ │ │ │ ├── sd.php │ │ │ │ ├── sd_Deva.php │ │ │ │ ├── se.php │ │ │ │ ├── se_FI.php │ │ │ │ ├── sg.php │ │ │ │ ├── sh.php │ │ │ │ ├── sh_BA.php │ │ │ │ ├── si.php │ │ │ │ ├── sk.php │ │ │ │ ├── sl.php │ │ │ │ ├── sn.php │ │ │ │ ├── so.php │ │ │ │ ├── sq.php │ │ │ │ ├── sr.php │ │ │ │ ├── sr_BA.php │ │ │ │ ├── sr_Cyrl_BA.php │ │ │ │ ├── sr_Cyrl_ME.php │ │ │ │ ├── sr_Cyrl_XK.php │ │ │ │ ├── sr_Latn.php │ │ │ │ ├── sr_Latn_BA.php │ │ │ │ ├── sr_Latn_ME.php │ │ │ │ ├── sr_Latn_XK.php │ │ │ │ ├── sr_ME.php │ │ │ │ ├── sr_XK.php │ │ │ │ ├── su.php │ │ │ │ ├── sv.php │ │ │ │ ├── sw.php │ │ │ │ ├── sw_CD.php │ │ │ │ ├── sw_KE.php │ │ │ │ ├── ta.php │ │ │ │ ├── te.php │ │ │ │ ├── tg.php │ │ │ │ ├── th.php │ │ │ │ ├── ti.php │ │ │ │ ├── ti_ER.php │ │ │ │ ├── tk.php │ │ │ │ ├── tl.php │ │ │ │ ├── to.php │ │ │ │ ├── tr.php │ │ │ │ ├── tt.php │ │ │ │ ├── ug.php │ │ │ │ ├── uk.php │ │ │ │ ├── ur.php │ │ │ │ ├── ur_IN.php │ │ │ │ ├── uz.php │ │ │ │ ├── uz_Arab.php │ │ │ │ ├── uz_Cyrl.php │ │ │ │ ├── vi.php │ │ │ │ ├── wo.php │ │ │ │ ├── xh.php │ │ │ │ ├── yi.php │ │ │ │ ├── yo.php │ │ │ │ ├── yo_BJ.php │ │ │ │ ├── zh.php │ │ │ │ ├── zh_HK.php │ │ │ │ ├── zh_Hant.php │ │ │ │ ├── zh_Hant_HK.php │ │ │ │ └── zu.php │ │ │ ├── locales │ │ │ │ ├── af.php │ │ │ │ ├── ak.php │ │ │ │ ├── am.php │ │ │ │ ├── ar.php │ │ │ │ ├── ar_EG.php │ │ │ │ ├── ar_LY.php │ │ │ │ ├── ar_SA.php │ │ │ │ ├── as.php │ │ │ │ ├── az.php │ │ │ │ ├── az_Cyrl.php │ │ │ │ ├── be.php │ │ │ │ ├── bg.php │ │ │ │ ├── bm.php │ │ │ │ ├── bn.php │ │ │ │ ├── bn_IN.php │ │ │ │ ├── bo.php │ │ │ │ ├── br.php │ │ │ │ ├── bs.php │ │ │ │ ├── bs_Cyrl.php │ │ │ │ ├── ca.php │ │ │ │ ├── ce.php │ │ │ │ ├── cs.php │ │ │ │ ├── cv.php │ │ │ │ ├── cy.php │ │ │ │ ├── da.php │ │ │ │ ├── de.php │ │ │ │ ├── de_AT.php │ │ │ │ ├── de_CH.php │ │ │ │ ├── dz.php │ │ │ │ ├── ee.php │ │ │ │ ├── el.php │ │ │ │ ├── en.php │ │ │ │ ├── en_001.php │ │ │ │ ├── en_AU.php │ │ │ │ ├── en_CA.php │ │ │ │ ├── en_GB.php │ │ │ │ ├── en_IN.php │ │ │ │ ├── eo.php │ │ │ │ ├── es.php │ │ │ │ ├── es_419.php │ │ │ │ ├── es_AR.php │ │ │ │ ├── es_BO.php │ │ │ │ ├── es_CL.php │ │ │ │ ├── es_CO.php │ │ │ │ ├── es_CR.php │ │ │ │ ├── es_DO.php │ │ │ │ ├── es_EC.php │ │ │ │ ├── es_GT.php │ │ │ │ ├── es_HN.php │ │ │ │ ├── es_MX.php │ │ │ │ ├── es_NI.php │ │ │ │ ├── es_PA.php │ │ │ │ ├── es_PE.php │ │ │ │ ├── es_PR.php │ │ │ │ ├── es_PY.php │ │ │ │ ├── es_SV.php │ │ │ │ ├── es_US.php │ │ │ │ ├── es_VE.php │ │ │ │ ├── et.php │ │ │ │ ├── eu.php │ │ │ │ ├── fa.php │ │ │ │ ├── fa_AF.php │ │ │ │ ├── ff.php │ │ │ │ ├── ff_Adlm.php │ │ │ │ ├── fi.php │ │ │ │ ├── fo.php │ │ │ │ ├── fr.php │ │ │ │ ├── fr_BE.php │ │ │ │ ├── fr_CA.php │ │ │ │ ├── fr_CH.php │ │ │ │ ├── fy.php │ │ │ │ ├── ga.php │ │ │ │ ├── gd.php │ │ │ │ ├── gl.php │ │ │ │ ├── gu.php │ │ │ │ ├── gv.php │ │ │ │ ├── ha.php │ │ │ │ ├── he.php │ │ │ │ ├── hi.php │ │ │ │ ├── hi_Latn.php │ │ │ │ ├── hr.php │ │ │ │ ├── hu.php │ │ │ │ ├── hy.php │ │ │ │ ├── ia.php │ │ │ │ ├── id.php │ │ │ │ ├── ig.php │ │ │ │ ├── ii.php │ │ │ │ ├── is.php │ │ │ │ ├── it.php │ │ │ │ ├── ja.php │ │ │ │ ├── jv.php │ │ │ │ ├── ka.php │ │ │ │ ├── ki.php │ │ │ │ ├── kk.php │ │ │ │ ├── kl.php │ │ │ │ ├── km.php │ │ │ │ ├── kn.php │ │ │ │ ├── ko.php │ │ │ │ ├── ko_KP.php │ │ │ │ ├── ks.php │ │ │ │ ├── ks_Deva.php │ │ │ │ ├── ku.php │ │ │ │ ├── kw.php │ │ │ │ ├── ky.php │ │ │ │ ├── lb.php │ │ │ │ ├── lg.php │ │ │ │ ├── ln.php │ │ │ │ ├── lo.php │ │ │ │ ├── lt.php │ │ │ │ ├── lu.php │ │ │ │ ├── lv.php │ │ │ │ ├── meta.php │ │ │ │ ├── mg.php │ │ │ │ ├── mi.php │ │ │ │ ├── mk.php │ │ │ │ ├── ml.php │ │ │ │ ├── mn.php │ │ │ │ ├── mr.php │ │ │ │ ├── ms.php │ │ │ │ ├── mt.php │ │ │ │ ├── my.php │ │ │ │ ├── nd.php │ │ │ │ ├── ne.php │ │ │ │ ├── nl.php │ │ │ │ ├── nn.php │ │ │ │ ├── no.php │ │ │ │ ├── om.php │ │ │ │ ├── or.php │ │ │ │ ├── os.php │ │ │ │ ├── pa.php │ │ │ │ ├── pa_Arab.php │ │ │ │ ├── pl.php │ │ │ │ ├── ps.php │ │ │ │ ├── ps_PK.php │ │ │ │ ├── pt.php │ │ │ │ ├── pt_PT.php │ │ │ │ ├── qu.php │ │ │ │ ├── rm.php │ │ │ │ ├── rn.php │ │ │ │ ├── ro.php │ │ │ │ ├── ro_MD.php │ │ │ │ ├── ru.php │ │ │ │ ├── ru_UA.php │ │ │ │ ├── rw.php │ │ │ │ ├── sa.php │ │ │ │ ├── sc.php │ │ │ │ ├── sd.php │ │ │ │ ├── sd_Deva.php │ │ │ │ ├── se.php │ │ │ │ ├── se_FI.php │ │ │ │ ├── sg.php │ │ │ │ ├── si.php │ │ │ │ ├── sk.php │ │ │ │ ├── sl.php │ │ │ │ ├── sn.php │ │ │ │ ├── so.php │ │ │ │ ├── sq.php │ │ │ │ ├── sr.php │ │ │ │ ├── sr_Cyrl_BA.php │ │ │ │ ├── sr_Cyrl_ME.php │ │ │ │ ├── sr_Cyrl_XK.php │ │ │ │ ├── sr_Latn.php │ │ │ │ ├── sr_Latn_BA.php │ │ │ │ ├── sr_Latn_ME.php │ │ │ │ ├── sr_Latn_XK.php │ │ │ │ ├── su.php │ │ │ │ ├── sv.php │ │ │ │ ├── sw.php │ │ │ │ ├── sw_CD.php │ │ │ │ ├── sw_KE.php │ │ │ │ ├── ta.php │ │ │ │ ├── te.php │ │ │ │ ├── tg.php │ │ │ │ ├── th.php │ │ │ │ ├── ti.php │ │ │ │ ├── ti_ER.php │ │ │ │ ├── tk.php │ │ │ │ ├── to.php │ │ │ │ ├── tr.php │ │ │ │ ├── tt.php │ │ │ │ ├── ug.php │ │ │ │ ├── uk.php │ │ │ │ ├── ur.php │ │ │ │ ├── ur_IN.php │ │ │ │ ├── uz.php │ │ │ │ ├── uz_Arab.php │ │ │ │ ├── uz_Cyrl.php │ │ │ │ ├── vi.php │ │ │ │ ├── wo.php │ │ │ │ ├── xh.php │ │ │ │ ├── yi.php │ │ │ │ ├── yo.php │ │ │ │ ├── yo_BJ.php │ │ │ │ ├── zh.php │ │ │ │ ├── zh_Hant.php │ │ │ │ ├── zh_Hant_HK.php │ │ │ │ └── zu.php │ │ │ ├── regions │ │ │ │ ├── af.php │ │ │ │ ├── ak.php │ │ │ │ ├── am.php │ │ │ │ ├── ar.php │ │ │ │ ├── ar_LY.php │ │ │ │ ├── ar_SA.php │ │ │ │ ├── as.php │ │ │ │ ├── az.php │ │ │ │ ├── az_Cyrl.php │ │ │ │ ├── be.php │ │ │ │ ├── bg.php │ │ │ │ ├── bm.php │ │ │ │ ├── bn.php │ │ │ │ ├── bn_IN.php │ │ │ │ ├── bo.php │ │ │ │ ├── bo_IN.php │ │ │ │ ├── br.php │ │ │ │ ├── bs.php │ │ │ │ ├── bs_Cyrl.php │ │ │ │ ├── ca.php │ │ │ │ ├── ce.php │ │ │ │ ├── cs.php │ │ │ │ ├── cv.php │ │ │ │ ├── cy.php │ │ │ │ ├── da.php │ │ │ │ ├── de.php │ │ │ │ ├── de_AT.php │ │ │ │ ├── de_CH.php │ │ │ │ ├── dz.php │ │ │ │ ├── ee.php │ │ │ │ ├── el.php │ │ │ │ ├── en.php │ │ │ │ ├── en_001.php │ │ │ │ ├── en_AU.php │ │ │ │ ├── en_CA.php │ │ │ │ ├── eo.php │ │ │ │ ├── es.php │ │ │ │ ├── es_419.php │ │ │ │ ├── es_AR.php │ │ │ │ ├── es_BO.php │ │ │ │ ├── es_CL.php │ │ │ │ ├── es_CO.php │ │ │ │ ├── es_CR.php │ │ │ │ ├── es_DO.php │ │ │ │ ├── es_EC.php │ │ │ │ ├── es_GT.php │ │ │ │ ├── es_HN.php │ │ │ │ ├── es_MX.php │ │ │ │ ├── es_NI.php │ │ │ │ ├── es_PA.php │ │ │ │ ├── es_PE.php │ │ │ │ ├── es_PR.php │ │ │ │ ├── es_PY.php │ │ │ │ ├── es_SV.php │ │ │ │ ├── es_US.php │ │ │ │ ├── es_VE.php │ │ │ │ ├── et.php │ │ │ │ ├── eu.php │ │ │ │ ├── fa.php │ │ │ │ ├── fa_AF.php │ │ │ │ ├── ff.php │ │ │ │ ├── ff_Adlm.php │ │ │ │ ├── fi.php │ │ │ │ ├── fo.php │ │ │ │ ├── fr.php │ │ │ │ ├── fr_BE.php │ │ │ │ ├── fr_CA.php │ │ │ │ ├── fy.php │ │ │ │ ├── ga.php │ │ │ │ ├── gd.php │ │ │ │ ├── gl.php │ │ │ │ ├── gu.php │ │ │ │ ├── gv.php │ │ │ │ ├── ha.php │ │ │ │ ├── he.php │ │ │ │ ├── hi.php │ │ │ │ ├── hi_Latn.php │ │ │ │ ├── hr.php │ │ │ │ ├── hu.php │ │ │ │ ├── hy.php │ │ │ │ ├── ia.php │ │ │ │ ├── id.php │ │ │ │ ├── ig.php │ │ │ │ ├── ii.php │ │ │ │ ├── in.php │ │ │ │ ├── is.php │ │ │ │ ├── it.php │ │ │ │ ├── iw.php │ │ │ │ ├── ja.php │ │ │ │ ├── jv.php │ │ │ │ ├── ka.php │ │ │ │ ├── ki.php │ │ │ │ ├── kk.php │ │ │ │ ├── kl.php │ │ │ │ ├── km.php │ │ │ │ ├── kn.php │ │ │ │ ├── ko.php │ │ │ │ ├── ko_KP.php │ │ │ │ ├── ks.php │ │ │ │ ├── ks_Deva.php │ │ │ │ ├── ku.php │ │ │ │ ├── kw.php │ │ │ │ ├── ky.php │ │ │ │ ├── lb.php │ │ │ │ ├── lg.php │ │ │ │ ├── ln.php │ │ │ │ ├── lo.php │ │ │ │ ├── lt.php │ │ │ │ ├── lu.php │ │ │ │ ├── lv.php │ │ │ │ ├── meta.php │ │ │ │ ├── mg.php │ │ │ │ ├── mi.php │ │ │ │ ├── mk.php │ │ │ │ ├── ml.php │ │ │ │ ├── mn.php │ │ │ │ ├── mo.php │ │ │ │ ├── mr.php │ │ │ │ ├── ms.php │ │ │ │ ├── mt.php │ │ │ │ ├── my.php │ │ │ │ ├── nd.php │ │ │ │ ├── ne.php │ │ │ │ ├── nl.php │ │ │ │ ├── nn.php │ │ │ │ ├── no.php │ │ │ │ ├── no_NO.php │ │ │ │ ├── om.php │ │ │ │ ├── or.php │ │ │ │ ├── os.php │ │ │ │ ├── pa.php │ │ │ │ ├── pa_Arab.php │ │ │ │ ├── pl.php │ │ │ │ ├── ps.php │ │ │ │ ├── ps_PK.php │ │ │ │ ├── pt.php │ │ │ │ ├── pt_PT.php │ │ │ │ ├── qu.php │ │ │ │ ├── rm.php │ │ │ │ ├── rn.php │ │ │ │ ├── ro.php │ │ │ │ ├── ro_MD.php │ │ │ │ ├── ru.php │ │ │ │ ├── ru_UA.php │ │ │ │ ├── rw.php │ │ │ │ ├── sa.php │ │ │ │ ├── sc.php │ │ │ │ ├── sd.php │ │ │ │ ├── sd_Deva.php │ │ │ │ ├── se.php │ │ │ │ ├── se_FI.php │ │ │ │ ├── sg.php │ │ │ │ ├── sh.php │ │ │ │ ├── sh_BA.php │ │ │ │ ├── si.php │ │ │ │ ├── sk.php │ │ │ │ ├── sl.php │ │ │ │ ├── sn.php │ │ │ │ ├── so.php │ │ │ │ ├── sq.php │ │ │ │ ├── sr.php │ │ │ │ ├── sr_BA.php │ │ │ │ ├── sr_Cyrl_BA.php │ │ │ │ ├── sr_Cyrl_ME.php │ │ │ │ ├── sr_Cyrl_XK.php │ │ │ │ ├── sr_Latn.php │ │ │ │ ├── sr_Latn_BA.php │ │ │ │ ├── sr_Latn_ME.php │ │ │ │ ├── sr_Latn_XK.php │ │ │ │ ├── sr_ME.php │ │ │ │ ├── sr_XK.php │ │ │ │ ├── su.php │ │ │ │ ├── sv.php │ │ │ │ ├── sw.php │ │ │ │ ├── sw_CD.php │ │ │ │ ├── sw_KE.php │ │ │ │ ├── ta.php │ │ │ │ ├── te.php │ │ │ │ ├── tg.php │ │ │ │ ├── th.php │ │ │ │ ├── ti.php │ │ │ │ ├── tk.php │ │ │ │ ├── tl.php │ │ │ │ ├── to.php │ │ │ │ ├── tr.php │ │ │ │ ├── tt.php │ │ │ │ ├── ug.php │ │ │ │ ├── uk.php │ │ │ │ ├── ur.php │ │ │ │ ├── ur_IN.php │ │ │ │ ├── uz.php │ │ │ │ ├── uz_Arab.php │ │ │ │ ├── uz_Cyrl.php │ │ │ │ ├── vi.php │ │ │ │ ├── wo.php │ │ │ │ ├── xh.php │ │ │ │ ├── yi.php │ │ │ │ ├── yo.php │ │ │ │ ├── yo_BJ.php │ │ │ │ ├── zh.php │ │ │ │ ├── zh_HK.php │ │ │ │ ├── zh_Hant.php │ │ │ │ ├── zh_Hant_HK.php │ │ │ │ └── zu.php │ │ │ ├── scripts │ │ │ │ ├── af.php │ │ │ │ ├── am.php │ │ │ │ ├── ar.php │ │ │ │ ├── as.php │ │ │ │ ├── az.php │ │ │ │ ├── az_Cyrl.php │ │ │ │ ├── be.php │ │ │ │ ├── bg.php │ │ │ │ ├── bn.php │ │ │ │ ├── bo.php │ │ │ │ ├── br.php │ │ │ │ ├── bs.php │ │ │ │ ├── bs_Cyrl.php │ │ │ │ ├── ca.php │ │ │ │ ├── ce.php │ │ │ │ ├── cs.php │ │ │ │ ├── cv.php │ │ │ │ ├── cy.php │ │ │ │ ├── da.php │ │ │ │ ├── de.php │ │ │ │ ├── dz.php │ │ │ │ ├── ee.php │ │ │ │ ├── el.php │ │ │ │ ├── en.php │ │ │ │ ├── en_AU.php │ │ │ │ ├── en_CA.php │ │ │ │ ├── en_IN.php │ │ │ │ ├── es.php │ │ │ │ ├── es_419.php │ │ │ │ ├── es_US.php │ │ │ │ ├── et.php │ │ │ │ ├── eu.php │ │ │ │ ├── fa.php │ │ │ │ ├── fa_AF.php │ │ │ │ ├── ff_Adlm.php │ │ │ │ ├── fi.php │ │ │ │ ├── fo.php │ │ │ │ ├── fr.php │ │ │ │ ├── fr_CA.php │ │ │ │ ├── fy.php │ │ │ │ ├── ga.php │ │ │ │ ├── gd.php │ │ │ │ ├── gl.php │ │ │ │ ├── gu.php │ │ │ │ ├── ha.php │ │ │ │ ├── ha_NE.php │ │ │ │ ├── he.php │ │ │ │ ├── hi.php │ │ │ │ ├── hi_Latn.php │ │ │ │ ├── hr.php │ │ │ │ ├── hu.php │ │ │ │ ├── hy.php │ │ │ │ ├── ia.php │ │ │ │ ├── id.php │ │ │ │ ├── ig.php │ │ │ │ ├── ii.php │ │ │ │ ├── in.php │ │ │ │ ├── is.php │ │ │ │ ├── it.php │ │ │ │ ├── iw.php │ │ │ │ ├── ja.php │ │ │ │ ├── jv.php │ │ │ │ ├── ka.php │ │ │ │ ├── kk.php │ │ │ │ ├── km.php │ │ │ │ ├── kn.php │ │ │ │ ├── ko.php │ │ │ │ ├── ks.php │ │ │ │ ├── ks_Deva.php │ │ │ │ ├── ku.php │ │ │ │ ├── ky.php │ │ │ │ ├── lb.php │ │ │ │ ├── lo.php │ │ │ │ ├── lt.php │ │ │ │ ├── lv.php │ │ │ │ ├── meta.php │ │ │ │ ├── mi.php │ │ │ │ ├── mk.php │ │ │ │ ├── ml.php │ │ │ │ ├── mn.php │ │ │ │ ├── mo.php │ │ │ │ ├── mr.php │ │ │ │ ├── ms.php │ │ │ │ ├── mt.php │ │ │ │ ├── my.php │ │ │ │ ├── ne.php │ │ │ │ ├── nl.php │ │ │ │ ├── nn.php │ │ │ │ ├── no.php │ │ │ │ ├── no_NO.php │ │ │ │ ├── om.php │ │ │ │ ├── or.php │ │ │ │ ├── os.php │ │ │ │ ├── pa.php │ │ │ │ ├── pa_Arab.php │ │ │ │ ├── pl.php │ │ │ │ ├── ps.php │ │ │ │ ├── pt.php │ │ │ │ ├── pt_PT.php │ │ │ │ ├── qu.php │ │ │ │ ├── rm.php │ │ │ │ ├── ro.php │ │ │ │ ├── ru.php │ │ │ │ ├── sa.php │ │ │ │ ├── sc.php │ │ │ │ ├── sd.php │ │ │ │ ├── sd_Deva.php │ │ │ │ ├── se.php │ │ │ │ ├── se_FI.php │ │ │ │ ├── sh.php │ │ │ │ ├── si.php │ │ │ │ ├── sk.php │ │ │ │ ├── sl.php │ │ │ │ ├── so.php │ │ │ │ ├── sq.php │ │ │ │ ├── sr.php │ │ │ │ ├── sr_Latn.php │ │ │ │ ├── su.php │ │ │ │ ├── sv.php │ │ │ │ ├── sw.php │ │ │ │ ├── sw_KE.php │ │ │ │ ├── ta.php │ │ │ │ ├── te.php │ │ │ │ ├── tg.php │ │ │ │ ├── th.php │ │ │ │ ├── ti.php │ │ │ │ ├── tk.php │ │ │ │ ├── tl.php │ │ │ │ ├── to.php │ │ │ │ ├── tr.php │ │ │ │ ├── tt.php │ │ │ │ ├── ug.php │ │ │ │ ├── uk.php │ │ │ │ ├── ur.php │ │ │ │ ├── uz.php │ │ │ │ ├── uz_Arab.php │ │ │ │ ├── uz_Cyrl.php │ │ │ │ ├── vi.php │ │ │ │ ├── wo.php │ │ │ │ ├── xh.php │ │ │ │ ├── yi.php │ │ │ │ ├── yo.php │ │ │ │ ├── yo_BJ.php │ │ │ │ ├── zh.php │ │ │ │ ├── zh_HK.php │ │ │ │ ├── zh_Hant.php │ │ │ │ ├── zh_Hant_HK.php │ │ │ │ └── zu.php │ │ │ ├── timezones │ │ │ │ ├── af.php │ │ │ │ ├── am.php │ │ │ │ ├── ar.php │ │ │ │ ├── as.php │ │ │ │ ├── az.php │ │ │ │ ├── be.php │ │ │ │ ├── bg.php │ │ │ │ ├── bn.php │ │ │ │ ├── bo.php │ │ │ │ ├── br.php │ │ │ │ ├── bs.php │ │ │ │ ├── bs_Cyrl.php │ │ │ │ ├── ca.php │ │ │ │ ├── ce.php │ │ │ │ ├── cs.php │ │ │ │ ├── cv.php │ │ │ │ ├── cy.php │ │ │ │ ├── da.php │ │ │ │ ├── de.php │ │ │ │ ├── de_CH.php │ │ │ │ ├── dz.php │ │ │ │ ├── ee.php │ │ │ │ ├── el.php │ │ │ │ ├── en.php │ │ │ │ ├── en_001.php │ │ │ │ ├── en_AU.php │ │ │ │ ├── en_CA.php │ │ │ │ ├── en_IN.php │ │ │ │ ├── es.php │ │ │ │ ├── es_419.php │ │ │ │ ├── es_MX.php │ │ │ │ ├── es_US.php │ │ │ │ ├── et.php │ │ │ │ ├── eu.php │ │ │ │ ├── fa.php │ │ │ │ ├── ff_Adlm.php │ │ │ │ ├── fi.php │ │ │ │ ├── fo.php │ │ │ │ ├── fr.php │ │ │ │ ├── fr_CA.php │ │ │ │ ├── fy.php │ │ │ │ ├── ga.php │ │ │ │ ├── gd.php │ │ │ │ ├── gl.php │ │ │ │ ├── gu.php │ │ │ │ ├── ha.php │ │ │ │ ├── he.php │ │ │ │ ├── hi.php │ │ │ │ ├── hi_Latn.php │ │ │ │ ├── hr.php │ │ │ │ ├── hu.php │ │ │ │ ├── hy.php │ │ │ │ ├── ia.php │ │ │ │ ├── id.php │ │ │ │ ├── ig.php │ │ │ │ ├── ii.php │ │ │ │ ├── is.php │ │ │ │ ├── it.php │ │ │ │ ├── ja.php │ │ │ │ ├── jv.php │ │ │ │ ├── ka.php │ │ │ │ ├── kk.php │ │ │ │ ├── km.php │ │ │ │ ├── kn.php │ │ │ │ ├── ko.php │ │ │ │ ├── ko_KP.php │ │ │ │ ├── ks.php │ │ │ │ ├── ks_Deva.php │ │ │ │ ├── ky.php │ │ │ │ ├── lb.php │ │ │ │ ├── ln.php │ │ │ │ ├── lo.php │ │ │ │ ├── lt.php │ │ │ │ ├── lv.php │ │ │ │ ├── meta.php │ │ │ │ ├── mi.php │ │ │ │ ├── mk.php │ │ │ │ ├── ml.php │ │ │ │ ├── mn.php │ │ │ │ ├── mr.php │ │ │ │ ├── ms.php │ │ │ │ ├── ms_ID.php │ │ │ │ ├── mt.php │ │ │ │ ├── my.php │ │ │ │ ├── ne.php │ │ │ │ ├── nl.php │ │ │ │ ├── nn.php │ │ │ │ ├── no.php │ │ │ │ ├── om.php │ │ │ │ ├── or.php │ │ │ │ ├── os.php │ │ │ │ ├── pa.php │ │ │ │ ├── pl.php │ │ │ │ ├── ps.php │ │ │ │ ├── ps_PK.php │ │ │ │ ├── pt.php │ │ │ │ ├── pt_PT.php │ │ │ │ ├── qu.php │ │ │ │ ├── rm.php │ │ │ │ ├── ro.php │ │ │ │ ├── root.php │ │ │ │ ├── ru.php │ │ │ │ ├── rw.php │ │ │ │ ├── sa.php │ │ │ │ ├── sc.php │ │ │ │ ├── sd.php │ │ │ │ ├── sd_Deva.php │ │ │ │ ├── se.php │ │ │ │ ├── se_FI.php │ │ │ │ ├── si.php │ │ │ │ ├── sk.php │ │ │ │ ├── sl.php │ │ │ │ ├── so.php │ │ │ │ ├── sq.php │ │ │ │ ├── sr.php │ │ │ │ ├── sr_Cyrl_BA.php │ │ │ │ ├── sr_Latn.php │ │ │ │ ├── sr_Latn_BA.php │ │ │ │ ├── su.php │ │ │ │ ├── sv.php │ │ │ │ ├── sw.php │ │ │ │ ├── sw_KE.php │ │ │ │ ├── ta.php │ │ │ │ ├── te.php │ │ │ │ ├── tg.php │ │ │ │ ├── th.php │ │ │ │ ├── ti.php │ │ │ │ ├── tk.php │ │ │ │ ├── to.php │ │ │ │ ├── tr.php │ │ │ │ ├── tt.php │ │ │ │ ├── ug.php │ │ │ │ ├── uk.php │ │ │ │ ├── ur.php │ │ │ │ ├── ur_IN.php │ │ │ │ ├── uz.php │ │ │ │ ├── uz_Arab.php │ │ │ │ ├── uz_Cyrl.php │ │ │ │ ├── vi.php │ │ │ │ ├── wo.php │ │ │ │ ├── xh.php │ │ │ │ ├── yi.php │ │ │ │ ├── yo.php │ │ │ │ ├── yo_BJ.php │ │ │ │ ├── zh.php │ │ │ │ ├── zh_Hans_SG.php │ │ │ │ ├── zh_Hant.php │ │ │ │ ├── zh_Hant_HK.php │ │ │ │ └── zu.php │ │ │ └── version.txt │ │ ├── functions.php │ │ └── stubs │ │ │ ├── Collator.php │ │ │ ├── IntlDateFormatter.php │ │ │ ├── Locale.php │ │ │ └── NumberFormatter.php │ ├── Scripts.php │ ├── Timezones.php │ ├── Util │ │ ├── GitRepository.php │ │ ├── IcuVersion.php │ │ ├── IntlTestHelper.php │ │ └── Version.php │ └── composer.json ├── mailchimp-mailer │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── Transport │ │ ├── MandrillApiTransport.php │ │ ├── MandrillHeadersTrait.php │ │ ├── MandrillHttpTransport.php │ │ ├── MandrillSmtpTransport.php │ │ └── MandrillTransportFactory.php │ └── composer.json ├── mailer │ ├── CHANGELOG.md │ ├── DataCollector │ │ └── MessageDataCollector.php │ ├── DelayedEnvelope.php │ ├── Envelope.php │ ├── Event │ │ ├── MessageEvent.php │ │ └── MessageEvents.php │ ├── EventListener │ │ ├── EnvelopeListener.php │ │ ├── MessageListener.php │ │ └── MessageLoggerListener.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── HttpTransportException.php │ │ ├── IncompleteDsnException.php │ │ ├── InvalidArgumentException.php │ │ ├── LogicException.php │ │ ├── RuntimeException.php │ │ ├── TransportException.php │ │ ├── TransportExceptionInterface.php │ │ └── UnsupportedSchemeException.php │ ├── Header │ │ ├── MetadataHeader.php │ │ └── TagHeader.php │ ├── LICENSE │ ├── Mailer.php │ ├── MailerInterface.php │ ├── Messenger │ │ ├── MessageHandler.php │ │ └── SendEmailMessage.php │ ├── README.md │ ├── SentMessage.php │ ├── Test │ │ ├── Constraint │ │ │ ├── EmailCount.php │ │ │ └── EmailIsQueued.php │ │ └── TransportFactoryTestCase.php │ ├── Transport.php │ ├── Transport │ │ ├── AbstractApiTransport.php │ │ ├── AbstractHttpTransport.php │ │ ├── AbstractTransport.php │ │ ├── AbstractTransportFactory.php │ │ ├── Dsn.php │ │ ├── FailoverTransport.php │ │ ├── NativeTransportFactory.php │ │ ├── NullTransport.php │ │ ├── NullTransportFactory.php │ │ ├── RoundRobinTransport.php │ │ ├── SendmailTransport.php │ │ ├── SendmailTransportFactory.php │ │ ├── Smtp │ │ │ ├── Auth │ │ │ │ ├── AuthenticatorInterface.php │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ └── XOAuth2Authenticator.php │ │ │ ├── EsmtpTransport.php │ │ │ ├── EsmtpTransportFactory.php │ │ │ ├── SmtpTransport.php │ │ │ └── Stream │ │ │ │ ├── AbstractStream.php │ │ │ │ ├── ProcessStream.php │ │ │ │ └── SocketStream.php │ │ ├── TransportFactoryInterface.php │ │ ├── TransportInterface.php │ │ └── Transports.php │ └── composer.json ├── maker-bundle │ ├── LICENSE │ ├── appveyor.yml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── ApplicationAwareMakerInterface.php │ │ ├── Command │ │ │ └── MakerCommand.php │ │ ├── Console │ │ │ ├── MigrationDiffFilteredOutput.php │ │ │ └── MigrationDiffFilteredOutput_php8 │ │ ├── ConsoleStyle.php │ │ ├── DependencyBuilder.php │ │ ├── DependencyInjection │ │ │ ├── CompilerPass │ │ │ │ ├── MakeCommandRegistrationPass.php │ │ │ │ ├── RemoveMissingParametersPass.php │ │ │ │ └── SetDoctrineAnnotatedPrefixesPass.php │ │ │ ├── Configuration.php │ │ │ └── MakerExtension.php │ │ ├── Docker │ │ │ └── DockerDatabaseServices.php │ │ ├── Doctrine │ │ │ ├── BaseCollectionRelation.php │ │ │ ├── BaseRelation.php │ │ │ ├── DoctrineHelper.php │ │ │ ├── EntityClassGenerator.php │ │ │ ├── EntityDetails.php │ │ │ ├── EntityRegenerator.php │ │ │ ├── EntityRelation.php │ │ │ ├── ORMDependencyBuilder.php │ │ │ ├── RelationManyToMany.php │ │ │ ├── RelationManyToOne.php │ │ │ ├── RelationOneToMany.php │ │ │ └── RelationOneToOne.php │ │ ├── Event │ │ │ └── ConsoleErrorSubscriber.php │ │ ├── EventRegistry.php │ │ ├── Exception │ │ │ └── RuntimeCommandException.php │ │ ├── FileManager.php │ │ ├── Generator.php │ │ ├── GeneratorTwigHelper.php │ │ ├── InputAwareMakerInterface.php │ │ ├── InputConfiguration.php │ │ ├── Maker │ │ │ ├── AbstractMaker.php │ │ │ ├── MakeAuthenticator.php │ │ │ ├── MakeCommand.php │ │ │ ├── MakeController.php │ │ │ ├── MakeCrud.php │ │ │ ├── MakeDockerDatabase.php │ │ │ ├── MakeEntity.php │ │ │ ├── MakeFixtures.php │ │ │ ├── MakeForm.php │ │ │ ├── MakeFunctionalTest.php │ │ │ ├── MakeMessage.php │ │ │ ├── MakeMessengerMiddleware.php │ │ │ ├── MakeMigration.php │ │ │ ├── MakeRegistrationForm.php │ │ │ ├── MakeResetPassword.php │ │ │ ├── MakeSerializerEncoder.php │ │ │ ├── MakeSerializerNormalizer.php │ │ │ ├── MakeStimulusController.php │ │ │ ├── MakeSubscriber.php │ │ │ ├── MakeTest.php │ │ │ ├── MakeTwigComponent.php │ │ │ ├── MakeTwigExtension.php │ │ │ ├── MakeUnitTest.php │ │ │ ├── MakeUser.php │ │ │ ├── MakeValidator.php │ │ │ └── MakeVoter.php │ │ ├── MakerBundle.php │ │ ├── MakerInterface.php │ │ ├── Renderer │ │ │ └── FormTypeRenderer.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── makers.xml │ │ │ │ └── services.xml │ │ │ ├── doc │ │ │ │ └── index.rst │ │ │ ├── help │ │ │ │ ├── MakeAuth.txt │ │ │ │ ├── MakeCommand.txt │ │ │ │ ├── MakeController.txt │ │ │ │ ├── MakeCrud.txt │ │ │ │ ├── MakeDockerDatabase.txt │ │ │ │ ├── MakeEntity.txt │ │ │ │ ├── MakeFixture.txt │ │ │ │ ├── MakeForm.txt │ │ │ │ ├── MakeFunctionalTest.txt │ │ │ │ ├── MakeMessage.txt │ │ │ │ ├── MakeMiddleware.txt │ │ │ │ ├── MakeMigration.txt │ │ │ │ ├── MakeRegistrationForm.txt │ │ │ │ ├── MakeResetPassword.txt │ │ │ │ ├── MakeSerializerEncoder.txt │ │ │ │ ├── MakeSerializerNormalizer.txt │ │ │ │ ├── MakeStimulusController.txt │ │ │ │ ├── MakeSubscriber.txt │ │ │ │ ├── MakeTest.txt │ │ │ │ ├── MakeTwigExtension.txt │ │ │ │ ├── MakeUnitTest.txt │ │ │ │ ├── MakeUser.txt │ │ │ │ ├── MakeValidator.txt │ │ │ │ └── MakeVoter.txt │ │ │ └── skeleton │ │ │ │ ├── Class.tpl.php │ │ │ │ ├── authenticator │ │ │ │ ├── EmptyAuthenticator.tpl.php │ │ │ │ ├── EmptySecurityController.tpl.php │ │ │ │ ├── LoginFormAuthenticator.tpl.php │ │ │ │ └── login_form.tpl.php │ │ │ │ ├── command │ │ │ │ └── Command.tpl.php │ │ │ │ ├── controller │ │ │ │ ├── Controller.tpl.php │ │ │ │ └── twig_template.tpl.php │ │ │ │ ├── crud │ │ │ │ ├── controller │ │ │ │ │ └── Controller.tpl.php │ │ │ │ ├── templates │ │ │ │ │ ├── _delete_form.tpl.php │ │ │ │ │ ├── _form.tpl.php │ │ │ │ │ ├── edit.tpl.php │ │ │ │ │ ├── index.tpl.php │ │ │ │ │ ├── new.tpl.php │ │ │ │ │ └── show.tpl.php │ │ │ │ └── test │ │ │ │ │ ├── Test.EntityManager.tpl.php │ │ │ │ │ └── Test.tpl.php │ │ │ │ ├── doctrine │ │ │ │ ├── Entity.tpl.php │ │ │ │ ├── Fixtures.tpl.php │ │ │ │ ├── Repository.tpl.php │ │ │ │ └── broadcast_twig_template.tpl.php │ │ │ │ ├── event │ │ │ │ └── Subscriber.tpl.php │ │ │ │ ├── form │ │ │ │ └── Type.tpl.php │ │ │ │ ├── message │ │ │ │ ├── Message.tpl.php │ │ │ │ └── MessageHandler.tpl.php │ │ │ │ ├── middleware │ │ │ │ └── Middleware.tpl.php │ │ │ │ ├── registration │ │ │ │ ├── RegistrationController.tpl.php │ │ │ │ ├── twig_email.tpl.php │ │ │ │ └── twig_template.tpl.php │ │ │ │ ├── resetPassword │ │ │ │ ├── ChangePasswordFormType.tpl.php │ │ │ │ ├── ResetPasswordController.tpl.php │ │ │ │ ├── ResetPasswordRequestFormType.tpl.php │ │ │ │ ├── twig_check_email.tpl.php │ │ │ │ ├── twig_email.tpl.php │ │ │ │ ├── twig_request.tpl.php │ │ │ │ └── twig_reset.tpl.php │ │ │ │ ├── security │ │ │ │ ├── UserProvider.tpl.php │ │ │ │ └── Voter.tpl.php │ │ │ │ ├── serializer │ │ │ │ ├── Encoder.tpl.php │ │ │ │ └── Normalizer.tpl.php │ │ │ │ ├── stimulus │ │ │ │ └── Controller.tpl.php │ │ │ │ ├── test │ │ │ │ ├── ApiTestCase.tpl.php │ │ │ │ ├── Functional.tpl.php │ │ │ │ ├── KernelTestCase.tpl.php │ │ │ │ ├── PantherTestCase.tpl.php │ │ │ │ ├── TestCase.tpl.php │ │ │ │ ├── Unit.tpl.php │ │ │ │ └── WebTestCase.tpl.php │ │ │ │ ├── twig │ │ │ │ ├── Component.tpl.php │ │ │ │ ├── Extension.tpl.php │ │ │ │ ├── LiveComponent.tpl.php │ │ │ │ ├── Runtime.tpl.php │ │ │ │ └── component_template.tpl.php │ │ │ │ ├── validator │ │ │ │ ├── Constraint.tpl.php │ │ │ │ └── Validator.tpl.php │ │ │ │ └── verifyEmail │ │ │ │ └── EmailVerifier.tpl.php │ │ ├── Security │ │ │ ├── InteractiveSecurityHelper.php │ │ │ ├── SecurityConfigUpdater.php │ │ │ ├── SecurityControllerBuilder.php │ │ │ ├── UserClassBuilder.php │ │ │ └── UserClassConfiguration.php │ │ ├── Str.php │ │ ├── Test │ │ │ ├── MakerTestCase.php │ │ │ ├── MakerTestDetails.php │ │ │ ├── MakerTestEnvironment.php │ │ │ ├── MakerTestKernel.php │ │ │ ├── MakerTestProcess.php │ │ │ └── MakerTestRunner.php │ │ ├── Util │ │ │ ├── AutoloaderUtil.php │ │ │ ├── ClassDetails.php │ │ │ ├── ClassNameDetails.php │ │ │ ├── ClassNameValue.php │ │ │ ├── ClassSourceManipulator.php │ │ │ ├── ComposeFileManipulator.php │ │ │ ├── ComposerAutoloaderFinder.php │ │ │ ├── MakerFileLinkFormatter.php │ │ │ ├── PhpCompatUtil.php │ │ │ ├── PrettyPrinter.php │ │ │ ├── TemplateComponentGenerator.php │ │ │ ├── UseStatementGenerator.php │ │ │ ├── YamlManipulationFailedException.php │ │ │ └── YamlSourceManipulator.php │ │ └── Validator.php │ └── tools │ │ ├── php-cs-fixer │ │ └── composer.json │ │ └── twigcs │ │ ├── composer.json │ │ └── src │ │ └── MakerTwigRuleSet.php ├── messenger │ ├── Attribute │ │ └── AsMessageHandler.php │ ├── CHANGELOG.md │ ├── Command │ │ ├── AbstractFailedMessagesCommand.php │ │ ├── ConsumeMessagesCommand.php │ │ ├── DebugCommand.php │ │ ├── FailedMessagesRemoveCommand.php │ │ ├── FailedMessagesRetryCommand.php │ │ ├── FailedMessagesShowCommand.php │ │ ├── SetupTransportsCommand.php │ │ └── StopWorkersCommand.php │ ├── DataCollector │ │ └── MessengerDataCollector.php │ ├── DependencyInjection │ │ └── MessengerPass.php │ ├── Envelope.php │ ├── Event │ │ ├── AbstractWorkerMessageEvent.php │ │ ├── SendMessageToTransportsEvent.php │ │ ├── WorkerMessageFailedEvent.php │ │ ├── WorkerMessageHandledEvent.php │ │ ├── WorkerMessageReceivedEvent.php │ │ ├── WorkerMessageRetriedEvent.php │ │ ├── WorkerRunningEvent.php │ │ ├── WorkerStartedEvent.php │ │ └── WorkerStoppedEvent.php │ ├── EventListener │ │ ├── AddErrorDetailsStampListener.php │ │ ├── DispatchPcntlSignalListener.php │ │ ├── ResetServicesListener.php │ │ ├── SendFailedMessageForRetryListener.php │ │ ├── SendFailedMessageToFailureTransportListener.php │ │ ├── StopWorkerOnCustomStopExceptionListener.php │ │ ├── StopWorkerOnFailureLimitListener.php │ │ ├── StopWorkerOnMemoryLimitListener.php │ │ ├── StopWorkerOnMessageLimitListener.php │ │ ├── StopWorkerOnRestartSignalListener.php │ │ ├── StopWorkerOnSigtermSignalListener.php │ │ └── StopWorkerOnTimeLimitListener.php │ ├── Exception │ │ ├── DelayedMessageHandlingException.php │ │ ├── ExceptionInterface.php │ │ ├── HandlerFailedException.php │ │ ├── InvalidArgumentException.php │ │ ├── LogicException.php │ │ ├── MessageDecodingFailedException.php │ │ ├── NoHandlerForMessageException.php │ │ ├── RecoverableExceptionInterface.php │ │ ├── RecoverableMessageHandlingException.php │ │ ├── RejectRedeliveredMessageException.php │ │ ├── RuntimeException.php │ │ ├── StopWorkerException.php │ │ ├── StopWorkerExceptionInterface.php │ │ ├── TransportException.php │ │ ├── UnrecoverableExceptionInterface.php │ │ ├── UnrecoverableMessageHandlingException.php │ │ └── ValidationFailedException.php │ ├── HandleTrait.php │ ├── Handler │ │ ├── Acknowledger.php │ │ ├── BatchHandlerInterface.php │ │ ├── BatchHandlerTrait.php │ │ ├── HandlerDescriptor.php │ │ ├── HandlersLocator.php │ │ ├── HandlersLocatorInterface.php │ │ ├── MessageHandlerInterface.php │ │ └── MessageSubscriberInterface.php │ ├── LICENSE │ ├── MessageBus.php │ ├── MessageBusInterface.php │ ├── Middleware │ │ ├── ActivationMiddleware.php │ │ ├── AddBusNameStampMiddleware.php │ │ ├── DispatchAfterCurrentBusMiddleware.php │ │ ├── FailedMessageProcessingMiddleware.php │ │ ├── HandleMessageMiddleware.php │ │ ├── MiddlewareInterface.php │ │ ├── RejectRedeliveredMessageMiddleware.php │ │ ├── RouterContextMiddleware.php │ │ ├── SendMessageMiddleware.php │ │ ├── StackInterface.php │ │ ├── StackMiddleware.php │ │ ├── TraceableMiddleware.php │ │ └── ValidationMiddleware.php │ ├── README.md │ ├── Retry │ │ ├── MultiplierRetryStrategy.php │ │ └── RetryStrategyInterface.php │ ├── RoutableMessageBus.php │ ├── Stamp │ │ ├── AckStamp.php │ │ ├── BusNameStamp.php │ │ ├── ConsumedByWorkerStamp.php │ │ ├── DelayStamp.php │ │ ├── DispatchAfterCurrentBusStamp.php │ │ ├── ErrorDetailsStamp.php │ │ ├── FlushBatchHandlersStamp.php │ │ ├── HandledStamp.php │ │ ├── NoAutoAckStamp.php │ │ ├── NonSendableStampInterface.php │ │ ├── ReceivedStamp.php │ │ ├── RedeliveryStamp.php │ │ ├── RouterContextStamp.php │ │ ├── SentStamp.php │ │ ├── SentToFailureTransportStamp.php │ │ ├── SerializerStamp.php │ │ ├── StampInterface.php │ │ ├── TransportMessageIdStamp.php │ │ └── ValidationStamp.php │ ├── Test │ │ └── Middleware │ │ │ └── MiddlewareTestCase.php │ ├── TraceableMessageBus.php │ ├── Transport │ │ ├── AmqpExt │ │ │ ├── AmqpFactory.php │ │ │ ├── AmqpReceivedStamp.php │ │ │ ├── AmqpReceiver.php │ │ │ ├── AmqpSender.php │ │ │ ├── AmqpStamp.php │ │ │ ├── AmqpTransport.php │ │ │ ├── AmqpTransportFactory.php │ │ │ └── Connection.php │ │ ├── Doctrine │ │ │ ├── Connection.php │ │ │ ├── DoctrineReceivedStamp.php │ │ │ ├── DoctrineReceiver.php │ │ │ ├── DoctrineSender.php │ │ │ ├── DoctrineTransport.php │ │ │ └── DoctrineTransportFactory.php │ │ ├── InMemoryTransport.php │ │ ├── InMemoryTransportFactory.php │ │ ├── Receiver │ │ │ ├── ListableReceiverInterface.php │ │ │ ├── MessageCountAwareInterface.php │ │ │ ├── QueueReceiverInterface.php │ │ │ ├── ReceiverInterface.php │ │ │ └── SingleMessageReceiver.php │ │ ├── RedisExt │ │ │ ├── Connection.php │ │ │ ├── RedisReceivedStamp.php │ │ │ ├── RedisReceiver.php │ │ │ ├── RedisSender.php │ │ │ ├── RedisTransport.php │ │ │ └── RedisTransportFactory.php │ │ ├── Sender │ │ │ ├── SenderInterface.php │ │ │ ├── SendersLocator.php │ │ │ └── SendersLocatorInterface.php │ │ ├── Serialization │ │ │ ├── Normalizer │ │ │ │ └── FlattenExceptionNormalizer.php │ │ │ ├── PhpSerializer.php │ │ │ ├── Serializer.php │ │ │ └── SerializerInterface.php │ │ ├── SetupableTransportInterface.php │ │ ├── Sync │ │ │ ├── SyncTransport.php │ │ │ └── SyncTransportFactory.php │ │ ├── TransportFactory.php │ │ ├── TransportFactoryInterface.php │ │ └── TransportInterface.php │ ├── Worker.php │ ├── WorkerMetadata.php │ └── composer.json ├── mime │ ├── Address.php │ ├── BodyRendererInterface.php │ ├── CHANGELOG.md │ ├── CharacterStream.php │ ├── Crypto │ │ ├── DkimOptions.php │ │ ├── DkimSigner.php │ │ ├── SMime.php │ │ ├── SMimeEncrypter.php │ │ └── SMimeSigner.php │ ├── DependencyInjection │ │ └── AddMimeTypeGuesserPass.php │ ├── Email.php │ ├── Encoder │ │ ├── AddressEncoderInterface.php │ │ ├── Base64ContentEncoder.php │ │ ├── Base64Encoder.php │ │ ├── Base64MimeHeaderEncoder.php │ │ ├── ContentEncoderInterface.php │ │ ├── EightBitContentEncoder.php │ │ ├── EncoderInterface.php │ │ ├── IdnAddressEncoder.php │ │ ├── MimeHeaderEncoderInterface.php │ │ ├── QpContentEncoder.php │ │ ├── QpEncoder.php │ │ ├── QpMimeHeaderEncoder.php │ │ └── Rfc2231Encoder.php │ ├── Exception │ │ ├── AddressEncoderException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── LogicException.php │ │ ├── RfcComplianceException.php │ │ └── RuntimeException.php │ ├── FileBinaryMimeTypeGuesser.php │ ├── FileinfoMimeTypeGuesser.php │ ├── Header │ │ ├── AbstractHeader.php │ │ ├── DateHeader.php │ │ ├── HeaderInterface.php │ │ ├── Headers.php │ │ ├── IdentificationHeader.php │ │ ├── MailboxHeader.php │ │ ├── MailboxListHeader.php │ │ ├── ParameterizedHeader.php │ │ ├── PathHeader.php │ │ └── UnstructuredHeader.php │ ├── LICENSE │ ├── Message.php │ ├── MessageConverter.php │ ├── MimeTypeGuesserInterface.php │ ├── MimeTypes.php │ ├── MimeTypesInterface.php │ ├── Part │ │ ├── AbstractMultipartPart.php │ │ ├── AbstractPart.php │ │ ├── DataPart.php │ │ ├── MessagePart.php │ │ ├── Multipart │ │ │ ├── AlternativePart.php │ │ │ ├── DigestPart.php │ │ │ ├── FormDataPart.php │ │ │ ├── MixedPart.php │ │ │ └── RelatedPart.php │ │ ├── SMimePart.php │ │ └── TextPart.php │ ├── README.md │ ├── RawMessage.php │ ├── Resources │ │ └── bin │ │ │ └── update_mime_types.php │ ├── Test │ │ └── Constraint │ │ │ ├── EmailAddressContains.php │ │ │ ├── EmailAttachmentCount.php │ │ │ ├── EmailHasHeader.php │ │ │ ├── EmailHeaderSame.php │ │ │ ├── EmailHtmlBodyContains.php │ │ │ └── EmailTextBodyContains.php │ └── composer.json ├── monolog-bridge │ ├── CHANGELOG.md │ ├── Command │ │ └── ServerLogCommand.php │ ├── Formatter │ │ ├── ConsoleFormatter.php │ │ └── VarDumperFormatter.php │ ├── Handler │ │ ├── ChromePhpHandler.php │ │ ├── ConsoleHandler.php │ │ ├── ElasticsearchLogstashHandler.php │ │ ├── FingersCrossed │ │ │ ├── HttpCodeActivationStrategy.php │ │ │ └── NotFoundActivationStrategy.php │ │ ├── FirePHPHandler.php │ │ ├── MailerHandler.php │ │ ├── NotifierHandler.php │ │ ├── ServerLogHandler.php │ │ └── SwiftMailerHandler.php │ ├── LICENSE │ ├── Logger.php │ ├── Messenger │ │ └── ResetLoggersWorkerSubscriber.php │ ├── Processor │ │ ├── AbstractTokenProcessor.php │ │ ├── ConsoleCommandProcessor.php │ │ ├── DebugProcessor.php │ │ ├── RouteProcessor.php │ │ ├── SwitchUserTokenProcessor.php │ │ ├── TokenProcessor.php │ │ └── WebProcessor.php │ ├── README.md │ └── composer.json ├── monolog-bundle │ ├── .gitattributes │ ├── .github │ │ └── workflows │ │ │ └── ci.yaml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── DependencyInjection │ │ ├── Compiler │ │ │ ├── AddProcessorsPass.php │ │ │ ├── AddSwiftMailerTransportPass.php │ │ │ ├── DebugHandlerPass.php │ │ │ ├── FixEmptyLoggerPass.php │ │ │ └── LoggerChannelPass.php │ │ ├── Configuration.php │ │ └── MonologExtension.php │ ├── LICENSE │ ├── MonologBundle.php │ ├── README.md │ ├── Resources │ │ └── config │ │ │ ├── monolog.xml │ │ │ └── schema │ │ │ └── monolog-1.0.xsd │ ├── SwiftMailer │ │ └── MessageFactory.php │ └── composer.json ├── notifier │ ├── CHANGELOG.md │ ├── Channel │ │ ├── AbstractChannel.php │ │ ├── BrowserChannel.php │ │ ├── ChannelInterface.php │ │ ├── ChannelPolicy.php │ │ ├── ChannelPolicyInterface.php │ │ ├── ChatChannel.php │ │ ├── EmailChannel.php │ │ ├── PushChannel.php │ │ └── SmsChannel.php │ ├── Chatter.php │ ├── ChatterInterface.php │ ├── DataCollector │ │ └── NotificationDataCollector.php │ ├── Event │ │ ├── FailedMessageEvent.php │ │ ├── MessageEvent.php │ │ ├── NotificationEvents.php │ │ └── SentMessageEvent.php │ ├── EventListener │ │ ├── NotificationLoggerListener.php │ │ └── SendFailedMessageToNotifierListener.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── IncompleteDsnException.php │ │ ├── InvalidArgumentException.php │ │ ├── LengthException.php │ │ ├── LogicException.php │ │ ├── MissingRequiredOptionException.php │ │ ├── RuntimeException.php │ │ ├── TransportException.php │ │ ├── TransportExceptionInterface.php │ │ ├── UnsupportedMessageTypeException.php │ │ └── UnsupportedSchemeException.php │ ├── LICENSE │ ├── Message │ │ ├── ChatMessage.php │ │ ├── EmailMessage.php │ │ ├── MessageInterface.php │ │ ├── MessageOptionsInterface.php │ │ ├── NullMessage.php │ │ ├── PushMessage.php │ │ ├── SentMessage.php │ │ └── SmsMessage.php │ ├── Messenger │ │ └── MessageHandler.php │ ├── Notification │ │ ├── ChatNotificationInterface.php │ │ ├── EmailNotificationInterface.php │ │ ├── Notification.php │ │ ├── PushNotificationInterface.php │ │ └── SmsNotificationInterface.php │ ├── Notifier.php │ ├── NotifierInterface.php │ ├── README.md │ ├── Recipient │ │ ├── EmailRecipientInterface.php │ │ ├── EmailRecipientTrait.php │ │ ├── NoRecipient.php │ │ ├── Recipient.php │ │ ├── RecipientInterface.php │ │ ├── SmsRecipientInterface.php │ │ └── SmsRecipientTrait.php │ ├── Test │ │ ├── TransportFactoryTestCase.php │ │ └── TransportTestCase.php │ ├── Texter.php │ ├── TexterInterface.php │ ├── Transport.php │ ├── Transport │ │ ├── AbstractTransport.php │ │ ├── AbstractTransportFactory.php │ │ ├── Dsn.php │ │ ├── FailoverTransport.php │ │ ├── NullTransport.php │ │ ├── NullTransportFactory.php │ │ ├── RoundRobinTransport.php │ │ ├── TransportFactoryInterface.php │ │ ├── TransportInterface.php │ │ └── Transports.php │ └── composer.json ├── options-resolver │ ├── CHANGELOG.md │ ├── Debug │ │ └── OptionsResolverIntrospector.php │ ├── Exception │ │ ├── AccessException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidOptionsException.php │ │ ├── MissingOptionsException.php │ │ ├── NoConfigurationException.php │ │ ├── NoSuchOptionException.php │ │ ├── OptionDefinitionException.php │ │ └── UndefinedOptionsException.php │ ├── LICENSE │ ├── OptionConfigurator.php │ ├── Options.php │ ├── OptionsResolver.php │ ├── README.md │ └── composer.json ├── password-hasher │ ├── CHANGELOG.md │ ├── Command │ │ └── UserPasswordHashCommand.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidPasswordException.php │ │ └── LogicException.php │ ├── Hasher │ │ ├── CheckPasswordLengthTrait.php │ │ ├── MessageDigestPasswordHasher.php │ │ ├── MigratingPasswordHasher.php │ │ ├── NativePasswordHasher.php │ │ ├── PasswordHasherAwareInterface.php │ │ ├── PasswordHasherFactory.php │ │ ├── PasswordHasherFactoryInterface.php │ │ ├── Pbkdf2PasswordHasher.php │ │ ├── PlaintextPasswordHasher.php │ │ ├── SodiumPasswordHasher.php │ │ ├── UserPasswordHasher.php │ │ └── UserPasswordHasherInterface.php │ ├── LICENSE │ ├── LegacyPasswordHasherInterface.php │ ├── PasswordHasherInterface.php │ ├── README.md │ └── composer.json ├── phpunit-bridge │ ├── CHANGELOG.md │ ├── ClassExistsMock.php │ ├── ClockMock.php │ ├── ConstraintTrait.php │ ├── CoverageListener.php │ ├── DeprecationErrorHandler.php │ ├── DeprecationErrorHandler │ │ ├── Configuration.php │ │ ├── Deprecation.php │ │ ├── DeprecationGroup.php │ │ └── DeprecationNotice.php │ ├── DnsMock.php │ ├── ExpectDeprecationTrait.php │ ├── LICENSE │ ├── Legacy │ │ ├── CommandForV7.php │ │ ├── CommandForV9.php │ │ ├── ConstraintLogicTrait.php │ │ ├── ConstraintTraitForV7.php │ │ ├── ConstraintTraitForV8.php │ │ ├── ConstraintTraitForV9.php │ │ ├── ExpectDeprecationTraitBeforeV8_4.php │ │ ├── ExpectDeprecationTraitForV8_4.php │ │ ├── PolyfillAssertTrait.php │ │ ├── PolyfillTestCaseTrait.php │ │ ├── SymfonyTestsListenerForV7.php │ │ └── SymfonyTestsListenerTrait.php │ ├── README.md │ ├── SymfonyTestsListener.php │ ├── TextUI │ │ └── Command.php │ ├── bin │ │ ├── simple-phpunit │ │ └── simple-phpunit.php │ ├── bootstrap.php │ └── composer.json ├── polyfill-intl-grapheme │ ├── Grapheme.php │ ├── LICENSE │ ├── README.md │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json ├── polyfill-intl-icu │ ├── Collator.php │ ├── Currencies.php │ ├── DateFormat │ │ ├── AmPmTransformer.php │ │ ├── DayOfWeekTransformer.php │ │ ├── DayOfYearTransformer.php │ │ ├── DayTransformer.php │ │ ├── FullTransformer.php │ │ ├── Hour1200Transformer.php │ │ ├── Hour1201Transformer.php │ │ ├── Hour2400Transformer.php │ │ ├── Hour2401Transformer.php │ │ ├── HourTransformer.php │ │ ├── MinuteTransformer.php │ │ ├── MonthTransformer.php │ │ ├── QuarterTransformer.php │ │ ├── SecondTransformer.php │ │ ├── TimezoneTransformer.php │ │ ├── Transformer.php │ │ └── YearTransformer.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── MethodArgumentNotImplementedException.php │ │ ├── MethodArgumentValueNotImplementedException.php │ │ ├── MethodNotImplementedException.php │ │ ├── NotImplementedException.php │ │ └── RuntimeException.php │ ├── Icu.php │ ├── IntlDateFormatter.php │ ├── LICENSE │ ├── Locale.php │ ├── NumberFormatter.php │ ├── README.md │ ├── Resources │ │ ├── currencies.php │ │ └── stubs │ │ │ ├── Collator.php │ │ │ ├── IntlDateFormatter.php │ │ │ ├── Locale.php │ │ │ └── NumberFormatter.php │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json ├── polyfill-intl-idn │ ├── Idn.php │ ├── Info.php │ ├── LICENSE │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── DisallowedRanges.php │ │ │ ├── Regex.php │ │ │ ├── deviation.php │ │ │ ├── disallowed.php │ │ │ ├── disallowed_STD3_mapped.php │ │ │ ├── disallowed_STD3_valid.php │ │ │ ├── ignored.php │ │ │ ├── mapped.php │ │ │ └── virama.php │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json ├── polyfill-intl-normalizer │ ├── LICENSE │ ├── Normalizer.php │ ├── README.md │ ├── Resources │ │ ├── stubs │ │ │ └── Normalizer.php │ │ └── unidata │ │ │ ├── canonicalComposition.php │ │ │ ├── canonicalDecomposition.php │ │ │ ├── combiningClass.php │ │ │ └── compatibilityDecomposition.php │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json ├── polyfill-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── lowerCase.php │ │ │ ├── titleCaseRegexp.php │ │ │ └── upperCase.php │ ├── bootstrap.php │ ├── bootstrap80.php │ └── composer.json ├── polyfill-php73 │ ├── LICENSE │ ├── Php73.php │ ├── README.md │ ├── Resources │ │ └── stubs │ │ │ └── JsonException.php │ ├── bootstrap.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 ├── polyfill-php81 │ ├── LICENSE │ ├── Php81.php │ ├── README.md │ ├── Resources │ │ └── stubs │ │ │ └── ReturnTypeWillChange.php │ ├── bootstrap.php │ └── composer.json ├── process │ ├── CHANGELOG.md │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── LogicException.php │ │ ├── ProcessFailedException.php │ │ ├── ProcessSignaledException.php │ │ ├── ProcessTimedOutException.php │ │ └── RuntimeException.php │ ├── ExecutableFinder.php │ ├── InputStream.php │ ├── LICENSE │ ├── PhpExecutableFinder.php │ ├── PhpProcess.php │ ├── Pipes │ │ ├── AbstractPipes.php │ │ ├── PipesInterface.php │ │ ├── UnixPipes.php │ │ └── WindowsPipes.php │ ├── Process.php │ ├── ProcessUtils.php │ ├── README.md │ └── composer.json ├── property-access │ ├── CHANGELOG.md │ ├── Exception │ │ ├── AccessException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidPropertyPathException.php │ │ ├── NoSuchIndexException.php │ │ ├── NoSuchPropertyException.php │ │ ├── OutOfBoundsException.php │ │ ├── RuntimeException.php │ │ ├── UnexpectedTypeException.php │ │ └── UninitializedPropertyException.php │ ├── LICENSE │ ├── PropertyAccess.php │ ├── PropertyAccessor.php │ ├── PropertyAccessorBuilder.php │ ├── PropertyAccessorInterface.php │ ├── PropertyPath.php │ ├── PropertyPathBuilder.php │ ├── PropertyPathInterface.php │ ├── PropertyPathIterator.php │ ├── PropertyPathIteratorInterface.php │ ├── README.md │ └── composer.json ├── property-info │ ├── CHANGELOG.md │ ├── DependencyInjection │ │ ├── PropertyInfoConstructorPass.php │ │ └── PropertyInfoPass.php │ ├── Extractor │ │ ├── ConstructorArgumentTypeExtractorInterface.php │ │ ├── ConstructorExtractor.php │ │ ├── PhpDocExtractor.php │ │ ├── PhpStanExtractor.php │ │ ├── ReflectionExtractor.php │ │ └── SerializerExtractor.php │ ├── LICENSE │ ├── PhpStan │ │ ├── NameScope.php │ │ └── NameScopeFactory.php │ ├── PropertyAccessExtractorInterface.php │ ├── PropertyDescriptionExtractorInterface.php │ ├── PropertyInfoCacheExtractor.php │ ├── PropertyInfoExtractor.php │ ├── PropertyInfoExtractorInterface.php │ ├── PropertyInitializableExtractorInterface.php │ ├── PropertyListExtractorInterface.php │ ├── PropertyReadInfo.php │ ├── PropertyReadInfoExtractorInterface.php │ ├── PropertyTypeExtractorInterface.php │ ├── PropertyWriteInfo.php │ ├── PropertyWriteInfoExtractorInterface.php │ ├── README.md │ ├── Type.php │ ├── Util │ │ ├── PhpDocTypeHelper.php │ │ └── PhpStanTypeHelper.php │ └── composer.json ├── redis-messenger │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── Transport │ │ ├── Connection.php │ │ ├── RedisClusterProxy.php │ │ ├── RedisProxy.php │ │ ├── RedisReceivedStamp.php │ │ ├── RedisReceiver.php │ │ ├── RedisSender.php │ │ ├── RedisTransport.php │ │ └── RedisTransportFactory.php │ └── composer.json ├── routing │ ├── Alias.php │ ├── Annotation │ │ └── Route.php │ ├── CHANGELOG.md │ ├── CompiledRoute.php │ ├── DependencyInjection │ │ └── RoutingResolverPass.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidParameterException.php │ │ ├── MethodNotAllowedException.php │ │ ├── MissingMandatoryParametersException.php │ │ ├── NoConfigurationException.php │ │ ├── ResourceNotFoundException.php │ │ ├── RouteCircularReferenceException.php │ │ ├── RouteNotFoundException.php │ │ └── RuntimeException.php │ ├── Generator │ │ ├── CompiledUrlGenerator.php │ │ ├── ConfigurableRequirementsInterface.php │ │ ├── Dumper │ │ │ ├── CompiledUrlGeneratorDumper.php │ │ │ ├── GeneratorDumper.php │ │ │ └── GeneratorDumperInterface.php │ │ ├── UrlGenerator.php │ │ └── UrlGeneratorInterface.php │ ├── LICENSE │ ├── Loader │ │ ├── AnnotationClassLoader.php │ │ ├── AnnotationDirectoryLoader.php │ │ ├── AnnotationFileLoader.php │ │ ├── ClosureLoader.php │ │ ├── Configurator │ │ │ ├── AliasConfigurator.php │ │ │ ├── CollectionConfigurator.php │ │ │ ├── ImportConfigurator.php │ │ │ ├── RouteConfigurator.php │ │ │ ├── RoutingConfigurator.php │ │ │ └── Traits │ │ │ │ ├── AddTrait.php │ │ │ │ ├── HostTrait.php │ │ │ │ ├── LocalizedRouteTrait.php │ │ │ │ ├── PrefixTrait.php │ │ │ │ └── RouteTrait.php │ │ ├── ContainerLoader.php │ │ ├── DirectoryLoader.php │ │ ├── GlobFileLoader.php │ │ ├── ObjectLoader.php │ │ ├── PhpFileLoader.php │ │ ├── XmlFileLoader.php │ │ ├── YamlFileLoader.php │ │ └── schema │ │ │ └── routing │ │ │ └── routing-1.0.xsd │ ├── Matcher │ │ ├── CompiledUrlMatcher.php │ │ ├── Dumper │ │ │ ├── CompiledUrlMatcherDumper.php │ │ │ ├── CompiledUrlMatcherTrait.php │ │ │ ├── MatcherDumper.php │ │ │ ├── MatcherDumperInterface.php │ │ │ └── StaticPrefixCollection.php │ │ ├── ExpressionLanguageProvider.php │ │ ├── RedirectableUrlMatcher.php │ │ ├── RedirectableUrlMatcherInterface.php │ │ ├── RequestMatcherInterface.php │ │ ├── TraceableUrlMatcher.php │ │ ├── UrlMatcher.php │ │ └── UrlMatcherInterface.php │ ├── README.md │ ├── RequestContext.php │ ├── RequestContextAwareInterface.php │ ├── Route.php │ ├── RouteCollection.php │ ├── RouteCollectionBuilder.php │ ├── RouteCompiler.php │ ├── RouteCompilerInterface.php │ ├── Router.php │ ├── RouterInterface.php │ └── composer.json ├── runtime │ ├── CHANGELOG.md │ ├── GenericRuntime.php │ ├── Internal │ │ ├── BasicErrorHandler.php │ │ ├── ComposerPlugin.php │ │ ├── Console │ │ │ ├── ApplicationRuntime.php │ │ │ ├── Command │ │ │ │ └── CommandRuntime.php │ │ │ ├── Input │ │ │ │ └── InputInterfaceRuntime.php │ │ │ └── Output │ │ │ │ └── OutputInterfaceRuntime.php │ │ ├── HttpFoundation │ │ │ ├── RequestRuntime.php │ │ │ └── ResponseRuntime.php │ │ ├── HttpKernel │ │ │ └── HttpKernelInterfaceRuntime.php │ │ ├── MissingDotenv.php │ │ ├── SymfonyErrorHandler.php │ │ └── autoload_runtime.template │ ├── LICENSE │ ├── README.md │ ├── Resolver │ │ ├── ClosureResolver.php │ │ └── DebugClosureResolver.php │ ├── ResolverInterface.php │ ├── Runner │ │ ├── ClosureRunner.php │ │ └── Symfony │ │ │ ├── ConsoleApplicationRunner.php │ │ │ ├── HttpKernelRunner.php │ │ │ └── ResponseRunner.php │ ├── RunnerInterface.php │ ├── RuntimeInterface.php │ ├── SymfonyRuntime.php │ └── composer.json ├── security-bundle │ ├── CHANGELOG.md │ ├── CacheWarmer │ │ └── ExpressionCacheWarmer.php │ ├── Command │ │ ├── DebugFirewallCommand.php │ │ └── UserPasswordEncoderCommand.php │ ├── DataCollector │ │ └── SecurityDataCollector.php │ ├── Debug │ │ ├── TraceableFirewallListener.php │ │ ├── TraceableListenerTrait.php │ │ ├── WrappedLazyListener.php │ │ └── WrappedListener.php │ ├── DependencyInjection │ │ ├── Compiler │ │ │ ├── AddExpressionLanguageProvidersPass.php │ │ │ ├── AddSecurityVotersPass.php │ │ │ ├── AddSessionDomainConstraintPass.php │ │ │ ├── CleanRememberMeVerifierPass.php │ │ │ ├── RegisterCsrfFeaturesPass.php │ │ │ ├── RegisterCsrfTokenClearingLogoutHandlerPass.php │ │ │ ├── RegisterEntryPointPass.php │ │ │ ├── RegisterGlobalSecurityEventListenersPass.php │ │ │ ├── RegisterLdapLocatorPass.php │ │ │ ├── RegisterTokenUsageTrackingPass.php │ │ │ ├── ReplaceDecoratedRememberMeHandlerPass.php │ │ │ └── SortFirewallListenersPass.php │ │ ├── MainConfiguration.php │ │ ├── Security │ │ │ ├── Factory │ │ │ │ ├── AbstractFactory.php │ │ │ │ ├── AnonymousFactory.php │ │ │ │ ├── AuthenticatorFactoryInterface.php │ │ │ │ ├── CustomAuthenticatorFactory.php │ │ │ │ ├── FirewallListenerFactoryInterface.php │ │ │ │ ├── FormLoginFactory.php │ │ │ │ ├── FormLoginLdapFactory.php │ │ │ │ ├── GuardAuthenticationFactory.php │ │ │ │ ├── HttpBasicFactory.php │ │ │ │ ├── HttpBasicLdapFactory.php │ │ │ │ ├── JsonLoginFactory.php │ │ │ │ ├── JsonLoginLdapFactory.php │ │ │ │ ├── LdapFactoryTrait.php │ │ │ │ ├── LoginLinkFactory.php │ │ │ │ ├── LoginThrottlingFactory.php │ │ │ │ ├── RememberMeFactory.php │ │ │ │ ├── RemoteUserFactory.php │ │ │ │ ├── SecurityFactoryInterface.php │ │ │ │ └── X509Factory.php │ │ │ └── UserProvider │ │ │ │ ├── InMemoryFactory.php │ │ │ │ ├── LdapFactory.php │ │ │ │ └── UserProviderFactoryInterface.php │ │ └── SecurityExtension.php │ ├── EventListener │ │ ├── FirewallListener.php │ │ └── VoteListener.php │ ├── LICENSE │ ├── LoginLink │ │ └── FirewallAwareLoginLinkHandler.php │ ├── README.md │ ├── RememberMe │ │ ├── DecoratedRememberMeHandler.php │ │ └── FirewallAwareRememberMeHandler.php │ ├── Resources │ │ ├── config │ │ │ ├── collectors.php │ │ │ ├── console.php │ │ │ ├── debug_console.php │ │ │ ├── guard.php │ │ │ ├── password_hasher.php │ │ │ ├── schema │ │ │ │ └── security-1.0.xsd │ │ │ ├── security.php │ │ │ ├── security_authenticator.php │ │ │ ├── security_authenticator_login_link.php │ │ │ ├── security_authenticator_remember_me.php │ │ │ ├── security_debug.php │ │ │ ├── security_legacy.php │ │ │ ├── security_listeners.php │ │ │ ├── security_rememberme.php │ │ │ └── templating_twig.php │ │ └── views │ │ │ └── Collector │ │ │ ├── icon.svg │ │ │ └── security.html.twig │ ├── Security │ │ ├── FirewallAwareTrait.php │ │ ├── FirewallConfig.php │ │ ├── FirewallContext.php │ │ ├── FirewallMap.php │ │ ├── LazyFirewallContext.php │ │ ├── LegacyLogoutHandlerListener.php │ │ └── UserAuthenticator.php │ ├── SecurityBundle.php │ └── composer.json ├── security-core │ ├── Authentication │ │ ├── AuthenticationManagerInterface.php │ │ ├── AuthenticationProviderManager.php │ │ ├── AuthenticationTrustResolver.php │ │ ├── AuthenticationTrustResolverInterface.php │ │ ├── Provider │ │ │ ├── AnonymousAuthenticationProvider.php │ │ │ ├── AuthenticationProviderInterface.php │ │ │ ├── DaoAuthenticationProvider.php │ │ │ ├── LdapBindAuthenticationProvider.php │ │ │ ├── PreAuthenticatedAuthenticationProvider.php │ │ │ ├── RememberMeAuthenticationProvider.php │ │ │ └── UserAuthenticationProvider.php │ │ ├── RememberMe │ │ │ ├── CacheTokenVerifier.php │ │ │ ├── InMemoryTokenProvider.php │ │ │ ├── PersistentToken.php │ │ │ ├── PersistentTokenInterface.php │ │ │ ├── TokenProviderInterface.php │ │ │ └── TokenVerifierInterface.php │ │ └── Token │ │ │ ├── AbstractToken.php │ │ │ ├── AnonymousToken.php │ │ │ ├── NullToken.php │ │ │ ├── PreAuthenticatedToken.php │ │ │ ├── RememberMeToken.php │ │ │ ├── Storage │ │ │ ├── TokenStorage.php │ │ │ ├── TokenStorageInterface.php │ │ │ └── UsageTrackingTokenStorage.php │ │ │ ├── SwitchUserToken.php │ │ │ ├── TokenInterface.php │ │ │ └── UsernamePasswordToken.php │ ├── AuthenticationEvents.php │ ├── Authorization │ │ ├── AccessDecisionManager.php │ │ ├── AccessDecisionManagerInterface.php │ │ ├── AuthorizationChecker.php │ │ ├── AuthorizationCheckerInterface.php │ │ ├── ExpressionLanguage.php │ │ ├── ExpressionLanguageProvider.php │ │ ├── Strategy │ │ │ ├── AccessDecisionStrategyInterface.php │ │ │ ├── AffirmativeStrategy.php │ │ │ ├── ConsensusStrategy.php │ │ │ ├── PriorityStrategy.php │ │ │ └── UnanimousStrategy.php │ │ ├── TraceableAccessDecisionManager.php │ │ └── Voter │ │ │ ├── AuthenticatedVoter.php │ │ │ ├── CacheableVoterInterface.php │ │ │ ├── ExpressionVoter.php │ │ │ ├── RoleHierarchyVoter.php │ │ │ ├── RoleVoter.php │ │ │ ├── TraceableVoter.php │ │ │ ├── Voter.php │ │ │ └── VoterInterface.php │ ├── CHANGELOG.md │ ├── Encoder │ │ ├── BasePasswordEncoder.php │ │ ├── EncoderAwareInterface.php │ │ ├── EncoderFactory.php │ │ ├── EncoderFactoryInterface.php │ │ ├── LegacyEncoderTrait.php │ │ ├── LegacyPasswordHasherEncoder.php │ │ ├── MessageDigestPasswordEncoder.php │ │ ├── MigratingPasswordEncoder.php │ │ ├── NativePasswordEncoder.php │ │ ├── PasswordEncoderInterface.php │ │ ├── PasswordHasherAdapter.php │ │ ├── PasswordHasherEncoder.php │ │ ├── Pbkdf2PasswordEncoder.php │ │ ├── PlaintextPasswordEncoder.php │ │ ├── SelfSaltingEncoderInterface.php │ │ ├── SodiumPasswordEncoder.php │ │ ├── UserPasswordEncoder.php │ │ └── UserPasswordEncoderInterface.php │ ├── Event │ │ ├── AuthenticationEvent.php │ │ ├── AuthenticationFailureEvent.php │ │ ├── AuthenticationSuccessEvent.php │ │ └── VoteEvent.php │ ├── Exception │ │ ├── AccessDeniedException.php │ │ ├── AccountExpiredException.php │ │ ├── AccountStatusException.php │ │ ├── AuthenticationCredentialsNotFoundException.php │ │ ├── AuthenticationException.php │ │ ├── AuthenticationExpiredException.php │ │ ├── AuthenticationServiceException.php │ │ ├── BadCredentialsException.php │ │ ├── CookieTheftException.php │ │ ├── CredentialsExpiredException.php │ │ ├── CustomUserMessageAccountStatusException.php │ │ ├── CustomUserMessageAuthenticationException.php │ │ ├── DisabledException.php │ │ ├── ExceptionInterface.php │ │ ├── InsufficientAuthenticationException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidCsrfTokenException.php │ │ ├── LazyResponseException.php │ │ ├── LockedException.php │ │ ├── LogicException.php │ │ ├── LogoutException.php │ │ ├── ProviderNotFoundException.php │ │ ├── RuntimeException.php │ │ ├── SessionUnavailableException.php │ │ ├── TokenNotFoundException.php │ │ ├── TooManyLoginAttemptsAuthenticationException.php │ │ ├── UnsupportedUserException.php │ │ ├── UserNotFoundException.php │ │ └── UsernameNotFoundException.php │ ├── LICENSE │ ├── README.md │ ├── Resources │ │ └── translations │ │ │ ├── security.af.xlf │ │ │ ├── security.ar.xlf │ │ │ ├── security.az.xlf │ │ │ ├── security.be.xlf │ │ │ ├── security.bg.xlf │ │ │ ├── security.bs.xlf │ │ │ ├── security.ca.xlf │ │ │ ├── security.cs.xlf │ │ │ ├── security.da.xlf │ │ │ ├── security.de.xlf │ │ │ ├── security.el.xlf │ │ │ ├── security.en.xlf │ │ │ ├── security.es.xlf │ │ │ ├── security.et.xlf │ │ │ ├── security.eu.xlf │ │ │ ├── security.fa.xlf │ │ │ ├── security.fi.xlf │ │ │ ├── security.fr.xlf │ │ │ ├── security.gl.xlf │ │ │ ├── security.he.xlf │ │ │ ├── security.hr.xlf │ │ │ ├── security.hu.xlf │ │ │ ├── security.hy.xlf │ │ │ ├── security.id.xlf │ │ │ ├── security.it.xlf │ │ │ ├── security.ja.xlf │ │ │ ├── security.lb.xlf │ │ │ ├── security.lt.xlf │ │ │ ├── security.lv.xlf │ │ │ ├── security.mn.xlf │ │ │ ├── security.my.xlf │ │ │ ├── security.nb.xlf │ │ │ ├── security.nl.xlf │ │ │ ├── security.nn.xlf │ │ │ ├── security.no.xlf │ │ │ ├── security.pl.xlf │ │ │ ├── security.pt.xlf │ │ │ ├── security.pt_BR.xlf │ │ │ ├── security.ro.xlf │ │ │ ├── security.ru.xlf │ │ │ ├── security.sk.xlf │ │ │ ├── security.sl.xlf │ │ │ ├── security.sq.xlf │ │ │ ├── security.sr_Cyrl.xlf │ │ │ ├── security.sr_Latn.xlf │ │ │ ├── security.sv.xlf │ │ │ ├── security.th.xlf │ │ │ ├── security.tl.xlf │ │ │ ├── security.tr.xlf │ │ │ ├── security.uk.xlf │ │ │ ├── security.ur.xlf │ │ │ ├── security.uz.xlf │ │ │ ├── security.vi.xlf │ │ │ ├── security.zh_CN.xlf │ │ │ └── security.zh_TW.xlf │ ├── Role │ │ ├── Role.php │ │ ├── RoleHierarchy.php │ │ ├── RoleHierarchyInterface.php │ │ └── SwitchUserRole.php │ ├── Security.php │ ├── Signature │ │ ├── Exception │ │ │ ├── ExpiredSignatureException.php │ │ │ └── InvalidSignatureException.php │ │ ├── ExpiredSignatureStorage.php │ │ └── SignatureHasher.php │ ├── Test │ │ └── AccessDecisionStrategyTestCase.php │ ├── User │ │ ├── ChainUserProvider.php │ │ ├── EquatableInterface.php │ │ ├── InMemoryUser.php │ │ ├── InMemoryUserChecker.php │ │ ├── InMemoryUserProvider.php │ │ ├── LegacyPasswordAuthenticatedUserInterface.php │ │ ├── MissingUserProvider.php │ │ ├── PasswordAuthenticatedUserInterface.php │ │ ├── PasswordUpgraderInterface.php │ │ ├── User.php │ │ ├── UserChecker.php │ │ ├── UserCheckerInterface.php │ │ ├── UserInterface.php │ │ └── UserProviderInterface.php │ ├── Validator │ │ └── Constraints │ │ │ ├── UserPassword.php │ │ │ └── UserPasswordValidator.php │ └── composer.json ├── security-csrf │ ├── CHANGELOG.md │ ├── CsrfToken.php │ ├── CsrfTokenManager.php │ ├── CsrfTokenManagerInterface.php │ ├── Exception │ │ └── TokenNotFoundException.php │ ├── LICENSE │ ├── README.md │ ├── TokenGenerator │ │ ├── TokenGeneratorInterface.php │ │ └── UriSafeTokenGenerator.php │ ├── TokenStorage │ │ ├── ClearableTokenStorageInterface.php │ │ ├── NativeSessionTokenStorage.php │ │ ├── SessionTokenStorage.php │ │ └── TokenStorageInterface.php │ └── composer.json ├── security-guard │ ├── AbstractGuardAuthenticator.php │ ├── Authenticator │ │ ├── AbstractFormLoginAuthenticator.php │ │ └── GuardBridgeAuthenticator.php │ ├── AuthenticatorInterface.php │ ├── CHANGELOG.md │ ├── Firewall │ │ └── GuardAuthenticationListener.php │ ├── GuardAuthenticatorHandler.php │ ├── LICENSE │ ├── PasswordAuthenticatedInterface.php │ ├── Provider │ │ └── GuardAuthenticationProvider.php │ ├── README.md │ ├── Token │ │ ├── GuardTokenInterface.php │ │ ├── PostAuthenticationGuardToken.php │ │ └── PreAuthenticationGuardToken.php │ └── composer.json ├── security-http │ ├── AccessMap.php │ ├── AccessMapInterface.php │ ├── Attribute │ │ └── CurrentUser.php │ ├── Authentication │ │ ├── AuthenticationFailureHandlerInterface.php │ │ ├── AuthenticationSuccessHandlerInterface.php │ │ ├── AuthenticationUtils.php │ │ ├── AuthenticatorManager.php │ │ ├── AuthenticatorManagerInterface.php │ │ ├── CustomAuthenticationFailureHandler.php │ │ ├── CustomAuthenticationSuccessHandler.php │ │ ├── DefaultAuthenticationFailureHandler.php │ │ ├── DefaultAuthenticationSuccessHandler.php │ │ ├── NoopAuthenticationManager.php │ │ └── UserAuthenticatorInterface.php │ ├── Authenticator │ │ ├── AbstractAuthenticator.php │ │ ├── AbstractLoginFormAuthenticator.php │ │ ├── AbstractPreAuthenticatedAuthenticator.php │ │ ├── AuthenticatorInterface.php │ │ ├── Debug │ │ │ ├── TraceableAuthenticator.php │ │ │ └── TraceableAuthenticatorManagerListener.php │ │ ├── FormLoginAuthenticator.php │ │ ├── HttpBasicAuthenticator.php │ │ ├── InteractiveAuthenticatorInterface.php │ │ ├── JsonLoginAuthenticator.php │ │ ├── LoginLinkAuthenticator.php │ │ ├── Passport │ │ │ ├── Badge │ │ │ │ ├── BadgeInterface.php │ │ │ │ ├── CsrfTokenBadge.php │ │ │ │ ├── PasswordUpgradeBadge.php │ │ │ │ ├── PreAuthenticatedUserBadge.php │ │ │ │ ├── RememberMeBadge.php │ │ │ │ └── UserBadge.php │ │ │ ├── Credentials │ │ │ │ ├── CredentialsInterface.php │ │ │ │ ├── CustomCredentials.php │ │ │ │ └── PasswordCredentials.php │ │ │ ├── Passport.php │ │ │ ├── PassportInterface.php │ │ │ ├── PassportTrait.php │ │ │ ├── SelfValidatingPassport.php │ │ │ └── UserPassportInterface.php │ │ ├── RememberMeAuthenticator.php │ │ ├── RemoteUserAuthenticator.php │ │ ├── Token │ │ │ └── PostAuthenticationToken.php │ │ └── X509Authenticator.php │ ├── Authorization │ │ └── AccessDeniedHandlerInterface.php │ ├── CHANGELOG.md │ ├── Controller │ │ └── UserValueResolver.php │ ├── EntryPoint │ │ ├── AuthenticationEntryPointInterface.php │ │ ├── BasicAuthenticationEntryPoint.php │ │ ├── Exception │ │ │ └── NotAnEntryPointException.php │ │ ├── FormAuthenticationEntryPoint.php │ │ └── RetryAuthenticationEntryPoint.php │ ├── Event │ │ ├── AuthenticationTokenCreatedEvent.php │ │ ├── CheckPassportEvent.php │ │ ├── DeauthenticatedEvent.php │ │ ├── InteractiveLoginEvent.php │ │ ├── LazyResponseEvent.php │ │ ├── LoginFailureEvent.php │ │ ├── LoginSuccessEvent.php │ │ ├── LogoutEvent.php │ │ ├── SwitchUserEvent.php │ │ └── TokenDeauthenticatedEvent.php │ ├── EventListener │ │ ├── CheckCredentialsListener.php │ │ ├── CheckRememberMeConditionsListener.php │ │ ├── CookieClearingLogoutListener.php │ │ ├── CsrfProtectionListener.php │ │ ├── CsrfTokenClearingLogoutListener.php │ │ ├── DefaultLogoutListener.php │ │ ├── LoginThrottlingListener.php │ │ ├── PasswordMigratingListener.php │ │ ├── RememberMeListener.php │ │ ├── RememberMeLogoutListener.php │ │ ├── SessionLogoutListener.php │ │ ├── SessionStrategyListener.php │ │ ├── UserCheckerListener.php │ │ └── UserProviderListener.php │ ├── Firewall.php │ ├── Firewall │ │ ├── AbstractAuthenticationListener.php │ │ ├── AbstractListener.php │ │ ├── AbstractPreAuthenticatedListener.php │ │ ├── AccessListener.php │ │ ├── AnonymousAuthenticationListener.php │ │ ├── AuthenticatorManagerListener.php │ │ ├── BasicAuthenticationListener.php │ │ ├── ChannelListener.php │ │ ├── ContextListener.php │ │ ├── ExceptionListener.php │ │ ├── FirewallListenerInterface.php │ │ ├── LogoutListener.php │ │ ├── RememberMeListener.php │ │ ├── RemoteUserAuthenticationListener.php │ │ ├── SwitchUserListener.php │ │ ├── UsernamePasswordFormAuthenticationListener.php │ │ ├── UsernamePasswordJsonAuthenticationListener.php │ │ └── X509AuthenticationListener.php │ ├── FirewallMap.php │ ├── FirewallMapInterface.php │ ├── HttpUtils.php │ ├── Impersonate │ │ └── ImpersonateUrlGenerator.php │ ├── LICENSE │ ├── LoginLink │ │ ├── Exception │ │ │ ├── ExpiredLoginLinkException.php │ │ │ ├── InvalidLoginLinkAuthenticationException.php │ │ │ ├── InvalidLoginLinkException.php │ │ │ └── InvalidLoginLinkExceptionInterface.php │ │ ├── LoginLinkDetails.php │ │ ├── LoginLinkHandler.php │ │ ├── LoginLinkHandlerInterface.php │ │ └── LoginLinkNotification.php │ ├── Logout │ │ ├── CookieClearingLogoutHandler.php │ │ ├── CsrfTokenClearingLogoutHandler.php │ │ ├── DefaultLogoutSuccessHandler.php │ │ ├── LogoutHandlerInterface.php │ │ ├── LogoutSuccessHandlerInterface.php │ │ ├── LogoutUrlGenerator.php │ │ └── SessionLogoutHandler.php │ ├── ParameterBagUtils.php │ ├── README.md │ ├── RateLimiter │ │ └── DefaultLoginRateLimiter.php │ ├── RememberMe │ │ ├── AbstractRememberMeHandler.php │ │ ├── AbstractRememberMeServices.php │ │ ├── PersistentRememberMeHandler.php │ │ ├── PersistentTokenBasedRememberMeServices.php │ │ ├── RememberMeDetails.php │ │ ├── RememberMeHandlerInterface.php │ │ ├── RememberMeServicesInterface.php │ │ ├── ResponseListener.php │ │ ├── SignatureRememberMeHandler.php │ │ └── TokenBasedRememberMeServices.php │ ├── SecurityEvents.php │ ├── Session │ │ ├── SessionAuthenticationStrategy.php │ │ └── SessionAuthenticationStrategyInterface.php │ ├── Util │ │ └── TargetPathTrait.php │ └── composer.json ├── serializer │ ├── Annotation │ │ ├── Context.php │ │ ├── DiscriminatorMap.php │ │ ├── Groups.php │ │ ├── Ignore.php │ │ ├── MaxDepth.php │ │ └── SerializedName.php │ ├── CHANGELOG.md │ ├── CacheWarmer │ │ └── CompiledClassMetadataCacheWarmer.php │ ├── DependencyInjection │ │ └── SerializerPass.php │ ├── Encoder │ │ ├── ChainDecoder.php │ │ ├── ChainEncoder.php │ │ ├── ContextAwareDecoderInterface.php │ │ ├── ContextAwareEncoderInterface.php │ │ ├── CsvEncoder.php │ │ ├── DecoderInterface.php │ │ ├── EncoderInterface.php │ │ ├── JsonDecode.php │ │ ├── JsonEncode.php │ │ ├── JsonEncoder.php │ │ ├── NormalizationAwareInterface.php │ │ ├── XmlEncoder.php │ │ └── YamlEncoder.php │ ├── Exception │ │ ├── BadMethodCallException.php │ │ ├── CircularReferenceException.php │ │ ├── ExceptionInterface.php │ │ ├── ExtraAttributesException.php │ │ ├── InvalidArgumentException.php │ │ ├── LogicException.php │ │ ├── MappingException.php │ │ ├── MissingConstructorArgumentsException.php │ │ ├── NotEncodableValueException.php │ │ ├── NotNormalizableValueException.php │ │ ├── PartialDenormalizationException.php │ │ ├── RuntimeException.php │ │ ├── UnexpectedValueException.php │ │ └── UnsupportedException.php │ ├── Extractor │ │ ├── ObjectPropertyListExtractor.php │ │ └── ObjectPropertyListExtractorInterface.php │ ├── LICENSE │ ├── Mapping │ │ ├── AttributeMetadata.php │ │ ├── AttributeMetadataInterface.php │ │ ├── ClassDiscriminatorFromClassMetadata.php │ │ ├── ClassDiscriminatorMapping.php │ │ ├── ClassDiscriminatorResolverInterface.php │ │ ├── ClassMetadata.php │ │ ├── ClassMetadataInterface.php │ │ ├── Factory │ │ │ ├── CacheClassMetadataFactory.php │ │ │ ├── ClassMetadataFactory.php │ │ │ ├── ClassMetadataFactoryCompiler.php │ │ │ ├── ClassMetadataFactoryInterface.php │ │ │ ├── ClassResolverTrait.php │ │ │ └── CompiledClassMetadataFactory.php │ │ └── Loader │ │ │ ├── AnnotationLoader.php │ │ │ ├── FileLoader.php │ │ │ ├── LoaderChain.php │ │ │ ├── LoaderInterface.php │ │ │ ├── XmlFileLoader.php │ │ │ ├── YamlFileLoader.php │ │ │ └── schema │ │ │ └── dic │ │ │ └── serializer-mapping │ │ │ └── serializer-mapping-1.0.xsd │ ├── NameConverter │ │ ├── AdvancedNameConverterInterface.php │ │ ├── CamelCaseToSnakeCaseNameConverter.php │ │ ├── MetadataAwareNameConverter.php │ │ └── NameConverterInterface.php │ ├── Normalizer │ │ ├── AbstractNormalizer.php │ │ ├── AbstractObjectNormalizer.php │ │ ├── ArrayDenormalizer.php │ │ ├── BackedEnumNormalizer.php │ │ ├── CacheableSupportsMethodInterface.php │ │ ├── ConstraintViolationListNormalizer.php │ │ ├── ContextAwareDenormalizerInterface.php │ │ ├── ContextAwareNormalizerInterface.php │ │ ├── CustomNormalizer.php │ │ ├── DataUriNormalizer.php │ │ ├── DateIntervalNormalizer.php │ │ ├── DateTimeNormalizer.php │ │ ├── DateTimeZoneNormalizer.php │ │ ├── DenormalizableInterface.php │ │ ├── DenormalizerAwareInterface.php │ │ ├── DenormalizerAwareTrait.php │ │ ├── DenormalizerInterface.php │ │ ├── FormErrorNormalizer.php │ │ ├── GetSetMethodNormalizer.php │ │ ├── JsonSerializableNormalizer.php │ │ ├── MimeMessageNormalizer.php │ │ ├── NormalizableInterface.php │ │ ├── NormalizerAwareInterface.php │ │ ├── NormalizerAwareTrait.php │ │ ├── NormalizerInterface.php │ │ ├── ObjectNormalizer.php │ │ ├── ObjectToPopulateTrait.php │ │ ├── ProblemNormalizer.php │ │ ├── PropertyNormalizer.php │ │ ├── UidNormalizer.php │ │ └── UnwrappingDenormalizer.php │ ├── README.md │ ├── Serializer.php │ ├── SerializerAwareInterface.php │ ├── SerializerAwareTrait.php │ ├── SerializerInterface.php │ └── composer.json ├── service-contracts │ ├── .gitignore │ ├── Attribute │ │ ├── Required.php │ │ └── SubscribedService.php │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── ResetInterface.php │ ├── ServiceLocatorTrait.php │ ├── ServiceProviderInterface.php │ ├── ServiceSubscriberInterface.php │ ├── ServiceSubscriberTrait.php │ ├── Test │ │ └── ServiceLocatorTest.php │ └── composer.json ├── stopwatch │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── Section.php │ ├── Stopwatch.php │ ├── StopwatchEvent.php │ ├── StopwatchPeriod.php │ └── composer.json ├── string │ ├── AbstractString.php │ ├── AbstractUnicodeString.php │ ├── ByteString.php │ ├── CHANGELOG.md │ ├── CodePointString.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ └── RuntimeException.php │ ├── Inflector │ │ ├── EnglishInflector.php │ │ ├── FrenchInflector.php │ │ └── InflectorInterface.php │ ├── LICENSE │ ├── LazyString.php │ ├── README.md │ ├── Resources │ │ ├── data │ │ │ ├── wcswidth_table_wide.php │ │ │ └── wcswidth_table_zero.php │ │ └── functions.php │ ├── Slugger │ │ ├── AsciiSlugger.php │ │ └── SluggerInterface.php │ ├── UnicodeString.php │ └── composer.json ├── translation-contracts │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── LocaleAwareInterface.php │ ├── README.md │ ├── Test │ │ └── TranslatorTest.php │ ├── TranslatableInterface.php │ ├── TranslatorInterface.php │ ├── TranslatorTrait.php │ └── composer.json ├── translation │ ├── CHANGELOG.md │ ├── Catalogue │ │ ├── AbstractOperation.php │ │ ├── MergeOperation.php │ │ ├── OperationInterface.php │ │ └── TargetOperation.php │ ├── Command │ │ ├── TranslationPullCommand.php │ │ ├── TranslationPushCommand.php │ │ ├── TranslationTrait.php │ │ └── XliffLintCommand.php │ ├── DataCollector │ │ └── TranslationDataCollector.php │ ├── DataCollectorTranslator.php │ ├── DependencyInjection │ │ ├── TranslationDumperPass.php │ │ ├── TranslationExtractorPass.php │ │ ├── TranslatorPass.php │ │ └── TranslatorPathsPass.php │ ├── Dumper │ │ ├── CsvFileDumper.php │ │ ├── DumperInterface.php │ │ ├── FileDumper.php │ │ ├── IcuResFileDumper.php │ │ ├── IniFileDumper.php │ │ ├── JsonFileDumper.php │ │ ├── MoFileDumper.php │ │ ├── PhpFileDumper.php │ │ ├── PoFileDumper.php │ │ ├── QtFileDumper.php │ │ ├── XliffFileDumper.php │ │ └── YamlFileDumper.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── IncompleteDsnException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidResourceException.php │ │ ├── LogicException.php │ │ ├── MissingRequiredOptionException.php │ │ ├── NotFoundResourceException.php │ │ ├── ProviderException.php │ │ ├── ProviderExceptionInterface.php │ │ ├── RuntimeException.php │ │ └── UnsupportedSchemeException.php │ ├── Extractor │ │ ├── AbstractFileExtractor.php │ │ ├── ChainExtractor.php │ │ ├── ExtractorInterface.php │ │ ├── PhpExtractor.php │ │ └── PhpStringTokenParser.php │ ├── Formatter │ │ ├── IntlFormatter.php │ │ ├── IntlFormatterInterface.php │ │ ├── MessageFormatter.php │ │ └── MessageFormatterInterface.php │ ├── IdentityTranslator.php │ ├── LICENSE │ ├── Loader │ │ ├── ArrayLoader.php │ │ ├── CsvFileLoader.php │ │ ├── FileLoader.php │ │ ├── IcuDatFileLoader.php │ │ ├── IcuResFileLoader.php │ │ ├── IniFileLoader.php │ │ ├── JsonFileLoader.php │ │ ├── LoaderInterface.php │ │ ├── MoFileLoader.php │ │ ├── PhpFileLoader.php │ │ ├── PoFileLoader.php │ │ ├── QtFileLoader.php │ │ ├── XliffFileLoader.php │ │ └── YamlFileLoader.php │ ├── LoggingTranslator.php │ ├── MessageCatalogue.php │ ├── MessageCatalogueInterface.php │ ├── MetadataAwareInterface.php │ ├── Provider │ │ ├── AbstractProviderFactory.php │ │ ├── Dsn.php │ │ ├── FilteringProvider.php │ │ ├── NullProvider.php │ │ ├── NullProviderFactory.php │ │ ├── ProviderFactoryInterface.php │ │ ├── ProviderInterface.php │ │ ├── TranslationProviderCollection.php │ │ └── TranslationProviderCollectionFactory.php │ ├── PseudoLocalizationTranslator.php │ ├── README.md │ ├── Reader │ │ ├── TranslationReader.php │ │ └── TranslationReaderInterface.php │ ├── Resources │ │ ├── bin │ │ │ └── translation-status.php │ │ ├── data │ │ │ └── parents.json │ │ ├── functions.php │ │ └── schemas │ │ │ ├── xliff-core-1.2-strict.xsd │ │ │ ├── xliff-core-2.0.xsd │ │ │ └── xml.xsd │ ├── Test │ │ ├── ProviderFactoryTestCase.php │ │ └── ProviderTestCase.php │ ├── TranslatableMessage.php │ ├── Translator.php │ ├── TranslatorBag.php │ ├── TranslatorBagInterface.php │ ├── Util │ │ ├── ArrayConverter.php │ │ └── XliffUtils.php │ ├── Writer │ │ ├── TranslationWriter.php │ │ └── TranslationWriterInterface.php │ └── composer.json ├── twig-bridge │ ├── AppVariable.php │ ├── CHANGELOG.md │ ├── Command │ │ ├── DebugCommand.php │ │ └── LintCommand.php │ ├── DataCollector │ │ └── TwigDataCollector.php │ ├── ErrorRenderer │ │ └── TwigErrorRenderer.php │ ├── Extension │ │ ├── AssetExtension.php │ │ ├── CodeExtension.php │ │ ├── CsrfExtension.php │ │ ├── CsrfRuntime.php │ │ ├── DumpExtension.php │ │ ├── ExpressionExtension.php │ │ ├── FormExtension.php │ │ ├── HttpFoundationExtension.php │ │ ├── HttpKernelExtension.php │ │ ├── HttpKernelRuntime.php │ │ ├── LogoutUrlExtension.php │ │ ├── ProfilerExtension.php │ │ ├── RoutingExtension.php │ │ ├── SecurityExtension.php │ │ ├── SerializerExtension.php │ │ ├── SerializerRuntime.php │ │ ├── StopwatchExtension.php │ │ ├── TranslationExtension.php │ │ ├── WebLinkExtension.php │ │ ├── WorkflowExtension.php │ │ └── YamlExtension.php │ ├── Form │ │ └── TwigRendererEngine.php │ ├── LICENSE │ ├── Mime │ │ ├── BodyRenderer.php │ │ ├── NotificationEmail.php │ │ ├── TemplatedEmail.php │ │ └── WrappedTemplatedEmail.php │ ├── Node │ │ ├── DumpNode.php │ │ ├── FormThemeNode.php │ │ ├── RenderBlockNode.php │ │ ├── SearchAndRenderBlockNode.php │ │ ├── StopwatchNode.php │ │ ├── TransDefaultDomainNode.php │ │ └── TransNode.php │ ├── NodeVisitor │ │ ├── Scope.php │ │ ├── TranslationDefaultDomainNodeVisitor.php │ │ └── TranslationNodeVisitor.php │ ├── README.md │ ├── Resources │ │ └── views │ │ │ ├── Email │ │ │ ├── default │ │ │ │ └── notification │ │ │ │ │ ├── body.html.twig │ │ │ │ │ └── body.txt.twig │ │ │ └── zurb_2 │ │ │ │ ├── main.css │ │ │ │ └── notification │ │ │ │ ├── body.html.twig │ │ │ │ ├── body.txt.twig │ │ │ │ ├── content_markdown.html.twig │ │ │ │ └── local.css │ │ │ └── Form │ │ │ ├── bootstrap_3_horizontal_layout.html.twig │ │ │ ├── bootstrap_3_layout.html.twig │ │ │ ├── bootstrap_4_horizontal_layout.html.twig │ │ │ ├── bootstrap_4_layout.html.twig │ │ │ ├── bootstrap_5_horizontal_layout.html.twig │ │ │ ├── bootstrap_5_layout.html.twig │ │ │ ├── bootstrap_base_layout.html.twig │ │ │ ├── form_div_layout.html.twig │ │ │ ├── form_table_layout.html.twig │ │ │ ├── foundation_5_layout.html.twig │ │ │ ├── foundation_6_layout.html.twig │ │ │ └── tailwind_2_layout.html.twig │ ├── TokenParser │ │ ├── DumpTokenParser.php │ │ ├── FormThemeTokenParser.php │ │ ├── StopwatchTokenParser.php │ │ ├── TransDefaultDomainTokenParser.php │ │ └── TransTokenParser.php │ ├── Translation │ │ └── TwigExtractor.php │ ├── UndefinedCallableHandler.php │ └── composer.json ├── twig-bundle │ ├── CHANGELOG.md │ ├── CacheWarmer │ │ └── TemplateCacheWarmer.php │ ├── Command │ │ └── LintCommand.php │ ├── DependencyInjection │ │ ├── Compiler │ │ │ ├── ExtensionPass.php │ │ │ ├── RuntimeLoaderPass.php │ │ │ ├── TwigEnvironmentPass.php │ │ │ └── TwigLoaderPass.php │ │ ├── Configuration.php │ │ ├── Configurator │ │ │ └── EnvironmentConfigurator.php │ │ └── TwigExtension.php │ ├── LICENSE │ ├── README.md │ ├── Resources │ │ └── config │ │ │ ├── console.php │ │ │ ├── form.php │ │ │ ├── mailer.php │ │ │ ├── schema │ │ │ └── twig-1.0.xsd │ │ │ └── twig.php │ ├── TemplateIterator.php │ ├── TwigBundle.php │ └── composer.json ├── validator │ ├── CHANGELOG.md │ ├── Command │ │ └── DebugCommand.php │ ├── Constraint.php │ ├── ConstraintValidator.php │ ├── ConstraintValidatorFactory.php │ ├── ConstraintValidatorFactoryInterface.php │ ├── ConstraintValidatorInterface.php │ ├── ConstraintViolation.php │ ├── ConstraintViolationInterface.php │ ├── ConstraintViolationList.php │ ├── ConstraintViolationListInterface.php │ ├── Constraints │ │ ├── AbstractComparison.php │ │ ├── AbstractComparisonValidator.php │ │ ├── All.php │ │ ├── AllValidator.php │ │ ├── AtLeastOneOf.php │ │ ├── AtLeastOneOfValidator.php │ │ ├── Bic.php │ │ ├── BicValidator.php │ │ ├── Blank.php │ │ ├── BlankValidator.php │ │ ├── Callback.php │ │ ├── CallbackValidator.php │ │ ├── CardScheme.php │ │ ├── CardSchemeValidator.php │ │ ├── Cascade.php │ │ ├── Choice.php │ │ ├── ChoiceValidator.php │ │ ├── Cidr.php │ │ ├── CidrValidator.php │ │ ├── Collection.php │ │ ├── CollectionValidator.php │ │ ├── Composite.php │ │ ├── Compound.php │ │ ├── CompoundValidator.php │ │ ├── Count.php │ │ ├── CountValidator.php │ │ ├── Country.php │ │ ├── CountryValidator.php │ │ ├── CssColor.php │ │ ├── CssColorValidator.php │ │ ├── Currency.php │ │ ├── CurrencyValidator.php │ │ ├── Date.php │ │ ├── DateTime.php │ │ ├── DateTimeValidator.php │ │ ├── DateValidator.php │ │ ├── DisableAutoMapping.php │ │ ├── DivisibleBy.php │ │ ├── DivisibleByValidator.php │ │ ├── Email.php │ │ ├── EmailValidator.php │ │ ├── EnableAutoMapping.php │ │ ├── EqualTo.php │ │ ├── EqualToValidator.php │ │ ├── Existence.php │ │ ├── Expression.php │ │ ├── ExpressionLanguageSyntax.php │ │ ├── ExpressionLanguageSyntaxValidator.php │ │ ├── ExpressionValidator.php │ │ ├── File.php │ │ ├── FileValidator.php │ │ ├── GreaterThan.php │ │ ├── GreaterThanOrEqual.php │ │ ├── GreaterThanOrEqualValidator.php │ │ ├── GreaterThanValidator.php │ │ ├── GroupSequence.php │ │ ├── GroupSequenceProvider.php │ │ ├── Hostname.php │ │ ├── HostnameValidator.php │ │ ├── Iban.php │ │ ├── IbanValidator.php │ │ ├── IdenticalTo.php │ │ ├── IdenticalToValidator.php │ │ ├── Image.php │ │ ├── ImageValidator.php │ │ ├── Ip.php │ │ ├── IpValidator.php │ │ ├── IsFalse.php │ │ ├── IsFalseValidator.php │ │ ├── IsNull.php │ │ ├── IsNullValidator.php │ │ ├── IsTrue.php │ │ ├── IsTrueValidator.php │ │ ├── Isbn.php │ │ ├── IsbnValidator.php │ │ ├── Isin.php │ │ ├── IsinValidator.php │ │ ├── Issn.php │ │ ├── IssnValidator.php │ │ ├── Json.php │ │ ├── JsonValidator.php │ │ ├── Language.php │ │ ├── LanguageValidator.php │ │ ├── Length.php │ │ ├── LengthValidator.php │ │ ├── LessThan.php │ │ ├── LessThanOrEqual.php │ │ ├── LessThanOrEqualValidator.php │ │ ├── LessThanValidator.php │ │ ├── Locale.php │ │ ├── LocaleValidator.php │ │ ├── Luhn.php │ │ ├── LuhnValidator.php │ │ ├── Negative.php │ │ ├── NegativeOrZero.php │ │ ├── NotBlank.php │ │ ├── NotBlankValidator.php │ │ ├── NotCompromisedPassword.php │ │ ├── NotCompromisedPasswordValidator.php │ │ ├── NotEqualTo.php │ │ ├── NotEqualToValidator.php │ │ ├── NotIdenticalTo.php │ │ ├── NotIdenticalToValidator.php │ │ ├── NotNull.php │ │ ├── NotNullValidator.php │ │ ├── NumberConstraintTrait.php │ │ ├── Optional.php │ │ ├── Positive.php │ │ ├── PositiveOrZero.php │ │ ├── Range.php │ │ ├── RangeValidator.php │ │ ├── Regex.php │ │ ├── RegexValidator.php │ │ ├── Required.php │ │ ├── Sequentially.php │ │ ├── SequentiallyValidator.php │ │ ├── Time.php │ │ ├── TimeValidator.php │ │ ├── Timezone.php │ │ ├── TimezoneValidator.php │ │ ├── Traverse.php │ │ ├── Type.php │ │ ├── TypeValidator.php │ │ ├── Ulid.php │ │ ├── UlidValidator.php │ │ ├── Unique.php │ │ ├── UniqueValidator.php │ │ ├── Url.php │ │ ├── UrlValidator.php │ │ ├── Uuid.php │ │ ├── UuidValidator.php │ │ ├── Valid.php │ │ ├── ValidValidator.php │ │ └── ZeroComparisonConstraintTrait.php │ ├── ContainerConstraintValidatorFactory.php │ ├── Context │ │ ├── ExecutionContext.php │ │ ├── ExecutionContextFactory.php │ │ ├── ExecutionContextFactoryInterface.php │ │ └── ExecutionContextInterface.php │ ├── DataCollector │ │ └── ValidatorDataCollector.php │ ├── DependencyInjection │ │ ├── AddAutoMappingConfigurationPass.php │ │ ├── AddConstraintValidatorsPass.php │ │ └── AddValidatorInitializersPass.php │ ├── Exception │ │ ├── BadMethodCallException.php │ │ ├── ConstraintDefinitionException.php │ │ ├── ExceptionInterface.php │ │ ├── GroupDefinitionException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidOptionsException.php │ │ ├── LogicException.php │ │ ├── MappingException.php │ │ ├── MissingOptionsException.php │ │ ├── NoSuchMetadataException.php │ │ ├── OutOfBoundsException.php │ │ ├── RuntimeException.php │ │ ├── UnexpectedTypeException.php │ │ ├── UnexpectedValueException.php │ │ ├── UnsupportedMetadataException.php │ │ ├── ValidationFailedException.php │ │ └── ValidatorException.php │ ├── GroupSequenceProviderInterface.php │ ├── LICENSE │ ├── Mapping │ │ ├── AutoMappingStrategy.php │ │ ├── CascadingStrategy.php │ │ ├── ClassMetadata.php │ │ ├── ClassMetadataInterface.php │ │ ├── Factory │ │ │ ├── BlackHoleMetadataFactory.php │ │ │ ├── LazyLoadingMetadataFactory.php │ │ │ └── MetadataFactoryInterface.php │ │ ├── GenericMetadata.php │ │ ├── GetterMetadata.php │ │ ├── Loader │ │ │ ├── AbstractLoader.php │ │ │ ├── AnnotationLoader.php │ │ │ ├── AutoMappingTrait.php │ │ │ ├── FileLoader.php │ │ │ ├── FilesLoader.php │ │ │ ├── LoaderChain.php │ │ │ ├── LoaderInterface.php │ │ │ ├── PropertyInfoLoader.php │ │ │ ├── StaticMethodLoader.php │ │ │ ├── XmlFileLoader.php │ │ │ ├── XmlFilesLoader.php │ │ │ ├── YamlFileLoader.php │ │ │ ├── YamlFilesLoader.php │ │ │ └── schema │ │ │ │ └── dic │ │ │ │ └── constraint-mapping │ │ │ │ └── constraint-mapping-1.0.xsd │ │ ├── MemberMetadata.php │ │ ├── MetadataInterface.php │ │ ├── PropertyMetadata.php │ │ ├── PropertyMetadataInterface.php │ │ └── TraversalStrategy.php │ ├── ObjectInitializerInterface.php │ ├── README.md │ ├── Resources │ │ └── translations │ │ │ ├── validators.af.xlf │ │ │ ├── validators.ar.xlf │ │ │ ├── validators.az.xlf │ │ │ ├── validators.be.xlf │ │ │ ├── validators.bg.xlf │ │ │ ├── validators.bs.xlf │ │ │ ├── validators.ca.xlf │ │ │ ├── validators.cs.xlf │ │ │ ├── validators.cy.xlf │ │ │ ├── validators.da.xlf │ │ │ ├── validators.de.xlf │ │ │ ├── validators.el.xlf │ │ │ ├── validators.en.xlf │ │ │ ├── validators.es.xlf │ │ │ ├── validators.et.xlf │ │ │ ├── validators.eu.xlf │ │ │ ├── validators.fa.xlf │ │ │ ├── validators.fi.xlf │ │ │ ├── validators.fr.xlf │ │ │ ├── validators.gl.xlf │ │ │ ├── validators.he.xlf │ │ │ ├── validators.hr.xlf │ │ │ ├── validators.hu.xlf │ │ │ ├── validators.hy.xlf │ │ │ ├── validators.id.xlf │ │ │ ├── validators.it.xlf │ │ │ ├── validators.ja.xlf │ │ │ ├── validators.lb.xlf │ │ │ ├── validators.lt.xlf │ │ │ ├── validators.lv.xlf │ │ │ ├── validators.mn.xlf │ │ │ ├── validators.my.xlf │ │ │ ├── validators.nb.xlf │ │ │ ├── validators.nl.xlf │ │ │ ├── validators.nn.xlf │ │ │ ├── validators.no.xlf │ │ │ ├── validators.pl.xlf │ │ │ ├── validators.pt.xlf │ │ │ ├── validators.pt_BR.xlf │ │ │ ├── validators.ro.xlf │ │ │ ├── validators.ru.xlf │ │ │ ├── validators.sk.xlf │ │ │ ├── validators.sl.xlf │ │ │ ├── validators.sq.xlf │ │ │ ├── validators.sr_Cyrl.xlf │ │ │ ├── validators.sr_Latn.xlf │ │ │ ├── validators.sv.xlf │ │ │ ├── validators.th.xlf │ │ │ ├── validators.tl.xlf │ │ │ ├── validators.tr.xlf │ │ │ ├── validators.uk.xlf │ │ │ ├── validators.ur.xlf │ │ │ ├── validators.uz.xlf │ │ │ ├── validators.vi.xlf │ │ │ ├── validators.zh_CN.xlf │ │ │ └── validators.zh_TW.xlf │ ├── Test │ │ └── ConstraintValidatorTestCase.php │ ├── Util │ │ └── PropertyPath.php │ ├── Validation.php │ ├── Validator │ │ ├── ContextualValidatorInterface.php │ │ ├── LazyProperty.php │ │ ├── RecursiveContextualValidator.php │ │ ├── RecursiveValidator.php │ │ ├── TraceableValidator.php │ │ └── ValidatorInterface.php │ ├── ValidatorBuilder.php │ ├── Violation │ │ ├── ConstraintViolationBuilder.php │ │ └── ConstraintViolationBuilderInterface.php │ └── composer.json ├── var-dumper │ ├── CHANGELOG.md │ ├── Caster │ │ ├── AmqpCaster.php │ │ ├── ArgsStub.php │ │ ├── Caster.php │ │ ├── ClassStub.php │ │ ├── ConstStub.php │ │ ├── CutArrayStub.php │ │ ├── CutStub.php │ │ ├── DOMCaster.php │ │ ├── DateCaster.php │ │ ├── DoctrineCaster.php │ │ ├── DsCaster.php │ │ ├── DsPairStub.php │ │ ├── EnumStub.php │ │ ├── ExceptionCaster.php │ │ ├── FiberCaster.php │ │ ├── FrameStub.php │ │ ├── GmpCaster.php │ │ ├── ImagineCaster.php │ │ ├── ImgStub.php │ │ ├── IntlCaster.php │ │ ├── LinkStub.php │ │ ├── MemcachedCaster.php │ │ ├── MysqliCaster.php │ │ ├── PdoCaster.php │ │ ├── PgSqlCaster.php │ │ ├── ProxyManagerCaster.php │ │ ├── RdKafkaCaster.php │ │ ├── RedisCaster.php │ │ ├── ReflectionCaster.php │ │ ├── ResourceCaster.php │ │ ├── SplCaster.php │ │ ├── StubCaster.php │ │ ├── SymfonyCaster.php │ │ ├── TraceStub.php │ │ ├── UuidCaster.php │ │ ├── XmlReaderCaster.php │ │ └── XmlResourceCaster.php │ ├── Cloner │ │ ├── AbstractCloner.php │ │ ├── ClonerInterface.php │ │ ├── Cursor.php │ │ ├── Data.php │ │ ├── DumperInterface.php │ │ ├── Stub.php │ │ └── VarCloner.php │ ├── Command │ │ ├── Descriptor │ │ │ ├── CliDescriptor.php │ │ │ ├── DumpDescriptorInterface.php │ │ │ └── HtmlDescriptor.php │ │ └── ServerDumpCommand.php │ ├── Dumper │ │ ├── AbstractDumper.php │ │ ├── CliDumper.php │ │ ├── ContextProvider │ │ │ ├── CliContextProvider.php │ │ │ ├── ContextProviderInterface.php │ │ │ ├── RequestContextProvider.php │ │ │ └── SourceContextProvider.php │ │ ├── ContextualizedDumper.php │ │ ├── DataDumperInterface.php │ │ ├── HtmlDumper.php │ │ └── ServerDumper.php │ ├── Exception │ │ └── ThrowingCasterException.php │ ├── LICENSE │ ├── README.md │ ├── Resources │ │ ├── bin │ │ │ └── var-dump-server │ │ ├── css │ │ │ └── htmlDescriptor.css │ │ ├── functions │ │ │ └── dump.php │ │ └── js │ │ │ └── htmlDescriptor.js │ ├── Server │ │ ├── Connection.php │ │ └── DumpServer.php │ ├── Test │ │ └── VarDumperTestTrait.php │ ├── VarDumper.php │ └── composer.json ├── var-exporter │ ├── CHANGELOG.md │ ├── Exception │ │ ├── ClassNotFoundException.php │ │ ├── ExceptionInterface.php │ │ └── NotInstantiableTypeException.php │ ├── Instantiator.php │ ├── Internal │ │ ├── Exporter.php │ │ ├── Hydrator.php │ │ ├── Reference.php │ │ ├── Registry.php │ │ └── Values.php │ ├── LICENSE │ ├── README.md │ ├── VarExporter.php │ └── composer.json ├── web-link │ ├── CHANGELOG.md │ ├── EventListener │ │ └── AddLinkHeaderListener.php │ ├── GenericLinkProvider.php │ ├── HttpHeaderSerializer.php │ ├── LICENSE │ ├── Link.php │ ├── README.md │ └── composer.json ├── web-profiler-bundle │ ├── CHANGELOG.md │ ├── Controller │ │ ├── ExceptionPanelController.php │ │ ├── ProfilerController.php │ │ └── RouterController.php │ ├── Csp │ │ ├── ContentSecurityPolicyHandler.php │ │ └── NonceGenerator.php │ ├── DependencyInjection │ │ ├── Configuration.php │ │ └── WebProfilerExtension.php │ ├── EventListener │ │ └── WebDebugToolbarListener.php │ ├── LICENSE │ ├── Profiler │ │ └── TemplateManager.php │ ├── README.md │ ├── Resources │ │ ├── ICONS_LICENSE.txt │ │ ├── config │ │ │ ├── profiler.php │ │ │ ├── routing │ │ │ │ ├── profiler.xml │ │ │ │ └── wdt.xml │ │ │ ├── schema │ │ │ │ └── webprofiler-1.0.xsd │ │ │ └── toolbar.php │ │ └── views │ │ │ ├── Collector │ │ │ ├── ajax.html.twig │ │ │ ├── cache.html.twig │ │ │ ├── config.html.twig │ │ │ ├── events.html.twig │ │ │ ├── exception.css.twig │ │ │ ├── exception.html.twig │ │ │ ├── form.html.twig │ │ │ ├── http_client.html.twig │ │ │ ├── logger.html.twig │ │ │ ├── mailer.html.twig │ │ │ ├── memory.html.twig │ │ │ ├── messenger.html.twig │ │ │ ├── notifier.html.twig │ │ │ ├── request.html.twig │ │ │ ├── router.html.twig │ │ │ ├── time.css.twig │ │ │ ├── time.html.twig │ │ │ ├── time.js │ │ │ ├── translation.html.twig │ │ │ ├── twig.html.twig │ │ │ └── validator.html.twig │ │ │ ├── Icon │ │ │ ├── ajax.svg │ │ │ ├── cache.svg │ │ │ ├── close.svg │ │ │ ├── config.svg │ │ │ ├── event.svg │ │ │ ├── exception.svg │ │ │ ├── filter.svg │ │ │ ├── form.svg │ │ │ ├── forward.svg │ │ │ ├── http-client.svg │ │ │ ├── logger.svg │ │ │ ├── mailer.svg │ │ │ ├── memory.svg │ │ │ ├── menu.svg │ │ │ ├── messenger.svg │ │ │ ├── no-gray.svg │ │ │ ├── no.svg │ │ │ ├── notifier.svg │ │ │ ├── redirect.svg │ │ │ ├── request.svg │ │ │ ├── router.svg │ │ │ ├── search.svg │ │ │ ├── symfony.svg │ │ │ ├── time.svg │ │ │ ├── translation.svg │ │ │ ├── twig.svg │ │ │ ├── validator.svg │ │ │ └── yes.svg │ │ │ ├── Profiler │ │ │ ├── ajax_layout.html.twig │ │ │ ├── bag.html.twig │ │ │ ├── base.html.twig │ │ │ ├── base_js.html.twig │ │ │ ├── cancel.html.twig │ │ │ ├── header.html.twig │ │ │ ├── info.html.twig │ │ │ ├── layout.html.twig │ │ │ ├── open.css.twig │ │ │ ├── open.html.twig │ │ │ ├── profiler.css.twig │ │ │ ├── results.html.twig │ │ │ ├── search.html.twig │ │ │ ├── settings.html.twig │ │ │ ├── table.html.twig │ │ │ ├── toolbar.css.twig │ │ │ ├── toolbar.html.twig │ │ │ ├── toolbar_item.html.twig │ │ │ ├── toolbar_js.html.twig │ │ │ └── toolbar_redirect.html.twig │ │ │ ├── Router │ │ │ └── panel.html.twig │ │ │ └── images │ │ │ ├── icon-minus-square.svg │ │ │ └── icon-plus-square.svg │ ├── Twig │ │ └── WebProfilerExtension.php │ ├── WebProfilerBundle.php │ └── composer.json └── yaml │ ├── CHANGELOG.md │ ├── Command │ └── LintCommand.php │ ├── Dumper.php │ ├── Escaper.php │ ├── Exception │ ├── DumpException.php │ ├── ExceptionInterface.php │ ├── ParseException.php │ └── RuntimeException.php │ ├── Inline.php │ ├── LICENSE │ ├── Parser.php │ ├── README.md │ ├── Resources │ └── bin │ │ └── yaml-lint │ ├── Tag │ └── TaggedValue.php │ ├── Unescaper.php │ ├── Yaml.php │ └── composer.json ├── symfonycasts ├── reset-password-bundle │ ├── .php-cs-fixer.dist.php │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Command │ │ └── ResetPasswordRemoveExpiredCommand.php │ │ ├── Controller │ │ └── ResetPasswordControllerTrait.php │ │ ├── DependencyInjection │ │ ├── Configuration.php │ │ └── SymfonyCastsResetPasswordExtension.php │ │ ├── Exception │ │ ├── ExpiredResetPasswordTokenException.php │ │ ├── FakeRepositoryException.php │ │ ├── InvalidResetPasswordTokenException.php │ │ ├── ResetPasswordExceptionInterface.php │ │ └── TooManyPasswordRequestsException.php │ │ ├── Generator │ │ ├── ResetPasswordRandomGenerator.php │ │ └── ResetPasswordTokenGenerator.php │ │ ├── Model │ │ ├── ResetPasswordRequestInterface.php │ │ ├── ResetPasswordRequestTrait.php │ │ ├── ResetPasswordToken.php │ │ └── ResetPasswordTokenComponents.php │ │ ├── Persistence │ │ ├── Fake │ │ │ └── FakeResetPasswordInternalRepository.php │ │ ├── Repository │ │ │ └── ResetPasswordRequestRepositoryTrait.php │ │ └── ResetPasswordRequestRepositoryInterface.php │ │ ├── ResetPasswordHelper.php │ │ ├── ResetPasswordHelperInterface.php │ │ ├── Resources │ │ ├── config │ │ │ └── reset_password_services.xml │ │ └── translations │ │ │ ├── ResetPasswordBundle+intl-icu.nl.xlf │ │ │ ├── ResetPasswordBundle.ar.xlf │ │ │ ├── ResetPasswordBundle.ca.xlf │ │ │ ├── ResetPasswordBundle.cs.xlf │ │ │ ├── ResetPasswordBundle.de.xlf │ │ │ ├── ResetPasswordBundle.en.xlf │ │ │ ├── ResetPasswordBundle.es.xlf │ │ │ ├── ResetPasswordBundle.fi.xlf │ │ │ ├── ResetPasswordBundle.fr.xlf │ │ │ ├── ResetPasswordBundle.hu.xlf │ │ │ ├── ResetPasswordBundle.it.xlf │ │ │ ├── ResetPasswordBundle.ja.xlf │ │ │ ├── ResetPasswordBundle.pl.xlf │ │ │ ├── ResetPasswordBundle.pt.xlf │ │ │ ├── ResetPasswordBundle.ru.xlf │ │ │ ├── ResetPasswordBundle.sk.xlf │ │ │ ├── ResetPasswordBundle.sr.xlf │ │ │ ├── ResetPasswordBundle.tr.xlf │ │ │ └── ResetPasswordBundle.uk.xlf │ │ ├── SymfonyCastsResetPasswordBundle.php │ │ └── Util │ │ └── ResetPasswordCleaner.php └── verify-email-bundle │ ├── .php-cs-fixer.dist.php │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ └── src │ ├── DependencyInjection │ ├── Configuration.php │ └── SymfonyCastsVerifyEmailExtension.php │ ├── Exception │ ├── ExpiredSignatureException.php │ ├── InvalidSignatureException.php │ ├── VerifyEmailExceptionInterface.php │ └── WrongEmailVerifyException.php │ ├── Generator │ └── VerifyEmailTokenGenerator.php │ ├── Model │ └── VerifyEmailSignatureComponents.php │ ├── Resources │ ├── config │ │ └── verify_email_services.xml │ └── translations │ │ ├── VerifyEmailBundle+intl-icu.nl.xlf │ │ ├── VerifyEmailBundle.ar.xlf │ │ ├── VerifyEmailBundle.ca.xlf │ │ ├── VerifyEmailBundle.cs.xlf │ │ ├── VerifyEmailBundle.de.xlf │ │ ├── VerifyEmailBundle.en.xlf │ │ ├── VerifyEmailBundle.es.xlf │ │ ├── VerifyEmailBundle.fi.xlf │ │ ├── VerifyEmailBundle.fr.xlf │ │ ├── VerifyEmailBundle.hu.xlf │ │ ├── VerifyEmailBundle.id.xlf │ │ ├── VerifyEmailBundle.it.xlf │ │ ├── VerifyEmailBundle.ja.xlf │ │ ├── VerifyEmailBundle.pl.xlf │ │ ├── VerifyEmailBundle.pt.xlf │ │ ├── VerifyEmailBundle.ro.xlf │ │ ├── VerifyEmailBundle.ru.xlf │ │ ├── VerifyEmailBundle.sk.xlf │ │ ├── VerifyEmailBundle.sr.xlf │ │ ├── VerifyEmailBundle.tr.xlf │ │ └── VerifyEmailBundle.uk.xlf │ ├── SymfonyCastsVerifyEmailBundle.php │ ├── Util │ └── VerifyEmailQueryUtility.php │ ├── VerifyEmailHelper.php │ └── VerifyEmailHelperInterface.php ├── theseer └── tokenizer │ ├── .php_cs.dist │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ └── src │ ├── Exception.php │ ├── NamespaceUri.php │ ├── NamespaceUriException.php │ ├── Token.php │ ├── TokenCollection.php │ ├── TokenCollectionException.php │ ├── Tokenizer.php │ └── XMLSerializer.php ├── twig ├── extra-bundle │ ├── .gitattributes │ ├── .gitignore │ ├── DependencyInjection │ │ ├── Compiler │ │ │ └── MissingExtensionSuggestorPass.php │ │ ├── Configuration.php │ │ └── TwigExtraExtension.php │ ├── Extensions.php │ ├── LICENSE │ ├── LeagueCommonMarkConverterFactory.php │ ├── MissingExtensionSuggestor.php │ ├── README.md │ ├── Resources │ │ └── config │ │ │ ├── cache.php │ │ │ ├── cssinliner.php │ │ │ ├── html.php │ │ │ ├── inky.php │ │ │ ├── intl.php │ │ │ ├── markdown.php │ │ │ ├── markdown_league.php │ │ │ ├── string.php │ │ │ └── suggestor.php │ ├── TwigExtraBundle.php │ └── composer.json └── twig │ ├── CHANGELOG │ ├── LICENSE │ ├── README.rst │ ├── composer.json │ └── src │ ├── Cache │ ├── CacheInterface.php │ ├── FilesystemCache.php │ └── NullCache.php │ ├── Compiler.php │ ├── Environment.php │ ├── Error │ ├── Error.php │ ├── LoaderError.php │ ├── RuntimeError.php │ └── SyntaxError.php │ ├── ExpressionParser.php │ ├── Extension │ ├── AbstractExtension.php │ ├── CoreExtension.php │ ├── DebugExtension.php │ ├── EscaperExtension.php │ ├── ExtensionInterface.php │ ├── GlobalsInterface.php │ ├── OptimizerExtension.php │ ├── ProfilerExtension.php │ ├── RuntimeExtensionInterface.php │ ├── SandboxExtension.php │ ├── StagingExtension.php │ └── StringLoaderExtension.php │ ├── ExtensionSet.php │ ├── FileExtensionEscapingStrategy.php │ ├── Lexer.php │ ├── Loader │ ├── ArrayLoader.php │ ├── ChainLoader.php │ ├── FilesystemLoader.php │ └── LoaderInterface.php │ ├── Markup.php │ ├── Node │ ├── AutoEscapeNode.php │ ├── BlockNode.php │ ├── BlockReferenceNode.php │ ├── BodyNode.php │ ├── CheckSecurityCallNode.php │ ├── CheckSecurityNode.php │ ├── CheckToStringNode.php │ ├── DeprecatedNode.php │ ├── DoNode.php │ ├── EmbedNode.php │ ├── Expression │ │ ├── AbstractExpression.php │ │ ├── ArrayExpression.php │ │ ├── ArrowFunctionExpression.php │ │ ├── AssignNameExpression.php │ │ ├── Binary │ │ │ ├── AbstractBinary.php │ │ │ ├── AddBinary.php │ │ │ ├── AndBinary.php │ │ │ ├── BitwiseAndBinary.php │ │ │ ├── BitwiseOrBinary.php │ │ │ ├── BitwiseXorBinary.php │ │ │ ├── ConcatBinary.php │ │ │ ├── DivBinary.php │ │ │ ├── EndsWithBinary.php │ │ │ ├── EqualBinary.php │ │ │ ├── FloorDivBinary.php │ │ │ ├── GreaterBinary.php │ │ │ ├── GreaterEqualBinary.php │ │ │ ├── HasEveryBinary.php │ │ │ ├── HasSomeBinary.php │ │ │ ├── InBinary.php │ │ │ ├── LessBinary.php │ │ │ ├── LessEqualBinary.php │ │ │ ├── MatchesBinary.php │ │ │ ├── ModBinary.php │ │ │ ├── MulBinary.php │ │ │ ├── NotEqualBinary.php │ │ │ ├── NotInBinary.php │ │ │ ├── OrBinary.php │ │ │ ├── PowerBinary.php │ │ │ ├── RangeBinary.php │ │ │ ├── SpaceshipBinary.php │ │ │ ├── StartsWithBinary.php │ │ │ └── SubBinary.php │ │ ├── BlockReferenceExpression.php │ │ ├── CallExpression.php │ │ ├── ConditionalExpression.php │ │ ├── ConstantExpression.php │ │ ├── Filter │ │ │ └── DefaultFilter.php │ │ ├── FilterExpression.php │ │ ├── FunctionExpression.php │ │ ├── GetAttrExpression.php │ │ ├── InlinePrint.php │ │ ├── MethodCallExpression.php │ │ ├── NameExpression.php │ │ ├── NullCoalesceExpression.php │ │ ├── ParentExpression.php │ │ ├── TempNameExpression.php │ │ ├── Test │ │ │ ├── ConstantTest.php │ │ │ ├── DefinedTest.php │ │ │ ├── DivisiblebyTest.php │ │ │ ├── EvenTest.php │ │ │ ├── NullTest.php │ │ │ ├── OddTest.php │ │ │ └── SameasTest.php │ │ ├── TestExpression.php │ │ ├── Unary │ │ │ ├── AbstractUnary.php │ │ │ ├── NegUnary.php │ │ │ ├── NotUnary.php │ │ │ └── PosUnary.php │ │ └── VariadicExpression.php │ ├── FlushNode.php │ ├── ForLoopNode.php │ ├── ForNode.php │ ├── IfNode.php │ ├── ImportNode.php │ ├── IncludeNode.php │ ├── MacroNode.php │ ├── ModuleNode.php │ ├── Node.php │ ├── NodeCaptureInterface.php │ ├── NodeOutputInterface.php │ ├── PrintNode.php │ ├── SandboxNode.php │ ├── SetNode.php │ ├── TextNode.php │ └── WithNode.php │ ├── NodeTraverser.php │ ├── NodeVisitor │ ├── AbstractNodeVisitor.php │ ├── EscaperNodeVisitor.php │ ├── MacroAutoImportNodeVisitor.php │ ├── NodeVisitorInterface.php │ ├── OptimizerNodeVisitor.php │ ├── SafeAnalysisNodeVisitor.php │ └── SandboxNodeVisitor.php │ ├── Parser.php │ ├── Profiler │ ├── Dumper │ │ ├── BaseDumper.php │ │ ├── BlackfireDumper.php │ │ ├── HtmlDumper.php │ │ └── TextDumper.php │ ├── Node │ │ ├── EnterProfileNode.php │ │ └── LeaveProfileNode.php │ ├── NodeVisitor │ │ └── ProfilerNodeVisitor.php │ └── Profile.php │ ├── RuntimeLoader │ ├── ContainerRuntimeLoader.php │ ├── FactoryRuntimeLoader.php │ └── RuntimeLoaderInterface.php │ ├── Sandbox │ ├── SecurityError.php │ ├── SecurityNotAllowedFilterError.php │ ├── SecurityNotAllowedFunctionError.php │ ├── SecurityNotAllowedMethodError.php │ ├── SecurityNotAllowedPropertyError.php │ ├── SecurityNotAllowedTagError.php │ ├── SecurityPolicy.php │ └── SecurityPolicyInterface.php │ ├── Source.php │ ├── Template.php │ ├── TemplateWrapper.php │ ├── Test │ ├── IntegrationTestCase.php │ └── NodeTestCase.php │ ├── Token.php │ ├── TokenParser │ ├── AbstractTokenParser.php │ ├── ApplyTokenParser.php │ ├── AutoEscapeTokenParser.php │ ├── BlockTokenParser.php │ ├── DeprecatedTokenParser.php │ ├── DoTokenParser.php │ ├── EmbedTokenParser.php │ ├── ExtendsTokenParser.php │ ├── FlushTokenParser.php │ ├── ForTokenParser.php │ ├── FromTokenParser.php │ ├── IfTokenParser.php │ ├── ImportTokenParser.php │ ├── IncludeTokenParser.php │ ├── MacroTokenParser.php │ ├── SandboxTokenParser.php │ ├── SetTokenParser.php │ ├── TokenParserInterface.php │ ├── UseTokenParser.php │ └── WithTokenParser.php │ ├── TokenStream.php │ ├── TwigFilter.php │ ├── TwigFunction.php │ ├── TwigTest.php │ └── Util │ ├── DeprecationCollector.php │ └── TemplateDirIterator.php └── webmozart └── assert ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json └── src ├── Assert.php ├── InvalidArgumentException.php └── Mixin.php /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/.env -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/.env.test -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/README.md -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/bin/console -------------------------------------------------------------------------------- /bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/bin/phpunit -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/composer.lock -------------------------------------------------------------------------------- /config/bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/bundles.php -------------------------------------------------------------------------------- /config/packages/cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/packages/cache.yaml -------------------------------------------------------------------------------- /config/packages/debug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/packages/debug.yaml -------------------------------------------------------------------------------- /config/packages/doctrine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/packages/doctrine.yaml -------------------------------------------------------------------------------- /config/packages/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/packages/framework.yaml -------------------------------------------------------------------------------- /config/packages/mailer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/packages/mailer.yaml -------------------------------------------------------------------------------- /config/packages/messenger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/packages/messenger.yaml -------------------------------------------------------------------------------- /config/packages/monolog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/packages/monolog.yaml -------------------------------------------------------------------------------- /config/packages/notifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/packages/notifier.yaml -------------------------------------------------------------------------------- /config/packages/reset_password.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/packages/reset_password.yaml -------------------------------------------------------------------------------- /config/packages/routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/packages/routing.yaml -------------------------------------------------------------------------------- /config/packages/security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/packages/security.yaml -------------------------------------------------------------------------------- /config/packages/translation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/packages/translation.yaml -------------------------------------------------------------------------------- /config/packages/twig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/packages/twig.yaml -------------------------------------------------------------------------------- /config/packages/validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/packages/validator.yaml -------------------------------------------------------------------------------- /config/packages/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/packages/web_profiler.yaml -------------------------------------------------------------------------------- /config/preload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/preload.php -------------------------------------------------------------------------------- /config/routes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/routes.yaml -------------------------------------------------------------------------------- /config/routes/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/routes/annotations.yaml -------------------------------------------------------------------------------- /config/routes/framework.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/routes/framework.yaml -------------------------------------------------------------------------------- /config/routes/web_profiler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/routes/web_profiler.yaml -------------------------------------------------------------------------------- /config/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/config/services.yaml -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /migrations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migrations/Version20230216145622.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/migrations/Version20230216145622.php -------------------------------------------------------------------------------- /migrations/Version20230227135930.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/migrations/Version20230227135930.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /public/back/css/sb-admin-2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/css/sb-admin-2.css -------------------------------------------------------------------------------- /public/back/css/sb-admin-2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/css/sb-admin-2.min.css -------------------------------------------------------------------------------- /public/back/forgot-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/forgot-password.html -------------------------------------------------------------------------------- /public/back/img/undraw_profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/img/undraw_profile.svg -------------------------------------------------------------------------------- /public/back/img/undraw_profile_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/img/undraw_profile_1.svg -------------------------------------------------------------------------------- /public/back/img/undraw_profile_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/img/undraw_profile_2.svg -------------------------------------------------------------------------------- /public/back/img/undraw_profile_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/img/undraw_profile_3.svg -------------------------------------------------------------------------------- /public/back/img/undraw_rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/img/undraw_rocket.svg -------------------------------------------------------------------------------- /public/back/js/demo/chart-area-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/js/demo/chart-area-demo.js -------------------------------------------------------------------------------- /public/back/js/demo/chart-bar-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/js/demo/chart-bar-demo.js -------------------------------------------------------------------------------- /public/back/js/demo/chart-pie-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/js/demo/chart-pie-demo.js -------------------------------------------------------------------------------- /public/back/js/demo/datatables-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/js/demo/datatables-demo.js -------------------------------------------------------------------------------- /public/back/js/sb-admin-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/js/sb-admin-2.js -------------------------------------------------------------------------------- /public/back/js/sb-admin-2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/js/sb-admin-2.min.js -------------------------------------------------------------------------------- /public/back/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/login.html -------------------------------------------------------------------------------- /public/back/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/register.html -------------------------------------------------------------------------------- /public/back/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/_buttons.scss -------------------------------------------------------------------------------- /public/back/scss/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/_cards.scss -------------------------------------------------------------------------------- /public/back/scss/_charts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/_charts.scss -------------------------------------------------------------------------------- /public/back/scss/_dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/_dropdowns.scss -------------------------------------------------------------------------------- /public/back/scss/_error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/_error.scss -------------------------------------------------------------------------------- /public/back/scss/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/_footer.scss -------------------------------------------------------------------------------- /public/back/scss/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/_global.scss -------------------------------------------------------------------------------- /public/back/scss/_login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/_login.scss -------------------------------------------------------------------------------- /public/back/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/back/scss/_navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/_navs.scss -------------------------------------------------------------------------------- /public/back/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/_utilities.scss -------------------------------------------------------------------------------- /public/back/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/_variables.scss -------------------------------------------------------------------------------- /public/back/scss/navs/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/navs/_global.scss -------------------------------------------------------------------------------- /public/back/scss/navs/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/navs/_sidebar.scss -------------------------------------------------------------------------------- /public/back/scss/navs/_topbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/navs/_topbar.scss -------------------------------------------------------------------------------- /public/back/scss/sb-admin-2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/sb-admin-2.scss -------------------------------------------------------------------------------- /public/back/scss/utilities/_border.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/utilities/_border.scss -------------------------------------------------------------------------------- /public/back/scss/utilities/_progress.scss: -------------------------------------------------------------------------------- 1 | .progress-sm { 2 | height: .5rem; 3 | } 4 | -------------------------------------------------------------------------------- /public/back/scss/utilities/_rotate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/utilities/_rotate.scss -------------------------------------------------------------------------------- /public/back/scss/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/scss/utilities/_text.scss -------------------------------------------------------------------------------- /public/back/vendor/chart.js/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/vendor/chart.js/Chart.js -------------------------------------------------------------------------------- /public/back/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /public/back/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/back/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /public/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/css/.DS_Store -------------------------------------------------------------------------------- /public/css/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/css/ajax-loader.gif -------------------------------------------------------------------------------- /public/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/css/animate.css -------------------------------------------------------------------------------- /public/css/bootstrap-datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/css/bootstrap-datepicker.css -------------------------------------------------------------------------------- /public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/css/bootstrap/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/css/bootstrap/.DS_Store -------------------------------------------------------------------------------- /public/css/bootstrap/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/css/bootstrap/bootstrap-grid.css -------------------------------------------------------------------------------- /public/css/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/css/css/.DS_Store -------------------------------------------------------------------------------- /public/css/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/css/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /public/css/css/mixins/_text-hide.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/css/flaticon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/css/flaticon.css -------------------------------------------------------------------------------- /public/css/jquery.timepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/css/jquery.timepicker.css -------------------------------------------------------------------------------- /public/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/css/magnific-popup.css -------------------------------------------------------------------------------- /public/css/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/css/owl.carousel.min.css -------------------------------------------------------------------------------- /public/css/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/css/owl.theme.default.min.css -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/css/style.css -------------------------------------------------------------------------------- /public/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/fonts/.DS_Store -------------------------------------------------------------------------------- /public/fonts/flaticon/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/fonts/flaticon/.DS_Store -------------------------------------------------------------------------------- /public/fonts/flaticon/backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/fonts/flaticon/backup.txt -------------------------------------------------------------------------------- /public/fonts/flaticon/font/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/fonts/flaticon/font/Flaticon.eot -------------------------------------------------------------------------------- /public/fonts/flaticon/font/Flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/fonts/flaticon/font/Flaticon.svg -------------------------------------------------------------------------------- /public/fonts/flaticon/font/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/fonts/flaticon/font/Flaticon.ttf -------------------------------------------------------------------------------- /public/fonts/flaticon/font/flaticon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/fonts/flaticon/font/flaticon.css -------------------------------------------------------------------------------- /public/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/.DS_Store -------------------------------------------------------------------------------- /public/images/Produit-premix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/Produit-premix.png -------------------------------------------------------------------------------- /public/images/about-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/about-1.jpg -------------------------------------------------------------------------------- /public/images/about-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/about-2.jpg -------------------------------------------------------------------------------- /public/images/about-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/about-3.jpg -------------------------------------------------------------------------------- /public/images/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/about.jpg -------------------------------------------------------------------------------- /public/images/bg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/bg_1.jpg -------------------------------------------------------------------------------- /public/images/bg_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/bg_2.jpg -------------------------------------------------------------------------------- /public/images/bg_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/bg_3.jpg -------------------------------------------------------------------------------- /public/images/cat-food3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/cat-food3.jpg -------------------------------------------------------------------------------- /public/images/gallery-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/gallery-1.jpg -------------------------------------------------------------------------------- /public/images/gallery-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/gallery-2.jpg -------------------------------------------------------------------------------- /public/images/gallery-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/gallery-3.jpg -------------------------------------------------------------------------------- /public/images/gallery-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/gallery-4.jpg -------------------------------------------------------------------------------- /public/images/gallery-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/gallery-5.jpg -------------------------------------------------------------------------------- /public/images/gallery-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/gallery-6.jpg -------------------------------------------------------------------------------- /public/images/gallery-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/gallery-7.jpg -------------------------------------------------------------------------------- /public/images/hygene1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/hygene1.jpg -------------------------------------------------------------------------------- /public/images/hygene2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/hygene2.png -------------------------------------------------------------------------------- /public/images/hygene3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/hygene3.png -------------------------------------------------------------------------------- /public/images/image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/image_1.jpg -------------------------------------------------------------------------------- /public/images/image_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/image_2.jpg -------------------------------------------------------------------------------- /public/images/image_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/image_3.jpg -------------------------------------------------------------------------------- /public/images/image_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/image_4.jpg -------------------------------------------------------------------------------- /public/images/image_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/image_5.jpg -------------------------------------------------------------------------------- /public/images/image_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/image_6.jpg -------------------------------------------------------------------------------- /public/images/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/img.jpg -------------------------------------------------------------------------------- /public/images/loc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/loc.png -------------------------------------------------------------------------------- /public/images/logo-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/logo-01.png -------------------------------------------------------------------------------- /public/images/person_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/person_1.jpg -------------------------------------------------------------------------------- /public/images/person_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/person_2.jpg -------------------------------------------------------------------------------- /public/images/person_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/person_3.jpg -------------------------------------------------------------------------------- /public/images/person_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/person_4.jpg -------------------------------------------------------------------------------- /public/images/pet-food1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/pet-food1.jpg -------------------------------------------------------------------------------- /public/images/pet-food2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/pet-food2.jpg -------------------------------------------------------------------------------- /public/images/pricing-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/pricing-1.jpg -------------------------------------------------------------------------------- /public/images/pricing-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/pricing-2.jpg -------------------------------------------------------------------------------- /public/images/pricing-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/pricing-3.jpg -------------------------------------------------------------------------------- /public/images/staff-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/staff-1.jpg -------------------------------------------------------------------------------- /public/images/staff-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/staff-2.jpg -------------------------------------------------------------------------------- /public/images/staff-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/staff-3.jpg -------------------------------------------------------------------------------- /public/images/staff-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/staff-4.jpg -------------------------------------------------------------------------------- /public/images/staff-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/staff-5.jpg -------------------------------------------------------------------------------- /public/images/staff-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/staff-6.jpg -------------------------------------------------------------------------------- /public/images/staff-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/staff-7.jpg -------------------------------------------------------------------------------- /public/images/staff-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/images/staff-8.jpg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/js/.DS_Store -------------------------------------------------------------------------------- /public/js/bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/js/bootstrap-datepicker.js -------------------------------------------------------------------------------- /public/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/js/bootstrap.min.js -------------------------------------------------------------------------------- /public/js/google-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/js/google-map.js -------------------------------------------------------------------------------- /public/js/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/js/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /public/js/jquery-migrate-3.0.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/js/jquery-migrate-3.0.1.min.js -------------------------------------------------------------------------------- /public/js/jquery.animateNumber.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/js/jquery.animateNumber.min.js -------------------------------------------------------------------------------- /public/js/jquery.easing.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/js/jquery.easing.1.3.js -------------------------------------------------------------------------------- /public/js/jquery.magnific-popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/js/jquery.magnific-popup.min.js -------------------------------------------------------------------------------- /public/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/js/jquery.min.js -------------------------------------------------------------------------------- /public/js/jquery.stellar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/js/jquery.stellar.min.js -------------------------------------------------------------------------------- /public/js/jquery.timepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/js/jquery.timepicker.min.js -------------------------------------------------------------------------------- /public/js/jquery.waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/js/jquery.waypoints.min.js -------------------------------------------------------------------------------- /public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/js/main.js -------------------------------------------------------------------------------- /public/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/js/owl.carousel.min.js -------------------------------------------------------------------------------- /public/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/js/popper.min.js -------------------------------------------------------------------------------- /public/js/scrollax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/js/scrollax.min.js -------------------------------------------------------------------------------- /public/scss/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/.DS_Store -------------------------------------------------------------------------------- /public/scss/bootstrap/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/.DS_Store -------------------------------------------------------------------------------- /public/scss/bootstrap/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_alert.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_badge.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_breadcrumb.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_card.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_close.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_code.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_dropdown.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_forms.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_functions.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_grid.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_images.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_input-group.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_jumbotron.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_list-group.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_media.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_modal.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_nav.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_pagination.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_popover.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_print.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_progress.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_reboot.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_root.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_spinners.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_tables.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_toasts.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_transitions.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_type.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_utilities.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/_variables.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/bootstrap.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/mixins/_grid.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/bootstrap/mixins/_size.scss -------------------------------------------------------------------------------- /public/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/public/scss/style.scss -------------------------------------------------------------------------------- /src/Controller/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Controller/AdminUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Controller/AdminUserController.php -------------------------------------------------------------------------------- /src/Controller/BackController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Controller/BackController.php -------------------------------------------------------------------------------- /src/Controller/FrontController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Controller/FrontController.php -------------------------------------------------------------------------------- /src/Controller/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Controller/HomeController.php -------------------------------------------------------------------------------- /src/Controller/SecurityController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Controller/SecurityController.php -------------------------------------------------------------------------------- /src/Controller/SecurityController1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Controller/SecurityController1.php -------------------------------------------------------------------------------- /src/Entity/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Entity/Accouplement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Entity/Accouplement.php -------------------------------------------------------------------------------- /src/Entity/Adoption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Entity/Adoption.php -------------------------------------------------------------------------------- /src/Entity/CategorieADOP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Entity/CategorieADOP.php -------------------------------------------------------------------------------- /src/Entity/CategorieAcc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Entity/CategorieAcc.php -------------------------------------------------------------------------------- /src/Entity/CategorieP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Entity/CategorieP.php -------------------------------------------------------------------------------- /src/Entity/CategorieS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Entity/CategorieS.php -------------------------------------------------------------------------------- /src/Entity/CategorieV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Entity/CategorieV.php -------------------------------------------------------------------------------- /src/Entity/Produit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Entity/Produit.php -------------------------------------------------------------------------------- /src/Entity/Reclamation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Entity/Reclamation.php -------------------------------------------------------------------------------- /src/Entity/Reponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Entity/Reponse.php -------------------------------------------------------------------------------- /src/Entity/ServiceS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Entity/ServiceS.php -------------------------------------------------------------------------------- /src/Entity/ServiceV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Entity/ServiceV.php -------------------------------------------------------------------------------- /src/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Entity/User.php -------------------------------------------------------------------------------- /src/Form/ChangePasswordFormType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Form/ChangePasswordFormType.php -------------------------------------------------------------------------------- /src/Form/RegistrationFormType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Form/RegistrationFormType.php -------------------------------------------------------------------------------- /src/Form/RegistrationFormType1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Form/RegistrationFormType1.php -------------------------------------------------------------------------------- /src/Form/UpdatePasswordType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Form/UpdatePasswordType.php -------------------------------------------------------------------------------- /src/Form/UserAddType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Form/UserAddType.php -------------------------------------------------------------------------------- /src/Form/UserEditType copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Form/UserEditType copy.php -------------------------------------------------------------------------------- /src/Form/UserEditType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Form/UserEditType.php -------------------------------------------------------------------------------- /src/Form/UserType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Form/UserType.php -------------------------------------------------------------------------------- /src/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Kernel.php -------------------------------------------------------------------------------- /src/Repository/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Repository/AdoptionRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Repository/AdoptionRepository.php -------------------------------------------------------------------------------- /src/Repository/CategoriePRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Repository/CategoriePRepository.php -------------------------------------------------------------------------------- /src/Repository/CategorieSRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Repository/CategorieSRepository.php -------------------------------------------------------------------------------- /src/Repository/CategorieVRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Repository/CategorieVRepository.php -------------------------------------------------------------------------------- /src/Repository/ProduitRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Repository/ProduitRepository.php -------------------------------------------------------------------------------- /src/Repository/ReponseRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Repository/ReponseRepository.php -------------------------------------------------------------------------------- /src/Repository/ServiceSRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Repository/ServiceSRepository.php -------------------------------------------------------------------------------- /src/Repository/ServiceVRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Repository/ServiceVRepository.php -------------------------------------------------------------------------------- /src/Repository/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Repository/UserRepository.php -------------------------------------------------------------------------------- /src/Security/AppCustomAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Security/AppCustomAuthenticator.php -------------------------------------------------------------------------------- /src/Security/EmailVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/src/Security/EmailVerifier.php -------------------------------------------------------------------------------- /symfony.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/symfony.lock -------------------------------------------------------------------------------- /templates/about.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/about.html.twig -------------------------------------------------------------------------------- /templates/accouplement.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/accouplement.html.twig -------------------------------------------------------------------------------- /templates/admin/account/edit.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/admin/account/edit.html.twig -------------------------------------------------------------------------------- /templates/admin/account/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/admin/account/index.html.twig -------------------------------------------------------------------------------- /templates/admin/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/admin/base.html.twig -------------------------------------------------------------------------------- /templates/admin/layout.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/admin/layout.html.twig -------------------------------------------------------------------------------- /templates/admin/user/add.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/admin/user/add.html.twig -------------------------------------------------------------------------------- /templates/admin/user/edit.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/admin/user/edit.html.twig -------------------------------------------------------------------------------- /templates/admin/user/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/admin/user/index.html.twig -------------------------------------------------------------------------------- /templates/admin/user/show.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/admin/user/show.html.twig -------------------------------------------------------------------------------- /templates/adoption.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/adoption.html.twig -------------------------------------------------------------------------------- /templates/back/back.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/back/back.html.twig -------------------------------------------------------------------------------- /templates/back/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/back/index.html.twig -------------------------------------------------------------------------------- /templates/back/login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/back/login.html.twig -------------------------------------------------------------------------------- /templates/back/register.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/back/register.html.twig -------------------------------------------------------------------------------- /templates/base-front.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/base-front.html.twig -------------------------------------------------------------------------------- /templates/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/base.html.twig -------------------------------------------------------------------------------- /templates/front/back.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/front/back.html.twig -------------------------------------------------------------------------------- /templates/front/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/front/index.html.twig -------------------------------------------------------------------------------- /templates/front/login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/front/login.html.twig -------------------------------------------------------------------------------- /templates/front/register.html.twig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/home/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/home/index.html.twig -------------------------------------------------------------------------------- /templates/partials/_macro.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/partials/_macro.html.twig -------------------------------------------------------------------------------- /templates/partials/_navbar.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/partials/_navbar.html.twig -------------------------------------------------------------------------------- /templates/produits.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/produits.html.twig -------------------------------------------------------------------------------- /templates/reclamations.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/reclamations.html.twig -------------------------------------------------------------------------------- /templates/security/login.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/security/login.html.twig -------------------------------------------------------------------------------- /templates/services.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/services.html.twig -------------------------------------------------------------------------------- /templates/vet.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/vet.html.twig -------------------------------------------------------------------------------- /templates/vet/index.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/templates/vet/index.html.twig -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /translations/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/cache/dev/App_KernelDevDebugContainer.php.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/cache/dev/ContainerQ8ffCt7.legacy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/cache/dev/annotations.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/var/cache/dev/annotations.map -------------------------------------------------------------------------------- /var/cache/dev/annotations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malekkadri/User-Crud-Symfony5/HEAD/var/cache/dev/annotations.php -------------------------------------------------------------------------------- /var/cache/dev/pools/system/tx-LgAR3k9/0/0/1+Q1qxqgyZhOisMfGuyw: -------------------------------------------------------------------------------- 1 |