├── .bowerrc ├── .gitignore ├── .htaccess.dist ├── CHANGELOG.md ├── README.md ├── app ├── AppKernel.php ├── DoctrineMigrations │ ├── Version20160813113407.php │ ├── Version20160819130118.php │ ├── Version20160822120408.php │ ├── Version20160830124637.php │ ├── Version20160908082316.php │ ├── Version20160909105213.php │ ├── Version20160912090538.php │ ├── Version20160918165655.php │ ├── Version20161017223115.php │ ├── Version20161027173150.php │ ├── Version20161027173160.php │ ├── Version20161123211900.php │ ├── Version20161208215800.php │ ├── Version20161209173160.php │ ├── Version20161224173160.php │ ├── Version20170130000000.php │ ├── Version20170202220915.php │ ├── Version20170225101217.php │ ├── Version20170311194525.php │ ├── Version20170311194530.php │ ├── Version20170320194525.php │ ├── Version20170320195530.php │ ├── Version20170328101217.php │ ├── Version20170328101219.php │ ├── Version20170423080527.php │ ├── Version20170424080000.php │ ├── Version20170424090000.php │ ├── Version20170424090001.php │ ├── Version20170430165000.php │ ├── Version20170430165002.php │ ├── Version20170614214532.php │ ├── Version20170615090403.php │ ├── Version20170715090403.php │ ├── Version20170907133700.php │ ├── Version20171103195530.php │ ├── Version20171104230413.php │ ├── Version20171104230424.php │ ├── Version20171201214532.php │ ├── Version20171217215800.php │ ├── Version20171217215801.php │ ├── Version20171225193117.php │ ├── Version20180113231353.php │ ├── Version20180116214552.php │ ├── Version20180117090538.php │ ├── Version20180118193118.php │ ├── Version20200926230800.php │ ├── Version20200928150400.php │ ├── Version20211215213500.php │ ├── Version20211219161500.php │ ├── Version20221123203500.php │ ├── Version20221204190000.php │ ├── Version20221206170000.php │ ├── Version20221212190000.php │ ├── Version20230101190000.php │ ├── Version20230111150000.php │ ├── Version20230201200000.php │ ├── Version20231115200000.php │ ├── Version20240516200000.php │ └── Version20251007210000.php ├── Resources │ ├── TwigBundle │ │ └── views │ │ │ └── Exception │ │ │ ├── error.html.twig │ │ │ ├── error403.html.twig │ │ │ └── error404.html.twig │ ├── public │ │ ├── css │ │ │ └── runalyze-installer.less │ │ └── js │ │ │ ├── climb-score.js │ │ │ ├── d3js-boxplot.js │ │ │ ├── d3js-runalyzeplot.js │ │ │ ├── polyfill.js │ │ │ ├── vendor │ │ │ └── d3-annotation.js │ │ │ └── views │ │ │ ├── climb-score-view.js │ │ │ └── race-performance-chart-view.js │ └── views │ │ ├── _include │ │ └── js_init.html.twig │ │ ├── _macro │ │ ├── form.html.twig │ │ ├── leaflet.html.twig │ │ ├── tablesorter.html.twig │ │ └── utilities.html.twig │ │ ├── account │ │ ├── activate │ │ │ ├── base.html.twig │ │ │ ├── problem.html.twig │ │ │ └── success.html.twig │ │ ├── delete │ │ │ ├── base.html.twig │ │ │ ├── please_confirm.html.twig │ │ │ ├── problem.html.twig │ │ │ └── success.html.twig │ │ ├── recover │ │ │ ├── base.html.twig │ │ │ ├── base_hash_given.html.twig │ │ │ ├── form_new_password.html.twig │ │ │ ├── form_send_mail.html.twig │ │ │ ├── hash_invalid.html.twig │ │ │ ├── mail_delivered.html.twig │ │ │ └── success.html.twig │ │ ├── unsubscribe_failure.html.twig │ │ ├── unsubscribe_info.html.twig │ │ └── unsubscribe_success.html.twig │ │ ├── activity │ │ ├── activity_has_been_removed.html.twig │ │ ├── form.html.twig │ │ ├── import_garmin_communicator.html.twig │ │ ├── import_upload.html.twig │ │ ├── multi_editor_navigation.html.twig │ │ ├── multi_importer.html.twig │ │ ├── tool │ │ │ ├── best_sub_segments.html.twig │ │ │ ├── climb_score.html.twig │ │ │ ├── not_possible.html.twig │ │ │ └── time_series_statistics.html.twig │ │ └── vo2max_info.html.twig │ │ ├── analytics.html.twig │ │ ├── base.html.twig │ │ ├── base_logged_in.twig │ │ ├── base_not_logged_in.html.twig │ │ ├── feedback.html.twig │ │ ├── flashmessages.html.twig │ │ ├── form │ │ └── fields.html.twig │ │ ├── home_feature_showcase.html.twig │ │ ├── import │ │ └── garmin_communicator.html.twig │ │ ├── legacy_end.html.twig │ │ ├── login │ │ ├── ajax_not_logged_in.html.twig │ │ ├── base.html.twig │ │ ├── form.html.twig │ │ └── statistics.html.twig │ │ ├── mail │ │ ├── account │ │ │ ├── deleteAccountRequest.html.twig │ │ │ ├── recoverPassword.html.twig │ │ │ └── registration.html.twig │ │ └── transactionBase.html.twig │ │ ├── maintenance.html.twig │ │ ├── my │ │ ├── body-values │ │ │ ├── form.html.twig │ │ │ └── table.html.twig │ │ ├── equipment │ │ │ ├── category │ │ │ │ └── table.html.twig │ │ │ ├── form-category.html.twig │ │ │ ├── form-equipment.html.twig │ │ │ └── overview.html.twig │ │ ├── panels │ │ │ ├── base.html.twig │ │ │ └── sports │ │ │ │ └── base.html.twig │ │ ├── raceresult │ │ │ ├── deleted.html.twig │ │ │ ├── form.html.twig │ │ │ └── performance_chart.html.twig │ │ └── statistics │ │ │ ├── base.html.twig │ │ │ └── monthly-stats │ │ │ └── base.html.twig │ │ ├── notifications.html.twig │ │ ├── register │ │ ├── disabled.html.twig │ │ ├── form.html.twig │ │ ├── mail_could_not_be_delivered.html.twig │ │ └── mail_delivered.html.twig │ │ ├── settings │ │ ├── account-delete.html.twig │ │ ├── account-mail.html.twig │ │ ├── account-password.html.twig │ │ ├── account.html.twig │ │ ├── dataset.html.twig │ │ ├── privacy.html.twig │ │ ├── sport │ │ │ ├── form-sport.html.twig │ │ │ ├── form-type.html.twig │ │ │ └── overview.html.twig │ │ └── tag │ │ │ ├── form.html.twig │ │ │ └── overview.html.twig │ │ ├── shared │ │ ├── activity │ │ │ └── base.html.twig │ │ ├── athlete │ │ │ ├── base.html.twig │ │ │ └── base_plot_sum_data.html.twig │ │ ├── base.html.twig │ │ ├── invalid_activity.html.twig │ │ ├── invalid_athlete.html.twig │ │ └── widget │ │ │ └── iframe │ │ │ └── base.html.twig │ │ ├── static │ │ ├── help.html.twig │ │ └── help_calculations.html.twig │ │ ├── system │ │ ├── base.html.twig │ │ ├── install.html.twig │ │ ├── update.html.twig │ │ └── update_start.html.twig │ │ ├── tools │ │ ├── anova │ │ │ └── base.html.twig │ │ ├── backup │ │ │ ├── base.html.twig │ │ │ ├── base_import.html.twig │ │ │ ├── export.html.twig │ │ │ ├── import_bad_file.html.twig │ │ │ ├── import_finish.html.twig │ │ │ ├── import_form.html.twig │ │ │ └── upload_form.html.twig │ │ ├── database_cleanup │ │ │ ├── base.html.twig │ │ │ ├── form.html.twig │ │ │ └── results.html.twig │ │ ├── poster.html.twig │ │ ├── poster_success.html.twig │ │ ├── tables │ │ │ ├── base.html.twig │ │ │ ├── general_paces.html.twig │ │ │ ├── vo2max.html.twig │ │ │ └── vo2max_paces.html.twig │ │ ├── tools_list.html.twig │ │ ├── trend-analysis │ │ │ └── base.html.twig │ │ └── vo2max_analysis.html.twig │ │ └── util │ │ ├── close_overlay.html.twig │ │ ├── error.html.twig │ │ └── flashmessages_only.html.twig ├── autoload.php └── config │ ├── config.yml │ ├── config_dev.yml │ ├── config_prod.yml │ ├── config_test.yml │ ├── config_test_empty.yml │ ├── default_config.yml │ ├── expert_config.yml │ ├── languages.yml │ ├── queue.yml │ ├── security.yml │ └── services.yml ├── bin ├── console ├── deploy_rsa.enc └── travis_build.sh ├── bower.json ├── call └── perl │ ├── Garmin │ └── FIT.pm │ ├── fittorunalyze.pl │ ├── test.pl │ └── ttbincnv ├── composer.json ├── composer.lock ├── dashboard.php ├── data ├── backup-tool │ ├── backup │ │ └── .htaccess │ └── import │ │ └── .htaccess ├── config_overwrite.yml ├── import │ └── activity │ │ └── failed │ │ └── .gitkeep ├── poster │ └── .gitkeep ├── srtm │ └── .gitkeep ├── timezone.sqlite └── views │ └── notifications │ └── .gitkeep ├── gulpfile.js ├── inc ├── class.DataBrowser.php ├── class.DataBrowserLinker.php ├── class.DataBrowserShared.php ├── class.Frontend.php ├── class.FrontendShared.php ├── class.FrontendSharedList.php ├── class.FrontendSharedStatistics.php ├── class.Helper.php ├── core │ ├── Activity │ │ ├── AnaerobicTrainingEffect.php │ │ ├── Distance.php │ │ ├── DuplicateFinder.php │ │ ├── Duration.php │ │ ├── Elevation.php │ │ ├── Energy.php │ │ ├── FitTrainingEffectBenefit.php │ │ ├── GroundcontactBalance.php │ │ ├── HeartRate.php │ │ ├── LapIntensity.php │ │ ├── Pace.php │ │ ├── PaceUnit │ │ │ ├── AbstractDecimalUnit.php │ │ │ ├── AbstractTimeUnit.php │ │ │ ├── AbstractUnit.php │ │ │ ├── KmPerHour.php │ │ │ ├── MeterPerSecond.php │ │ │ ├── MilesPerHour.php │ │ │ ├── MinPer100m.php │ │ │ ├── MinPer100y.php │ │ │ ├── MinPer500m.php │ │ │ ├── MinPer500y.php │ │ │ ├── MinPerKilometer.php │ │ │ └── MinPerMile.php │ │ ├── PerformanceCondition.php │ │ ├── PersonalBest.php │ │ ├── PoolLength.php │ │ ├── SelfEvaluationFeeling.php │ │ ├── StrideLength.php │ │ ├── Temperature.php │ │ ├── TrainingEffect.php │ │ ├── TrainingEffectLevel.php │ │ ├── ValueInterface.php │ │ ├── VerticalRatio.php │ │ └── Weight.php │ ├── Athlete.php │ ├── Calculation │ │ ├── Activity │ │ │ ├── Calculator.php │ │ │ ├── GradeAdjustedPaceCalculator.php │ │ │ ├── HrZonesCalculator.php │ │ │ ├── PaceCalculator.php │ │ │ ├── PaceSmoother.php │ │ │ └── VerticalRatioCalculator.php │ │ ├── BasicEndurance.php │ │ ├── Distribution │ │ │ ├── TimeSeriesForTrackdata.php │ │ │ └── TrackdataAverages.php │ │ ├── Elevation │ │ │ ├── Calculator.php │ │ │ ├── DistanceModifier.php │ │ │ └── Strategy │ │ │ │ ├── AbstractStrategy.php │ │ │ │ ├── DouglasPeucker.php │ │ │ │ ├── NoSmoothing.php │ │ │ │ ├── ReumannWitkam.php │ │ │ │ └── Threshold.php │ │ ├── HRV │ │ │ ├── Calculator.php │ │ │ └── PoincareCollector.php │ │ ├── JD │ │ │ ├── LegacyEffectiveVO2max.php │ │ │ ├── LegacyEffectiveVO2maxCorrector.php │ │ │ └── Shape.php │ │ ├── Math │ │ │ ├── MovingAverage │ │ │ │ ├── AbstractMovingAverage.php │ │ │ │ ├── Cumulative.php │ │ │ │ ├── Exponential.php │ │ │ │ ├── Kernel │ │ │ │ │ ├── AbstractKernel.php │ │ │ │ │ ├── Cosine.php │ │ │ │ │ ├── Epanechnikov.php │ │ │ │ │ ├── Gaussian.php │ │ │ │ │ ├── Kernels.php │ │ │ │ │ ├── Logistic.php │ │ │ │ │ ├── Quartic.php │ │ │ │ │ ├── Triangular.php │ │ │ │ │ ├── Tricube.php │ │ │ │ │ ├── Triweight.php │ │ │ │ │ └── Uniform.php │ │ │ │ ├── MovingAverageInterface.php │ │ │ │ └── WithKernel.php │ │ │ └── SubSegmentMaximization.php │ │ ├── NightDetector.php │ │ ├── Performance │ │ │ ├── MaximumCalculator.php │ │ │ └── ModelQuery.php │ │ ├── Power │ │ │ └── Calculator.php │ │ ├── Prognosis │ │ │ └── TopResults.php │ │ ├── Route │ │ │ ├── GeohashLine.php │ │ │ └── Gradient.php │ │ ├── StrideLength │ │ │ └── Calculator.php │ │ └── Trimp │ │ │ ├── Calculator.php │ │ │ ├── DataCollector.php │ │ │ ├── Factor.php │ │ │ └── InverseCalculator.php │ ├── Common │ │ └── Enum │ │ │ ├── AbstractEnum.php │ │ │ └── AbstractEnumFactoryTrait.php │ ├── Configuration.php │ ├── Configuration │ │ ├── Category.php │ │ ├── Category │ │ │ ├── ActivityForm.php │ │ │ ├── ActivityView.php │ │ │ ├── BasicEndurance.php │ │ │ ├── Data.php │ │ │ ├── DataBrowser.php │ │ │ ├── Design.php │ │ │ ├── General.php │ │ │ ├── Privacy.php │ │ │ ├── Trimp.php │ │ │ └── VO2max.php │ │ ├── FieldFactory.php │ │ ├── Fieldset.php │ │ ├── Form.php │ │ ├── Handle.php │ │ └── Messages.php │ ├── Context.php │ ├── Data │ │ ├── Cadence │ │ │ ├── AbstractCadence.php │ │ │ ├── General.php │ │ │ ├── Running.php │ │ │ └── Unit.php │ │ ├── Laps │ │ │ ├── Calculator.php │ │ │ ├── Lap.php │ │ │ ├── Laps.php │ │ │ └── SplitsReader.php │ │ ├── RPE.php │ │ ├── Stroketype.php │ │ ├── Weather.php │ │ └── Weather │ │ │ ├── BeaufortScale.php │ │ │ ├── CardinalDirection.php │ │ │ ├── Condition.php │ │ │ ├── HeatIndex.php │ │ │ ├── HeatIndexEffect.php │ │ │ ├── Humidity.php │ │ │ ├── Location.php │ │ │ ├── Pressure.php │ │ │ ├── Sources.php │ │ │ ├── Temperature.php │ │ │ ├── WindChillFactor.php │ │ │ ├── WindDegree.php │ │ │ └── WindSpeed.php │ ├── Dataset │ │ ├── Configuration.php │ │ ├── Context.php │ │ ├── DefaultConfiguration.php │ │ ├── Keys.php │ │ ├── Keys │ │ │ ├── AbstractEquipment.php │ │ │ ├── AbstractKey.php │ │ │ ├── AirPressure.php │ │ │ ├── AverageBrakingGs.php │ │ │ ├── AverageFootstrikeType.php │ │ │ ├── AverageImpactGs.php │ │ │ ├── AveragePronationExcursion.php │ │ │ ├── AverageRespirationRate.php │ │ │ ├── Cadence.php │ │ │ ├── ClimbScore.php │ │ │ ├── CompleteEquipment.php │ │ │ ├── Daytime.php │ │ │ ├── Distance.php │ │ │ ├── Duration.php │ │ │ ├── ElapsedTime.php │ │ │ ├── Elevation.php │ │ │ ├── Energy.php │ │ │ ├── FitAnaerobicTrainingEffect.php │ │ │ ├── FitHrvAnalysis.php │ │ │ ├── FitLoadPeak.php │ │ │ ├── FitPerformanceCondition.php │ │ │ ├── FitPerformanceConditionEnd.php │ │ │ ├── FitPerformanceConditionStart.php │ │ │ ├── FitRecoveryTime.php │ │ │ ├── FitTrainingEffect.php │ │ │ ├── FitTrainingEffectBenefit.php │ │ │ ├── FitVO2maxEstimate.php │ │ │ ├── FlightRatio.php │ │ │ ├── FlightTime.php │ │ │ ├── Gradient.php │ │ │ ├── Groundcontact.php │ │ │ ├── GroundcontactBalance.php │ │ │ ├── HeartrateAverage.php │ │ │ ├── HeartrateAverageActive.php │ │ │ ├── HeartrateMaximum.php │ │ │ ├── HeatIndex.php │ │ │ ├── Humidity.php │ │ │ ├── MainEquipment.php │ │ │ ├── OpenTab.php │ │ │ ├── Pace.php │ │ │ ├── PercentageHilly.php │ │ │ ├── Power.php │ │ │ ├── RPE.php │ │ │ ├── RaceResult.php │ │ │ ├── Route.php │ │ │ ├── Setting.php │ │ │ ├── SharedLink.php │ │ │ ├── Splits.php │ │ │ ├── Sport.php │ │ │ ├── StrideLength.php │ │ │ ├── Swolf.php │ │ │ ├── Tags.php │ │ │ ├── Temperature.php │ │ │ ├── Title.php │ │ │ ├── Tools.php │ │ │ ├── TotalCycles.php │ │ │ ├── TotalStrokes.php │ │ │ ├── TrainingPartner.php │ │ │ ├── Trimp.php │ │ │ ├── Type.php │ │ │ ├── VO2maxIcon.php │ │ │ ├── VO2maxValue.php │ │ │ ├── VerticalOscillation.php │ │ │ ├── VerticalRatio.php │ │ │ ├── Weather.php │ │ │ ├── Wind.php │ │ │ ├── WindChill.php │ │ │ └── WithGoal.php │ │ ├── Query.php │ │ └── SummaryMode.php │ ├── Export │ │ ├── AbstractExporter.php │ │ ├── File │ │ │ ├── AbstractFileExporter.php │ │ │ ├── Fitlog.php │ │ │ ├── Gpx.php │ │ │ ├── Kml.php │ │ │ ├── Tcx.php │ │ │ └── Types.php │ │ └── Share │ │ │ ├── AbstractSharer.php │ │ │ ├── AbstractSnippetSharer.php │ │ │ ├── AbstractSocialSharer.php │ │ │ ├── Facebook.php │ │ │ ├── GooglePlus.php │ │ │ ├── Html.php │ │ │ ├── IFrame.php │ │ │ ├── Twitter.php │ │ │ └── Types.php │ ├── Import │ │ └── Exception │ │ │ ├── InstallationSpecificException.php │ │ │ ├── ParserException.php │ │ │ ├── UnexpectedContentException.php │ │ │ └── UnsupportedFileException.php │ ├── Language.php │ ├── Mathematics │ │ ├── DataAnalysis │ │ │ └── ConstantSegmentFinder.php │ │ ├── Distribution │ │ │ ├── AbstractDistribution.php │ │ │ ├── EmpiricalDistribution.php │ │ │ ├── MultipleTimeSeries.php │ │ │ └── TimeSeries.php │ │ ├── Filter │ │ │ ├── Butterworth │ │ │ │ ├── AbstractButterworthCoefficients.php │ │ │ │ ├── ButterworthFilter.php │ │ │ │ └── Lowpass2ndOrderCoefficients.php │ │ │ ├── HampelFilter.php │ │ │ └── InfiniteImpulseResponseFilter.php │ │ ├── Interpolation │ │ │ └── BSpline │ │ │ │ └── BSplineInterpolation.php │ │ ├── Numerics │ │ │ ├── Bisection.php │ │ │ └── Derivative.php │ │ ├── PointReduction │ │ │ ├── AbstractPointReductionAlgorithm.php │ │ │ └── RamerDouglasPeucker.php │ │ └── Scale │ │ │ ├── Percental.php │ │ │ ├── ScaleInterface.php │ │ │ └── TwoPartPercental.php │ ├── Metrics │ │ ├── Cadence │ │ │ ├── Cadence.php │ │ │ └── Unit │ │ │ │ ├── AbstractCadenceUnit.php │ │ │ │ ├── RoundsPerMinute.php │ │ │ │ └── StepsPerMinute.php │ │ ├── Common │ │ │ ├── AbstractComparableUnit.php │ │ │ ├── AbstractMetric.php │ │ │ ├── BaseUnitTrait.php │ │ │ ├── ComparableUnitInterface.php │ │ │ ├── FormattableUnitInterface.php │ │ │ ├── JavaScriptFormatter.php │ │ │ ├── Unit │ │ │ │ ├── Factorial.php │ │ │ │ ├── Linear.php │ │ │ │ ├── None.php │ │ │ │ └── Simple.php │ │ │ ├── UnitConversionByDividendTrait.php │ │ │ ├── UnitConversionByFactorTrait.php │ │ │ └── UnitInterface.php │ │ ├── Distance │ │ │ ├── Distance.php │ │ │ ├── Elevation.php │ │ │ ├── StrideLength.php │ │ │ ├── Unit │ │ │ │ ├── AbstractDistanceUnit.php │ │ │ │ ├── Centimeter.php │ │ │ │ ├── DistanceEnum.php │ │ │ │ ├── Feet.php │ │ │ │ ├── Kilometer.php │ │ │ │ ├── Meter.php │ │ │ │ ├── Miles.php │ │ │ │ ├── Millimeter.php │ │ │ │ └── Yards.php │ │ │ └── VerticalOscillation.php │ │ ├── Energy │ │ │ ├── Energy.php │ │ │ └── Unit │ │ │ │ ├── AbstractEnergyUnit.php │ │ │ │ ├── EnergyEnum.php │ │ │ │ ├── Kilocalories.php │ │ │ │ └── Kilojoules.php │ │ ├── GroundContactBalance │ │ │ └── Unit │ │ │ │ ├── AbstractGroundContactBalanceUnit.php │ │ │ │ └── PercentLeft.php │ │ ├── HeartRate │ │ │ ├── HeartRate.php │ │ │ └── Unit │ │ │ │ ├── AbstractHeartRateUnit.php │ │ │ │ ├── AbstractHeartRateUnitInPercent.php │ │ │ │ ├── BeatsPerMinute.php │ │ │ │ ├── HeartRateEnum.php │ │ │ │ ├── PercentMaximum.php │ │ │ │ └── PercentReserve.php │ │ ├── LegacyUnitConverter.php │ │ ├── Power │ │ │ ├── Power.php │ │ │ └── Unit │ │ │ │ ├── AbstractPowerUnit.php │ │ │ │ └── Watts.php │ │ ├── Temperature │ │ │ ├── Temperature.php │ │ │ └── Unit │ │ │ │ ├── AbstractTemperatureUnit.php │ │ │ │ ├── Celsius.php │ │ │ │ ├── Fahrenheit.php │ │ │ │ └── TemperatureEnum.php │ │ ├── Time │ │ │ └── Unit │ │ │ │ ├── AbstractTimeUnit.php │ │ │ │ ├── Hours.php │ │ │ │ ├── Miliseconds.php │ │ │ │ └── Seconds.php │ │ ├── Velocity │ │ │ ├── Pace.php │ │ │ └── Unit │ │ │ │ ├── AbstractPaceInDecimalFormatUnit.php │ │ │ │ ├── AbstractPaceInTimeFormatUnit.php │ │ │ │ ├── AbstractPaceUnit.php │ │ │ │ ├── KilometerPerHour.php │ │ │ │ ├── MeterPerSecond.php │ │ │ │ ├── MilesPerHour.php │ │ │ │ ├── PaceEnum.php │ │ │ │ ├── SecondsPer100m.php │ │ │ │ ├── SecondsPer100y.php │ │ │ │ ├── SecondsPer500m.php │ │ │ │ ├── SecondsPer500y.php │ │ │ │ ├── SecondsPerKilometer.php │ │ │ │ └── SecondsPerMile.php │ │ └── Weight │ │ │ ├── Unit │ │ │ ├── AbstractWeightUnit.php │ │ │ ├── Kilogram.php │ │ │ ├── Pounds.php │ │ │ ├── Stones.php │ │ │ └── WeightEnum.php │ │ │ └── Weight.php │ ├── Model │ │ ├── Account │ │ │ └── UserRole.php │ │ ├── Activity │ │ │ ├── Entity.php │ │ │ ├── Partner.php │ │ │ └── Splits │ │ │ │ ├── Completor.php │ │ │ │ ├── CompletorForDistance.php │ │ │ │ ├── CompletorForTime.php │ │ │ │ ├── Entity.php │ │ │ │ └── Split.php │ │ ├── Common │ │ │ ├── WithNullableArraysInterface.php │ │ │ └── WithNullableArraysTrait.php │ │ ├── Entity.php │ │ ├── EntityWithID.php │ │ ├── Equipment │ │ │ ├── Entity.php │ │ │ └── StatisticsUpdater.php │ │ ├── EquipmentType │ │ │ └── Entity.php │ │ ├── Factory.php │ │ ├── HRV │ │ │ └── Entity.php │ │ ├── Loop.php │ │ ├── Loopable.php │ │ ├── RaceResult │ │ │ └── Entity.php │ │ ├── Route │ │ │ ├── Entity.php │ │ │ └── Loop.php │ │ ├── Sport │ │ │ └── Entity.php │ │ ├── StringArrayObject.php │ │ ├── StringObject.php │ │ ├── Swimdata │ │ │ ├── Entity.php │ │ │ └── Loop.php │ │ ├── Tag │ │ │ └── Entity.php │ │ ├── Trackdata │ │ │ ├── Entity.php │ │ │ ├── Loop.php │ │ │ ├── Pause.php │ │ │ └── Pauses.php │ │ └── Type │ │ │ └── Entity.php │ ├── Parameter.php │ ├── Parameter │ │ ├── Application │ │ │ ├── ActivityCreationMode.php │ │ │ ├── ActivityPlotMode.php │ │ │ ├── ActivityPlotPrecision.php │ │ │ ├── ActivityRouteBreak.php │ │ │ ├── ActivityRoutePrecision.php │ │ │ ├── ActivityRoutePrivacy.php │ │ │ ├── DataBrowserMode.php │ │ │ ├── DatabaseOrder.php │ │ │ ├── DistanceUnitSystem.php │ │ │ ├── ElevationMethod.php │ │ │ ├── EnergyUnit.php │ │ │ ├── HeartRateUnit.php │ │ │ ├── PaceAxisLimit.php │ │ │ ├── PaceAxisMaximum.php │ │ │ ├── PaceAxisMinimum.php │ │ │ ├── PaceAxisType.php │ │ │ ├── PaceUnit.php │ │ │ ├── TemperatureUnit.php │ │ │ ├── Timezone.php │ │ │ ├── WeekStart.php │ │ │ └── WeightUnit.php │ │ ├── Boolean.php │ │ ├── FloatingPoint.php │ │ ├── Integer.php │ │ ├── Select.php │ │ ├── SelectFile.php │ │ ├── SelectRow.php │ │ ├── Set.php │ │ └── Textline.php │ ├── Parser │ │ ├── Activity │ │ │ ├── Bridge │ │ │ │ └── ContinuousDataConverter.php │ │ │ ├── Common │ │ │ │ ├── AbstractMultipleParser.php │ │ │ │ ├── AbstractMultipleParserWithSubParser.php │ │ │ │ ├── AbstractSingleParser.php │ │ │ │ ├── Data │ │ │ │ │ ├── ActiveRoundCalculator.php │ │ │ │ │ ├── ActivityData.php │ │ │ │ │ ├── ActivityDataContainer.php │ │ │ │ │ ├── ContinuousData.php │ │ │ │ │ ├── ContinuousDataAdapter.php │ │ │ │ │ ├── FitDetails.php │ │ │ │ │ ├── GpsDistanceCalculator.php │ │ │ │ │ ├── Merge │ │ │ │ │ │ ├── ActivityDataContainerMerger.php │ │ │ │ │ │ ├── ActivityDataMerger.php │ │ │ │ │ │ ├── ContinuousDataMerger.php │ │ │ │ │ │ ├── FitDetailsMerger.php │ │ │ │ │ │ ├── MergerInterface.php │ │ │ │ │ │ ├── MetadataMerger.php │ │ │ │ │ │ └── WeatherDataMerger.php │ │ │ │ │ ├── Metadata.php │ │ │ │ │ ├── Pause │ │ │ │ │ │ ├── Pause.php │ │ │ │ │ │ └── PauseCollection.php │ │ │ │ │ ├── Round │ │ │ │ │ │ ├── Round.php │ │ │ │ │ │ ├── RoundCollection.php │ │ │ │ │ │ └── RoundCollectionFiller.php │ │ │ │ │ └── WeatherData.php │ │ │ │ ├── Exception │ │ │ │ │ └── InvalidDataException.php │ │ │ │ ├── Filter │ │ │ │ │ ├── AbstractFilter.php │ │ │ │ │ ├── DefaultFilterCollection.php │ │ │ │ │ ├── FilterCollection.php │ │ │ │ │ ├── FilterInterface.php │ │ │ │ │ ├── InvalidRRIntervalFilter.php │ │ │ │ │ ├── NegativeDistanceStepFilter.php │ │ │ │ │ ├── NegativePauseFilter.php │ │ │ │ │ ├── NegativeTimeStepFilter.php │ │ │ │ │ ├── NonMatchingArraySizeFilter.php │ │ │ │ │ └── OutOfRangeValueFilter.php │ │ │ │ ├── ParserInterface.php │ │ │ │ ├── PauseDetectionCapableParserInterface.php │ │ │ │ ├── PauseDetectionCapableTrait.php │ │ │ │ └── StrtotimeWithLocalTimezoneOffsetTrait.php │ │ │ ├── Converter │ │ │ │ ├── FitConverter.php │ │ │ │ ├── KmzConverter.php │ │ │ │ ├── TtbinConverter.php │ │ │ │ └── ZipConverter.php │ │ │ ├── FileExtensionToParserMapping.php │ │ │ └── FileType │ │ │ │ ├── Csv.php │ │ │ │ ├── CsvEpson.php │ │ │ │ ├── CsvWahoo.php │ │ │ │ ├── Fit.php │ │ │ │ ├── FitActivity.php │ │ │ │ ├── FitSplitsAdditionals.php │ │ │ │ ├── FitWorkoutStep.php │ │ │ │ ├── Fitlog.php │ │ │ │ ├── FitlogActivity.php │ │ │ │ ├── Gpx.php │ │ │ │ ├── GpxTrack.php │ │ │ │ ├── Hrm.php │ │ │ │ ├── Kml.php │ │ │ │ ├── KmlExtended.php │ │ │ │ ├── KmlGoogle.php │ │ │ │ ├── Logbook.php │ │ │ │ ├── LogbookActivity.php │ │ │ │ ├── Pwx.php │ │ │ │ ├── PwxWorkout.php │ │ │ │ ├── Slf.php │ │ │ │ ├── Slf3.php │ │ │ │ ├── Slf4.php │ │ │ │ ├── Sml.php │ │ │ │ ├── Tcx.php │ │ │ │ ├── TcxActivity.php │ │ │ │ ├── TcxActivityRuntastic.php │ │ │ │ ├── TcxCourse.php │ │ │ │ ├── Trk.php │ │ │ │ ├── Xml.php │ │ │ │ ├── XmlPolar.php │ │ │ │ ├── XmlPolarExercise.php │ │ │ │ └── XmlSuunto.php │ │ └── Common │ │ │ ├── AbstractShellBasedFileTypeConverter.php │ │ │ ├── FileContentAwareParserInterface.php │ │ │ ├── FileContentAwareParserTrait.php │ │ │ ├── FileNameAwareParserInterface.php │ │ │ ├── FileTypeConverterInterface.php │ │ │ ├── LineByLineParserTrait.php │ │ │ └── XmlParserTrait.php │ ├── Profile │ │ ├── Athlete │ │ │ └── Gender.php │ │ ├── FitSdk │ │ │ ├── SportProfile.php │ │ │ └── StrokeTypeProfile.php │ │ ├── Mapping │ │ │ ├── AbstractMapping.php │ │ │ ├── FitSdkExercise.php │ │ │ ├── ToExternalMappingInterface.php │ │ │ └── ToInternalMappingInterface.php │ │ ├── Notifications │ │ │ └── MessageTypeProfile.php │ │ ├── Sport │ │ │ ├── AbstractSport.php │ │ │ ├── Bouldering.php │ │ │ ├── ClimbingIndoor.php │ │ │ ├── CrossCountrySkiing.php │ │ │ ├── Cycling.php │ │ │ ├── EMtbMountain.php │ │ │ ├── Generic.php │ │ │ ├── HiitCardio.php │ │ │ ├── Hiking.php │ │ │ ├── Icon │ │ │ │ └── SportIconProfile.php │ │ │ ├── Mapping │ │ │ │ ├── EnglishLanguageMapping.php │ │ │ │ └── FitSdkMapping.php │ │ │ ├── Mountaineering.php │ │ │ ├── ProfileInterface.php │ │ │ ├── Rowing.php │ │ │ ├── Running.php │ │ │ ├── Settings │ │ │ │ └── SportRelevanceProfile.php │ │ │ ├── SnowShoeing.php │ │ │ ├── SportProfile.php │ │ │ ├── StrengthTraining.php │ │ │ └── Swimming.php │ │ ├── View │ │ │ ├── DataBrowserRowProfile.php │ │ │ └── DatasetPrivacyProfile.php │ │ └── Weather │ │ │ ├── Mapping │ │ │ ├── DarkskyMapping.php │ │ │ ├── EnglishTextMapping.php │ │ │ ├── MeteostatNetMapping.php │ │ │ └── OpenWeatherMapMapping.php │ │ │ ├── Source │ │ │ ├── AbstractSource.php │ │ │ ├── DarkSky.php │ │ │ ├── DatabaseCache.php │ │ │ ├── MeteostatNet.php │ │ │ ├── OpenWeatherMap.php │ │ │ ├── SourceInterface.php │ │ │ └── WeatherSourceProfile.php │ │ │ └── WeatherConditionProfile.php │ ├── Service │ │ ├── ElevationCorrection │ │ │ ├── Exception │ │ │ │ ├── InvalidResponseException.php │ │ │ │ ├── NoResponseException.php │ │ │ │ ├── NoValidStrategyException.php │ │ │ │ ├── OverQueryLimitException.php │ │ │ │ └── StrategyException.php │ │ │ ├── StepwiseElevationProfileFixer.php │ │ │ └── Strategy │ │ │ │ ├── AbstractStrategy.php │ │ │ │ ├── AbstractStrategyFromExternalAPI.php │ │ │ │ ├── GeoTiff.php │ │ │ │ ├── Geonames.php │ │ │ │ ├── GoogleMaps.php │ │ │ │ ├── GuessUnknownValuesTrait.php │ │ │ │ ├── StrategyCollection.php │ │ │ │ └── StrategyInterface.php │ │ ├── RouteNameEvaluation │ │ │ ├── OsmCsvData.php │ │ │ ├── OsmCsvDataCollection.php │ │ │ ├── RouteNameEval.php │ │ │ ├── RouteNameEvalFactory.php │ │ │ ├── RouteNameEvalOsm.php │ │ │ └── RouteNameEvalResult.php │ │ └── WeatherForecast │ │ │ ├── DatabaseCacheInterface.php │ │ │ ├── Location.php │ │ │ └── Strategy │ │ │ ├── DarkSky.php │ │ │ ├── DatabaseCache.php │ │ │ ├── MeteostatNet.php │ │ │ ├── OpenWeatherMap.php │ │ │ ├── StrategyCollection.php │ │ │ └── StrategyInterface.php │ ├── Sports │ │ ├── ClimbCategory │ │ │ └── ClimbCategory.php │ │ ├── ClimbQuantification │ │ │ ├── AbstractAdditiveClimbQuantification.php │ │ │ ├── AdditiveClimbQuantificationInterface.php │ │ │ ├── CategorizableInterface.php │ │ │ ├── ClimbByBikeIndex.php │ │ │ ├── ClimbQuantificationInterface.php │ │ │ ├── CodifavaIndex.php │ │ │ ├── FietsIndex.php │ │ │ └── SaliteIndex.php │ │ ├── ClimbScore │ │ │ └── ClimbScore.php │ │ ├── EnergyExpenditure │ │ │ └── HeartRateBasedEstimator.php │ │ ├── Performance │ │ │ ├── Model │ │ │ │ ├── AbstractModel.php │ │ │ │ ├── BanisterModel.php │ │ │ │ ├── BussoModel.php │ │ │ │ └── TsbModel.php │ │ │ └── Monotony.php │ │ └── Running │ │ │ ├── GradeAdjustedPace │ │ │ ├── Algorithm │ │ │ │ ├── AbstractEnergyCostAlgorithm.php │ │ │ │ └── Minetti.php │ │ │ └── AlgorithmInterface.php │ │ │ ├── MarathonShape.php │ │ │ ├── Prognosis │ │ │ ├── Bock.php │ │ │ ├── Cameron.php │ │ │ ├── PrognosisInterface.php │ │ │ ├── Steffny.php │ │ │ └── VO2max.php │ │ │ └── VO2max │ │ │ ├── Estimation │ │ │ ├── DanielsGilbertFormula.php │ │ │ └── EstimationInterface.php │ │ │ └── VO2maxVelocity.php │ ├── Timezone.php │ ├── Util │ │ ├── File │ │ │ ├── GZipReader.php │ │ │ └── GZipWriter.php │ │ ├── InterfaceChoosable.php │ │ ├── LocalTime.php │ │ ├── ServerParams.php │ │ ├── StringReader.php │ │ └── Time.php │ └── View │ │ ├── Activity │ │ ├── Box │ │ │ ├── AbstractBox.php │ │ │ ├── Distance.php │ │ │ ├── Elevation.php │ │ │ ├── ElevationUpDown.php │ │ │ ├── Energy.php │ │ │ ├── FitAnaerobicTrainingEffect.php │ │ │ ├── FitTrainingEffect.php │ │ │ ├── FlightRatio.php │ │ │ ├── FlightTime.php │ │ │ ├── GradeAdjustedPace.php │ │ │ ├── Gradient.php │ │ │ ├── GroundContactBalance.php │ │ │ ├── MaximalHeartRate.php │ │ │ ├── MaximalHeartRateInBPM.php │ │ │ ├── MaximalHeartRateInPercent.php │ │ │ ├── Pace.php │ │ │ ├── PaceAlternative.php │ │ │ ├── PoolLength.php │ │ │ ├── RPE.php │ │ │ ├── RespirationRate.php │ │ │ ├── Smo2.php │ │ │ ├── Speed.php │ │ │ ├── StrideLength.php │ │ │ ├── Thb.php │ │ │ ├── TotalCadence.php │ │ │ ├── TotalCycles.php │ │ │ ├── Trimp.php │ │ │ ├── ValueBox.php │ │ │ ├── VerticalRatio.php │ │ │ ├── WeatherHumidity.php │ │ │ ├── WeatherPressure.php │ │ │ ├── WeatherWindChillFactor.php │ │ │ ├── WeatherWindDegree.php │ │ │ └── WeatherWindSpeed.php │ │ ├── Context.php │ │ ├── Dataview.php │ │ ├── Feed.php │ │ ├── Linker.php │ │ └── Plot │ │ │ ├── ActivityPlot.php │ │ │ ├── BrakingGs.php │ │ │ ├── Cadence.php │ │ │ ├── Elevation.php │ │ │ ├── ElevationAlgorithms.php │ │ │ ├── FootstrikeType.php │ │ │ ├── GroundContact.php │ │ │ ├── GroundContactBalance.php │ │ │ ├── HRV.php │ │ │ ├── HRVPoincare.php │ │ │ ├── HRVdifferences.php │ │ │ ├── Heartrate.php │ │ │ ├── ImpactGs.php │ │ │ ├── Laps.php │ │ │ ├── LapsComputed.php │ │ │ ├── LapsManual.php │ │ │ ├── Pace.php │ │ │ ├── PaceAndHeartrate.php │ │ │ ├── PaceAndHeartrateAndElevation.php │ │ │ ├── PerformanceCondition.php │ │ │ ├── Power.php │ │ │ ├── PronationExcursion.php │ │ │ ├── RespirationRate.php │ │ │ ├── Series │ │ │ ├── ActivityPointSeries.php │ │ │ ├── ActivitySeries.php │ │ │ ├── BrakingGs.php │ │ │ ├── Cadence.php │ │ │ ├── DataCollector.php │ │ │ ├── DataCollectorForArray.php │ │ │ ├── DataCollectorForStrideLength.php │ │ │ ├── DataCollectorWithRoute.php │ │ │ ├── DataCollectorWithSwimdata.php │ │ │ ├── DistanceSeries.php │ │ │ ├── Elevation.php │ │ │ ├── FootstrikeType.php │ │ │ ├── GradeAdjustedPace.php │ │ │ ├── Gradient.php │ │ │ ├── GroundContact.php │ │ │ ├── GroundContactBalance.php │ │ │ ├── HRV.php │ │ │ ├── HRVdifferencesWithoutAnomalies.php │ │ │ ├── HRVwithoutAnomalies.php │ │ │ ├── Heartrate.php │ │ │ ├── ImpactGs.php │ │ │ ├── Pace.php │ │ │ ├── PaceCumulativeAverage.php │ │ │ ├── PerformanceCondition.php │ │ │ ├── Power.php │ │ │ ├── PronationExcursion.php │ │ │ ├── RespirationRate.php │ │ │ ├── Smo2.php │ │ │ ├── StrideLength.php │ │ │ ├── Stroke.php │ │ │ ├── Swolf.php │ │ │ ├── Swolfcycles.php │ │ │ ├── Temperature.php │ │ │ ├── Thb.php │ │ │ ├── TimeSeries.php │ │ │ ├── VerticalOscillation.php │ │ │ └── VerticalRatio.php │ │ │ ├── Smo2AndThb.php │ │ │ ├── StrideLength.php │ │ │ ├── Stroke.php │ │ │ ├── Swolf.php │ │ │ ├── Swolfcycles.php │ │ │ ├── Temperature.php │ │ │ ├── VerticalOscillation.php │ │ │ └── VerticalRatio.php │ │ ├── Dataset │ │ └── Table.php │ │ ├── Icon.php │ │ ├── Icon │ │ ├── EffectiveVO2maxIcon.php │ │ ├── SportIcon.php │ │ ├── Weather │ │ │ ├── Changeable.php │ │ │ ├── Cloudy.php │ │ │ ├── Fair.php │ │ │ ├── Foggy.php │ │ │ ├── Heavyrain.php │ │ │ ├── Rainy.php │ │ │ ├── Snowing.php │ │ │ ├── Sunny.php │ │ │ ├── Thunderstorm.php │ │ │ ├── Unknown.php │ │ │ └── Windy.php │ │ ├── WeatherIcon.php │ │ └── WindIcon.php │ │ ├── Leaflet │ │ ├── Activity.php │ │ ├── Map.php │ │ └── Route.php │ │ ├── Plot │ │ └── Series.php │ │ ├── RaceResult │ │ └── Dataview.php │ │ ├── RpeColor.php │ │ ├── Splits │ │ └── Table.php │ │ ├── Stresscolor.php │ │ ├── Tooltip.php │ │ └── Window │ │ └── Laps │ │ ├── Form.php │ │ ├── Table.php │ │ └── Window.php ├── data │ ├── class.Splits.php │ ├── class.Sport.php │ └── class.SportFactory.php ├── draw │ ├── class.Plot.php │ ├── class.PlotMonthSumData.php │ ├── class.PlotSumData.php │ └── class.PlotWeekSumData.php ├── html │ ├── class.Ajax.php │ ├── class.BoxedValue.php │ ├── class.HTML.php │ ├── class.HtmlTag.php │ ├── class.Icon.php │ ├── class.ProgressBar.php │ ├── class.ProgressBarSingle.php │ └── formular │ │ ├── class.Formular.php │ │ ├── class.FormularCheckbox.php │ │ ├── class.FormularField.php │ │ ├── class.FormularFieldset.php │ │ ├── class.FormularInput.php │ │ ├── class.FormularInputDate.php │ │ ├── class.FormularInputHidden.php │ │ ├── class.FormularInputNumber.php │ │ ├── class.FormularInputWithEqualityOption.php │ │ ├── class.FormularSelectBox.php │ │ ├── class.FormularSelectDb.php │ │ ├── class.FormularSubmit.php │ │ ├── class.FormularTextarea.php │ │ ├── class.FormularUnit.php │ │ └── class.FormularValueParser.php ├── import │ └── class.ImporterWindow.php ├── install │ ├── MySQLEvents.sql │ └── structure.sql ├── plugin │ ├── class.Plugin.php │ ├── class.PluginFactory.php │ ├── class.PluginInstaller.php │ ├── class.PluginPanel.php │ ├── class.PluginStat.php │ ├── class.PluginType.php │ └── config │ │ ├── class.PluginConfiguration.php │ │ ├── class.PluginConfigurationValue.php │ │ ├── class.PluginConfigurationValueArray.php │ │ ├── class.PluginConfigurationValueBool.php │ │ ├── class.PluginConfigurationValueDistance.php │ │ ├── class.PluginConfigurationValueDistances.php │ │ ├── class.PluginConfigurationValueFloat.php │ │ ├── class.PluginConfigurationValueHiddenArray.php │ │ ├── class.PluginConfigurationValueInt.php │ │ ├── class.PluginConfigurationValueSelect.php │ │ └── class.PluginConfigurationWindow.php ├── system │ ├── class.Cache.php │ ├── class.DB.php │ ├── class.PDOforRunalyze.php │ ├── class.Request.php │ ├── class.SessionAccountHandler.php │ ├── class.SharedLinker.php │ ├── class.System.php │ ├── config │ │ ├── class.ConfigTab.php │ │ ├── class.ConfigTabGeneral.php │ │ ├── class.ConfigTabPlugins.php │ │ └── class.ConfigTabs.php │ ├── define.chmod.php │ └── define.consts.php ├── tpl │ ├── tpl.DataBrowser.php │ ├── tpl.Frontend.footer.php │ └── tpl.Frontend.header.php └── training │ ├── formular │ └── class.TrainingSelectWeather.php │ ├── search │ ├── class.FormularInputSearchTimeRange.php │ ├── class.FormularSelectSearchSort.php │ ├── class.SearchFormular.php │ ├── class.SearchLink.php │ └── class.SearchResults.php │ └── view │ ├── class.ElevationInfo.php │ ├── class.TrainingView.php │ ├── class.TrainingViewSection.php │ ├── class.TrainingViewSectionRow.php │ ├── class.TrainingViewSectionRowAbstract.php │ ├── class.TrainingViewSectionRowFullwidth.php │ ├── class.TrainingViewSectionRowOnlyText.php │ ├── class.TrainingViewSectionRowTabbedPlot.php │ ├── class.TrainingViewSectionTabbed.php │ ├── class.TrainingViewSectionTabbedPlot.php │ └── section │ ├── class.SectionComposite.php │ ├── class.SectionCompositeRow.php │ ├── class.SectionHRV.php │ ├── class.SectionHRVRow.php │ ├── class.SectionHeartrate.php │ ├── class.SectionHeartrateRow.php │ ├── class.SectionLaps.php │ ├── class.SectionLapsRowComputed.php │ ├── class.SectionLapsRowManual.php │ ├── class.SectionLapsRowPaceGoal.php │ ├── class.SectionMiscellaneous.php │ ├── class.SectionMiscellaneousRow.php │ ├── class.SectionOverview.php │ ├── class.SectionOverviewRow.php │ ├── class.SectionPace.php │ ├── class.SectionPaceRow.php │ ├── class.SectionRoute.php │ ├── class.SectionRouteOnlyElevation.php │ ├── class.SectionRouteOnlyMap.php │ ├── class.SectionRouteRowElevation.php │ ├── class.SectionRouteRowMap.php │ ├── class.SectionRunScribeData.php │ ├── class.SectionRunScribeDataRow.php │ ├── class.SectionRunningDynamics.php │ ├── class.SectionRunningDynamicsRow.php │ ├── class.SectionSwimLane.php │ ├── class.SectionSwimLaneRow.php │ └── table │ ├── class.TableLaps.php │ ├── class.TableLapsAbstract.php │ ├── class.TableLapsComputed.php │ ├── class.TablePaceGoal.php │ ├── class.TablePauses.php │ ├── class.TableSwimLane.php │ ├── class.TableSwimLaneAggregateInterval.php │ ├── class.TableZonesAbstract.php │ ├── class.TableZonesHeartrate.php │ └── class.TableZonesPace.php ├── lib ├── bootstrap-tooltip.js ├── fineuploader-3.5.0.min.js ├── flot-0.8.3 │ ├── LICENSE.txt │ ├── base64.js │ ├── excanvas.min.js │ ├── jquery.colorhelpers.js │ ├── jquery.colorhelpers.min.js │ ├── jquery.flot.canvas.js │ ├── jquery.flot.canvas.min.js │ ├── jquery.flot.crosshair.js │ ├── jquery.flot.curvedLines.js │ ├── jquery.flot.hiddengraphs.js │ ├── jquery.flot.js │ ├── jquery.flot.min.js │ ├── jquery.flot.navigate.js │ ├── jquery.flot.navigate.min.js │ ├── jquery.flot.orderBars.js │ ├── jquery.flot.pie.js │ ├── jquery.flot.pie.min.js │ ├── jquery.flot.resize.js │ ├── jquery.flot.resize.min.js │ ├── jquery.flot.selection.js │ ├── jquery.flot.selection.min.js │ ├── jquery.flot.stack.js │ ├── jquery.flot.text.js │ ├── jquery.flot.textLegend.js │ ├── jquery.flot.time.js │ └── jquery.flot.time.min.js ├── geohash.js ├── jquery.chosen.min.js ├── jquery.datepicker.js ├── jquery.form.include.php ├── jquery.metadata.js ├── leaflet │ ├── runalyze.leaflet.js │ ├── runalyze.leaflet.layers.js │ └── runalyze.leaflet.routes.js ├── less │ ├── chosen.less │ ├── runalyze-barchart.less │ ├── runalyze-blocklist.less │ ├── runalyze-boxedvalues.less │ ├── runalyze-climbs.less │ ├── runalyze-colors.less │ ├── runalyze-config.less │ ├── runalyze-container.less │ ├── runalyze-content.less │ ├── runalyze-d3js-race-performance-chart.less │ ├── runalyze-d3js.less │ ├── runalyze-datepicker.less │ ├── runalyze-flot.less │ ├── runalyze-fonticonpicker.less │ ├── runalyze-formulars.less │ ├── runalyze-headline.less │ ├── runalyze-icons.less │ ├── runalyze-installer.less │ ├── runalyze-leaflet.less │ ├── runalyze-mixins.less │ ├── runalyze-mobile.less │ ├── runalyze-overlay.less │ ├── runalyze-pace.less │ ├── runalyze-progressbar.less │ ├── runalyze-shared.less │ ├── runalyze-sprites.less │ ├── runalyze-style.less │ ├── runalyze-table.less │ ├── runalyze-tooltip.less │ └── runalyze-training.less ├── runalyze.lib.activity.form.js ├── runalyze.lib.common.js ├── runalyze.lib.config.js ├── runalyze.lib.databrowser.js ├── runalyze.lib.feature.js ├── runalyze.lib.formatter.js ├── runalyze.lib.js ├── runalyze.lib.notifications.js ├── runalyze.lib.options.js ├── runalyze.lib.overlay.js ├── runalyze.lib.panels.js ├── runalyze.lib.plot.events.js ├── runalyze.lib.plot.flot.js ├── runalyze.lib.plot.js ├── runalyze.lib.plot.options.js ├── runalyze.lib.plot.saver.js ├── runalyze.lib.sport.js ├── runalyze.lib.statistics.js ├── runalyze.lib.tablesorter.js └── runalyze.lib.training.js ├── package.json ├── plugin ├── RunalyzePluginPanel_Equipment │ └── class.RunalyzePluginPanel_Equipment.php ├── RunalyzePluginPanel_Prognose │ ├── Plot.Form.php │ ├── class.Prognose_PrognosisWindow.php │ ├── class.RunalyzePluginPanel_Prognose.php │ ├── window.php │ └── window.plot.php ├── RunalyzePluginPanel_Rechenspiele │ ├── Plot.Form.php │ ├── class.RunalyzePluginPanel_Rechenspiele.php │ ├── window.php │ └── window.plot.php ├── RunalyzePluginPanel_Sportler │ ├── Plot.analyse.php │ ├── Plot.gewicht.php │ └── class.RunalyzePluginPanel_Sportler.php ├── RunalyzePluginPanel_Sports │ └── class.RunalyzePluginPanel_Sports.php ├── RunalyzePluginPanel_TagsSummary │ └── class.RunalyzePluginPanel_TagsSummary.php ├── RunalyzePluginPanel_Ziele │ └── class.RunalyzePluginPanel_Ziele.php ├── RunalyzePluginStat_Analyse │ └── class.RunalyzePluginStat_Analyse.php ├── RunalyzePluginStat_Hoehenmeter │ └── class.RunalyzePluginStat_Hoehenmeter.php ├── RunalyzePluginStat_MonthlyStats │ └── class.RunalyzePluginStat_MonthlyStats.php ├── RunalyzePluginStat_Rekorde │ └── class.RunalyzePluginStat_Rekorde.php ├── RunalyzePluginStat_Statistiken │ ├── class.RunalyzePluginStat_Statistiken.php │ ├── class.SummaryTable.php │ ├── class.SummaryTable10Weeks.php │ ├── class.SummaryTableAllWeeks.php │ ├── class.SummaryTableAllYears.php │ └── class.SummaryTableMonths.php ├── RunalyzePluginStat_Strecken │ ├── class.RunalyzePluginStat_Strecken.php │ └── window.routenet.php ├── RunalyzePluginStat_Tag │ └── class.RunalyzePluginStat_Tag.php ├── RunalyzePluginStat_Trainingspartner │ └── class.RunalyzePluginStat_Trainingspartner.php ├── RunalyzePluginStat_Trainingszeiten │ ├── Plot.Daytime.php │ ├── Plot.Weekday.php │ └── class.RunalyzePluginStat_Trainingszeiten.php ├── RunalyzePluginStat_Wetter │ ├── MinMaxTableForEquipment.php │ ├── MonthwiseTable.php │ ├── Plot.Average.php │ ├── Plot.Year.php │ ├── class.RunalyzePluginStat_Wetter.php │ └── window.php └── RunalyzePluginStat_Wettkampf │ ├── Plot.Bestzeit.php │ ├── RaceContainer.php │ └── class.RunalyzePluginStat_Wettkampf.php ├── resources.json ├── src ├── CoreBundle │ ├── ArgumentResolver │ │ └── AccountValueResolver.php │ ├── Bridge │ │ └── Activity │ │ │ └── Calculation │ │ │ ├── ClimbFinder.php │ │ │ ├── ClimbScoreCalculator.php │ │ │ ├── ElevationCalculator.php │ │ │ ├── FlatOrHillyAnalyzer.php │ │ │ ├── GradientCalculator.php │ │ │ ├── NightDetector.php │ │ │ ├── PaceCalculator.php │ │ │ ├── PowerCalculator.php │ │ │ ├── TrimpCalculator.php │ │ │ └── VO2maxCalculator.php │ ├── Command │ │ ├── ActivityBulkImportCommand.php │ │ ├── ActivityBulkRouteNameEvaluationCommand.php │ │ ├── CleanupBackupCommand.php │ │ ├── CleanupPostersCommand.php │ │ ├── CleanupRegistrationsCommand.php │ │ ├── CreateNotificationCommand.php │ │ ├── DeleteExpiredNotificationsCommand.php │ │ ├── InstallCheckCommand.php │ │ ├── InstallCommand.php │ │ ├── InstallDatabaseCommand.php │ │ ├── InstallFilesystemCommand.php │ │ ├── MailingCommand.php │ │ └── QueueConsumeCommand.php │ ├── Component │ │ ├── Account │ │ │ └── Registration.php │ │ ├── Activity │ │ │ ├── ActivityContext.php │ │ │ ├── ActivityContextAdapter.php │ │ │ ├── ActivityDecorator.php │ │ │ ├── ActivityPreview.php │ │ │ ├── Tool │ │ │ │ ├── BestSubSegmentsStatistics.php │ │ │ │ └── TimeSeriesStatistics.php │ │ │ └── VO2maxCalculationDetailsDecorator.php │ │ ├── Configuration │ │ │ ├── Category │ │ │ │ ├── AbstractCategory.php │ │ │ │ ├── ActivityForm.php │ │ │ │ ├── ActivityView.php │ │ │ │ ├── BasicEndurance.php │ │ │ │ ├── Data.php │ │ │ │ ├── DataBrowser.php │ │ │ │ ├── Design.php │ │ │ │ ├── General.php │ │ │ │ ├── Privacy.php │ │ │ │ ├── Trimp.php │ │ │ │ └── VO2max.php │ │ │ ├── ConfigurationList.php │ │ │ ├── RunalyzeConfigurationList.php │ │ │ └── UnitSystem.php │ │ ├── Notifications │ │ │ ├── Message │ │ │ │ ├── BackupReadyMessage.php │ │ │ │ ├── MessageInterface.php │ │ │ │ ├── PosterGeneratedMessage.php │ │ │ │ └── TemplateBasedMessage.php │ │ │ └── MessageFactory.php │ │ ├── Statistics │ │ │ └── MonthlyStats │ │ │ │ ├── AnalysisData.php │ │ │ │ └── AnalysisSelection.php │ │ ├── Tool │ │ │ ├── Anova │ │ │ │ ├── AnovaDataQuery.php │ │ │ │ ├── QueryGroup │ │ │ │ │ ├── EquipmentType.php │ │ │ │ │ ├── Month.php │ │ │ │ │ ├── QueryGroupInterface.php │ │ │ │ │ ├── QueryGroups.php │ │ │ │ │ ├── Sport.php │ │ │ │ │ ├── Type.php │ │ │ │ │ └── Year.php │ │ │ │ └── QueryValue │ │ │ │ │ ├── AbstractOneColumnValue.php │ │ │ │ │ ├── BrakingGsLeft.php │ │ │ │ │ ├── BrakingGsRight.php │ │ │ │ │ ├── Cadence.php │ │ │ │ │ ├── ClimbScore.php │ │ │ │ │ ├── Distance.php │ │ │ │ │ ├── Duration.php │ │ │ │ │ ├── FitHrvAnalysis.php │ │ │ │ │ ├── FitPerformanceConditionEnd.php │ │ │ │ │ ├── FitPerformanceConditionStart.php │ │ │ │ │ ├── FitRecoveryTime.php │ │ │ │ │ ├── FitTrainingEffect.php │ │ │ │ │ ├── FitVo2maxEstimate.php │ │ │ │ │ ├── FlightRatio.php │ │ │ │ │ ├── FlightTime.php │ │ │ │ │ ├── FootstrikeTypeLeft.php │ │ │ │ │ ├── FootstrikeTypeRight.php │ │ │ │ │ ├── GroundContactBalance.php │ │ │ │ │ ├── GroundContactTime.php │ │ │ │ │ ├── HeartRateAverage.php │ │ │ │ │ ├── HeartRateMaximum.php │ │ │ │ │ ├── ImpactGsLeft.php │ │ │ │ │ ├── ImpactGsRight.php │ │ │ │ │ ├── Pace.php │ │ │ │ │ ├── PercentageHilly.php │ │ │ │ │ ├── Power.php │ │ │ │ │ ├── PronationExcursionLeft.php │ │ │ │ │ ├── PronationExcursionRight.php │ │ │ │ │ ├── QueryValueInterface.php │ │ │ │ │ ├── QueryValues.php │ │ │ │ │ ├── Rpe.php │ │ │ │ │ ├── Trimp.php │ │ │ │ │ ├── VerticalOscillation.php │ │ │ │ │ ├── Vo2max.php │ │ │ │ │ ├── Vo2maxWithElevation.php │ │ │ │ │ ├── WeatherHumidity.php │ │ │ │ │ ├── WeatherPressure.php │ │ │ │ │ ├── WeatherTemperature.php │ │ │ │ │ └── WeatherWindSpeed.php │ │ │ ├── Backup │ │ │ │ ├── AbstractBackup.php │ │ │ │ ├── BulkInserter.php │ │ │ │ ├── FilenameHandler.php │ │ │ │ ├── JsonBackup.php │ │ │ │ ├── JsonBackupAnalyzer.php │ │ │ │ ├── JsonImporter.php │ │ │ │ ├── JsonImporterResults.php │ │ │ │ └── SqlBackup.php │ │ │ ├── DatabaseCleanup │ │ │ │ ├── ElevationsRecalculator.php │ │ │ │ ├── Job.php │ │ │ │ ├── JobGeneral.php │ │ │ │ └── JobLoop.php │ │ │ ├── Poster │ │ │ │ ├── Availability.php │ │ │ │ ├── Converter │ │ │ │ │ ├── AbstractSvgToPngConverter.php │ │ │ │ │ ├── InkscapeConverter.php │ │ │ │ │ └── RsvgConverter.php │ │ │ │ ├── FileHandler.php │ │ │ │ ├── GenerateJsonData.php │ │ │ │ └── GeneratePoster.php │ │ │ ├── TrendAnalysis │ │ │ │ └── TrendAnalysisDataQuery.php │ │ │ └── VO2maxAnalysis │ │ │ │ ├── RaceAnalysis.php │ │ │ │ └── VO2maxAnalysis.php │ │ └── VariablesContainerTrait.php │ ├── Console │ │ └── Formatter │ │ │ └── HtmlOutputFormatter.php │ ├── Controller │ │ ├── AbstractPluginsAwareController.php │ │ ├── AccountController.php │ │ ├── Activity │ │ │ ├── CreateController.php │ │ │ ├── EditController.php │ │ │ ├── ExportController.php │ │ │ └── ViewController.php │ │ ├── CallController.php │ │ ├── DefaultController.php │ │ ├── ExternalRestApi │ │ │ └── ImportActivityController.php │ │ ├── InstallController.php │ │ ├── Internal │ │ │ ├── ActivityMatcherController.php │ │ │ ├── Data │ │ │ │ └── RaceResultsController.php │ │ │ ├── NotificationsController.php │ │ │ ├── PanelController.php │ │ │ ├── PluginController.php │ │ │ ├── Service │ │ │ │ └── WeatherController.php │ │ │ └── UploadController.php │ │ ├── My │ │ │ ├── BodyValuesController.php │ │ │ ├── EquipmentController.php │ │ │ ├── RaceResultController.php │ │ │ └── Tools │ │ │ │ ├── BackupToolController.php │ │ │ │ ├── JsonImportToolController.php │ │ │ │ └── ToolsController.php │ │ ├── NotificationsController.php │ │ ├── PluginController.php │ │ ├── Settings │ │ │ ├── PrivacyController.php │ │ │ ├── SettingsController.php │ │ │ ├── SportController.php │ │ │ └── TagsController.php │ │ ├── SharedController.php │ │ ├── StaticController.php │ │ └── UpdateController.php │ ├── CoreBundle.php │ ├── DependencyInjection │ │ └── Compiler │ │ │ └── OverrideServiceCompilerPass.php │ ├── Doctrine │ │ ├── Hydrator │ │ │ └── ColumnHydrator.php │ │ └── Types │ │ │ ├── CastedDecimalScale1Type.php │ │ │ ├── CastedDecimalScale2Type.php │ │ │ ├── GeohashArray.php │ │ │ ├── PipeDelimitedArray.php │ │ │ ├── PipeDelimitedArrayString.php │ │ │ ├── RunalyzePauseArray.php │ │ │ ├── RunalyzeRoundArray.php │ │ │ └── TinyIntType.php │ ├── Entity │ │ ├── Account.php │ │ ├── AccountRepository.php │ │ ├── Adapter │ │ │ ├── ActivityAdapter.php │ │ │ ├── RouteAdapter.php │ │ │ └── TrackDataAdapter.php │ │ ├── Common │ │ │ ├── AccountRelatedEntityInterface.php │ │ │ ├── IdentifiableEntityInterface.php │ │ │ └── NamedEntityInterface.php │ │ ├── Conf.php │ │ ├── ConfRepository.php │ │ ├── Dataset.php │ │ ├── DatasetRepository.php │ │ ├── Equipment.php │ │ ├── EquipmentRepository.php │ │ ├── EquipmentType.php │ │ ├── EquipmentTypeRepository.php │ │ ├── Hrv.php │ │ ├── HrvRepository.php │ │ ├── MigrationVersions.php │ │ ├── Notification.php │ │ ├── NotificationRepository.php │ │ ├── Plugin.php │ │ ├── PluginConf.php │ │ ├── PluginConfRepository.php │ │ ├── PluginRepository.php │ │ ├── Raceresult.php │ │ ├── RaceresultRepository.php │ │ ├── Route.php │ │ ├── RouteRepository.php │ │ ├── Sport.php │ │ ├── SportRepository.php │ │ ├── Swimdata.php │ │ ├── SwimdataRepository.php │ │ ├── Tag.php │ │ ├── TagRepository.php │ │ ├── Trackdata.php │ │ ├── TrackdataRepository.php │ │ ├── Training.php │ │ ├── TrainingRepository.php │ │ ├── Type.php │ │ ├── TypeRepository.php │ │ ├── User.php │ │ ├── UserRepository.php │ │ ├── Weathercache.php │ │ └── WeathercacheRepository.php │ ├── EntityListener │ │ ├── ActivityListener.php │ │ ├── EquipmentUpdateSubscriber.php │ │ ├── RaceResultListener.php │ │ ├── RouteListener.php │ │ └── UserListener.php │ ├── EventListener │ │ ├── AccountLastActionListener.php │ │ ├── ConsoleErrorStatusListener.php │ │ ├── ConsoleExceptionListener.php │ │ ├── LocaleListener.php │ │ ├── MaintenanceListener.php │ │ ├── RecalculationTasksPerformerListener.php │ │ ├── SecurityExceptionListener.php │ │ ├── SwitchUserListener.php │ │ ├── TablePrefixSubscriber.php │ │ ├── UserLocaleListener.php │ │ └── UserTimezoneListener.php │ ├── Form │ │ ├── AbstractTokenStorageAwareType.php │ │ ├── ActivityType.php │ │ ├── BodyValuesType.php │ │ ├── ConfigurationManagerAwareTrait.php │ │ ├── EquipmentCategoryType.php │ │ ├── EquipmentType.php │ │ ├── FeedbackType.php │ │ ├── MultiImporterType.php │ │ ├── RaceResultType.php │ │ ├── RecoverPasswordType.php │ │ ├── RegistrationType.php │ │ ├── Settings │ │ │ ├── AccountType.php │ │ │ ├── ChangeMailType.php │ │ │ ├── ChangePasswordType.php │ │ │ ├── DatasetCollectionType.php │ │ │ ├── DatasetType.php │ │ │ ├── PrivacyData.php │ │ │ ├── PrivacyType.php │ │ │ ├── SportType.php │ │ │ ├── SportTypeType.php │ │ │ └── TagType.php │ │ ├── TokenStorageAwareTypeTrait.php │ │ ├── Tools │ │ │ ├── Anova │ │ │ │ ├── AnovaData.php │ │ │ │ └── AnovaType.php │ │ │ ├── BackupExportType.php │ │ │ ├── BackupImportType.php │ │ │ ├── DatabaseCleanupType.php │ │ │ ├── PosterType.php │ │ │ └── TrendAnalysis │ │ │ │ ├── TrendAnalysisData.php │ │ │ │ └── TrendAnalysisType.php │ │ └── Type │ │ │ ├── AbstractUnitBasedType.php │ │ │ ├── ActivityEquipmentType.php │ │ │ ├── ActivityLapIntensityChoiceType.php │ │ │ ├── ActivityRoundType.php │ │ │ ├── ActivityTypeChoiceType.php │ │ │ ├── CadenceType.php │ │ │ ├── DistanceType.php │ │ │ ├── DurationNullableType.php │ │ │ ├── DurationType.php │ │ │ ├── ElevationType.php │ │ │ ├── EnergyKcalType.php │ │ │ ├── EnergyType.php │ │ │ ├── HeartRateType.php │ │ │ ├── HrZoneBoundType.php │ │ │ ├── HumidityType.php │ │ │ ├── PercentageType.php │ │ │ ├── PowerType.php │ │ │ ├── PressureType.php │ │ │ ├── RpeType.php │ │ │ ├── SportChoiceType.php │ │ │ ├── TemperatureType.php │ │ │ ├── UnitPlaceholderType.php │ │ │ ├── WeatherConditionType.php │ │ │ ├── WeightType.php │ │ │ ├── WindDirectionType.php │ │ │ └── WindSpeedType.php │ ├── Model │ │ ├── Account │ │ │ └── AccountStatistics.php │ │ ├── Equipment │ │ │ ├── EquipmentStatistic.php │ │ │ └── EquipmentStatistics.php │ │ ├── Sport │ │ │ ├── SportStatistic.php │ │ │ └── SportStatistics.php │ │ └── Trackdata │ │ │ └── Climb │ │ │ ├── Climb.php │ │ │ ├── ClimbCollection.php │ │ │ └── ClimbProfile.php │ ├── Queue │ │ └── Receiver │ │ │ ├── BackupReceiver.php │ │ │ └── PosterReceiver.php │ ├── Services │ │ ├── AccountMailer.php │ │ ├── Activity │ │ │ ├── ActivityContextFactory.php │ │ │ ├── AgeGradeLookup.php │ │ │ └── DataSeriesRemover.php │ │ ├── AutomaticReloadFlagSetter.php │ │ ├── Configuration │ │ │ ├── ConfigurationManager.php │ │ │ └── ConfigurationUpdater.php │ │ ├── Import │ │ │ ├── ActivityCache.php │ │ │ ├── ActivityContextAdapterFactory.php │ │ │ ├── ActivityDataContainerFilter.php │ │ │ ├── ActivityDataContainerToActivityContextConverter.php │ │ │ ├── DuplicateFinder.php │ │ │ ├── ElevationCorrection.php │ │ │ ├── FileImportResult.php │ │ │ ├── FileImportResultCollection.php │ │ │ ├── FileImporter.php │ │ │ ├── GeoTiffReader.php │ │ │ ├── TimezoneLookup.php │ │ │ ├── TimezoneLookupException.php │ │ │ ├── WeatherDataToActivityConverter.php │ │ │ └── WeatherForecast.php │ │ ├── LegacyCache.php │ │ ├── PrivacyGuard.php │ │ ├── Recalculation │ │ │ ├── RecalculationManager.php │ │ │ ├── RecalculationTaskCollection.php │ │ │ ├── RecalculationTaskInterface.php │ │ │ └── Task │ │ │ │ ├── AccountAwareTaskTrait.php │ │ │ │ ├── MarathonShapeCalculation.php │ │ │ │ ├── StartTimeCalculation.php │ │ │ │ ├── VO2maxCorrectionFactorCalculation.php │ │ │ │ └── VO2maxShapeCalculation.php │ │ ├── Selection │ │ │ ├── Selection.php │ │ │ └── SportSelectionFactory.php │ │ ├── SessionRequestProcessor.php │ │ ├── Sha256SaltedEncoder.php │ │ ├── TokenStorageAwareServiceTrait.php │ │ └── UnitSystemFactory.php │ ├── Twig │ │ ├── AutomaticReloadFlagExtension.php │ │ ├── ConfigurationExtension.php │ │ ├── DisplayablePace.php │ │ ├── DisplayableTime.php │ │ ├── DisplayableVO2max.php │ │ ├── DisplayableValue.php │ │ ├── DisplayableValueInPercent.php │ │ ├── HtmlExtension.php │ │ ├── UtilityExtension.php │ │ └── ValueExtension.php │ └── Validator │ │ └── Constraints │ │ ├── ContainsDisposableMailAddress.php │ │ ├── ContainsDisposableMailAddressValidator.php │ │ ├── IsValidTimezone.php │ │ └── IsValidTimezoneValidator.php └── functions.php ├── tests ├── CoreBundle │ ├── Bridge │ │ └── Activity │ │ │ └── Calculation │ │ │ ├── FlatOrHillyAnalyzerTest.php │ │ │ ├── NightDetectorTest.php │ │ │ ├── PowerCalculatorTest.php │ │ │ ├── TrimpCalculatorTest.php │ │ │ └── VO2maxCalculatorTest.php │ ├── Command │ │ └── InstallDatabaseCommandTest.php │ ├── Component │ │ ├── Account │ │ │ └── RegistrationTest.php │ │ ├── Configuration │ │ │ ├── Category │ │ │ │ ├── ActivityFormTest.php │ │ │ │ └── BasicEnduranceTest.php │ │ │ ├── RunalyzeConfigurationListTest.php │ │ │ └── UnitSystemTest.php │ │ ├── Notifications │ │ │ └── Message │ │ │ │ └── TemplateBasedMessageTest.php │ │ ├── Statistics │ │ │ └── MonthlyStats │ │ │ │ └── AnalysisDataTest.php │ │ ├── Tool │ │ │ ├── Backup │ │ │ │ ├── AbstractBackupTest.php │ │ │ │ ├── FilenameHandlerTest.php │ │ │ │ ├── JsonBackupAnalyzerTest.php │ │ │ │ └── JsonImporterTest.php │ │ │ ├── Configuration │ │ │ │ └── ConfigurationListTest.php │ │ │ └── DatabaseCleanup │ │ │ │ ├── ElevationsRecalculatorTest.php │ │ │ │ └── JobLoopTest.php │ │ └── VariablesContainerTraitTest.php │ ├── Controller │ │ ├── Internal │ │ │ └── NotificationsControllerTest.php │ │ └── My │ │ │ ├── BodyValuesControllerTest.php │ │ │ └── EquipmentControllerTest.php │ ├── DataFixtures │ │ ├── AbstractFixturesAwareWebTestCase.php │ │ ├── ORM │ │ │ └── LoadAccountData.php │ │ └── messages │ │ │ └── test-message.yml │ ├── Doctrine │ │ └── Types │ │ │ ├── GeohashArrayTest.php │ │ │ ├── PipeDelimitedArrayTest.php │ │ │ ├── RunalyzePauseArrayTest.php │ │ │ ├── RunalyzeRoundArrayTest.php │ │ │ └── TinyIntTypeTest.php │ ├── Entity │ │ ├── AbstractRepositoryTestCase.php │ │ ├── AccountRepositoryTest.php │ │ ├── AccountTest.php │ │ ├── Adapter │ │ │ └── ActivityAdapterTest.php │ │ ├── ConfRepositoryTest.php │ │ ├── EquipmentRepositoryTest.php │ │ ├── NotificationRepositoryTest.php │ │ ├── NotificationTest.php │ │ ├── PluginRepositoryTest.php │ │ ├── PluginTest.php │ │ ├── RaceresultRepositoryTest.php │ │ ├── RouteRepositoryTest.php │ │ ├── RouteTest.php │ │ ├── SportRepositoryTest.php │ │ ├── SportTest.php │ │ ├── SwimdataTest.php │ │ ├── TrackdataTest.php │ │ ├── TrainingRepositoryTest.php │ │ ├── TrainingTest.php │ │ ├── UserRepositoryTest.php │ │ └── WeathercacheRepositoryTest.php │ ├── Form │ │ └── Type │ │ │ ├── AbstractUnitBasedTypeTest.php │ │ │ ├── DistanceTypeTest.php │ │ │ ├── DurationNullableTypeTest.php │ │ │ ├── DurationTypeTest.php │ │ │ ├── TemperatureTypeTest.php │ │ │ └── WindSpeedTypeTest.php │ ├── Model │ │ └── Trackdata │ │ │ └── Climb │ │ │ ├── ClimbProfileTest.php │ │ │ └── ClimbTest.php │ ├── Services │ │ ├── AutomaticReloadFlagSetterTest.php │ │ ├── Configuration │ │ │ └── ConfigurationManagerTest.php │ │ ├── Import │ │ │ ├── ActivityCacheTest.php │ │ │ ├── ActivityDataContainerToActivityContextConverterTest.php │ │ │ ├── FileImportResultCollectionTest.php │ │ │ ├── FileImportResultTest.php │ │ │ ├── FileImporterTest.php │ │ │ └── TimezoneLookupTest.php │ │ ├── Recalculation │ │ │ └── RecalculationManagerTest.php │ │ ├── RouteNameEvaluation │ │ │ ├── OsmCsvDataCollectionTest.php │ │ │ ├── RouteNameEvalOsmTest.php │ │ │ └── RouteNameEvalResultTest.php │ │ ├── Selection │ │ │ └── SelectionTest.php │ │ └── Sha256SaltedEncoderTest.php │ └── Twig │ │ ├── HtmlExtensionTest.php │ │ ├── UtilityExtensionTest.php │ │ └── ValueExtensionTest.php ├── bootstrap.php ├── config.xml ├── fake │ └── FakeContext.php ├── inc │ ├── HelperTest.php │ ├── core │ │ ├── Activity │ │ │ ├── DistanceTest.php │ │ │ ├── DuplicateFinderTest.php │ │ │ ├── DurationTest.php │ │ │ ├── ElevationTest.php │ │ │ ├── EnergyTest.php │ │ │ ├── GroundcontactBalanceTest.php │ │ │ ├── HeartRateTest.php │ │ │ ├── PaceTest.php │ │ │ ├── PaceUnit │ │ │ │ ├── KmPerHourTest.php │ │ │ │ ├── MeterPerSecondTest.php │ │ │ │ ├── MilesPerHourTest.php │ │ │ │ ├── MinPer100mTest.php │ │ │ │ ├── MinPer100yTest.php │ │ │ │ ├── MinPer500mTest.php │ │ │ │ ├── MinPer500yTest.php │ │ │ │ ├── MinPerKilometerTest.php │ │ │ │ └── MinPerMileTest.php │ │ │ ├── PerformanceConditionTest.php │ │ │ ├── PersonalBestTest.php │ │ │ ├── PoolLengthTest.php │ │ │ ├── StrideLengthTest.php │ │ │ ├── TemperatureTest.php │ │ │ ├── TrainingEffectLevelTest.php │ │ │ ├── TrainingEffectTest.php │ │ │ ├── VerticalRatioTest.php │ │ │ └── WeightTest.php │ │ ├── AthleteTest.php │ │ ├── Calculation │ │ │ ├── Activity │ │ │ │ ├── CalculatorTest.php │ │ │ │ ├── HrZonesCalculatorTest.php │ │ │ │ ├── PaceCalculatorTest.php │ │ │ │ ├── PaceSmootherTest.php │ │ │ │ └── VerticalRatioCalculatorTest.php │ │ │ ├── BasicEnduranceTest.php │ │ │ ├── Distribution │ │ │ │ ├── TimeSeriesForTrackdataTest.php │ │ │ │ └── TrackdataAveragesTest.php │ │ │ ├── Elevation │ │ │ │ ├── CalculatorTest.php │ │ │ │ ├── DistanceModifierTest.php │ │ │ │ └── Strategy │ │ │ │ │ ├── DouglasPeuckerTest.php │ │ │ │ │ ├── ReumannWitkamTest.php │ │ │ │ │ └── ThresholdTest.php │ │ │ ├── HRV │ │ │ │ └── CalculatorTest.php │ │ │ ├── JD │ │ │ │ ├── LegacyEffectiveVO2maxTest.php │ │ │ │ └── ShapeTest.php │ │ │ ├── Math │ │ │ │ ├── MovingAverage │ │ │ │ │ ├── AbstractMovingAverageTest.php │ │ │ │ │ ├── CumulativeTest.php │ │ │ │ │ ├── ExponentialTest.php │ │ │ │ │ ├── Kernel │ │ │ │ │ │ ├── AbstractKernelTest.php │ │ │ │ │ │ ├── CosineTest.php │ │ │ │ │ │ ├── EpanechnikovTest.php │ │ │ │ │ │ ├── GaussianTest.php │ │ │ │ │ │ ├── KernelsTest.php │ │ │ │ │ │ ├── LogisticTest.php │ │ │ │ │ │ ├── QuarticTest.php │ │ │ │ │ │ ├── TriangularTest.php │ │ │ │ │ │ ├── TricubeTest.php │ │ │ │ │ │ ├── TriweightTest.php │ │ │ │ │ │ └── UniformTest.php │ │ │ │ │ └── WithKernelTest.php │ │ │ │ └── SubSegmentMaximizationTest.php │ │ │ ├── NightDetectorTest.php │ │ │ ├── Performance │ │ │ │ ├── MaximumCalculatorTest.php │ │ │ │ └── ModelQueryTest.php │ │ │ ├── Power │ │ │ │ └── CalculatorTest.php │ │ │ ├── Route │ │ │ │ ├── GeohashLineTest.php │ │ │ │ └── GradientTest.php │ │ │ ├── StrideLength │ │ │ │ └── CalculatorTest.php │ │ │ └── Trimp │ │ │ │ ├── CalculatorTest.php │ │ │ │ ├── DataCollectorTest.php │ │ │ │ └── InverseCalculatorTest.php │ │ ├── Configuration │ │ │ ├── CategoryTest.php │ │ │ └── HandleTest.php │ │ ├── ConfigurationTest.php │ │ ├── Data │ │ │ ├── Cadence │ │ │ │ ├── GeneralTest.php │ │ │ │ └── RunningTest.php │ │ │ ├── Laps │ │ │ │ ├── CalculatorTest.php │ │ │ │ └── SplitsReaderTest.php │ │ │ └── Weather │ │ │ │ ├── BeaufortScaleTest.php │ │ │ │ ├── CardinalDirectionTest.php │ │ │ │ ├── ConditionTest.php │ │ │ │ ├── HeatIndexEffectTest.php │ │ │ │ ├── HeatIndexTest.php │ │ │ │ ├── HumidityTest.php │ │ │ │ ├── LocationTest.php │ │ │ │ ├── PressureTest.php │ │ │ │ ├── SourcesTest.php │ │ │ │ ├── TemperatureTest.php │ │ │ │ ├── WindChillFactorTest.php │ │ │ │ ├── WindDegreeTest.php │ │ │ │ └── WindSpeedTest.php │ │ ├── Dataset │ │ │ ├── ConfigurationTest.php │ │ │ ├── ContextTest.php │ │ │ ├── DefaultConfigurationTest.php │ │ │ ├── KeysTest.php │ │ │ ├── QueryTest.php │ │ │ └── SummaryModeTest.php │ │ ├── Export │ │ │ ├── File │ │ │ │ ├── FitlogTest.php │ │ │ │ ├── GpxTest.php │ │ │ │ ├── KmlTest.php │ │ │ │ ├── TcxTest.php │ │ │ │ └── TypesTest.php │ │ │ └── Share │ │ │ │ ├── HtmlTest.php │ │ │ │ ├── IFrameTest.php │ │ │ │ └── TypesTest.php │ │ ├── Mathematics │ │ │ ├── DataAnalysis │ │ │ │ └── ConstantSegmentFinderTest.php │ │ │ ├── Distribution │ │ │ │ ├── AbstractDistributionTest.php │ │ │ │ ├── EmpiricalDistributionTest.php │ │ │ │ ├── MultipleTimeSeriesTest.php │ │ │ │ └── TimeSeriesTest.php │ │ │ ├── Filter │ │ │ │ ├── Butterworth │ │ │ │ │ ├── ButterworthFilterTest.php │ │ │ │ │ └── Lowpass2ndOrderCoefficientsTest.php │ │ │ │ ├── HampelFilterTest.php │ │ │ │ └── InfiniteImpulseResponseFilterTest.php │ │ │ ├── Interpolation │ │ │ │ └── BSpline │ │ │ │ │ └── BSplineInterpolationTest.php │ │ │ ├── Numerics │ │ │ │ ├── BisectionTest.php │ │ │ │ └── DerivativeTest.php │ │ │ ├── PointReduction │ │ │ │ ├── AbstractPointReductionAlgorithmTest.php │ │ │ │ └── RamerDouglasPeuckerTest.php │ │ │ └── Scale │ │ │ │ ├── PercentalTest.php │ │ │ │ └── TwoPartPercentalTest.php │ │ ├── Metrics │ │ │ ├── Cadence │ │ │ │ └── Unit │ │ │ │ │ └── StepsPerMinuteTest.php │ │ │ ├── Common │ │ │ │ ├── AbstractMetricTest.php │ │ │ │ ├── BaseUnitTraitTest.php │ │ │ │ ├── Unit │ │ │ │ │ ├── FactorialTest.php │ │ │ │ │ ├── LinearTest.php │ │ │ │ │ ├── NoneTest.php │ │ │ │ │ └── SimpleTest.php │ │ │ │ ├── UnitConversionByDividendTraitTest.php │ │ │ │ └── UnitConversionByFactorTraitTest.php │ │ │ ├── Distance │ │ │ │ └── Unit │ │ │ │ │ ├── CentimeterTest.php │ │ │ │ │ ├── DistanceEnumTest.php │ │ │ │ │ ├── FeetTest.php │ │ │ │ │ ├── MeterTest.php │ │ │ │ │ ├── MilesTest.php │ │ │ │ │ └── YardsTest.php │ │ │ ├── Energy │ │ │ │ ├── EnergyTest.php │ │ │ │ └── Unit │ │ │ │ │ ├── EnergyEnumTest.php │ │ │ │ │ └── KiloJoulesTest.php │ │ │ ├── GroundContactBalance │ │ │ │ └── Unit │ │ │ │ │ └── PercentLeftTest.php │ │ │ ├── HeartRate │ │ │ │ └── Unit │ │ │ │ │ ├── HeartRateEnumTest.php │ │ │ │ │ ├── PercentMaximumTest.php │ │ │ │ │ └── PercentReserveTest.php │ │ │ ├── Temperature │ │ │ │ └── Unit │ │ │ │ │ ├── FahrenheitTest.php │ │ │ │ │ └── TemperatureEnumTest.php │ │ │ ├── Time │ │ │ │ └── Unit │ │ │ │ │ ├── HoursTest.php │ │ │ │ │ └── MilisecondsTest.php │ │ │ ├── Velocity │ │ │ │ └── Unit │ │ │ │ │ ├── KilometerPerHourTest.php │ │ │ │ │ ├── MeterPerSecondTest.php │ │ │ │ │ ├── MilesPerHourTest.php │ │ │ │ │ ├── PaceEnumTest.php │ │ │ │ │ ├── SecondsPer100mTest.php │ │ │ │ │ ├── SecondsPer100yTest.php │ │ │ │ │ ├── SecondsPer500mTest.php │ │ │ │ │ ├── SecondsPer500yTest.php │ │ │ │ │ ├── SecondsPerKilometerTest.php │ │ │ │ │ └── SecondsPerMileTest.php │ │ │ └── Weight │ │ │ │ └── Unit │ │ │ │ ├── PoundsTest.php │ │ │ │ ├── StonesTest.php │ │ │ │ └── WeightEnumTest.php │ │ ├── Model │ │ │ ├── Account │ │ │ │ └── UserRoleTest.php │ │ │ ├── Activity │ │ │ │ ├── EntityTest.php │ │ │ │ ├── PartnerTest.php │ │ │ │ └── Splits │ │ │ │ │ ├── CompletorForDistanceTest.php │ │ │ │ │ ├── CompletorForTimeTest.php │ │ │ │ │ ├── ObjectTest.php │ │ │ │ │ └── SplitTest.php │ │ │ ├── EntityTest.php │ │ │ ├── EntityWithIDTest.php │ │ │ ├── Equipment │ │ │ │ ├── EntityTest.php │ │ │ │ └── StatisticsUpdaterTest.php │ │ │ ├── EquipmentType │ │ │ │ └── EntityTest.php │ │ │ ├── FactoryTest.php │ │ │ ├── LoopTest.php │ │ │ ├── RaceResult │ │ │ │ └── EntityTest.php │ │ │ ├── Route │ │ │ │ ├── EntityTest.php │ │ │ │ └── LoopTest.php │ │ │ ├── Sport │ │ │ │ └── EntityTest.php │ │ │ ├── StringArrayObjectTest.php │ │ │ ├── StringObjectTest.php │ │ │ ├── Swimdata │ │ │ │ ├── EntityTest.php │ │ │ │ └── LoopTest.php │ │ │ ├── Tag │ │ │ │ └── EntityTest.php │ │ │ ├── Trackdata │ │ │ │ ├── EntityTest.php │ │ │ │ ├── LoopTest.php │ │ │ │ ├── PauseTest.php │ │ │ │ └── PausesTest.php │ │ │ └── Type │ │ │ │ └── EntityTest.php │ │ ├── Parameter │ │ │ ├── Application │ │ │ │ ├── ActivityCreationModeTest.php │ │ │ │ ├── ActivityPlotModeTest.php │ │ │ │ ├── ActivityPlotPrecisionTest.php │ │ │ │ ├── ActivityRouteBreakTest.php │ │ │ │ ├── ActivityRoutePrivacyTest.php │ │ │ │ ├── DataBrowserModeTest.php │ │ │ │ ├── DatabaseOrderTest.php │ │ │ │ ├── DistanceUnitSystemTest.php │ │ │ │ ├── ElevationMethodTest.php │ │ │ │ ├── HeartRateUnitTest.php │ │ │ │ ├── TemperatureUnitTest.php │ │ │ │ ├── TimezoneTest.php │ │ │ │ ├── WeekStartTest.php │ │ │ │ └── WeightUnitTest.php │ │ │ ├── BoolTest.php │ │ │ ├── FloatingPointTest.php │ │ │ ├── IntTest.php │ │ │ ├── SelectFileTest.php │ │ │ ├── SelectRowTest.php │ │ │ ├── SelectTest.php │ │ │ ├── SetTest.php │ │ │ └── StringTest.php │ │ ├── ParameterTest.php │ │ ├── Parser │ │ │ └── Activity │ │ │ │ ├── Common │ │ │ │ ├── Data │ │ │ │ │ ├── ActiveRoundCalculatorTest.php │ │ │ │ │ ├── ActivityDataTest.php │ │ │ │ │ ├── ContinuousDataAdapterTest.php │ │ │ │ │ ├── ContinuousDataTest.php │ │ │ │ │ ├── Merge │ │ │ │ │ │ ├── ActivityDataContainerMergerTest.php │ │ │ │ │ │ ├── ActivityDataMergerTest.php │ │ │ │ │ │ ├── ContinuousDataMergerTest.php │ │ │ │ │ │ ├── FitDetailsMergerTest.php │ │ │ │ │ │ ├── MetadataMergerTest.php │ │ │ │ │ │ └── WeatherDataMergerTest.php │ │ │ │ │ ├── Pause │ │ │ │ │ │ ├── PauseCollectionTest.php │ │ │ │ │ │ └── PauseTest.php │ │ │ │ │ └── Round │ │ │ │ │ │ ├── RoundCollectionFillerTest.php │ │ │ │ │ │ ├── RoundCollectionTest.php │ │ │ │ │ │ └── RoundTest.php │ │ │ │ └── Filter │ │ │ │ │ ├── InvalidRRIntervalFilterTest.php │ │ │ │ │ ├── NegativeDistanceStepFilterTest.php │ │ │ │ │ ├── NegativePauseFilterTest.php │ │ │ │ │ ├── NegativeTimeStepFilterTest.php │ │ │ │ │ ├── NonMatchingArraySizeFilterTest.php │ │ │ │ │ └── OutOfRangeValueFilterTest.php │ │ │ │ ├── FileExtensionToParserMappingTest.php │ │ │ │ └── FileType │ │ │ │ ├── AbstractActivityParserTestCase.php │ │ │ │ ├── CsvEpsonTest.php │ │ │ │ ├── CsvTest.php │ │ │ │ ├── FitTest.php │ │ │ │ ├── FitWorkoutStepTest.php │ │ │ │ ├── FitlogTest.php │ │ │ │ ├── GpxTest.php │ │ │ │ ├── HrmTest.php │ │ │ │ ├── KmlTest.php │ │ │ │ ├── LogbookTest.php │ │ │ │ ├── PwxTest.php │ │ │ │ ├── SlfTest.php │ │ │ │ ├── SmlTest.php │ │ │ │ ├── TcxTest.php │ │ │ │ ├── TrkTest.php │ │ │ │ ├── XmlPolarTest.php │ │ │ │ └── XmlSuuntoTest.php │ │ ├── Profile │ │ │ ├── Mapping │ │ │ │ └── FitSdkExerciseTest.php │ │ │ ├── Sport │ │ │ │ └── Mapping │ │ │ │ │ ├── EnglishLanguageMappingTest.php │ │ │ │ │ └── FitSdkMappingTest.php │ │ │ └── Weather │ │ │ │ └── Source │ │ │ │ └── WeatherSourceProfileTest.php │ │ ├── Service │ │ │ ├── ElevationCorrection │ │ │ │ ├── StepwiseElevationProfileFixerTest.php │ │ │ │ └── Strategy │ │ │ │ │ ├── GeoTiffTest.php │ │ │ │ │ ├── GeonamesTest.php │ │ │ │ │ ├── GoogleMapsTest.php │ │ │ │ │ └── StrategyCollectionTest.php │ │ │ ├── HttpClientAwareTestCaseTrait.php │ │ │ └── WeatherForecast │ │ │ │ └── Strategy │ │ │ │ ├── DarkSkyTest.php │ │ │ │ ├── DatabaseCacheTest.php │ │ │ │ ├── OpenWeatherMapTest.php │ │ │ │ └── StrategyCollectionTest.php │ │ ├── Sports │ │ │ ├── ClimbCategory │ │ │ │ └── ClimbCategoryTest.php │ │ │ ├── ClimbQuantification │ │ │ │ ├── ClimbByBikeIndexTest.php │ │ │ │ ├── CodifavaIndexTest.php │ │ │ │ ├── FietsIndexTest.php │ │ │ │ └── SaliteIndexTest.php │ │ │ ├── ClimbScore │ │ │ │ └── ClimbScoreTest.php │ │ │ ├── EnergyExpenditure │ │ │ │ └── HeartRateBasedEstimatorTest.php │ │ │ ├── Performance │ │ │ │ ├── Model │ │ │ │ │ ├── AbstractModelTest.php │ │ │ │ │ ├── BanisterModelTest.php │ │ │ │ │ ├── BussoModelTest.php │ │ │ │ │ └── TsbModelTest.php │ │ │ │ └── MonotonyTest.php │ │ │ └── Running │ │ │ │ ├── GradeAdjustedPace │ │ │ │ └── Algorithm │ │ │ │ │ └── MinettiTest.php │ │ │ │ ├── MarathonShapeTest.php │ │ │ │ └── Prognosis │ │ │ │ ├── BockTest.php │ │ │ │ ├── CameronTest.php │ │ │ │ ├── SteffnyTest.php │ │ │ │ └── VO2maxTest.php │ │ ├── Util │ │ │ ├── LocalTimeTest.php │ │ │ ├── StringReaderTest.php │ │ │ └── TimeTest.php │ │ └── View │ │ │ ├── Activity │ │ │ └── LinkerTest.php │ │ │ ├── Leaflet │ │ │ └── ActivityTest.php │ │ │ ├── RpeColorTest.php │ │ │ └── StresscolorTest.php │ ├── data │ │ └── SplitsTest.php │ ├── html │ │ └── formular │ │ │ └── FormularValueParserTest.php │ └── system │ │ └── PDOforRunalyzeTest.php ├── scripts │ ├── createtestsdb.sh │ ├── preparetests.sh │ ├── runtests.sh │ └── test_result.txt └── testfiles │ ├── backup │ ├── default-empty.json │ ├── default-empty.json.gz │ ├── default-insert.json │ ├── default-insert.json.gz │ ├── default-update.json │ ├── default-update.json.gz │ ├── no-version.json │ ├── no-version.json.gz │ ├── update-gz-files.sh │ ├── with-equipment.json │ ├── with-equipment.json.gz │ ├── wrong-version.json │ └── wrong-version.json.gz │ ├── csv │ ├── Epson-different-array-sizes.csv │ ├── Epson.csv │ ├── GarminConnect.csv │ ├── Umlaute.csv │ └── Wahoo.csv │ ├── fit │ ├── FR630-with-lth.fit │ ├── FR70-intervals.fit │ ├── FR735XT-with-performance-condition.fit │ ├── FR920-additional-start-events.fit │ ├── FR920xt-with-Stryd.fit │ ├── FR920xt-with-runscribe-plus.fit │ ├── Fenix-2-negative-times.fit │ ├── Fenix-2-pauses.fit │ ├── Fenix-2.fit │ ├── Fenix-3-with-empty-runscribe.fit │ ├── Fenix-3-with-inactive-Moxy.fit │ ├── Fenix-3-with-runscribe-v1-38.fit │ ├── HRV-example.fit │ ├── IPBike-cadence.fit │ ├── Multisession-stop-after-transition.fit │ ├── Multisession.fit │ ├── One-second-jump-to-past.fit │ ├── Standard.fit │ ├── Suunto-Ambit-3-Peak-without-final-lap.fit │ ├── Zwift-bad-training-effect.fit │ ├── garmin-runPower-2.fit │ ├── garmin-runPower.fit │ ├── hr-only-zeros.fit │ ├── invalid-altitude-and-empty-record-at-end.fit │ ├── moxy-2sensors.fit │ ├── moxy-float.fit │ ├── moxy-fr735.fit │ ├── multisport-triathlon-fenix3.fit │ ├── osynce-stop-bug.fit │ ├── support-001885-rs-pronation.fit │ ├── swim-25m-lane.fit │ ├── swim-fenix-50m.fit │ ├── swim-outdoor.fit │ ├── swim-pool-via-iq.fit │ ├── swim-via-iq.fit │ ├── time-jump.fit │ ├── with-new-dynamics.fit │ └── with-power.fit │ ├── gpx │ ├── Movescount-mixed-extensions.gpx │ ├── NavRun500.gpx │ ├── Route-only.gpx │ ├── SpoQ-2.gpx │ ├── SpoQ.gpx │ ├── break-between-trkseg.gpx │ ├── garmin-ns3-extension.gpx │ ├── hr-not-always-there.gpx │ ├── runkeeper-negative-time-step-at-start.gpx │ ├── standard.gpx │ └── strava-export.gpx │ ├── hrm │ ├── 12010401.gpx │ ├── 12010401.hrm │ ├── 12010601.gpx │ ├── 12010601.hrm │ ├── 12011601.gpx │ ├── 12011601.hrm │ ├── 12011801.hrm │ ├── 15031101.spinning.hrm │ ├── 15031201.gpx │ ├── 15031201.hrm │ ├── 15031801.gpx │ ├── 15031801.hrm │ ├── 15031801.spinning.hrm │ └── hrv.hrm │ ├── kml │ ├── Route-only-with-zeros.kml │ ├── Route-only.kml │ ├── Suunto-Spartan-Ultra.kml │ ├── TomTom-without-distance-extension.kml │ ├── TomTom.kml │ └── multi-line-without-altitude.kml │ ├── kmz │ └── Baechenstock.kmz │ ├── pwx │ ├── intervals.pwx │ ├── with-dist-and-hr.pwx │ ├── with-dist.pwx │ ├── with-power.pwx │ └── without-dist.pwx │ ├── slf │ ├── 2012_10_14__13_19_.slf │ ├── DatacenterVersion4-HM.slf │ ├── Standard.slf │ └── slf4-without-entries-.slf │ ├── sml │ ├── Suunto-Ambit-Indoor-reduced.sml │ ├── Suunto-Ambit-reduced.sml │ └── Suunto-Ambit3-only-RR-reduced.sml │ ├── sporttracks │ ├── 20110411_Laufeinheit_division_by_zero.fitlog │ ├── 20110821_Radeinheit_out_of_memory.fitlog │ ├── spinning.fitlog │ ├── test.logbook │ ├── test.logbook3 │ └── with-pauses.fitlog │ ├── tcx │ ├── Could-Not-Be-Read_by-Florian.tcx │ ├── Dakota.tcx │ ├── First-point-empty.tcx │ ├── Indoor-Training.tcx │ ├── Multiple-Trainings.tcx │ ├── Multisport.tcx │ ├── Polar-one-lap-indoor-with-distance.tcx │ ├── Power-ns2-extension.tcx │ ├── Route-only.tcx │ ├── Runtastic.tcx │ ├── Standard.tcx │ ├── Swim-without-time_by-Timekiller.tcx │ ├── Treadmill-doubled-cadence.tcx │ ├── Wrong-time-zone-by-polar.tcx │ ├── missing-distances.tcx │ ├── negative-pause.tcx │ └── watt-extension-without-namespace.tcx │ ├── trk │ ├── minimal-example.trk │ └── with-pause.trk │ ├── ttbin │ ├── Running.ttbin │ └── Treadmill.ttbin │ └── xml │ ├── Multiple-Polar.xml │ ├── Polar-additional-comma.xml │ ├── Polar-lap-without-distance.xml │ ├── Polar-with-arrays.xml │ ├── Polar.xml │ ├── RunningAHEAD-Minimal-example-with-equipment.xml │ ├── RunningAHEAD-Minimal-example.xml │ ├── Suunto-Ambit-reduced.xml │ └── Suunto-Ambit-with-laps-reduced.xml ├── var ├── cache │ └── .gitkeep ├── logs │ └── .gitkeep └── poster │ └── img │ ├── athlete.svg │ └── runalyze.svg ├── vendor ├── autoload.php ├── beberlei │ ├── assert │ │ ├── LICENSE │ │ ├── composer.json │ │ └── lib │ │ │ └── Assert │ │ │ ├── Assert.php │ │ │ ├── Assertion.php │ │ │ ├── AssertionChain.php │ │ │ ├── AssertionFailedException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LazyAssertion.php │ │ │ ├── LazyAssertionException.php │ │ │ └── functions.php │ └── doctrineextensions │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ ├── mysql.yml │ │ ├── oracle.yml │ │ ├── postgres.yml │ │ └── sqlite.yml │ │ └── src │ │ ├── Query │ │ ├── Mysql │ │ │ ├── Acos.php │ │ │ ├── AddTime.php │ │ │ ├── AesDecrypt.php │ │ │ ├── AesEncrypt.php │ │ │ ├── AnyValue.php │ │ │ ├── Ascii.php │ │ │ ├── Asin.php │ │ │ ├── Atan.php │ │ │ ├── Atan2.php │ │ │ ├── Binary.php │ │ │ ├── BitCount.php │ │ │ ├── BitXor.php │ │ │ ├── Cast.php │ │ │ ├── Ceil.php │ │ │ ├── CharLength.php │ │ │ ├── Collate.php │ │ │ ├── ConcatWs.php │ │ │ ├── ConvertTz.php │ │ │ ├── Cos.php │ │ │ ├── Cot.php │ │ │ ├── CountIf.php │ │ │ ├── Crc32.php │ │ │ ├── Date.php │ │ │ ├── DateAdd.php │ │ │ ├── DateDiff.php │ │ │ ├── DateFormat.php │ │ │ ├── DateSub.php │ │ │ ├── Day.php │ │ │ ├── DayName.php │ │ │ ├── DayOfWeek.php │ │ │ ├── DayOfYear.php │ │ │ ├── Degrees.php │ │ │ ├── Div.php │ │ │ ├── Exp.php │ │ │ ├── Extract.php │ │ │ ├── Field.php │ │ │ ├── FindInSet.php │ │ │ ├── Floor.php │ │ │ ├── Format.php │ │ │ ├── FromBase64.php │ │ │ ├── FromUnixtime.php │ │ │ ├── Greatest.php │ │ │ ├── GroupConcat.php │ │ │ ├── Hex.php │ │ │ ├── Hour.php │ │ │ ├── IfElse.php │ │ │ ├── IfNull.php │ │ │ ├── Inet6Aton.php │ │ │ ├── Inet6Ntoa.php │ │ │ ├── InetAton.php │ │ │ ├── InetNtoa.php │ │ │ ├── Instr.php │ │ │ ├── IsIpv4.php │ │ │ ├── IsIpv4Compat.php │ │ │ ├── IsIpv4Mapped.php │ │ │ ├── IsIpv6.php │ │ │ ├── JsonContains.php │ │ │ ├── JsonDepth.php │ │ │ ├── JsonLength.php │ │ │ ├── Lag.php │ │ │ ├── LastDay.php │ │ │ ├── Lead.php │ │ │ ├── Least.php │ │ │ ├── Log.php │ │ │ ├── Log10.php │ │ │ ├── Log2.php │ │ │ ├── Lpad.php │ │ │ ├── MakeDate.php │ │ │ ├── MatchAgainst.php │ │ │ ├── Md5.php │ │ │ ├── Minute.php │ │ │ ├── Month.php │ │ │ ├── MonthName.php │ │ │ ├── Now.php │ │ │ ├── NullIf.php │ │ │ ├── Over.php │ │ │ ├── PeriodDiff.php │ │ │ ├── Pi.php │ │ │ ├── Power.php │ │ │ ├── Quarter.php │ │ │ ├── Radians.php │ │ │ ├── Rand.php │ │ │ ├── Regexp.php │ │ │ ├── Replace.php │ │ │ ├── Round.php │ │ │ ├── Rpad.php │ │ │ ├── SecToTime.php │ │ │ ├── Second.php │ │ │ ├── Sha1.php │ │ │ ├── Sha2.php │ │ │ ├── Sin.php │ │ │ ├── Soundex.php │ │ │ ├── Std.php │ │ │ ├── StdDev.php │ │ │ ├── StrToDate.php │ │ │ ├── SubstringIndex.php │ │ │ ├── Tan.php │ │ │ ├── Time.php │ │ │ ├── TimeDiff.php │ │ │ ├── TimeToSec.php │ │ │ ├── TimestampAdd.php │ │ │ ├── TimestampDiff.php │ │ │ ├── Truncate.php │ │ │ ├── Unhex.php │ │ │ ├── UnixTimestamp.php │ │ │ ├── UtcTimestamp.php │ │ │ ├── UuidShort.php │ │ │ ├── Variance.php │ │ │ ├── Week.php │ │ │ ├── WeekDay.php │ │ │ ├── Year.php │ │ │ ├── YearMonth.php │ │ │ └── YearWeek.php │ │ ├── MysqlWalker.php │ │ ├── Oracle │ │ │ ├── Ceil.php │ │ │ ├── Day.php │ │ │ ├── Floor.php │ │ │ ├── Hour.php │ │ │ ├── Listagg.php │ │ │ ├── Minute.php │ │ │ ├── Month.php │ │ │ ├── Nvl.php │ │ │ ├── Second.php │ │ │ ├── ToChar.php │ │ │ ├── ToDate.php │ │ │ ├── Trunc.php │ │ │ └── Year.php │ │ ├── Postgresql │ │ │ ├── AtTimeZoneFunction.php │ │ │ ├── CountFilterFunction.php │ │ │ ├── Date.php │ │ │ ├── DateFormat.php │ │ │ ├── DatePart.php │ │ │ ├── DateTrunc.php │ │ │ ├── Day.php │ │ │ ├── ExtractFunction.php │ │ │ ├── Greatest.php │ │ │ ├── Hour.php │ │ │ ├── Least.php │ │ │ ├── Minute.php │ │ │ ├── Month.php │ │ │ ├── RegexpReplace.php │ │ │ ├── Second.php │ │ │ ├── StrToDate.php │ │ │ ├── StringAgg.php │ │ │ └── Year.php │ │ ├── SortableNullsWalker.php │ │ └── Sqlite │ │ │ ├── AbstractStrfTime.php │ │ │ ├── ConcatWs.php │ │ │ ├── Date.php │ │ │ ├── DateFormat.php │ │ │ ├── Day.php │ │ │ ├── Greatest.php │ │ │ ├── Hour.php │ │ │ ├── IfElse.php │ │ │ ├── IfNull.php │ │ │ ├── JulianDay.php │ │ │ ├── Least.php │ │ │ ├── Minute.php │ │ │ ├── Month.php │ │ │ ├── NumberFromStrfTime.php │ │ │ ├── Random.php │ │ │ ├── Replace.php │ │ │ ├── Round.php │ │ │ ├── Second.php │ │ │ ├── StrfTime.php │ │ │ ├── Week.php │ │ │ ├── WeekDay.php │ │ │ └── Year.php │ │ └── Types │ │ ├── CarbonDateTimeType.php │ │ ├── CarbonDateTimeTzType.php │ │ ├── CarbonDateType.php │ │ ├── CarbonImmutableDateTimeType.php │ │ ├── CarbonImmutableDateTimeTzType.php │ │ ├── CarbonImmutableDateType.php │ │ ├── CarbonImmutableTimeType.php │ │ ├── CarbonTimeType.php │ │ ├── PolygonType.php │ │ └── ZendDateType.php ├── bernard │ ├── bernard-bundle │ │ ├── BernardBundle.php │ │ ├── Command │ │ │ └── DebugCommand.php │ │ ├── DependencyInjection │ │ │ ├── BernardExtension.php │ │ │ ├── Compiler │ │ │ │ ├── NormalizerPass.php │ │ │ │ └── ReceiverPass.php │ │ │ └── Configuration.php │ │ ├── EventListener │ │ │ └── SchemaListener.php │ │ ├── LICENSE │ │ ├── Normalizer │ │ │ └── DefaultMessageNormalizer.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── config │ │ │ │ └── services.xml │ │ ├── Tests │ │ │ └── DependencyInjection │ │ │ │ ├── BernardExtensionTest.php │ │ │ │ ├── Compiler │ │ │ │ ├── NormalizerPassTest.php │ │ │ │ └── ReceiverPassTest.php │ │ │ │ └── ConfigurationTest.php │ │ └── composer.json │ ├── bernard │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── example │ │ │ ├── EchoTimeService.php │ │ │ ├── bootstrap.php │ │ │ ├── doctrine.php │ │ │ ├── file.php │ │ │ ├── ironmq.php │ │ │ ├── pheanstalk.php │ │ │ ├── phpredis.php │ │ │ ├── predis.php │ │ │ └── sqs.php │ │ ├── spec │ │ │ └── Bernard │ │ │ │ ├── Normalizer │ │ │ │ └── EnvelopeNormalizerSpec.php │ │ │ │ ├── Router │ │ │ │ └── ClassNameRouterSpec.php │ │ │ │ └── SerializerSpec.php │ │ └── src │ │ │ ├── BernardEvents.php │ │ │ ├── Command │ │ │ ├── ConsumeCommand.php │ │ │ ├── Doctrine │ │ │ │ ├── AbstractCommand.php │ │ │ │ ├── CreateCommand.php │ │ │ │ ├── DropCommand.php │ │ │ │ └── UpdateCommand.php │ │ │ └── ProduceCommand.php │ │ │ ├── Consumer.php │ │ │ ├── Doctrine │ │ │ ├── ConnectionListener.php │ │ │ └── MessagesSchema.php │ │ │ ├── Driver.php │ │ │ ├── Driver │ │ │ ├── AbstractPrefetchDriver.php │ │ │ ├── AppEngineDriver.php │ │ │ ├── DoctrineDriver.php │ │ │ ├── FlatFileDriver.php │ │ │ ├── InteropDriver.php │ │ │ ├── IronMqDriver.php │ │ │ ├── MongoDBDriver.php │ │ │ ├── PheanstalkDriver.php │ │ │ ├── PhpAmqpDriver.php │ │ │ ├── PhpRedisDriver.php │ │ │ ├── PredisDriver.php │ │ │ ├── PrefetchMessageCache.php │ │ │ └── SqsDriver.php │ │ │ ├── Envelope.php │ │ │ ├── Event │ │ │ ├── EnvelopeEvent.php │ │ │ ├── PingEvent.php │ │ │ └── RejectEnvelopeEvent.php │ │ │ ├── EventListener │ │ │ ├── ErrorLogSubscriber.php │ │ │ ├── FailureSubscriber.php │ │ │ └── LoggerSubscriber.php │ │ │ ├── Exception │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidOperationException.php │ │ │ ├── NotImplementedException.php │ │ │ ├── QueueNotFoundException.php │ │ │ ├── ReceiverNotFoundException.php │ │ │ └── ServiceUnavailableException.php │ │ │ ├── Message.php │ │ │ ├── Message │ │ │ ├── AbstractMessage.php │ │ │ ├── DefaultMessage.php │ │ │ └── PlainMessage.php │ │ │ ├── Normalizer │ │ │ ├── AbstractAggregateNormalizerAware.php │ │ │ ├── EnvelopeNormalizer.php │ │ │ └── PlainMessageNormalizer.php │ │ │ ├── Producer.php │ │ │ ├── Queue.php │ │ │ ├── Queue │ │ │ ├── AbstractQueue.php │ │ │ ├── InMemoryQueue.php │ │ │ ├── PersistentQueue.php │ │ │ └── RoundRobinQueue.php │ │ │ ├── QueueFactory.php │ │ │ ├── QueueFactory │ │ │ ├── InMemoryFactory.php │ │ │ └── PersistentFactory.php │ │ │ ├── Router.php │ │ │ ├── Router │ │ │ ├── ClassNameRouter.php │ │ │ ├── ContainerAwareRouter.php │ │ │ ├── LeagueContainerAwareRouter.php │ │ │ ├── PimpleAwareRouter.php │ │ │ └── SimpleRouter.php │ │ │ ├── Serializer.php │ │ │ └── Util.php │ └── normalt │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Normalizer │ │ ├── AggregateNormalizer.php │ │ ├── AggregateNormalizerAware.php │ │ ├── DoctrineNormalizer.php │ │ └── RecursiveReflectionNormalizer.php ├── bin │ ├── doctrine │ ├── doctrine-dbal │ ├── doctrine-migrations │ ├── geotools │ ├── php-parse │ ├── phpunit │ └── picofeed ├── cache │ ├── adapter-common │ │ ├── AbstractCachePool.php │ │ ├── CacheItem.php │ │ ├── Changelog.md │ │ ├── Exception │ │ │ ├── CacheException.php │ │ │ ├── CachePoolException.php │ │ │ └── InvalidArgumentException.php │ │ ├── HasExpirationTimestampInterface.php │ │ ├── JsonBinaryArmoring.php │ │ ├── LICENSE │ │ ├── PhpCacheItem.php │ │ ├── PhpCachePool.php │ │ ├── README.md │ │ ├── TagSupportWithArray.php │ │ └── composer.json │ ├── array-adapter │ │ ├── ArrayCachePool.php │ │ ├── Changelog.md │ │ ├── LICENSE │ │ ├── README.md │ │ └── composer.json │ ├── hierarchical-cache │ │ ├── Changelog.md │ │ ├── HierarchicalCachePoolTrait.php │ │ ├── HierarchicalPoolInterface.php │ │ ├── LICENSE │ │ ├── README.md │ │ └── composer.json │ └── tag-interop │ │ ├── .github │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Changelog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── TaggableCacheItemInterface.php │ │ ├── TaggableCacheItemPoolInterface.php │ │ └── composer.json ├── 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 │ ├── package-versions-deprecated │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ │ └── PackageVersions │ │ │ ├── FallbackVersions.php │ │ │ ├── Installer.php │ │ │ └── Versions.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 │ │ │ ├── ApcCache.php │ │ │ ├── ApcuCache.php │ │ │ ├── ArrayCache.php │ │ │ ├── Cache.php │ │ │ ├── CacheProvider.php │ │ │ ├── ChainCache.php │ │ │ ├── ClearableCache.php │ │ │ ├── CouchbaseBucketCache.php │ │ │ ├── CouchbaseCache.php │ │ │ ├── ExtMongoDBCache.php │ │ │ ├── FileCache.php │ │ │ ├── FilesystemCache.php │ │ │ ├── FlushableCache.php │ │ │ ├── InvalidCacheId.php │ │ │ ├── LegacyMongoDBCache.php │ │ │ ├── MemcacheCache.php │ │ │ ├── MemcachedCache.php │ │ │ ├── MongoDBCache.php │ │ │ ├── MultiDeleteCache.php │ │ │ ├── MultiGetCache.php │ │ │ ├── MultiOperationCache.php │ │ │ ├── MultiPutCache.php │ │ │ ├── PhpFileCache.php │ │ │ ├── PredisCache.php │ │ │ ├── Psr6 │ │ │ ├── CacheAdapter.php │ │ │ ├── CacheItem.php │ │ │ ├── DoctrineProvider.php │ │ │ ├── InvalidArgument.php │ │ │ └── TypedCacheItem.php │ │ │ ├── RedisCache.php │ │ │ ├── SQLite3Cache.php │ │ │ ├── Version.php │ │ │ ├── VoidCache.php │ │ │ ├── WinCacheCache.php │ │ │ ├── XcacheCache.php │ │ │ └── ZendDataCache.php │ ├── collections │ │ ├── .doctrine-project.json │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ └── en │ │ │ │ ├── derived-collections.rst │ │ │ │ ├── expression-builder.rst │ │ │ │ ├── expressions.rst │ │ │ │ ├── index.rst │ │ │ │ ├── lazy-collections.rst │ │ │ │ └── sidebar.rst │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Collections │ │ │ ├── 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 │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE_TO_2_1 │ │ ├── UPGRADE_TO_2_2 │ │ ├── composer.json │ │ ├── docs │ │ │ └── en │ │ │ │ ├── index.rst │ │ │ │ └── reference │ │ │ │ └── class-loading.rst │ │ ├── humbug.json.dist │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Common │ │ │ │ ├── ClassLoader.php │ │ │ │ ├── CommonException.php │ │ │ │ ├── Comparable.php │ │ │ │ ├── Lexer.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 │ │ │ │ └── Inflector.php │ │ │ │ └── Version.php │ │ └── phpstan.neon.dist │ ├── data-fixtures │ │ ├── .doctrine-project.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE │ │ ├── composer.json │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Common │ │ │ │ └── DataFixtures │ │ │ │ ├── AbstractFixture.php │ │ │ │ ├── DependentFixtureInterface.php │ │ │ │ ├── Event │ │ │ │ └── Listener │ │ │ │ │ ├── MongoDBReferenceListener.php │ │ │ │ │ └── ORMReferenceListener.php │ │ │ │ ├── Exception │ │ │ │ └── CircularReferenceException.php │ │ │ │ ├── Executor │ │ │ │ ├── AbstractExecutor.php │ │ │ │ ├── MongoDBExecutor.php │ │ │ │ ├── ORMExecutor.php │ │ │ │ └── PHPCRExecutor.php │ │ │ │ ├── FixtureInterface.php │ │ │ │ ├── Loader.php │ │ │ │ ├── OrderedFixtureInterface.php │ │ │ │ ├── ProxyReferenceRepository.php │ │ │ │ ├── Purger │ │ │ │ ├── MongoDBPurger.php │ │ │ │ ├── ORMPurger.php │ │ │ │ ├── ORMPurgerInterface.php │ │ │ │ ├── PHPCRPurger.php │ │ │ │ └── PurgerInterface.php │ │ │ │ ├── ReferenceRepository.php │ │ │ │ ├── SharedFixtureInterface.php │ │ │ │ └── Sorter │ │ │ │ ├── TopologicalSorter.php │ │ │ │ └── Vertex.php │ │ ├── phpcs.xml.dist │ │ ├── phpstan-baseline.neon │ │ ├── phpstan.neon.dist │ │ ├── psalm-baseline.xml │ │ └── psalm.xml │ ├── dbal │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ ├── doctrine-dbal │ │ │ └── doctrine-dbal.php │ │ ├── composer.json │ │ └── lib │ │ │ └── Doctrine │ │ │ └── DBAL │ │ │ ├── Abstraction │ │ │ └── Result.php │ │ │ ├── Cache │ │ │ ├── ArrayStatement.php │ │ │ ├── CacheException.php │ │ │ ├── QueryCacheProfile.php │ │ │ └── ResultCacheStatement.php │ │ │ ├── ColumnCase.php │ │ │ ├── Configuration.php │ │ │ ├── Connection.php │ │ │ ├── ConnectionException.php │ │ │ ├── Connections │ │ │ ├── MasterSlaveConnection.php │ │ │ └── PrimaryReadReplicaConnection.php │ │ │ ├── DBALException.php │ │ │ ├── Driver.php │ │ │ ├── Driver │ │ │ ├── AbstractDB2Driver.php │ │ │ ├── AbstractDriverException.php │ │ │ ├── AbstractException.php │ │ │ ├── AbstractMySQLDriver.php │ │ │ ├── AbstractOracleDriver.php │ │ │ ├── AbstractOracleDriver │ │ │ │ └── EasyConnectString.php │ │ │ ├── AbstractPostgreSQLDriver.php │ │ │ ├── AbstractSQLAnywhereDriver.php │ │ │ ├── AbstractSQLServerDriver.php │ │ │ ├── AbstractSQLServerDriver │ │ │ │ └── Exception │ │ │ │ │ └── PortWithoutHost.php │ │ │ ├── AbstractSQLiteDriver.php │ │ │ ├── Connection.php │ │ │ ├── DriverException.php │ │ │ ├── DrizzlePDOMySql │ │ │ │ ├── Connection.php │ │ │ │ └── Driver.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionConverterDriver.php │ │ │ ├── FetchUtils.php │ │ │ ├── IBMDB2 │ │ │ │ ├── Connection.php │ │ │ │ ├── DB2Connection.php │ │ │ │ ├── DB2Driver.php │ │ │ │ ├── DB2Exception.php │ │ │ │ ├── DB2Statement.php │ │ │ │ ├── DataSourceName.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception │ │ │ │ │ ├── CannotCopyStreamToStream.php │ │ │ │ │ ├── CannotCreateTemporaryFile.php │ │ │ │ │ ├── CannotWriteToTemporaryFile.php │ │ │ │ │ ├── ConnectionError.php │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ ├── PrepareFailed.php │ │ │ │ │ └── StatementError.php │ │ │ │ └── Statement.php │ │ │ ├── Mysqli │ │ │ │ ├── Connection.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception │ │ │ │ │ ├── ConnectionError.php │ │ │ │ │ ├── ConnectionFailed.php │ │ │ │ │ ├── FailedReadingStreamOffset.php │ │ │ │ │ ├── InvalidOption.php │ │ │ │ │ ├── StatementError.php │ │ │ │ │ └── UnknownType.php │ │ │ │ ├── MysqliConnection.php │ │ │ │ ├── MysqliException.php │ │ │ │ ├── MysqliStatement.php │ │ │ │ └── Statement.php │ │ │ ├── OCI8 │ │ │ │ ├── Connection.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception │ │ │ │ │ ├── NonTerminatedStringLiteral.php │ │ │ │ │ ├── SequenceDoesNotExist.php │ │ │ │ │ └── UnknownParameterIndex.php │ │ │ │ ├── OCI8Connection.php │ │ │ │ ├── OCI8Exception.php │ │ │ │ ├── OCI8Statement.php │ │ │ │ └── Statement.php │ │ │ ├── PDO │ │ │ │ ├── Connection.php │ │ │ │ ├── Exception.php │ │ │ │ ├── MySQL │ │ │ │ │ └── Driver.php │ │ │ │ ├── OCI │ │ │ │ │ └── Driver.php │ │ │ │ ├── PgSQL │ │ │ │ │ └── Driver.php │ │ │ │ ├── SQLSrv │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── Driver.php │ │ │ │ │ └── Statement.php │ │ │ │ ├── SQLite │ │ │ │ │ └── Driver.php │ │ │ │ └── Statement.php │ │ │ ├── PDOConnection.php │ │ │ ├── PDOException.php │ │ │ ├── PDOIbm │ │ │ │ └── Driver.php │ │ │ ├── PDOMySql │ │ │ │ └── Driver.php │ │ │ ├── PDOOracle │ │ │ │ └── Driver.php │ │ │ ├── PDOPgSql │ │ │ │ └── Driver.php │ │ │ ├── PDOQueryImplementation.php │ │ │ ├── PDOSqlite │ │ │ │ └── Driver.php │ │ │ ├── PDOSqlsrv │ │ │ │ ├── Connection.php │ │ │ │ ├── Driver.php │ │ │ │ └── Statement.php │ │ │ ├── PDOStatement.php │ │ │ ├── PDOStatementImplementations.php │ │ │ ├── PingableConnection.php │ │ │ ├── Result.php │ │ │ ├── ResultStatement.php │ │ │ ├── SQLAnywhere │ │ │ │ ├── Driver.php │ │ │ │ ├── SQLAnywhereConnection.php │ │ │ │ ├── SQLAnywhereException.php │ │ │ │ └── SQLAnywhereStatement.php │ │ │ ├── SQLSrv │ │ │ │ ├── Connection.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Exception │ │ │ │ │ └── Error.php │ │ │ │ ├── LastInsertId.php │ │ │ │ ├── SQLSrvConnection.php │ │ │ │ ├── SQLSrvException.php │ │ │ │ ├── SQLSrvStatement.php │ │ │ │ └── Statement.php │ │ │ ├── ServerInfoAwareConnection.php │ │ │ ├── Statement.php │ │ │ └── StatementIterator.php │ │ │ ├── DriverManager.php │ │ │ ├── Event │ │ │ ├── ConnectionEventArgs.php │ │ │ ├── Listeners │ │ │ │ ├── MysqlSessionInit.php │ │ │ │ ├── OracleSessionInit.php │ │ │ │ └── SQLSessionInit.php │ │ │ ├── SchemaAlterTableAddColumnEventArgs.php │ │ │ ├── SchemaAlterTableChangeColumnEventArgs.php │ │ │ ├── SchemaAlterTableEventArgs.php │ │ │ ├── SchemaAlterTableRemoveColumnEventArgs.php │ │ │ ├── SchemaAlterTableRenameColumnEventArgs.php │ │ │ ├── SchemaColumnDefinitionEventArgs.php │ │ │ ├── SchemaCreateTableColumnEventArgs.php │ │ │ ├── SchemaCreateTableEventArgs.php │ │ │ ├── SchemaDropTableEventArgs.php │ │ │ ├── SchemaEventArgs.php │ │ │ └── SchemaIndexDefinitionEventArgs.php │ │ │ ├── Events.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ ├── ConnectionException.php │ │ │ ├── ConnectionLost.php │ │ │ ├── ConstraintViolationException.php │ │ │ ├── DatabaseObjectExistsException.php │ │ │ ├── DatabaseObjectNotFoundException.php │ │ │ ├── DeadlockException.php │ │ │ ├── DriverException.php │ │ │ ├── ForeignKeyConstraintViolationException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidFieldNameException.php │ │ │ ├── LockWaitTimeoutException.php │ │ │ ├── NoKeyValue.php │ │ │ ├── NonUniqueFieldNameException.php │ │ │ ├── NotNullConstraintViolationException.php │ │ │ ├── ReadOnlyException.php │ │ │ ├── RetryableException.php │ │ │ ├── ServerException.php │ │ │ ├── SyntaxErrorException.php │ │ │ ├── TableExistsException.php │ │ │ ├── TableNotFoundException.php │ │ │ └── UniqueConstraintViolationException.php │ │ │ ├── FetchMode.php │ │ │ ├── ForwardCompatibility │ │ │ ├── DriverResultStatement.php │ │ │ ├── DriverStatement.php │ │ │ └── Result.php │ │ │ ├── Id │ │ │ ├── TableGenerator.php │ │ │ └── TableGeneratorSchemaVisitor.php │ │ │ ├── LockMode.php │ │ │ ├── Logging │ │ │ ├── DebugStack.php │ │ │ ├── EchoSQLLogger.php │ │ │ ├── LoggerChain.php │ │ │ └── SQLLogger.php │ │ │ ├── ParameterType.php │ │ │ ├── Platforms │ │ │ ├── AbstractPlatform.php │ │ │ ├── DB2Platform.php │ │ │ ├── DateIntervalUnit.php │ │ │ ├── DrizzlePlatform.php │ │ │ ├── Keywords │ │ │ │ ├── DB2Keywords.php │ │ │ │ ├── DrizzleKeywords.php │ │ │ │ ├── KeywordList.php │ │ │ │ ├── MariaDb102Keywords.php │ │ │ │ ├── MsSQLKeywords.php │ │ │ │ ├── MySQL57Keywords.php │ │ │ │ ├── MySQL80Keywords.php │ │ │ │ ├── MySQLKeywords.php │ │ │ │ ├── OracleKeywords.php │ │ │ │ ├── PostgreSQL100Keywords.php │ │ │ │ ├── PostgreSQL91Keywords.php │ │ │ │ ├── PostgreSQL92Keywords.php │ │ │ │ ├── PostgreSQL94Keywords.php │ │ │ │ ├── PostgreSQLKeywords.php │ │ │ │ ├── ReservedKeywordsValidator.php │ │ │ │ ├── SQLAnywhere11Keywords.php │ │ │ │ ├── SQLAnywhere12Keywords.php │ │ │ │ ├── SQLAnywhere16Keywords.php │ │ │ │ ├── SQLAnywhereKeywords.php │ │ │ │ ├── SQLServer2005Keywords.php │ │ │ │ ├── SQLServer2008Keywords.php │ │ │ │ ├── SQLServer2012Keywords.php │ │ │ │ ├── SQLServerKeywords.php │ │ │ │ └── SQLiteKeywords.php │ │ │ ├── MariaDb1027Platform.php │ │ │ ├── MySQL57Platform.php │ │ │ ├── MySQL80Platform.php │ │ │ ├── MySqlPlatform.php │ │ │ ├── OraclePlatform.php │ │ │ ├── PostgreSQL100Platform.php │ │ │ ├── PostgreSQL91Platform.php │ │ │ ├── PostgreSQL92Platform.php │ │ │ ├── PostgreSQL94Platform.php │ │ │ ├── PostgreSqlPlatform.php │ │ │ ├── SQLAnywhere11Platform.php │ │ │ ├── SQLAnywhere12Platform.php │ │ │ ├── SQLAnywhere16Platform.php │ │ │ ├── SQLAnywherePlatform.php │ │ │ ├── SQLAzurePlatform.php │ │ │ ├── SQLServer2005Platform.php │ │ │ ├── SQLServer2008Platform.php │ │ │ ├── SQLServer2012Platform.php │ │ │ ├── SQLServerPlatform.php │ │ │ ├── SqlitePlatform.php │ │ │ └── TrimMode.php │ │ │ ├── Portability │ │ │ ├── Connection.php │ │ │ ├── OptimizeFlags.php │ │ │ └── Statement.php │ │ │ ├── Query │ │ │ ├── Expression │ │ │ │ ├── CompositeExpression.php │ │ │ │ └── ExpressionBuilder.php │ │ │ ├── QueryBuilder.php │ │ │ └── QueryException.php │ │ │ ├── Result.php │ │ │ ├── SQLParserUtils.php │ │ │ ├── SQLParserUtilsException.php │ │ │ ├── Schema │ │ │ ├── AbstractAsset.php │ │ │ ├── AbstractSchemaManager.php │ │ │ ├── Column.php │ │ │ ├── ColumnDiff.php │ │ │ ├── Comparator.php │ │ │ ├── Constraint.php │ │ │ ├── DB2SchemaManager.php │ │ │ ├── DrizzleSchemaManager.php │ │ │ ├── ForeignKeyConstraint.php │ │ │ ├── Identifier.php │ │ │ ├── Index.php │ │ │ ├── MySqlSchemaManager.php │ │ │ ├── OracleSchemaManager.php │ │ │ ├── PostgreSqlSchemaManager.php │ │ │ ├── SQLAnywhereSchemaManager.php │ │ │ ├── SQLServerSchemaManager.php │ │ │ ├── Schema.php │ │ │ ├── SchemaConfig.php │ │ │ ├── SchemaDiff.php │ │ │ ├── SchemaException.php │ │ │ ├── Sequence.php │ │ │ ├── SqliteSchemaManager.php │ │ │ ├── Synchronizer │ │ │ │ ├── AbstractSchemaSynchronizer.php │ │ │ │ ├── SchemaSynchronizer.php │ │ │ │ └── SingleDatabaseSynchronizer.php │ │ │ ├── Table.php │ │ │ ├── TableDiff.php │ │ │ ├── View.php │ │ │ └── Visitor │ │ │ │ ├── AbstractVisitor.php │ │ │ │ ├── CreateSchemaSqlCollector.php │ │ │ │ ├── DropSchemaSqlCollector.php │ │ │ │ ├── Graphviz.php │ │ │ │ ├── NamespaceVisitor.php │ │ │ │ ├── RemoveNamespacedAssets.php │ │ │ │ ├── SchemaDiffVisitor.php │ │ │ │ └── Visitor.php │ │ │ ├── Sharding │ │ │ ├── PoolingShardConnection.php │ │ │ ├── PoolingShardManager.php │ │ │ ├── SQLAzure │ │ │ │ ├── SQLAzureFederationsSynchronizer.php │ │ │ │ ├── SQLAzureShardManager.php │ │ │ │ └── Schema │ │ │ │ │ └── MultiTenantVisitor.php │ │ │ ├── ShardChoser │ │ │ │ ├── MultiTenantShardChoser.php │ │ │ │ └── ShardChoser.php │ │ │ ├── ShardManager.php │ │ │ └── ShardingException.php │ │ │ ├── Statement.php │ │ │ ├── Tools │ │ │ ├── Console │ │ │ │ ├── Command │ │ │ │ │ ├── ImportCommand.php │ │ │ │ │ ├── ReservedWordsCommand.php │ │ │ │ │ └── RunSqlCommand.php │ │ │ │ ├── ConnectionNotFound.php │ │ │ │ ├── ConnectionProvider.php │ │ │ │ ├── ConnectionProvider │ │ │ │ │ └── SingleConnectionProvider.php │ │ │ │ ├── ConsoleRunner.php │ │ │ │ └── Helper │ │ │ │ │ └── ConnectionHelper.php │ │ │ └── Dumper.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 │ │ │ ├── JsonArrayType.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 │ │ │ ├── Version.php │ │ │ └── VersionAwarePlatformDriver.php │ ├── deprecations │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Deprecations │ │ │ │ ├── Deprecation.php │ │ │ │ └── PHPUnit │ │ │ │ └── VerifyDeprecations.php │ │ └── phpcs.xml │ ├── doctrine-bundle │ │ ├── .doctrine-project.json │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ ├── stale.yml │ │ │ └── workflows │ │ │ │ ├── coding-standards.yml │ │ │ │ └── release-on-milestone-closed.yml │ │ ├── Command │ │ │ ├── CreateDatabaseDoctrineCommand.php │ │ │ ├── DoctrineCommand.php │ │ │ ├── DropDatabaseDoctrineCommand.php │ │ │ ├── GenerateEntitiesDoctrineCommand.php │ │ │ ├── ImportMappingDoctrineCommand.php │ │ │ └── Proxy │ │ │ │ ├── ClearMetadataCacheDoctrineCommand.php │ │ │ │ ├── ClearQueryCacheDoctrineCommand.php │ │ │ │ ├── ClearResultCacheDoctrineCommand.php │ │ │ │ ├── CollectionRegionDoctrineCommand.php │ │ │ │ ├── ConvertMappingDoctrineCommand.php │ │ │ │ ├── CreateSchemaDoctrineCommand.php │ │ │ │ ├── DelegateCommand.php │ │ │ │ ├── DoctrineCommandHelper.php │ │ │ │ ├── DropSchemaDoctrineCommand.php │ │ │ │ ├── EnsureProductionSettingsDoctrineCommand.php │ │ │ │ ├── EntityRegionCacheDoctrineCommand.php │ │ │ │ ├── ImportDoctrineCommand.php │ │ │ │ ├── InfoDoctrineCommand.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 │ │ │ ├── RegexSchemaAssetFilter.php │ │ │ └── SchemaAssetsFilterManager.php │ │ ├── DependencyInjection │ │ │ ├── Compiler │ │ │ │ ├── DbalSchemaFilterPass.php │ │ │ │ ├── DoctrineOrmMappingsPass.php │ │ │ │ ├── EntityListenerPass.php │ │ │ │ ├── ServiceRepositoryCompilerPass.php │ │ │ │ └── WellKnownSchemaFilterPass.php │ │ │ ├── Configuration.php │ │ │ └── DoctrineExtension.php │ │ ├── DoctrineBundle.php │ │ ├── LICENSE │ │ ├── ManagerConfigurator.php │ │ ├── Mapping │ │ │ ├── ClassMetadataCollection.php │ │ │ ├── ContainerAwareEntityListenerResolver.php │ │ │ ├── ContainerEntityListenerResolver.php │ │ │ ├── DisconnectedMetadataFactory.php │ │ │ └── EntityListenerServiceResolver.php │ │ ├── README.md │ │ ├── Registry.php │ │ ├── Repository │ │ │ ├── ContainerRepositoryFactory.php │ │ │ ├── ServiceEntityRepository.php │ │ │ └── ServiceEntityRepositoryInterface.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── dbal.xml │ │ │ │ ├── messenger.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 │ │ ├── composer.json │ │ └── phpcs.xml.dist │ ├── doctrine-cache-bundle │ │ ├── .doctrine-project.json │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── Acl │ │ │ └── Model │ │ │ │ └── AclCache.php │ │ ├── Command │ │ │ ├── CacheCommand.php │ │ │ ├── ContainsCommand.php │ │ │ ├── DeleteCommand.php │ │ │ ├── FlushCommand.php │ │ │ └── StatsCommand.php │ │ ├── DependencyInjection │ │ │ ├── CacheProviderLoader.php │ │ │ ├── Configuration.php │ │ │ ├── Definition │ │ │ │ ├── CacheDefinition.php │ │ │ │ ├── ChainDefinition.php │ │ │ │ ├── CouchbaseDefinition.php │ │ │ │ ├── FileSystemDefinition.php │ │ │ │ ├── MemcacheDefinition.php │ │ │ │ ├── MemcachedDefinition.php │ │ │ │ ├── MongodbDefinition.php │ │ │ │ ├── PhpFileDefinition.php │ │ │ │ ├── PredisDefinition.php │ │ │ │ ├── RedisDefinition.php │ │ │ │ ├── RiakDefinition.php │ │ │ │ └── Sqlite3Definition.php │ │ │ ├── DoctrineCacheExtension.php │ │ │ └── SymfonyBridgeAdapter.php │ │ ├── DoctrineCacheBundle.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── schema │ │ │ │ │ └── doctrine_cache-1.0.xsd │ │ │ │ └── services.xml │ │ │ └── doc │ │ │ │ ├── acl_cache.rst │ │ │ │ ├── custom_providers.rst │ │ │ │ ├── index.rst │ │ │ │ ├── installation.rst │ │ │ │ ├── reference.rst │ │ │ │ ├── service_parameter.rst │ │ │ │ └── usage.rst │ │ └── composer.json │ ├── doctrine-fixtures-bundle │ │ ├── .symfony.bundle.yaml │ │ ├── CHANGELOG-3.1.md │ │ ├── Command │ │ │ └── LoadDataFixturesDoctrineCommand.php │ │ ├── DependencyInjection │ │ │ ├── CompilerPass │ │ │ │ ├── FixturesCompilerPass.php │ │ │ │ └── PurgerFactoryCompilerPass.php │ │ │ └── DoctrineFixturesExtension.php │ │ ├── DoctrineFixturesBundle.php │ │ ├── Fixture.php │ │ ├── FixtureGroupInterface.php │ │ ├── LICENSE │ │ ├── Loader │ │ │ └── SymfonyFixturesLoader.php │ │ ├── ORMFixtureInterface.php │ │ ├── Purger │ │ │ ├── ORMPurgerFactory.php │ │ │ └── PurgerFactory.php │ │ ├── README.markdown │ │ ├── Resources │ │ │ ├── config │ │ │ │ └── services.xml │ │ │ └── doc │ │ │ │ └── index.rst │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ ├── phpstan-baseline.neon │ │ ├── phpstan.neon.dist │ │ ├── psalm-baseline.xml │ │ └── psalm.xml │ ├── doctrine-migrations-bundle │ │ ├── .scrutinizer.yml │ │ ├── Changelog.md │ │ ├── Command │ │ │ ├── DoctrineCommand.php │ │ │ ├── Helper │ │ │ │ └── DoctrineCommandHelper.php │ │ │ ├── MigrationsDiffDoctrineCommand.php │ │ │ ├── MigrationsDumpSchemaDoctrineCommand.php │ │ │ ├── MigrationsExecuteDoctrineCommand.php │ │ │ ├── MigrationsGenerateDoctrineCommand.php │ │ │ ├── MigrationsLatestDoctrineCommand.php │ │ │ ├── MigrationsMigrateDoctrineCommand.php │ │ │ ├── MigrationsRollupDoctrineCommand.php │ │ │ ├── MigrationsStatusDoctrineCommand.php │ │ │ ├── MigrationsUpToDateDoctrineCommand.php │ │ │ └── MigrationsVersionDoctrineCommand.php │ │ ├── DependencyInjection │ │ │ ├── Configuration.php │ │ │ └── DoctrineMigrationsExtension.php │ │ ├── DoctrineMigrationsBundle.php │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── schema │ │ │ │ │ └── doctrine_migrations-1.0.xsd │ │ │ │ └── services.xml │ │ │ └── doc │ │ │ │ └── index.rst │ │ └── composer.json │ ├── 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 │ │ │ │ ├── Common │ │ │ │ └── Inflector │ │ │ │ │ └── Inflector.php │ │ │ │ └── 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 │ │ └── phpstan.neon.dist │ ├── 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 │ │ ├── composer.json │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── Common │ │ │ │ └── Lexer │ │ │ │ └── AbstractLexer.php │ │ └── psalm.xml │ ├── migrations │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── bin │ │ │ ├── doctrine-migrations │ │ │ └── doctrine-migrations.php │ │ ├── build-phar.sh │ │ ├── composer.json │ │ ├── docs │ │ │ └── en │ │ │ │ ├── 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 │ │ │ │ ├── AbstractFileConfiguration.php │ │ │ │ ├── ArrayConfiguration.php │ │ │ │ ├── Configuration.php │ │ │ │ ├── Connection │ │ │ │ │ ├── ConnectionLoaderInterface.php │ │ │ │ │ └── Loader │ │ │ │ │ │ ├── ArrayConnectionConfigurationLoader.php │ │ │ │ │ │ ├── ConnectionConfigurationChainLoader.php │ │ │ │ │ │ ├── ConnectionConfigurationLoader.php │ │ │ │ │ │ ├── ConnectionHelperLoader.php │ │ │ │ │ │ └── Exception │ │ │ │ │ │ ├── InvalidConfiguration.php │ │ │ │ │ │ └── LoaderException.php │ │ │ │ ├── Exception │ │ │ │ │ ├── ConfigurationException.php │ │ │ │ │ ├── FileAlreadyLoaded.php │ │ │ │ │ ├── FileNotFound.php │ │ │ │ │ ├── InvalidConfigurationKey.php │ │ │ │ │ ├── JsonNotValid.php │ │ │ │ │ ├── MigrationsNamespaceRequired.php │ │ │ │ │ ├── ParameterIncompatibleWithFinder.php │ │ │ │ │ ├── UnknownConfigurationValue.php │ │ │ │ │ ├── XmlNotValid.php │ │ │ │ │ ├── YamlNotAvailable.php │ │ │ │ │ └── YamlNotValid.php │ │ │ │ ├── JsonConfiguration.php │ │ │ │ ├── XML │ │ │ │ │ └── configuration.xsd │ │ │ │ ├── XmlConfiguration.php │ │ │ │ └── YamlConfiguration.php │ │ │ │ ├── DependencyFactory.php │ │ │ │ ├── Event │ │ │ │ ├── Listeners │ │ │ │ │ └── AutoCommitListener.php │ │ │ │ ├── MigrationsEventArgs.php │ │ │ │ └── MigrationsVersionEventArgs.php │ │ │ │ ├── EventDispatcher.php │ │ │ │ ├── Events.php │ │ │ │ ├── Exception │ │ │ │ ├── AbortMigration.php │ │ │ │ ├── AlreadyAtVersion.php │ │ │ │ ├── ControlException.php │ │ │ │ ├── DuplicateMigrationVersion.php │ │ │ │ ├── IrreversibleMigration.php │ │ │ │ ├── MigrationClassNotFound.php │ │ │ │ ├── MigrationException.php │ │ │ │ ├── MigrationNotConvertibleToSql.php │ │ │ │ ├── MigrationsDirectoryRequired.php │ │ │ │ ├── NoMigrationsToExecute.php │ │ │ │ ├── NoTablesFound.php │ │ │ │ ├── RollupFailed.php │ │ │ │ ├── SkipMigration.php │ │ │ │ └── UnknownMigrationVersion.php │ │ │ │ ├── FileQueryWriter.php │ │ │ │ ├── Finder │ │ │ │ ├── Exception │ │ │ │ │ ├── FinderException.php │ │ │ │ │ ├── InvalidDirectory.php │ │ │ │ │ └── NameIsReserved.php │ │ │ │ ├── Finder.php │ │ │ │ ├── GlobFinder.php │ │ │ │ ├── MigrationDeepFinder.php │ │ │ │ ├── MigrationFinder.php │ │ │ │ └── RecursiveRegexFinder.php │ │ │ │ ├── Generator │ │ │ │ ├── DiffGenerator.php │ │ │ │ ├── Exception │ │ │ │ │ ├── GeneratorException.php │ │ │ │ │ ├── InvalidTemplateSpecified.php │ │ │ │ │ └── NoChangesDetected.php │ │ │ │ ├── FileBuilder.php │ │ │ │ ├── Generator.php │ │ │ │ └── SqlGenerator.php │ │ │ │ ├── MigrationPlanCalculator.php │ │ │ │ ├── MigrationRepository.php │ │ │ │ ├── Migrator.php │ │ │ │ ├── MigratorConfiguration.php │ │ │ │ ├── OutputWriter.php │ │ │ │ ├── ParameterFormatter.php │ │ │ │ ├── ParameterFormatterInterface.php │ │ │ │ ├── Provider │ │ │ │ ├── EmptySchemaProvider.php │ │ │ │ ├── Exception │ │ │ │ │ ├── NoMappingFound.php │ │ │ │ │ └── ProviderException.php │ │ │ │ ├── LazySchemaDiffProvider.php │ │ │ │ ├── OrmSchemaProvider.php │ │ │ │ ├── SchemaDiffProvider.php │ │ │ │ ├── SchemaDiffProviderInterface.php │ │ │ │ ├── SchemaProviderInterface.php │ │ │ │ └── StubSchemaProvider.php │ │ │ │ ├── QueryWriter.php │ │ │ │ ├── Rollup.php │ │ │ │ ├── SchemaDumper.php │ │ │ │ ├── Stopwatch.php │ │ │ │ ├── Tools │ │ │ │ ├── BooleanStringFormatter.php │ │ │ │ ├── BytesFormatter.php │ │ │ │ └── Console │ │ │ │ │ ├── Command │ │ │ │ │ ├── AbstractCommand.php │ │ │ │ │ ├── DiffCommand.php │ │ │ │ │ ├── DumpSchemaCommand.php │ │ │ │ │ ├── ExecuteCommand.php │ │ │ │ │ ├── GenerateCommand.php │ │ │ │ │ ├── LatestCommand.php │ │ │ │ │ ├── MigrateCommand.php │ │ │ │ │ ├── RollupCommand.php │ │ │ │ │ ├── StatusCommand.php │ │ │ │ │ ├── UpToDateCommand.php │ │ │ │ │ └── VersionCommand.php │ │ │ │ │ ├── ConnectionLoader.php │ │ │ │ │ ├── ConsoleRunner.php │ │ │ │ │ ├── Exception │ │ │ │ │ ├── ConnectionNotSpecified.php │ │ │ │ │ ├── ConsoleException.php │ │ │ │ │ ├── DirectoryDoesNotExist.php │ │ │ │ │ ├── FileTypeNotSupported.php │ │ │ │ │ ├── InvalidOptionUsage.php │ │ │ │ │ ├── SchemaDumpRequiresNoMigrations.php │ │ │ │ │ ├── VersionAlreadyExists.php │ │ │ │ │ └── VersionDoesNotExist.php │ │ │ │ │ └── Helper │ │ │ │ │ ├── ConfigurationHelper.php │ │ │ │ │ ├── ConfigurationHelperInterface.php │ │ │ │ │ ├── MigrationDirectoryHelper.php │ │ │ │ │ └── MigrationStatusInfosHelper.php │ │ │ │ ├── Tracking │ │ │ │ ├── TableDefinition.php │ │ │ │ ├── TableManipulator.php │ │ │ │ ├── TableStatus.php │ │ │ │ └── TableUpdater.php │ │ │ │ └── Version │ │ │ │ ├── AliasResolver.php │ │ │ │ ├── Direction.php │ │ │ │ ├── ExecutionResult.php │ │ │ │ ├── Executor.php │ │ │ │ ├── ExecutorInterface.php │ │ │ │ ├── Factory.php │ │ │ │ ├── State.php │ │ │ │ └── Version.php │ │ └── phpstan.neon.dist │ ├── orm │ │ ├── .doctrine-project.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── UPGRADE.md │ │ ├── bin │ │ │ ├── doctrine │ │ │ ├── doctrine-pear.php │ │ │ ├── doctrine.bat │ │ │ └── doctrine.php │ │ ├── ci │ │ │ └── github │ │ │ │ └── phpunit │ │ │ │ ├── mysqli.xml │ │ │ │ ├── pdo_mysql.xml │ │ │ │ ├── pdo_pgsql.xml │ │ │ │ └── sqlite.xml │ │ ├── composer.json │ │ ├── docs │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ ├── generate-docs.sh │ │ │ │ └── install-dependencies.sh │ │ │ └── en │ │ │ │ ├── Makefile │ │ │ │ ├── _exts │ │ │ │ └── configurationblock.py │ │ │ │ ├── conf.py │ │ │ │ ├── cookbook │ │ │ │ ├── advanced-field-value-conversion-using-custom-mapping-types.rst │ │ │ │ ├── aggregate-fields.rst │ │ │ │ ├── custom-mapping-types.rst │ │ │ │ ├── decorator-pattern.rst │ │ │ │ ├── dql-custom-walkers.rst │ │ │ │ ├── dql-user-defined-functions.rst │ │ │ │ ├── entities-in-session.rst │ │ │ │ ├── implementing-arrayaccess-for-domain-objects.rst │ │ │ │ ├── implementing-the-notify-changetracking-policy.rst │ │ │ │ ├── implementing-wakeup-or-clone.rst │ │ │ │ ├── mysql-enums.rst │ │ │ │ ├── resolve-target-entity-listener.rst │ │ │ │ ├── sql-table-prefixes.rst │ │ │ │ ├── strategy-cookbook-introduction.rst │ │ │ │ ├── validation-of-entities.rst │ │ │ │ └── working-with-datetime.rst │ │ │ │ ├── index.rst │ │ │ │ ├── make.bat │ │ │ │ ├── reference │ │ │ │ ├── advanced-configuration.rst │ │ │ │ ├── annotations-reference.rst │ │ │ │ ├── architecture.rst │ │ │ │ ├── association-mapping.rst │ │ │ │ ├── basic-mapping.rst │ │ │ │ ├── batch-processing.rst │ │ │ │ ├── best-practices.rst │ │ │ │ ├── caching.rst │ │ │ │ ├── change-tracking-policies.rst │ │ │ │ ├── configuration.rst │ │ │ │ ├── dql-doctrine-query-language.rst │ │ │ │ ├── events.rst │ │ │ │ ├── faq.rst │ │ │ │ ├── filters.rst │ │ │ │ ├── improving-performance.rst │ │ │ │ ├── inheritance-mapping.rst │ │ │ │ ├── installation.rst │ │ │ │ ├── limitations-and-known-issues.rst │ │ │ │ ├── metadata-drivers.rst │ │ │ │ ├── namingstrategy.rst │ │ │ │ ├── native-sql.rst │ │ │ │ ├── partial-objects.rst │ │ │ │ ├── php-mapping.rst │ │ │ │ ├── query-builder.rst │ │ │ │ ├── second-level-cache.rst │ │ │ │ ├── security.rst │ │ │ │ ├── tools.rst │ │ │ │ ├── transactions-and-concurrency.rst │ │ │ │ ├── unitofwork-associations.rst │ │ │ │ ├── unitofwork.rst │ │ │ │ ├── working-with-associations.rst │ │ │ │ ├── working-with-objects.rst │ │ │ │ ├── xml-mapping.rst │ │ │ │ └── yaml-mapping.rst │ │ │ │ ├── sidebar.rst │ │ │ │ ├── toc.rst │ │ │ │ └── tutorials │ │ │ │ ├── composite-primary-keys.rst │ │ │ │ ├── embeddables.rst │ │ │ │ ├── extra-lazy-associations.rst │ │ │ │ ├── getting-started-database.rst │ │ │ │ ├── getting-started-models.rst │ │ │ │ ├── getting-started.rst │ │ │ │ ├── ordered-associations.rst │ │ │ │ ├── override-field-association-mappings-in-subclasses.rst │ │ │ │ ├── pagination.rst │ │ │ │ └── working-with-indexed-associations.rst │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── PreFlushEventArgs.php │ │ │ └── PreUpdateEventArgs.php │ │ │ ├── Events.php │ │ │ ├── Id │ │ │ ├── AbstractIdGenerator.php │ │ │ ├── AssignedGenerator.php │ │ │ ├── BigIntegerIdentityGenerator.php │ │ │ ├── IdentityGenerator.php │ │ │ ├── SequenceGenerator.php │ │ │ ├── TableGenerator.php │ │ │ └── UuidGenerator.php │ │ │ ├── Internal │ │ │ ├── CommitOrderCalculator.php │ │ │ ├── Hydration │ │ │ │ ├── AbstractHydrator.php │ │ │ │ ├── ArrayHydrator.php │ │ │ │ ├── HydrationException.php │ │ │ │ ├── IterableResult.php │ │ │ │ ├── ObjectHydrator.php │ │ │ │ ├── ScalarHydrator.php │ │ │ │ ├── SimpleObjectHydrator.php │ │ │ │ └── SingleScalarHydrator.php │ │ │ └── HydrationCompleteHandler.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 │ │ │ ├── ChangeTrackingPolicy.php │ │ │ ├── ClassMetadata.php │ │ │ ├── ClassMetadataFactory.php │ │ │ ├── ClassMetadataInfo.php │ │ │ ├── Column.php │ │ │ ├── ColumnResult.php │ │ │ ├── CustomIdGenerator.php │ │ │ ├── DefaultEntityListenerResolver.php │ │ │ ├── DefaultNamingStrategy.php │ │ │ ├── DefaultQuoteStrategy.php │ │ │ ├── DiscriminatorColumn.php │ │ │ ├── DiscriminatorMap.php │ │ │ ├── Driver │ │ │ │ ├── AnnotationDriver.php │ │ │ │ ├── DatabaseDriver.php │ │ │ │ ├── DoctrineAnnotations.php │ │ │ │ ├── DriverChain.php │ │ │ │ ├── PHPDriver.php │ │ │ │ ├── SimplifiedXmlDriver.php │ │ │ │ ├── SimplifiedYamlDriver.php │ │ │ │ ├── StaticPHPDriver.php │ │ │ │ ├── XmlDriver.php │ │ │ │ └── YamlDriver.php │ │ │ ├── Embeddable.php │ │ │ ├── Embedded.php │ │ │ ├── Entity.php │ │ │ ├── EntityListenerResolver.php │ │ │ ├── EntityListeners.php │ │ │ ├── EntityResult.php │ │ │ ├── FieldResult.php │ │ │ ├── GeneratedValue.php │ │ │ ├── HasLifecycleCallbacks.php │ │ │ ├── Id.php │ │ │ ├── Index.php │ │ │ ├── InheritanceType.php │ │ │ ├── JoinColumn.php │ │ │ ├── JoinColumns.php │ │ │ ├── JoinTable.php │ │ │ ├── ManyToMany.php │ │ │ ├── ManyToOne.php │ │ │ ├── MappedSuperclass.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 │ │ │ ├── SequenceGenerator.php │ │ │ ├── SqlResultSetMapping.php │ │ │ ├── SqlResultSetMappings.php │ │ │ ├── Table.php │ │ │ ├── UnderscoreNamingStrategy.php │ │ │ ├── UniqueConstraint.php │ │ │ └── Version.php │ │ │ ├── NativeQuery.php │ │ │ ├── NoResultException.php │ │ │ ├── NonUniqueResultException.php │ │ │ ├── ORMException.php │ │ │ ├── ORMInvalidArgumentException.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 │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ └── 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 │ │ │ └── RepositoryFactory.php │ │ │ ├── Tools │ │ │ ├── AttachEntityListenersListener.php │ │ │ ├── Console │ │ │ │ ├── Command │ │ │ │ │ ├── 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 │ │ │ │ ├── Helper │ │ │ │ │ └── EntityManagerHelper.php │ │ │ │ └── MetadataFilter.php │ │ │ ├── ConvertDoctrine1Schema.php │ │ │ ├── DebugUnitOfWorkListener.php │ │ │ ├── DisconnectedClassMetadataFactory.php │ │ │ ├── EntityGenerator.php │ │ │ ├── EntityRepositoryGenerator.php │ │ │ ├── Event │ │ │ │ ├── GenerateSchemaEventArgs.php │ │ │ │ └── GenerateSchemaTableEventArgs.php │ │ │ ├── Export │ │ │ │ ├── ClassMetadataExporter.php │ │ │ │ ├── Driver │ │ │ │ │ ├── AbstractExporter.php │ │ │ │ │ ├── AnnotationExporter.php │ │ │ │ │ ├── PhpExporter.php │ │ │ │ │ ├── XmlExporter.php │ │ │ │ │ └── YamlExporter.php │ │ │ │ └── ExportException.php │ │ │ ├── Pagination │ │ │ │ ├── CountOutputWalker.php │ │ │ │ ├── CountWalker.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 │ │ ├── .doctrine-project.json │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── continuous-integration.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE-1.2.md │ │ ├── composer.json │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ ├── Common │ │ │ │ ├── NotifyPropertyChanged.php │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── AnnotationDriver.php │ │ │ │ │ │ │ ├── DefaultFileLocator.php │ │ │ │ │ │ │ ├── FileDriver.php │ │ │ │ │ │ │ ├── FileLocator.php │ │ │ │ │ │ │ ├── MappingDriver.php │ │ │ │ │ │ │ ├── MappingDriverChain.php │ │ │ │ │ │ │ ├── PHPDriver.php │ │ │ │ │ │ │ ├── StaticPHPDriver.php │ │ │ │ │ │ │ └── SymfonyFileLocator.php │ │ │ │ │ │ ├── MappingException.php │ │ │ │ │ │ ├── ReflectionService.php │ │ │ │ │ │ ├── RuntimeReflectionService.php │ │ │ │ │ │ └── StaticReflectionService.php │ │ │ │ │ ├── ObjectManager.php │ │ │ │ │ ├── ObjectManagerAware.php │ │ │ │ │ ├── ObjectManagerDecorator.php │ │ │ │ │ ├── ObjectRepository.php │ │ │ │ │ ├── PersistentObject.php │ │ │ │ │ └── Proxy.php │ │ │ │ └── PropertyChangedListener.php │ │ │ │ └── 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 │ │ │ │ │ ├── AnnotationDriver.php │ │ │ │ │ ├── DefaultFileLocator.php │ │ │ │ │ ├── FileDriver.php │ │ │ │ │ ├── FileLocator.php │ │ │ │ │ ├── MappingDriver.php │ │ │ │ │ ├── MappingDriverChain.php │ │ │ │ │ ├── PHPDriver.php │ │ │ │ │ ├── StaticPHPDriver.php │ │ │ │ │ └── SymfonyFileLocator.php │ │ │ │ ├── MappingException.php │ │ │ │ ├── ReflectionService.php │ │ │ │ ├── RuntimeReflectionService.php │ │ │ │ └── StaticReflectionService.php │ │ │ │ ├── NotifyPropertyChanged.php │ │ │ │ ├── ObjectManager.php │ │ │ │ ├── ObjectManagerAware.php │ │ │ │ ├── ObjectManagerDecorator.php │ │ │ │ ├── ObjectRepository.php │ │ │ │ ├── PropertyChangedListener.php │ │ │ │ └── Proxy.php │ │ └── psalm.xml │ └── reflection │ │ ├── .doctrine-project.json │ │ ├── .github │ │ └── workflows │ │ │ ├── coding-standards.yml │ │ │ ├── continuous-integration.yml │ │ │ ├── release-on-milestone-closed.yml │ │ │ └── static-analysis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── lib │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Reflection │ │ │ ├── ClassFinderInterface.php │ │ │ ├── Compatibility │ │ │ ├── Php7 │ │ │ │ ├── ReflectionClass.php │ │ │ │ └── ReflectionMethod.php │ │ │ ├── Php8 │ │ │ │ ├── ReflectionClass.php │ │ │ │ └── ReflectionMethod.php │ │ │ ├── ReflectionClass.php │ │ │ └── ReflectionMethod.php │ │ │ ├── Psr0FindFile.php │ │ │ ├── ReflectionProviderInterface.php │ │ │ ├── RuntimePublicReflectionProperty.php │ │ │ ├── StaticReflectionClass.php │ │ │ ├── StaticReflectionMethod.php │ │ │ ├── StaticReflectionParser.php │ │ │ ├── StaticReflectionProperty.php │ │ │ └── TypedNoDefaultReflectionProperty.php │ │ └── phpstan.neon.dist ├── 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 ├── fig │ └── link-util │ │ ├── LICENSE.md │ │ ├── composer.json │ │ └── src │ │ ├── EvolvableLinkProviderTrait.php │ │ ├── EvolvableLinkTrait.php │ │ ├── GenericLinkProvider.php │ │ ├── Link.php │ │ ├── LinkProviderTrait.php │ │ ├── LinkTrait.php │ │ ├── Relations.php │ │ └── TemplatedHrefTrait.php ├── guzzlehttp │ ├── guzzle │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ └── src │ │ │ ├── BodySummarizer.php │ │ │ ├── BodySummarizerInterface.php │ │ │ ├── Client.php │ │ │ ├── ClientInterface.php │ │ │ ├── ClientTrait.php │ │ │ ├── Cookie │ │ │ ├── CookieJar.php │ │ │ ├── CookieJarInterface.php │ │ │ ├── FileCookieJar.php │ │ │ ├── SessionCookieJar.php │ │ │ └── SetCookie.php │ │ │ ├── Exception │ │ │ ├── BadResponseException.php │ │ │ ├── ClientException.php │ │ │ ├── ConnectException.php │ │ │ ├── GuzzleException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── RequestException.php │ │ │ ├── ServerException.php │ │ │ ├── TooManyRedirectsException.php │ │ │ └── TransferException.php │ │ │ ├── Handler │ │ │ ├── CurlFactory.php │ │ │ ├── CurlFactoryInterface.php │ │ │ ├── CurlHandler.php │ │ │ ├── CurlMultiHandler.php │ │ │ ├── EasyHandle.php │ │ │ ├── HeaderProcessor.php │ │ │ ├── MockHandler.php │ │ │ ├── Proxy.php │ │ │ └── StreamHandler.php │ │ │ ├── HandlerStack.php │ │ │ ├── MessageFormatter.php │ │ │ ├── MessageFormatterInterface.php │ │ │ ├── Middleware.php │ │ │ ├── Pool.php │ │ │ ├── PrepareBodyMiddleware.php │ │ │ ├── RedirectMiddleware.php │ │ │ ├── RequestOptions.php │ │ │ ├── RetryMiddleware.php │ │ │ ├── TransferStats.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ ├── promises │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── AggregateException.php │ │ │ ├── CancellationException.php │ │ │ ├── Coroutine.php │ │ │ ├── Create.php │ │ │ ├── Each.php │ │ │ ├── EachPromise.php │ │ │ ├── FulfilledPromise.php │ │ │ ├── Is.php │ │ │ ├── Promise.php │ │ │ ├── PromiseInterface.php │ │ │ ├── PromisorInterface.php │ │ │ ├── RejectedPromise.php │ │ │ ├── RejectionException.php │ │ │ ├── TaskQueue.php │ │ │ ├── TaskQueueInterface.php │ │ │ ├── Utils.php │ │ │ ├── functions.php │ │ │ └── functions_include.php │ └── psr7 │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── AppendStream.php │ │ ├── BufferStream.php │ │ ├── CachingStream.php │ │ ├── DroppingStream.php │ │ ├── Exception │ │ └── MalformedUriException.php │ │ ├── FnStream.php │ │ ├── Header.php │ │ ├── HttpFactory.php │ │ ├── InflateStream.php │ │ ├── LazyOpenStream.php │ │ ├── LimitStream.php │ │ ├── Message.php │ │ ├── MessageTrait.php │ │ ├── MimeType.php │ │ ├── MultipartStream.php │ │ ├── NoSeekStream.php │ │ ├── PumpStream.php │ │ ├── Query.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Rfc7230.php │ │ ├── ServerRequest.php │ │ ├── Stream.php │ │ ├── StreamDecoratorTrait.php │ │ ├── StreamWrapper.php │ │ ├── UploadedFile.php │ │ ├── Uri.php │ │ ├── UriComparator.php │ │ ├── UriNormalizer.php │ │ ├── UriResolver.php │ │ └── Utils.php ├── jdorn │ └── sql-formatter │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── examples │ │ ├── cli.php │ │ └── examples.php │ │ ├── lib │ │ └── SqlFormatter.php │ │ ├── phpunit.xml.dist │ │ └── tests │ │ ├── SqlFormatterTest.php │ │ ├── clihighlight.html │ │ ├── compress.html │ │ ├── format-highlight.html │ │ ├── format.html │ │ ├── highlight.html │ │ ├── performance.php │ │ └── sql.sql ├── jms │ └── translation-bundle │ │ ├── .travis │ │ ├── install_cs.sh │ │ ├── install_test.sh │ │ ├── script_cs.sh │ │ ├── script_test.sh │ │ └── success_test.sh │ │ ├── Annotation │ │ ├── Desc.php │ │ ├── Ignore.php │ │ └── Meaning.php │ │ ├── Command │ │ ├── ExtractTranslationCommand.php │ │ └── ResourcesListCommand.php │ │ ├── Controller │ │ ├── ApiController.php │ │ └── TranslateController.php │ │ ├── DependencyInjection │ │ ├── Compiler │ │ │ ├── IntegrationPass.php │ │ │ ├── MountDumpersPass.php │ │ │ ├── MountExtractorsPass.php │ │ │ ├── MountFileVisitorsPass.php │ │ │ └── MountLoadersPass.php │ │ ├── Configuration.php │ │ └── JMSTranslationExtension.php │ │ ├── Exception │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ └── RuntimeException.php │ │ ├── JMSTranslationBundle.php │ │ ├── Logger │ │ ├── LoggerAwareInterface.php │ │ └── OutputLogger.php │ │ ├── Model │ │ ├── FileSource.php │ │ ├── Message.php │ │ ├── Message │ │ │ ├── XliffMessage.php │ │ │ └── XliffMessageState.php │ │ ├── MessageCatalogue.php │ │ ├── MessageCollection.php │ │ └── SourceInterface.php │ │ ├── Resources │ │ ├── config │ │ │ ├── console.xml │ │ │ └── services.xml │ │ ├── doc │ │ │ ├── LICENSE │ │ │ ├── cookbook │ │ │ │ ├── config_reference.rst │ │ │ │ └── extraction_configs.rst │ │ │ ├── index.rst │ │ │ ├── installation.rst │ │ │ ├── usage.rst │ │ │ └── webinterface.rst │ │ ├── meta │ │ │ └── LICENSE │ │ ├── public │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ └── layout.css │ │ │ └── js │ │ │ │ ├── jms.js │ │ │ │ ├── jquery.js │ │ │ │ └── trunk8.js │ │ ├── schema │ │ │ └── xliff-core-1.2-strict.xsd │ │ └── views │ │ │ ├── Translate │ │ │ ├── index.html.twig │ │ │ └── messages.html.twig │ │ │ └── base.html.twig │ │ ├── Translation │ │ ├── Comparison │ │ │ ├── CatalogueComparator.php │ │ │ └── ChangeSet.php │ │ ├── Config.php │ │ ├── ConfigBuilder.php │ │ ├── ConfigFactory.php │ │ ├── Dumper │ │ │ ├── ArrayStructureDumper.php │ │ │ ├── DumperInterface.php │ │ │ ├── PhpDumper.php │ │ │ ├── SymfonyDumperAdapter.php │ │ │ ├── XliffDumper.php │ │ │ └── YamlDumper.php │ │ ├── Extractor │ │ │ ├── File │ │ │ │ ├── AuthenticationMessagesExtractor.php │ │ │ │ ├── DefaultPhpFileExtractor.php │ │ │ │ ├── FormExtractor.php │ │ │ │ ├── TranslationContainerExtractor.php │ │ │ │ ├── TwigFileExtractor.php │ │ │ │ └── ValidationExtractor.php │ │ │ ├── FileExtractor.php │ │ │ └── FileVisitorInterface.php │ │ ├── ExtractorInterface.php │ │ ├── ExtractorManager.php │ │ ├── FileSourceFactory.php │ │ ├── FileWriter.php │ │ ├── Loader │ │ │ ├── LoaderInterface.php │ │ │ ├── Symfony │ │ │ │ └── XliffLoader.php │ │ │ ├── SymfonyLoaderAdapter.php │ │ │ └── XliffLoader.php │ │ ├── LoaderManager.php │ │ ├── TranslationContainerInterface.php │ │ └── Updater.php │ │ ├── Twig │ │ ├── DefaultApplyingNodeVisitor.php │ │ ├── Node │ │ │ └── Transchoice.php │ │ ├── NormalizingNodeVisitor.php │ │ ├── RemovingNodeVisitor.php │ │ └── TranslationExtension.php │ │ ├── Util │ │ ├── FileUtils.php │ │ └── Writer.php │ │ ├── composer.json │ │ └── phpcs.xml.dist ├── laminas │ ├── laminas-code │ │ ├── COPYRIGHT.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── polyfill │ │ │ └── ReflectionEnumPolyfill.php │ │ ├── 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 │ │ │ └── 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 │ ├── laminas-xml │ │ ├── .github │ │ │ └── workflows │ │ │ │ ├── auto-close.yml │ │ │ │ ├── continuous-integration.yml │ │ │ │ └── release-on-milestone-closed.yml │ │ ├── COPYRIGHT.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ │ │ └── Security.php │ └── laminas-zendframework-bridge │ │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── continuous-integration.yml │ │ │ └── release-on-milestone-closed.yml │ │ ├── .laminas-ci.json │ │ ├── COPYRIGHT.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── config │ │ └── replacements.php │ │ ├── psalm-baseline.xml │ │ ├── psalm.xml.dist │ │ └── src │ │ ├── Autoloader.php │ │ ├── ConfigPostProcessor.php │ │ ├── Module.php │ │ ├── Replacements.php │ │ ├── RewriteRules.php │ │ └── autoload.php ├── league │ └── geotools │ │ ├── .gitattributes │ │ ├── .github │ │ └── workflows │ │ │ ├── .editorconfig │ │ │ └── ci.yml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ └── geotools │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── src │ │ ├── ArrayCollection.php │ │ ├── Batch │ │ ├── Batch.php │ │ ├── BatchGeocoded.php │ │ ├── BatchInterface.php │ │ └── BatchResult.php │ │ ├── BoundingBox │ │ ├── BoundingBox.php │ │ └── BoundingBoxInterface.php │ │ ├── CLI │ │ ├── Application.php │ │ ├── Command │ │ │ ├── Convert │ │ │ │ ├── DM.php │ │ │ │ ├── DMS.php │ │ │ │ └── UTM.php │ │ │ ├── Distance │ │ │ │ ├── All.php │ │ │ │ ├── Flat.php │ │ │ │ ├── GreatCircle.php │ │ │ │ ├── Haversine.php │ │ │ │ └── Vincenty.php │ │ │ ├── Geocoder │ │ │ │ ├── Command.php │ │ │ │ ├── Geocode.php │ │ │ │ └── Reverse.php │ │ │ ├── Geohash │ │ │ │ ├── Decode.php │ │ │ │ └── Encode.php │ │ │ └── Vertex │ │ │ │ ├── Destination.php │ │ │ │ ├── FinalBearing.php │ │ │ │ ├── FinalCardinal.php │ │ │ │ ├── InitialBearing.php │ │ │ │ ├── InitialCardinal.php │ │ │ │ └── Middle.php │ │ ├── Formatter │ │ │ └── OutputFormatter.php │ │ └── Output │ │ │ └── ConsoleOutput.php │ │ ├── Convert │ │ ├── Convert.php │ │ └── ConvertInterface.php │ │ ├── Coordinate │ │ ├── Coordinate.php │ │ ├── CoordinateCollection.php │ │ ├── CoordinateInterface.php │ │ └── Ellipsoid.php │ │ ├── CoordinateCouple.php │ │ ├── Distance │ │ ├── Distance.php │ │ └── DistanceInterface.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── NotConvergingException.php │ │ ├── NotMatchingEllipsoidException.php │ │ └── RuntimeException.php │ │ ├── Geohash │ │ ├── Geohash.php │ │ ├── GeohashInterface.php │ │ └── TenTen.php │ │ ├── GeometryCollection.php │ │ ├── GeometryInterface.php │ │ ├── Geotools.php │ │ ├── GeotoolsInterface.php │ │ ├── Polygon │ │ ├── MultiPolygon.php │ │ ├── Polygon.php │ │ └── PolygonInterface.php │ │ └── Vertex │ │ ├── Vertex.php │ │ └── VertexInterface.php ├── liip │ ├── functional-test-bundle │ │ ├── .flintci.yml │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── Bug_report.md │ │ │ │ └── Feature_request.md │ │ │ └── workflows │ │ │ │ └── tests.yml │ │ ├── .php_cs.dist │ │ ├── .styleci.yml │ │ ├── .yamllint │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE-2.0.md │ │ ├── UPGRADE-3.0.md │ │ ├── composer.json │ │ ├── doc │ │ │ ├── basic.md │ │ │ ├── caveats.md │ │ │ ├── command.md │ │ │ ├── examples.md │ │ │ ├── fastest.md │ │ │ ├── installation.md │ │ │ ├── logged.md │ │ │ └── query.md │ │ └── src │ │ │ ├── Annotations │ │ │ └── QueryCount.php │ │ │ ├── DependencyInjection │ │ │ ├── Compiler │ │ │ │ ├── OptionalValidatorPass.php │ │ │ │ └── SetTestClientPass.php │ │ │ ├── Configuration.php │ │ │ └── LiipFunctionalTestExtension.php │ │ │ ├── EventListener │ │ │ └── ExceptionListener.php │ │ │ ├── Exception │ │ │ └── AllowedQueriesExceededException.php │ │ │ ├── LiipFunctionalTestBundle.php │ │ │ ├── QueryCountClient.php │ │ │ ├── QueryCountClientSymfony3Trait.php │ │ │ ├── QueryCountClientTrait.php │ │ │ ├── QueryCounter.php │ │ │ ├── Resources │ │ │ └── config │ │ │ │ ├── functional_test.xml │ │ │ │ └── validator.xml │ │ │ ├── Test │ │ │ ├── ValidationErrorsConstraint.php │ │ │ └── WebTestCase.php │ │ │ ├── Utils │ │ │ └── HttpAssertions.php │ │ │ └── Validator │ │ │ └── DataCollectingValidator.php │ └── test-fixtures-bundle │ │ ├── .flintci.yml │ │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── Bug_report.md │ │ │ └── Feature_request.md │ │ └── workflows │ │ │ └── tests.yml │ │ ├── .php_cs.dist │ │ ├── .styleci.yml │ │ ├── .yamllint │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── doc │ │ ├── caveats.md │ │ ├── database.md │ │ ├── examples.md │ │ └── installation.md │ │ └── src │ │ ├── Annotations │ │ └── DisableDatabaseCache.php │ │ ├── DependencyInjection │ │ ├── Configuration.php │ │ └── LiipTestFixturesExtension.php │ │ ├── Factory │ │ └── ConnectionFactory.php │ │ ├── LiipTestFixturesBundle.php │ │ ├── Resources │ │ └── config │ │ │ └── database_tools.xml │ │ ├── Services │ │ ├── DatabaseBackup │ │ │ ├── AbstractDatabaseBackup.php │ │ │ ├── DatabaseBackupInterface.php │ │ │ ├── MongodbDatabaseBackup.php │ │ │ ├── MysqlDatabaseBackup.php │ │ │ └── SqliteDatabaseBackup.php │ │ ├── DatabaseToolCollection.php │ │ ├── DatabaseTools │ │ │ ├── AbstractDatabaseTool.php │ │ │ ├── MongoDBDatabaseTool.php │ │ │ ├── ORMDatabaseTool.php │ │ │ ├── ORMSqliteDatabaseTool.php │ │ │ └── PHPCRDatabaseTool.php │ │ ├── FixturesLoaderFactory.php │ │ └── SymfonyFixturesLoaderWrapper.php │ │ └── Test │ │ └── FixturesTrait.php ├── monolog │ └── monolog │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpstan.neon.dist │ │ └── src │ │ └── Monolog │ │ ├── ErrorHandler.php │ │ ├── Formatter │ │ ├── ChromePHPFormatter.php │ │ ├── ElasticaFormatter.php │ │ ├── FlowdockFormatter.php │ │ ├── FluentdFormatter.php │ │ ├── FormatterInterface.php │ │ ├── GelfMessageFormatter.php │ │ ├── HtmlFormatter.php │ │ ├── JsonFormatter.php │ │ ├── LineFormatter.php │ │ ├── LogglyFormatter.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 │ │ ├── ElasticSearchHandler.php │ │ ├── ErrorLogHandler.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 │ │ ├── HandlerInterface.php │ │ ├── HandlerWrapper.php │ │ ├── HipChatHandler.php │ │ ├── IFTTTHandler.php │ │ ├── InsightOpsHandler.php │ │ ├── LogEntriesHandler.php │ │ ├── LogglyHandler.php │ │ ├── MailHandler.php │ │ ├── MandrillHandler.php │ │ ├── MissingExtensionException.php │ │ ├── MongoDBHandler.php │ │ ├── NativeMailerHandler.php │ │ ├── NewRelicHandler.php │ │ ├── NullHandler.php │ │ ├── PHPConsoleHandler.php │ │ ├── ProcessableHandlerInterface.php │ │ ├── ProcessableHandlerTrait.php │ │ ├── PsrHandler.php │ │ ├── PushoverHandler.php │ │ ├── RavenHandler.php │ │ ├── RedisHandler.php │ │ ├── RollbarHandler.php │ │ ├── RotatingFileHandler.php │ │ ├── SamplingHandler.php │ │ ├── Slack │ │ │ └── SlackRecord.php │ │ ├── SlackHandler.php │ │ ├── SlackWebhookHandler.php │ │ ├── SlackbotHandler.php │ │ ├── SocketHandler.php │ │ ├── StreamHandler.php │ │ ├── SwiftMailerHandler.php │ │ ├── SyslogHandler.php │ │ ├── SyslogUdp │ │ │ └── UdpSocket.php │ │ ├── SyslogUdpHandler.php │ │ ├── TestHandler.php │ │ ├── WhatFailureGroupHandler.php │ │ └── ZendMonitorHandler.php │ │ ├── Logger.php │ │ ├── Processor │ │ ├── GitProcessor.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 │ │ └── 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 ├── nojacko │ ├── email-data-disposable │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── data │ │ │ ├── disposable.json │ │ │ ├── disposable.php │ │ │ └── disposable.txt │ │ └── src │ │ │ ├── Data.php │ │ │ ├── Domains.php │ │ │ ├── Exporter │ │ │ ├── BaseInterface.php │ │ │ ├── Json.php │ │ │ ├── Php.php │ │ │ └── Text.php │ │ │ └── Getter │ │ │ ├── Json.php │ │ │ └── Newline.php │ └── email-validator │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── phpunit.xml │ │ ├── src │ │ ├── Validator.php │ │ └── data │ │ │ └── role.php │ │ └── tests │ │ ├── HasMxTest.php │ │ ├── IsDisposableTest.php │ │ ├── IsEmailTest.php │ │ ├── IsExampleTest.php │ │ ├── IsRoleTest.php │ │ ├── IsSendableTest.php │ │ └── IsValidTest.php ├── ocramius │ └── proxy-manager │ │ ├── .phpstorm.meta.php │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── STABILITY.md │ │ ├── ToRussianPeople.md │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── docs │ │ ├── access-interceptor-scope-localizer.md │ │ ├── access-interceptor-value-holder.md │ │ ├── copyright.md │ │ ├── credits.md │ │ ├── download.md │ │ ├── generator-strategies.md │ │ ├── lazy-loading-ghost-object.md │ │ ├── lazy-loading-value-holder.md │ │ ├── null-object.md │ │ ├── remote-object.md │ │ └── tuning-for-production.md │ │ ├── examples │ │ ├── access-interceptor-scope-localizer.php │ │ ├── ghost-object-skipped-properties.php │ │ ├── ghost-object.php │ │ ├── remote-proxy.php │ │ ├── remote-proxy │ │ │ └── remote-proxy-server.php │ │ ├── smart-reference.php │ │ └── virtual-proxy.php │ │ ├── proxy-manager.svg │ │ └── 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 │ │ ├── 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 │ │ │ └── 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 │ │ │ └── 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 ├── p3k │ └── picofeed │ │ ├── LICENSE │ │ ├── lib │ │ └── PicoFeed │ │ │ ├── Base.php │ │ │ ├── Client │ │ │ ├── Client.php │ │ │ ├── ClientException.php │ │ │ ├── Curl.php │ │ │ ├── ForbiddenException.php │ │ │ ├── HttpHeaders.php │ │ │ ├── InvalidCertificateException.php │ │ │ ├── InvalidUrlException.php │ │ │ ├── MaxRedirectException.php │ │ │ ├── MaxSizeException.php │ │ │ ├── Stream.php │ │ │ ├── TimeoutException.php │ │ │ ├── UnauthorizedException.php │ │ │ └── Url.php │ │ │ ├── Config │ │ │ └── Config.php │ │ │ ├── Encoding │ │ │ └── Encoding.php │ │ │ ├── Filter │ │ │ ├── Attribute.php │ │ │ ├── Filter.php │ │ │ ├── Html.php │ │ │ └── Tag.php │ │ │ ├── Generator │ │ │ ├── ContentGeneratorInterface.php │ │ │ ├── FileContentGenerator.php │ │ │ └── YoutubeContentGenerator.php │ │ │ ├── Logging │ │ │ └── Logger.php │ │ │ ├── Parser │ │ │ ├── Atom.php │ │ │ ├── DateParser.php │ │ │ ├── Feed.php │ │ │ ├── Item.php │ │ │ ├── MalformedXmlException.php │ │ │ ├── Parser.php │ │ │ ├── ParserException.php │ │ │ ├── ParserInterface.php │ │ │ ├── Rss10.php │ │ │ ├── Rss20.php │ │ │ ├── Rss91.php │ │ │ ├── Rss92.php │ │ │ ├── XmlEntityException.php │ │ │ └── XmlParser.php │ │ │ ├── PicoFeedException.php │ │ │ ├── Processor │ │ │ ├── ContentFilterProcessor.php │ │ │ ├── ContentGeneratorProcessor.php │ │ │ ├── ItemPostProcessor.php │ │ │ ├── ItemProcessorInterface.php │ │ │ └── ScraperProcessor.php │ │ │ ├── Reader │ │ │ ├── Favicon.php │ │ │ ├── Reader.php │ │ │ ├── ReaderException.php │ │ │ ├── SubscriptionNotFoundException.php │ │ │ └── UnsupportedFeedFormatException.php │ │ │ ├── Rules │ │ │ ├── .blog.lemonde.fr.php │ │ │ ├── .blogs.nytimes.com.php │ │ │ ├── .igen.fr.php │ │ │ ├── .nytimes.com.php │ │ │ ├── .over-blog.com.php │ │ │ ├── .phoronix.com.php │ │ │ ├── .slate.com.php │ │ │ ├── .theguardian.com.php │ │ │ ├── .wikipedia.org.php │ │ │ ├── .wired.com.php │ │ │ ├── .wsj.com.php │ │ │ ├── 01net.com.php │ │ │ ├── 24.hu.php │ │ │ ├── 444.hu.php │ │ │ ├── 888.hu.php │ │ │ ├── abstrusegoose.com.php │ │ │ ├── achgut.com.php │ │ │ ├── adventuregamers.com.php │ │ │ ├── alainonline.net.php │ │ │ ├── aljazeera.com.php │ │ │ ├── allafrica.com.php │ │ │ ├── allgemeine-zeitung.de.php │ │ │ ├── amazingsuperpowers.com.php │ │ │ ├── anythingcomic.com.php │ │ │ ├── ap.org.php │ │ │ ├── areadvd.de.php │ │ │ ├── arstechnica.com.php │ │ │ ├── atv.hu.php │ │ │ ├── awkwardzombie.com.php │ │ │ ├── backchannel.com.php │ │ │ ├── bangkokpost.com.php │ │ │ ├── bauerwilli.com.php │ │ │ ├── bgr.com.php │ │ │ ├── bigfootjustice.com.php │ │ │ ├── bigpicture.ru.php │ │ │ ├── bizjournals.com.php │ │ │ ├── biztimes.com.php │ │ │ ├── bleepingcomputer.com.php │ │ │ ├── blog.fefe.de.php │ │ │ ├── blog.mapillary.com.php │ │ │ ├── brewers.mlb.com.php │ │ │ ├── buenosairesherald.com.php │ │ │ ├── bunicomic.com.php │ │ │ ├── buttersafe.com.php │ │ │ ├── cad-comic.com.php │ │ │ ├── chaoslife.findchaos.com.php │ │ │ ├── chinafile.com.php │ │ │ ├── cicero.de.php │ │ │ ├── cliquerefresh.com.php │ │ │ ├── cnet.com.php │ │ │ ├── coinwelt.de.php │ │ │ ├── consomac.fr.php │ │ │ ├── cowbirdsinlove.com.php │ │ │ ├── crash.net.php │ │ │ ├── csmonitor.com.php │ │ │ ├── dailyjs.com.php │ │ │ ├── dailyreporter.com.php │ │ │ ├── dailytech.com.php │ │ │ ├── degroupnews.com.php │ │ │ ├── derstandard.at.php │ │ │ ├── dilbert.com.php │ │ │ ├── discovermagazine.com.php │ │ │ ├── distrowatch.com.php │ │ │ ├── dozodomo.com.php │ │ │ ├── drawingboardcomic.com.php │ │ │ ├── e-w-e.ru.php │ │ │ ├── economist.com.php │ │ │ ├── encyclopedie.naheulbeuk.com.php │ │ │ ├── endlessorigami.com.php │ │ │ ├── engadget.com.php │ │ │ ├── escapistmagazine.com.php │ │ │ ├── espn.go.com.php │ │ │ ├── exocomics.com.php │ │ │ ├── explosm.net.php │ │ │ ├── extrafabulouscomics.com.php │ │ │ ├── factroom.ru.php │ │ │ ├── fastcodesign.com.php │ │ │ ├── fastcoexist.com.php │ │ │ ├── fastcompany.com.php │ │ │ ├── ffworld.com.php │ │ │ ├── foreignpolicy.com.php │ │ │ ├── fossbytes.com.php │ │ │ ├── fototelegraf.ru.php │ │ │ ├── fowllanguagecomics.com.php │ │ │ ├── gamechannel.hu.php │ │ │ ├── gamestar.hu.php │ │ │ ├── geek.com.php │ │ │ ├── geektimes.ru.php │ │ │ ├── gerbilwithajetpack.com.php │ │ │ ├── giantitp.com.php │ │ │ ├── github.com.php │ │ │ ├── gocomics.com.php │ │ │ ├── golem.de.php │ │ │ ├── gondola.hu.php │ │ │ ├── gorabbit.ru.php │ │ │ ├── habrahabr.ru.php │ │ │ ├── happletea.com.php │ │ │ ├── hardware.fr.php │ │ │ ├── heise.de.php │ │ │ ├── hirek.prim.hu.php │ │ │ ├── hotshowlife.com.php │ │ │ ├── huffingtonpost.com.php │ │ │ ├── hvg.hu.php │ │ │ ├── idokep.hu.php │ │ │ ├── imogenquest.net.php │ │ │ ├── index.hu.php │ │ │ ├── indiehaven.com.php │ │ │ ├── inforadio.hu.php │ │ │ ├── ing.dk.php │ │ │ ├── invisiblebread.com.php │ │ │ ├── ir.amd.com.php │ │ │ ├── japantimes.co.jp.php │ │ │ ├── japantoday.com.php │ │ │ ├── journaldugeek.com.php │ │ │ ├── jsonline.com.php │ │ │ ├── justcoolidea.ru.php │ │ │ ├── kanpai.fr.php │ │ │ ├── karriere.jobfinder.dk.php │ │ │ ├── kisalfold.hu.php │ │ │ ├── kiszamolo.hu.php │ │ │ ├── kodi.tv.php │ │ │ ├── koreaherald.com.php │ │ │ ├── koreatimes.php │ │ │ ├── lastplacecomics.com.php │ │ │ ├── legorafi.fr.php │ │ │ ├── lejapon.fr.php │ │ │ ├── lesjoiesducode.fr.php │ │ │ ├── lfg.co.php │ │ │ ├── lifehacker.com.php │ │ │ ├── lifehacker.ru.php │ │ │ ├── linux-magazin.de.php │ │ │ ├── linux.org.php │ │ │ ├── linux.org.ru.php │ │ │ ├── linuxinsider.com.php │ │ │ ├── lists.php │ │ │ ├── loadingartist.com.php │ │ │ ├── loldwell.com.php │ │ │ ├── lukesurl.com.php │ │ │ ├── macg.co.php │ │ │ ├── maclife.de.php │ │ │ ├── magyarkurir.hu.php │ │ │ ├── marc.info.php │ │ │ ├── marriedtothesea.com.php │ │ │ ├── marycagle.com.php │ │ │ ├── maximumble.thebookofbiff.com.php │ │ │ ├── medium.com.php │ │ │ ├── mercworks.net.php │ │ │ ├── metronieuws.nl.php │ │ │ ├── milwaukeenns.php │ │ │ ├── mno.hu.php │ │ │ ├── mokepon.smackjeeves.com.php │ │ │ ├── monandroid.com.php │ │ │ ├── monwindows.com.php │ │ │ ├── moya-planeta.ru.php │ │ │ ├── mrlovenstein.com.php │ │ │ ├── muckrock.com.php │ │ │ ├── mynorthshorenow.com.php │ │ │ ├── nakedCapitalism.php │ │ │ ├── nasa.gov.php │ │ │ ├── nat-geo.ru.php │ │ │ ├── nationaljournal.com.php │ │ │ ├── nature.com.php │ │ │ ├── nba.com.php │ │ │ ├── nedroid.com.php │ │ │ ├── networkworld.com.php │ │ │ ├── neustadt-ticker.de.php │ │ │ ├── nextinpact.com.php │ │ │ ├── niceteethcomic.com.php │ │ │ ├── nichtlustig.de.php │ │ │ ├── nlcafe.hu.php │ │ │ ├── novo-argumente.com.php │ │ │ ├── oglaf.com.php │ │ │ ├── onhax.net.php │ │ │ ├── onlinekosten.de.php │ │ │ ├── onmilwaukee.php │ │ │ ├── openculture.com.php │ │ │ ├── opennet.ru.php │ │ │ ├── openrightsgroup.org.php │ │ │ ├── opensource.com.php │ │ │ ├── optipess.com.php │ │ │ ├── origo.hu.php │ │ │ ├── osnews.com.php │ │ │ ├── pastebin.com.php │ │ │ ├── pcgameshardware.de.php │ │ │ ├── peebleslab.com.php │ │ │ ├── penny-arcade.com.php │ │ │ ├── pixelbeat.org.php │ │ │ ├── plus.google.com.php │ │ │ ├── popstrip.com.php │ │ │ ├── portfolio.hu.php │ │ │ ├── pro-linux.de.php │ │ │ ├── publicpolicyforum.org.php │ │ │ ├── publy.ru.php │ │ │ ├── putaindecode.fr.php │ │ │ ├── recode.net.php │ │ │ ├── retractionwatch.com.php │ │ │ ├── rockpapershotgun.com.php │ │ │ ├── rue89.nouvelobs.com.php │ │ │ ├── rugbyrama.fr.php │ │ │ ├── salonkolumnisten.com │ │ │ ├── satwcomic.com.php │ │ │ ├── science-skeptical.de.php │ │ │ ├── scrumalliance.org.php │ │ │ ├── securityfocus.com.php │ │ │ ├── sentfromthemoon.com.php │ │ │ ├── sitepoint.com.php │ │ │ ├── slashdot.org.php │ │ │ ├── smallhousebliss.com.php │ │ │ ├── smarthomewelt.de.php │ │ │ ├── smashingmagazine.com.php │ │ │ ├── smbc-comics.com.php │ │ │ ├── snopes.com.php │ │ │ ├── soundandvision.com.php │ │ │ ├── spiegel.de.php │ │ │ ├── stereophile.com.php │ │ │ ├── stupidfox.net.php │ │ │ ├── subtraction.com.php │ │ │ ├── sz.de.php │ │ │ ├── takprosto.cc.php │ │ │ ├── techcrunch.com.php │ │ │ ├── the-ebook-reader.com.php │ │ │ ├── theatlantic.com.php │ │ │ ├── theawkwardyeti.com.php │ │ │ ├── thecodinglove.com.php │ │ │ ├── thedoghousediaries.com.php │ │ │ ├── thegamercat.com.php │ │ │ ├── thehindu.com.php │ │ │ ├── thelocal.se.php │ │ │ ├── themerepublic.net.php │ │ │ ├── themoscowtimes.com.php │ │ │ ├── thenewslens.com.php │ │ │ ├── theodd1sout.com.php │ │ │ ├── theonion.com.php │ │ │ ├── theregister.co.uk.php │ │ │ ├── thestandard.com.hk.php │ │ │ ├── theverge.com.php │ │ │ ├── threepanelsoul.com.php │ │ │ ├── tichyseinblick.de.php │ │ │ ├── timesofindia.indiatimes.com.php │ │ │ ├── totalcar.hu.php │ │ │ ├── tozsdeforum.hu.php │ │ │ ├── travel-dealz.de.php │ │ │ ├── travelo.hu.php │ │ │ ├── treehugger.com.php │ │ │ ├── treelobsters.com.php │ │ │ ├── tutorialzine.com.php │ │ │ ├── twogag.com.php │ │ │ ├── twokinds.keenspot.com.php │ │ │ ├── undeadly.org.php │ │ │ ├── upi.com.php │ │ │ ├── usatoday.com.php │ │ │ ├── version2.dk.php │ │ │ ├── vezess.hu.php │ │ │ ├── vgcats.com.php │ │ │ ├── vuxml.org.php │ │ │ ├── wausaudailyherald.com.php │ │ │ ├── welt.de.php │ │ │ ├── westfalen-blatt.de.php │ │ │ ├── www.bbc.co.uk.php │ │ │ ├── www.bdgest.com.php │ │ │ ├── www.bgr.in.php │ │ │ ├── www.businessweek.com.php │ │ │ ├── www.cnn.com.php │ │ │ ├── www.developpez.com.php │ │ │ ├── www.egscomics.com.php │ │ │ ├── www.fakingnews.firstpost.com.php │ │ │ ├── www.forbes.com.php │ │ │ ├── www.franceculture.fr.php │ │ │ ├── www.futura-sciences.com.php │ │ │ ├── www.geekculture.com.php │ │ │ ├── www.howtogeek.com.php │ │ │ ├── www.lepoint.fr.php │ │ │ ├── www.lesnumeriques.com.php │ │ │ ├── www.mac4ever.com.php │ │ │ ├── www.makeuseof.com.php │ │ │ ├── www.monsieur-le-chien.fr.php │ │ │ ├── www.npr.org.php │ │ │ ├── www.numerama.com.php │ │ │ ├── www.oneindia.com.php │ │ │ ├── www.pseudo-sciences.org.php │ │ │ ├── www.sciencemag.org.php │ │ │ ├── www.slate.fr.php │ │ │ ├── www.universfreebox.com.php │ │ │ ├── www.zeit.de.php │ │ │ ├── xkcd.com.php │ │ │ ├── ymatuhin.ru.php │ │ │ ├── zarojel.hu.php │ │ │ ├── zdnet.com.php │ │ │ └── zoom.hu.php │ │ │ ├── Scraper │ │ │ ├── CandidateParser.php │ │ │ ├── ParserInterface.php │ │ │ ├── RuleLoader.php │ │ │ ├── RuleParser.php │ │ │ └── Scraper.php │ │ │ ├── Serialization │ │ │ ├── Subscription.php │ │ │ ├── SubscriptionList.php │ │ │ ├── SubscriptionListBuilder.php │ │ │ ├── SubscriptionListParser.php │ │ │ └── SubscriptionParser.php │ │ │ └── Syndication │ │ │ ├── AtomFeedBuilder.php │ │ │ ├── AtomHelper.php │ │ │ ├── AtomItemBuilder.php │ │ │ ├── FeedBuilder.php │ │ │ ├── ItemBuilder.php │ │ │ ├── Rss20FeedBuilder.php │ │ │ ├── Rss20Helper.php │ │ │ └── Rss20ItemBuilder.php │ │ └── picofeed ├── 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 ├── php-http │ └── discovery │ │ ├── .php-cs-fixer.php │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── ClassDiscovery.php │ │ ├── Composer │ │ └── Plugin.php │ │ ├── Exception.php │ │ ├── Exception │ │ ├── ClassInstantiationFailedException.php │ │ ├── DiscoveryFailedException.php │ │ ├── NoCandidateFoundException.php │ │ ├── NotFoundException.php │ │ ├── PuliUnavailableException.php │ │ └── StrategyUnavailableException.php │ │ ├── HttpAsyncClientDiscovery.php │ │ ├── HttpClientDiscovery.php │ │ ├── MessageFactoryDiscovery.php │ │ ├── NotFoundException.php │ │ ├── Psr17Factory.php │ │ ├── Psr17FactoryDiscovery.php │ │ ├── Psr18ClientDiscovery.php │ │ ├── Strategy │ │ ├── CommonClassesStrategy.php │ │ ├── CommonPsr17ClassesStrategy.php │ │ ├── DiscoveryStrategy.php │ │ ├── MockClientStrategy.php │ │ └── PuliBetaStrategy.php │ │ ├── StreamFactoryDiscovery.php │ │ └── UriFactoryDiscovery.php ├── phpfastcache │ └── phpfastcache │ │ ├── CNAME │ │ ├── README.md │ │ ├── composer.json │ │ ├── example.php │ │ ├── example2.php │ │ ├── examples │ │ ├── 1.learn.php │ │ ├── 100.list_of_functions.php │ │ ├── 101.learn_fast.php │ │ ├── 2.setup.php │ │ ├── 3.shortcut.php │ │ ├── 4.travel.php │ │ ├── 5.master.php │ │ ├── 6.cache_whole_website.php │ │ ├── debugging.php │ │ ├── systeminfo.php │ │ └── testing.php │ │ ├── index.html │ │ ├── phpfastcache.php │ │ ├── phpfastcache │ │ ├── 3.0.0 │ │ │ ├── abstract.php │ │ │ ├── driver.php │ │ │ ├── drivers │ │ │ │ ├── apc.php │ │ │ │ ├── cookie.php │ │ │ │ ├── example.php │ │ │ │ ├── files.php │ │ │ │ ├── memcache.php │ │ │ │ ├── memcached.php │ │ │ │ ├── predis.php │ │ │ │ ├── redis.php │ │ │ │ ├── sqlite.php │ │ │ │ ├── ssdb.php │ │ │ │ ├── wincache.php │ │ │ │ └── xcache.php │ │ │ ├── exceptions │ │ │ │ ├── phpfastcacheCoreException.php │ │ │ │ └── phpfastcacheDriverException.php │ │ │ ├── extensions.php │ │ │ ├── index.html │ │ │ ├── phpfastcache.php │ │ │ └── readme.txt │ │ ├── _extensions │ │ │ ├── SSDB.php │ │ │ ├── predis-1.0 │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── FAQ.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── VERSION │ │ │ │ ├── autoload.php │ │ │ │ ├── composer.json │ │ │ │ ├── examples │ │ │ │ │ ├── custom_cluster_distributor.php │ │ │ │ │ ├── debuggable_connection.php │ │ │ │ │ ├── dispatcher_loop.php │ │ │ │ │ ├── executing_redis_commands.php │ │ │ │ │ ├── key_prefixing.php │ │ │ │ │ ├── lua_scripting_abstraction.php │ │ │ │ │ ├── monitor_consumer.php │ │ │ │ │ ├── pipelining_commands.php │ │ │ │ │ ├── pubsub_consumer.php │ │ │ │ │ ├── redis_collections_iterators.php │ │ │ │ │ ├── replication_complex.php │ │ │ │ │ ├── replication_simple.php │ │ │ │ │ ├── session_handler.php │ │ │ │ │ ├── shared.php │ │ │ │ │ └── transaction_using_cas.php │ │ │ │ ├── package.ini │ │ │ │ └── src │ │ │ │ │ ├── Autoloader.php │ │ │ │ │ ├── Client.php │ │ │ │ │ ├── ClientContextInterface.php │ │ │ │ │ ├── ClientException.php │ │ │ │ │ ├── ClientInterface.php │ │ │ │ │ ├── Cluster │ │ │ │ │ ├── ClusterStrategy.php │ │ │ │ │ ├── Distributor │ │ │ │ │ │ ├── DistributorInterface.php │ │ │ │ │ │ ├── EmptyRingException.php │ │ │ │ │ │ ├── HashRing.php │ │ │ │ │ │ └── KetamaRing.php │ │ │ │ │ ├── Hash │ │ │ │ │ │ ├── CRC16.php │ │ │ │ │ │ └── HashGeneratorInterface.php │ │ │ │ │ ├── PredisStrategy.php │ │ │ │ │ ├── RedisStrategy.php │ │ │ │ │ └── StrategyInterface.php │ │ │ │ │ ├── Collection │ │ │ │ │ └── Iterator │ │ │ │ │ │ ├── CursorBasedIterator.php │ │ │ │ │ │ ├── HashKey.php │ │ │ │ │ │ ├── Keyspace.php │ │ │ │ │ │ ├── ListKey.php │ │ │ │ │ │ ├── SetKey.php │ │ │ │ │ │ └── SortedSetKey.php │ │ │ │ │ ├── Command │ │ │ │ │ ├── Command.php │ │ │ │ │ ├── CommandInterface.php │ │ │ │ │ ├── ConnectionAuth.php │ │ │ │ │ ├── ConnectionEcho.php │ │ │ │ │ ├── ConnectionPing.php │ │ │ │ │ ├── ConnectionQuit.php │ │ │ │ │ ├── ConnectionSelect.php │ │ │ │ │ ├── HashDelete.php │ │ │ │ │ ├── HashExists.php │ │ │ │ │ ├── HashGet.php │ │ │ │ │ ├── HashGetAll.php │ │ │ │ │ ├── HashGetMultiple.php │ │ │ │ │ ├── HashIncrementBy.php │ │ │ │ │ ├── HashIncrementByFloat.php │ │ │ │ │ ├── HashKeys.php │ │ │ │ │ ├── HashLength.php │ │ │ │ │ ├── HashScan.php │ │ │ │ │ ├── HashSet.php │ │ │ │ │ ├── HashSetMultiple.php │ │ │ │ │ ├── HashSetPreserve.php │ │ │ │ │ ├── HashValues.php │ │ │ │ │ ├── HyperLogLogAdd.php │ │ │ │ │ ├── HyperLogLogCount.php │ │ │ │ │ ├── HyperLogLogMerge.php │ │ │ │ │ ├── KeyDelete.php │ │ │ │ │ ├── KeyDump.php │ │ │ │ │ ├── KeyExists.php │ │ │ │ │ ├── KeyExpire.php │ │ │ │ │ ├── KeyExpireAt.php │ │ │ │ │ ├── KeyKeys.php │ │ │ │ │ ├── KeyMove.php │ │ │ │ │ ├── KeyPersist.php │ │ │ │ │ ├── KeyPreciseExpire.php │ │ │ │ │ ├── KeyPreciseExpireAt.php │ │ │ │ │ ├── KeyPreciseTimeToLive.php │ │ │ │ │ ├── KeyRandom.php │ │ │ │ │ ├── KeyRename.php │ │ │ │ │ ├── KeyRenamePreserve.php │ │ │ │ │ ├── KeyRestore.php │ │ │ │ │ ├── KeyScan.php │ │ │ │ │ ├── KeySort.php │ │ │ │ │ ├── KeyTimeToLive.php │ │ │ │ │ ├── KeyType.php │ │ │ │ │ ├── ListIndex.php │ │ │ │ │ ├── ListInsert.php │ │ │ │ │ ├── ListLength.php │ │ │ │ │ ├── ListPopFirst.php │ │ │ │ │ ├── ListPopFirstBlocking.php │ │ │ │ │ ├── ListPopLast.php │ │ │ │ │ ├── ListPopLastBlocking.php │ │ │ │ │ ├── ListPopLastPushHead.php │ │ │ │ │ ├── ListPopLastPushHeadBlocking.php │ │ │ │ │ ├── ListPushHead.php │ │ │ │ │ ├── ListPushHeadX.php │ │ │ │ │ ├── ListPushTail.php │ │ │ │ │ ├── ListPushTailX.php │ │ │ │ │ ├── ListRange.php │ │ │ │ │ ├── ListRemove.php │ │ │ │ │ ├── ListSet.php │ │ │ │ │ ├── ListTrim.php │ │ │ │ │ ├── PrefixableCommandInterface.php │ │ │ │ │ ├── Processor │ │ │ │ │ │ ├── KeyPrefixProcessor.php │ │ │ │ │ │ ├── ProcessorChain.php │ │ │ │ │ │ └── ProcessorInterface.php │ │ │ │ │ ├── PubSubPublish.php │ │ │ │ │ ├── PubSubPubsub.php │ │ │ │ │ ├── PubSubSubscribe.php │ │ │ │ │ ├── PubSubSubscribeByPattern.php │ │ │ │ │ ├── PubSubUnsubscribe.php │ │ │ │ │ ├── PubSubUnsubscribeByPattern.php │ │ │ │ │ ├── RawCommand.php │ │ │ │ │ ├── ScriptCommand.php │ │ │ │ │ ├── ServerBackgroundRewriteAOF.php │ │ │ │ │ ├── ServerBackgroundSave.php │ │ │ │ │ ├── ServerClient.php │ │ │ │ │ ├── ServerCommand.php │ │ │ │ │ ├── ServerConfig.php │ │ │ │ │ ├── ServerDatabaseSize.php │ │ │ │ │ ├── ServerEval.php │ │ │ │ │ ├── ServerEvalSHA.php │ │ │ │ │ ├── ServerFlushAll.php │ │ │ │ │ ├── ServerFlushDatabase.php │ │ │ │ │ ├── ServerInfo.php │ │ │ │ │ ├── ServerInfoV26x.php │ │ │ │ │ ├── ServerLastSave.php │ │ │ │ │ ├── ServerMonitor.php │ │ │ │ │ ├── ServerObject.php │ │ │ │ │ ├── ServerSave.php │ │ │ │ │ ├── ServerScript.php │ │ │ │ │ ├── ServerSentinel.php │ │ │ │ │ ├── ServerShutdown.php │ │ │ │ │ ├── ServerSlaveOf.php │ │ │ │ │ ├── ServerSlowlog.php │ │ │ │ │ ├── ServerTime.php │ │ │ │ │ ├── SetAdd.php │ │ │ │ │ ├── SetCardinality.php │ │ │ │ │ ├── SetDifference.php │ │ │ │ │ ├── SetDifferenceStore.php │ │ │ │ │ ├── SetIntersection.php │ │ │ │ │ ├── SetIntersectionStore.php │ │ │ │ │ ├── SetIsMember.php │ │ │ │ │ ├── SetMembers.php │ │ │ │ │ ├── SetMove.php │ │ │ │ │ ├── SetPop.php │ │ │ │ │ ├── SetRandomMember.php │ │ │ │ │ ├── SetRemove.php │ │ │ │ │ ├── SetScan.php │ │ │ │ │ ├── SetUnion.php │ │ │ │ │ ├── SetUnionStore.php │ │ │ │ │ ├── StringAppend.php │ │ │ │ │ ├── StringBitCount.php │ │ │ │ │ ├── StringBitOp.php │ │ │ │ │ ├── StringBitPos.php │ │ │ │ │ ├── StringDecrement.php │ │ │ │ │ ├── StringDecrementBy.php │ │ │ │ │ ├── StringGet.php │ │ │ │ │ ├── StringGetBit.php │ │ │ │ │ ├── StringGetMultiple.php │ │ │ │ │ ├── StringGetRange.php │ │ │ │ │ ├── StringGetSet.php │ │ │ │ │ ├── StringIncrement.php │ │ │ │ │ ├── StringIncrementBy.php │ │ │ │ │ ├── StringIncrementByFloat.php │ │ │ │ │ ├── StringPreciseSetExpire.php │ │ │ │ │ ├── StringSet.php │ │ │ │ │ ├── StringSetBit.php │ │ │ │ │ ├── StringSetExpire.php │ │ │ │ │ ├── StringSetMultiple.php │ │ │ │ │ ├── StringSetMultiplePreserve.php │ │ │ │ │ ├── StringSetPreserve.php │ │ │ │ │ ├── StringSetRange.php │ │ │ │ │ ├── StringStrlen.php │ │ │ │ │ ├── StringSubstr.php │ │ │ │ │ ├── TransactionDiscard.php │ │ │ │ │ ├── TransactionExec.php │ │ │ │ │ ├── TransactionMulti.php │ │ │ │ │ ├── TransactionUnwatch.php │ │ │ │ │ ├── TransactionWatch.php │ │ │ │ │ ├── ZSetAdd.php │ │ │ │ │ ├── ZSetCardinality.php │ │ │ │ │ ├── ZSetCount.php │ │ │ │ │ ├── ZSetIncrementBy.php │ │ │ │ │ ├── ZSetIntersectionStore.php │ │ │ │ │ ├── ZSetLexCount.php │ │ │ │ │ ├── ZSetRange.php │ │ │ │ │ ├── ZSetRangeByLex.php │ │ │ │ │ ├── ZSetRangeByScore.php │ │ │ │ │ ├── ZSetRank.php │ │ │ │ │ ├── ZSetRemove.php │ │ │ │ │ ├── ZSetRemoveRangeByLex.php │ │ │ │ │ ├── ZSetRemoveRangeByRank.php │ │ │ │ │ ├── ZSetRemoveRangeByScore.php │ │ │ │ │ ├── ZSetReverseRange.php │ │ │ │ │ ├── ZSetReverseRangeByScore.php │ │ │ │ │ ├── ZSetReverseRank.php │ │ │ │ │ ├── ZSetScan.php │ │ │ │ │ ├── ZSetScore.php │ │ │ │ │ └── ZSetUnionStore.php │ │ │ │ │ ├── CommunicationException.php │ │ │ │ │ ├── Configuration │ │ │ │ │ ├── ClusterOption.php │ │ │ │ │ ├── ConnectionFactoryOption.php │ │ │ │ │ ├── ExceptionsOption.php │ │ │ │ │ ├── OptionInterface.php │ │ │ │ │ ├── Options.php │ │ │ │ │ ├── OptionsInterface.php │ │ │ │ │ ├── PrefixOption.php │ │ │ │ │ ├── ProfileOption.php │ │ │ │ │ └── ReplicationOption.php │ │ │ │ │ ├── Connection │ │ │ │ │ ├── AbstractConnection.php │ │ │ │ │ ├── Aggregate │ │ │ │ │ │ ├── ClusterInterface.php │ │ │ │ │ │ ├── MasterSlaveReplication.php │ │ │ │ │ │ ├── PredisCluster.php │ │ │ │ │ │ ├── RedisCluster.php │ │ │ │ │ │ └── ReplicationInterface.php │ │ │ │ │ ├── AggregateConnectionInterface.php │ │ │ │ │ ├── CompositeConnectionInterface.php │ │ │ │ │ ├── CompositeStreamConnection.php │ │ │ │ │ ├── ConnectionException.php │ │ │ │ │ ├── ConnectionInterface.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── FactoryInterface.php │ │ │ │ │ ├── NodeConnectionInterface.php │ │ │ │ │ ├── Parameters.php │ │ │ │ │ ├── ParametersInterface.php │ │ │ │ │ ├── PhpiredisSocketConnection.php │ │ │ │ │ ├── PhpiredisStreamConnection.php │ │ │ │ │ ├── StreamConnection.php │ │ │ │ │ └── WebdisConnection.php │ │ │ │ │ ├── Monitor │ │ │ │ │ └── Consumer.php │ │ │ │ │ ├── NotSupportedException.php │ │ │ │ │ ├── Pipeline │ │ │ │ │ ├── Atomic.php │ │ │ │ │ ├── ConnectionErrorProof.php │ │ │ │ │ ├── FireAndForget.php │ │ │ │ │ └── Pipeline.php │ │ │ │ │ ├── PredisException.php │ │ │ │ │ ├── Profile │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── ProfileInterface.php │ │ │ │ │ ├── RedisProfile.php │ │ │ │ │ ├── RedisUnstable.php │ │ │ │ │ ├── RedisVersion200.php │ │ │ │ │ ├── RedisVersion220.php │ │ │ │ │ ├── RedisVersion240.php │ │ │ │ │ ├── RedisVersion260.php │ │ │ │ │ ├── RedisVersion280.php │ │ │ │ │ └── RedisVersion300.php │ │ │ │ │ ├── Protocol │ │ │ │ │ ├── ProtocolException.php │ │ │ │ │ ├── ProtocolProcessorInterface.php │ │ │ │ │ ├── RequestSerializerInterface.php │ │ │ │ │ ├── ResponseReaderInterface.php │ │ │ │ │ └── Text │ │ │ │ │ │ ├── CompositeProtocolProcessor.php │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ ├── BulkResponse.php │ │ │ │ │ │ ├── ErrorResponse.php │ │ │ │ │ │ ├── IntegerResponse.php │ │ │ │ │ │ ├── MultiBulkResponse.php │ │ │ │ │ │ ├── ResponseHandlerInterface.php │ │ │ │ │ │ ├── StatusResponse.php │ │ │ │ │ │ └── StreamableMultiBulkResponse.php │ │ │ │ │ │ ├── ProtocolProcessor.php │ │ │ │ │ │ ├── RequestSerializer.php │ │ │ │ │ │ └── ResponseReader.php │ │ │ │ │ ├── PubSub │ │ │ │ │ ├── AbstractConsumer.php │ │ │ │ │ ├── Consumer.php │ │ │ │ │ └── DispatcherLoop.php │ │ │ │ │ ├── Replication │ │ │ │ │ └── ReplicationStrategy.php │ │ │ │ │ ├── Response │ │ │ │ │ ├── Error.php │ │ │ │ │ ├── ErrorInterface.php │ │ │ │ │ ├── Iterator │ │ │ │ │ │ ├── MultiBulk.php │ │ │ │ │ │ ├── MultiBulkIterator.php │ │ │ │ │ │ └── MultiBulkTuple.php │ │ │ │ │ ├── ResponseInterface.php │ │ │ │ │ ├── ServerException.php │ │ │ │ │ └── Status.php │ │ │ │ │ ├── Session │ │ │ │ │ └── Handler.php │ │ │ │ │ └── Transaction │ │ │ │ │ ├── AbortedMultiExecException.php │ │ │ │ │ ├── MultiExec.php │ │ │ │ │ └── MultiExecState.php │ │ │ └── regex.php │ │ └── index.html │ │ └── readme │ │ ├── Doc Huong Dan.txt │ │ ├── List of Supported Drivers.txt │ │ ├── ReadMe.txt │ │ ├── about xcache.txt │ │ ├── apc_changed_to_apcu.txt │ │ ├── composer_readme.txt │ │ └── copyright & license.txt ├── phpunit │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── .github │ │ │ ├── CONTRIBUTING.md │ │ │ ├── FUNDING.yml │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phive.xml │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── CodeCoverage.php │ │ │ ├── Driver │ │ │ │ ├── Driver.php │ │ │ │ ├── PCOV.php │ │ │ │ ├── PHPDBG.php │ │ │ │ └── Xdebug.php │ │ │ ├── Exception │ │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── MissingCoversAnnotationException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ └── UnintentionallyCoveredCodeException.php │ │ │ ├── Filter.php │ │ │ ├── Node │ │ │ │ ├── AbstractNode.php │ │ │ │ ├── Builder.php │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ └── Iterator.php │ │ │ ├── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Crap4j.php │ │ │ │ ├── Html │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── Renderer.php │ │ │ │ │ └── Renderer │ │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Template │ │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── custom.css │ │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ │ ├── octicons.css │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ │ ├── file.html.dist │ │ │ │ │ │ ├── file_item.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 │ │ │ │ │ │ └── method_item.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 │ │ │ ├── Util.php │ │ │ └── Version.php │ │ └── tests │ │ │ ├── TestCase.php │ │ │ ├── _files │ │ │ ├── BankAccount-clover.xml │ │ │ ├── BankAccount-crap4j.xml │ │ │ ├── BankAccount-text.txt │ │ │ ├── BankAccount.php │ │ │ ├── BankAccountTest.php │ │ │ ├── CoverageClassExtendedTest.php │ │ │ ├── CoverageClassTest.php │ │ │ ├── CoverageFunctionParenthesesTest.php │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ │ ├── CoverageFunctionTest.php │ │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ │ ├── CoverageMethodParenthesesTest.php │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ │ ├── CoverageMethodTest.php │ │ │ ├── CoverageNoneTest.php │ │ │ ├── CoverageNotPrivateTest.php │ │ │ ├── CoverageNotProtectedTest.php │ │ │ ├── CoverageNotPublicTest.php │ │ │ ├── CoverageNothingTest.php │ │ │ ├── CoveragePrivateTest.php │ │ │ ├── CoverageProtectedTest.php │ │ │ ├── CoveragePublicTest.php │ │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ │ ├── CoveredClass.php │ │ │ ├── CoveredFunction.php │ │ │ ├── Crash.php │ │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ │ ├── NamespaceCoverageClassTest.php │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ │ ├── NamespaceCoverageCoversClassTest.php │ │ │ ├── NamespaceCoverageMethodTest.php │ │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ │ ├── NamespaceCoverageNotPublicTest.php │ │ │ ├── NamespaceCoveragePrivateTest.php │ │ │ ├── NamespaceCoverageProtectedTest.php │ │ │ ├── NamespaceCoveragePublicTest.php │ │ │ ├── NamespaceCoveredClass.php │ │ │ ├── NotExistingCoveredElementTest.php │ │ │ ├── Report │ │ │ │ ├── HTML │ │ │ │ │ ├── CoverageForBankAccount │ │ │ │ │ │ ├── BankAccount.php.html │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── CoverageForClassWithAnonymousFunction │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── source_with_class_and_anonymous_function.php.html │ │ │ │ │ └── CoverageForFileWithIgnoredLines │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── source_with_ignore.php.html │ │ │ │ └── XML │ │ │ │ │ ├── CoverageForBankAccount │ │ │ │ │ ├── BankAccount.php.xml │ │ │ │ │ └── index.xml │ │ │ │ │ ├── CoverageForClassWithAnonymousFunction │ │ │ │ │ ├── index.xml │ │ │ │ │ └── source_with_class_and_anonymous_function.php.xml │ │ │ │ │ └── CoverageForFileWithIgnoredLines │ │ │ │ │ ├── index.xml │ │ │ │ │ └── source_with_ignore.php.xml │ │ │ ├── class-with-anonymous-function-clover.xml │ │ │ ├── class-with-anonymous-function-crap4j.xml │ │ │ ├── class-with-anonymous-function-text.txt │ │ │ ├── ignored-lines-clover.xml │ │ │ ├── ignored-lines-crap4j.xml │ │ │ ├── ignored-lines-text.txt │ │ │ ├── source_with_class_and_anonymous_function.php │ │ │ ├── source_with_ignore.php │ │ │ ├── source_with_namespace.php │ │ │ ├── source_with_oneline_annotations.php │ │ │ ├── source_with_use_statements.php │ │ │ ├── source_without_ignore.php │ │ │ └── source_without_namespace.php │ │ │ ├── bootstrap.php │ │ │ └── tests │ │ │ ├── BuilderTest.php │ │ │ ├── CloverTest.php │ │ │ ├── CodeCoverageTest.php │ │ │ ├── Crap4jTest.php │ │ │ ├── Exception │ │ │ └── UnintentionallyCoveredCodeExceptionTest.php │ │ │ ├── FilterTest.php │ │ │ ├── HTMLTest.php │ │ │ ├── TextTest.php │ │ │ ├── UtilTest.php │ │ │ └── XmlTest.php │ ├── php-file-iterator │ │ ├── .gitattributes │ │ ├── .github │ │ │ └── stale.yml │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Facade.php │ │ │ ├── Factory.php │ │ │ └── Iterator.php │ │ └── tests │ │ │ └── FactoryTest.php │ ├── php-text-template │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Template.php │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .github │ │ │ ├── FUNDING.yml │ │ │ └── stale.yml │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Exception.php │ │ │ ├── RuntimeException.php │ │ │ └── Timer.php │ │ └── tests │ │ │ └── TimerTest.php │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Abstract.php │ │ │ ├── Ampersand.php │ │ │ ├── AndEqual.php │ │ │ ├── Array.php │ │ │ ├── ArrayCast.php │ │ │ ├── As.php │ │ │ ├── At.php │ │ │ ├── Backtick.php │ │ │ ├── BadCharacter.php │ │ │ ├── BoolCast.php │ │ │ ├── BooleanAnd.php │ │ │ ├── BooleanOr.php │ │ │ ├── CachingFactory.php │ │ │ ├── Callable.php │ │ │ ├── Caret.php │ │ │ ├── Case.php │ │ │ ├── Catch.php │ │ │ ├── Character.php │ │ │ ├── Class.php │ │ │ ├── ClassC.php │ │ │ ├── ClassNameConstant.php │ │ │ ├── Clone.php │ │ │ ├── CloseBracket.php │ │ │ ├── CloseCurly.php │ │ │ ├── CloseSquare.php │ │ │ ├── CloseTag.php │ │ │ ├── Coalesce.php │ │ │ ├── CoalesceEqual.php │ │ │ ├── Colon.php │ │ │ ├── Comma.php │ │ │ ├── Comment.php │ │ │ ├── ConcatEqual.php │ │ │ ├── Const.php │ │ │ ├── ConstantEncapsedString.php │ │ │ ├── Continue.php │ │ │ ├── CurlyOpen.php │ │ │ ├── DNumber.php │ │ │ ├── Dec.php │ │ │ ├── Declare.php │ │ │ ├── Default.php │ │ │ ├── Dir.php │ │ │ ├── Div.php │ │ │ ├── DivEqual.php │ │ │ ├── Do.php │ │ │ ├── DocComment.php │ │ │ ├── Dollar.php │ │ │ ├── DollarOpenCurlyBraces.php │ │ │ ├── Dot.php │ │ │ ├── DoubleArrow.php │ │ │ ├── DoubleCast.php │ │ │ ├── DoubleColon.php │ │ │ ├── DoubleQuotes.php │ │ │ ├── Echo.php │ │ │ ├── Ellipsis.php │ │ │ ├── Else.php │ │ │ ├── Elseif.php │ │ │ ├── Empty.php │ │ │ ├── EncapsedAndWhitespace.php │ │ │ ├── EndHeredoc.php │ │ │ ├── Enddeclare.php │ │ │ ├── Endfor.php │ │ │ ├── Endforeach.php │ │ │ ├── Endif.php │ │ │ ├── Endswitch.php │ │ │ ├── Endwhile.php │ │ │ ├── Equal.php │ │ │ ├── Eval.php │ │ │ ├── ExclamationMark.php │ │ │ ├── Exit.php │ │ │ ├── Extends.php │ │ │ ├── File.php │ │ │ ├── Final.php │ │ │ ├── Finally.php │ │ │ ├── Fn.php │ │ │ ├── For.php │ │ │ ├── Foreach.php │ │ │ ├── FuncC.php │ │ │ ├── Function.php │ │ │ ├── Global.php │ │ │ ├── Goto.php │ │ │ ├── Gt.php │ │ │ ├── HaltCompiler.php │ │ │ ├── If.php │ │ │ ├── Implements.php │ │ │ ├── Inc.php │ │ │ ├── Include.php │ │ │ ├── IncludeOnce.php │ │ │ ├── Includes.php │ │ │ ├── InlineHtml.php │ │ │ ├── Instanceof.php │ │ │ ├── Insteadof.php │ │ │ ├── IntCast.php │ │ │ ├── Interface.php │ │ │ ├── IsEqual.php │ │ │ ├── IsGreaterOrEqual.php │ │ │ ├── IsIdentical.php │ │ │ ├── IsNotEqual.php │ │ │ ├── IsNotIdentical.php │ │ │ ├── IsSmallerOrEqual.php │ │ │ ├── Isset.php │ │ │ ├── Line.php │ │ │ ├── List.php │ │ │ ├── Lnumber.php │ │ │ ├── LogicalAnd.php │ │ │ ├── LogicalOr.php │ │ │ ├── LogicalXor.php │ │ │ ├── Lt.php │ │ │ ├── MethodC.php │ │ │ ├── Minus.php │ │ │ ├── MinusEqual.php │ │ │ ├── ModEqual.php │ │ │ ├── MulEqual.php │ │ │ ├── Mult.php │ │ │ ├── NameFullyQualified.php │ │ │ ├── NameQualified.php │ │ │ ├── NameRelative.php │ │ │ ├── Namespace.php │ │ │ ├── New.php │ │ │ ├── NsC.php │ │ │ ├── NsSeparator.php │ │ │ ├── NumString.php │ │ │ ├── ObjectCast.php │ │ │ ├── ObjectOperator.php │ │ │ ├── OpenBracket.php │ │ │ ├── OpenCurly.php │ │ │ ├── OpenSquare.php │ │ │ ├── OpenTag.php │ │ │ ├── OpenTagWithEcho.php │ │ │ ├── OrEqual.php │ │ │ ├── PaamayimNekudotayim.php │ │ │ ├── Percent.php │ │ │ ├── Pipe.php │ │ │ ├── Plus.php │ │ │ ├── PlusEqual.php │ │ │ ├── Pow.php │ │ │ ├── PowEqual.php │ │ │ ├── Print.php │ │ │ ├── Private.php │ │ │ ├── Protected.php │ │ │ ├── Public.php │ │ │ ├── QuestionMark.php │ │ │ ├── Require.php │ │ │ ├── RequireOnce.php │ │ │ ├── Return.php │ │ │ ├── Semicolon.php │ │ │ ├── Sl.php │ │ │ ├── SlEqual.php │ │ │ ├── Spaceship.php │ │ │ ├── Sr.php │ │ │ ├── SrEqual.php │ │ │ ├── StartHeredoc.php │ │ │ ├── Static.php │ │ │ ├── Stream.php │ │ │ ├── String.php │ │ │ ├── StringCast.php │ │ │ ├── StringVarname.php │ │ │ ├── Switch.php │ │ │ ├── Throw.php │ │ │ ├── Tilde.php │ │ │ ├── Token.php │ │ │ ├── TokenWithScope.php │ │ │ ├── TokenWithScopeAndVisibility.php │ │ │ ├── Trait.php │ │ │ ├── TraitC.php │ │ │ ├── Try.php │ │ │ ├── Unset.php │ │ │ ├── UnsetCast.php │ │ │ ├── Use.php │ │ │ ├── UseFunction.php │ │ │ ├── Util.php │ │ │ ├── Var.php │ │ │ ├── Variable.php │ │ │ ├── While.php │ │ │ ├── Whitespace.php │ │ │ ├── XorEqual.php │ │ │ ├── Yield.php │ │ │ ├── YieldFrom.php │ │ │ └── break.php │ └── phpunit │ │ ├── .phpstorm.meta.php │ │ ├── ChangeLog-8.5.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── composer.json │ │ ├── phpunit │ │ ├── phpunit.xsd │ │ └── src │ │ ├── Exception.php │ │ ├── Framework │ │ ├── Assert.php │ │ ├── Assert │ │ │ └── Functions.php │ │ ├── Constraint │ │ │ ├── ArrayHasKey.php │ │ │ ├── ArraySubset.php │ │ │ ├── Attribute.php │ │ │ ├── Callback.php │ │ │ ├── ClassHasAttribute.php │ │ │ ├── ClassHasStaticAttribute.php │ │ │ ├── Composite.php │ │ │ ├── Constraint.php │ │ │ ├── Count.php │ │ │ ├── DirectoryExists.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionCode.php │ │ │ ├── ExceptionMessage.php │ │ │ ├── ExceptionMessageRegularExpression.php │ │ │ ├── FileExists.php │ │ │ ├── GreaterThan.php │ │ │ ├── IsAnything.php │ │ │ ├── IsEmpty.php │ │ │ ├── IsEqual.php │ │ │ ├── IsFalse.php │ │ │ ├── IsFinite.php │ │ │ ├── IsIdentical.php │ │ │ ├── IsInfinite.php │ │ │ ├── IsInstanceOf.php │ │ │ ├── IsJson.php │ │ │ ├── IsNan.php │ │ │ ├── IsNull.php │ │ │ ├── IsReadable.php │ │ │ ├── IsTrue.php │ │ │ ├── IsType.php │ │ │ ├── IsWritable.php │ │ │ ├── JsonMatches.php │ │ │ ├── JsonMatchesErrorMessageProvider.php │ │ │ ├── LessThan.php │ │ │ ├── LogicalAnd.php │ │ │ ├── LogicalNot.php │ │ │ ├── LogicalOr.php │ │ │ ├── LogicalXor.php │ │ │ ├── ObjectHasAttribute.php │ │ │ ├── RegularExpression.php │ │ │ ├── SameSize.php │ │ │ ├── StringContains.php │ │ │ ├── StringEndsWith.php │ │ │ ├── StringMatchesFormatDescription.php │ │ │ ├── StringStartsWith.php │ │ │ ├── TraversableContains.php │ │ │ ├── TraversableContainsEqual.php │ │ │ ├── TraversableContainsIdentical.php │ │ │ └── TraversableContainsOnly.php │ │ ├── DataProviderTestSuite.php │ │ ├── Error │ │ │ ├── Deprecated.php │ │ │ ├── Error.php │ │ │ ├── Notice.php │ │ │ └── Warning.php │ │ ├── Exception │ │ │ ├── AssertionFailedError.php │ │ │ ├── CodeCoverageException.php │ │ │ ├── CoveredCodeNotExecutedException.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 │ │ ├── IncompleteTest.php │ │ ├── IncompleteTestCase.php │ │ ├── InvalidParameterGroupException.php │ │ ├── MockObject │ │ │ ├── Api │ │ │ │ ├── Api.php │ │ │ │ └── Method.php │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── InvocationStubber.php │ │ │ │ ├── Match_.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ ├── ConfigurableMethod.php │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── ConfigurableMethodsAlreadyInitializedException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── IncompatibleReturnValueException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── Generator.php │ │ │ ├── Generator │ │ │ │ ├── deprecation.tpl │ │ │ │ ├── mocked_class.tpl │ │ │ │ ├── mocked_method.tpl │ │ │ │ ├── mocked_method_void.tpl │ │ │ │ ├── mocked_static_method.tpl │ │ │ │ ├── proxied_method.tpl │ │ │ │ ├── proxied_method_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 │ │ ├── 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 │ │ ├── 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 │ │ ├── Command.php │ │ ├── Exception.php │ │ ├── Help.php │ │ ├── ResultPrinter.php │ │ └── TestRunner.php │ │ └── Util │ │ ├── Annotation │ │ ├── DocBlock.php │ │ └── Registry.php │ │ ├── Blacklist.php │ │ ├── Color.php │ │ ├── Configuration.php │ │ ├── ConfigurationGenerator.php │ │ ├── ErrorHandler.php │ │ ├── Exception.php │ │ ├── FileLoader.php │ │ ├── Filesystem.php │ │ ├── Filter.php │ │ ├── Getopt.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 │ │ └── XmlTestListRenderer.php ├── predis │ └── predis │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── autoload.php │ │ ├── bin │ │ ├── create-command-test │ │ ├── create-pear │ │ ├── create-phar │ │ └── create-single-file │ │ ├── composer.json │ │ ├── examples │ │ ├── custom_cluster_distributor.php │ │ ├── debuggable_connection.php │ │ ├── dispatcher_loop.php │ │ ├── executing_redis_commands.php │ │ ├── key_prefixing.php │ │ ├── lua_scripting_abstraction.php │ │ ├── monitor_consumer.php │ │ ├── pipelining_commands.php │ │ ├── pubsub_consumer.php │ │ ├── redis_collections_iterators.php │ │ ├── replication_complex.php │ │ ├── replication_sentinel.php │ │ ├── replication_simple.php │ │ ├── session_handler.php │ │ ├── shared.php │ │ └── transaction_using_cas.php │ │ ├── package.ini │ │ ├── src │ │ ├── Autoloader.php │ │ ├── Client.php │ │ ├── ClientContextInterface.php │ │ ├── ClientException.php │ │ ├── ClientInterface.php │ │ ├── Cluster │ │ │ ├── ClusterStrategy.php │ │ │ ├── Distributor │ │ │ │ ├── DistributorInterface.php │ │ │ │ ├── EmptyRingException.php │ │ │ │ ├── HashRing.php │ │ │ │ └── KetamaRing.php │ │ │ ├── Hash │ │ │ │ ├── CRC16.php │ │ │ │ └── HashGeneratorInterface.php │ │ │ ├── PredisStrategy.php │ │ │ ├── RedisStrategy.php │ │ │ └── StrategyInterface.php │ │ ├── Collection │ │ │ └── Iterator │ │ │ │ ├── CursorBasedIterator.php │ │ │ │ ├── HashKey.php │ │ │ │ ├── Keyspace.php │ │ │ │ ├── ListKey.php │ │ │ │ ├── SetKey.php │ │ │ │ └── SortedSetKey.php │ │ ├── Command │ │ │ ├── Command.php │ │ │ ├── CommandInterface.php │ │ │ ├── ConnectionAuth.php │ │ │ ├── ConnectionEcho.php │ │ │ ├── ConnectionPing.php │ │ │ ├── ConnectionQuit.php │ │ │ ├── ConnectionSelect.php │ │ │ ├── GeospatialGeoAdd.php │ │ │ ├── GeospatialGeoDist.php │ │ │ ├── GeospatialGeoHash.php │ │ │ ├── GeospatialGeoPos.php │ │ │ ├── GeospatialGeoRadius.php │ │ │ ├── GeospatialGeoRadiusByMember.php │ │ │ ├── HashDelete.php │ │ │ ├── HashExists.php │ │ │ ├── HashGet.php │ │ │ ├── HashGetAll.php │ │ │ ├── HashGetMultiple.php │ │ │ ├── HashIncrementBy.php │ │ │ ├── HashIncrementByFloat.php │ │ │ ├── HashKeys.php │ │ │ ├── HashLength.php │ │ │ ├── HashScan.php │ │ │ ├── HashSet.php │ │ │ ├── HashSetMultiple.php │ │ │ ├── HashSetPreserve.php │ │ │ ├── HashStringLength.php │ │ │ ├── HashValues.php │ │ │ ├── HyperLogLogAdd.php │ │ │ ├── HyperLogLogCount.php │ │ │ ├── HyperLogLogMerge.php │ │ │ ├── KeyDelete.php │ │ │ ├── KeyDump.php │ │ │ ├── KeyExists.php │ │ │ ├── KeyExpire.php │ │ │ ├── KeyExpireAt.php │ │ │ ├── KeyKeys.php │ │ │ ├── KeyMigrate.php │ │ │ ├── KeyMove.php │ │ │ ├── KeyPersist.php │ │ │ ├── KeyPreciseExpire.php │ │ │ ├── KeyPreciseExpireAt.php │ │ │ ├── KeyPreciseTimeToLive.php │ │ │ ├── KeyRandom.php │ │ │ ├── KeyRename.php │ │ │ ├── KeyRenamePreserve.php │ │ │ ├── KeyRestore.php │ │ │ ├── KeyScan.php │ │ │ ├── KeySort.php │ │ │ ├── KeyTimeToLive.php │ │ │ ├── KeyType.php │ │ │ ├── ListIndex.php │ │ │ ├── ListInsert.php │ │ │ ├── ListLength.php │ │ │ ├── ListPopFirst.php │ │ │ ├── ListPopFirstBlocking.php │ │ │ ├── ListPopLast.php │ │ │ ├── ListPopLastBlocking.php │ │ │ ├── ListPopLastPushHead.php │ │ │ ├── ListPopLastPushHeadBlocking.php │ │ │ ├── ListPushHead.php │ │ │ ├── ListPushHeadX.php │ │ │ ├── ListPushTail.php │ │ │ ├── ListPushTailX.php │ │ │ ├── ListRange.php │ │ │ ├── ListRemove.php │ │ │ ├── ListSet.php │ │ │ ├── ListTrim.php │ │ │ ├── PrefixableCommandInterface.php │ │ │ ├── Processor │ │ │ │ ├── KeyPrefixProcessor.php │ │ │ │ ├── ProcessorChain.php │ │ │ │ └── ProcessorInterface.php │ │ │ ├── PubSubPublish.php │ │ │ ├── PubSubPubsub.php │ │ │ ├── PubSubSubscribe.php │ │ │ ├── PubSubSubscribeByPattern.php │ │ │ ├── PubSubUnsubscribe.php │ │ │ ├── PubSubUnsubscribeByPattern.php │ │ │ ├── RawCommand.php │ │ │ ├── ScriptCommand.php │ │ │ ├── ServerBackgroundRewriteAOF.php │ │ │ ├── ServerBackgroundSave.php │ │ │ ├── ServerClient.php │ │ │ ├── ServerCommand.php │ │ │ ├── ServerConfig.php │ │ │ ├── ServerDatabaseSize.php │ │ │ ├── ServerEval.php │ │ │ ├── ServerEvalSHA.php │ │ │ ├── ServerFlushAll.php │ │ │ ├── ServerFlushDatabase.php │ │ │ ├── ServerInfo.php │ │ │ ├── ServerInfoV26x.php │ │ │ ├── ServerLastSave.php │ │ │ ├── ServerMonitor.php │ │ │ ├── ServerObject.php │ │ │ ├── ServerSave.php │ │ │ ├── ServerScript.php │ │ │ ├── ServerSentinel.php │ │ │ ├── ServerShutdown.php │ │ │ ├── ServerSlaveOf.php │ │ │ ├── ServerSlowlog.php │ │ │ ├── ServerTime.php │ │ │ ├── SetAdd.php │ │ │ ├── SetCardinality.php │ │ │ ├── SetDifference.php │ │ │ ├── SetDifferenceStore.php │ │ │ ├── SetIntersection.php │ │ │ ├── SetIntersectionStore.php │ │ │ ├── SetIsMember.php │ │ │ ├── SetMembers.php │ │ │ ├── SetMove.php │ │ │ ├── SetPop.php │ │ │ ├── SetRandomMember.php │ │ │ ├── SetRemove.php │ │ │ ├── SetScan.php │ │ │ ├── SetUnion.php │ │ │ ├── SetUnionStore.php │ │ │ ├── StringAppend.php │ │ │ ├── StringBitCount.php │ │ │ ├── StringBitField.php │ │ │ ├── StringBitOp.php │ │ │ ├── StringBitPos.php │ │ │ ├── StringDecrement.php │ │ │ ├── StringDecrementBy.php │ │ │ ├── StringGet.php │ │ │ ├── StringGetBit.php │ │ │ ├── StringGetMultiple.php │ │ │ ├── StringGetRange.php │ │ │ ├── StringGetSet.php │ │ │ ├── StringIncrement.php │ │ │ ├── StringIncrementBy.php │ │ │ ├── StringIncrementByFloat.php │ │ │ ├── StringPreciseSetExpire.php │ │ │ ├── StringSet.php │ │ │ ├── StringSetBit.php │ │ │ ├── StringSetExpire.php │ │ │ ├── StringSetMultiple.php │ │ │ ├── StringSetMultiplePreserve.php │ │ │ ├── StringSetPreserve.php │ │ │ ├── StringSetRange.php │ │ │ ├── StringStrlen.php │ │ │ ├── StringSubstr.php │ │ │ ├── TransactionDiscard.php │ │ │ ├── TransactionExec.php │ │ │ ├── TransactionMulti.php │ │ │ ├── TransactionUnwatch.php │ │ │ ├── TransactionWatch.php │ │ │ ├── ZSetAdd.php │ │ │ ├── ZSetCardinality.php │ │ │ ├── ZSetCount.php │ │ │ ├── ZSetIncrementBy.php │ │ │ ├── ZSetIntersectionStore.php │ │ │ ├── ZSetLexCount.php │ │ │ ├── ZSetRange.php │ │ │ ├── ZSetRangeByLex.php │ │ │ ├── ZSetRangeByScore.php │ │ │ ├── ZSetRank.php │ │ │ ├── ZSetRemove.php │ │ │ ├── ZSetRemoveRangeByLex.php │ │ │ ├── ZSetRemoveRangeByRank.php │ │ │ ├── ZSetRemoveRangeByScore.php │ │ │ ├── ZSetReverseRange.php │ │ │ ├── ZSetReverseRangeByLex.php │ │ │ ├── ZSetReverseRangeByScore.php │ │ │ ├── ZSetReverseRank.php │ │ │ ├── ZSetScan.php │ │ │ ├── ZSetScore.php │ │ │ └── ZSetUnionStore.php │ │ ├── CommunicationException.php │ │ ├── Configuration │ │ │ ├── ClusterOption.php │ │ │ ├── ConnectionFactoryOption.php │ │ │ ├── ExceptionsOption.php │ │ │ ├── OptionInterface.php │ │ │ ├── Options.php │ │ │ ├── OptionsInterface.php │ │ │ ├── PrefixOption.php │ │ │ ├── ProfileOption.php │ │ │ └── ReplicationOption.php │ │ ├── Connection │ │ │ ├── AbstractConnection.php │ │ │ ├── Aggregate │ │ │ │ ├── ClusterInterface.php │ │ │ │ ├── MasterSlaveReplication.php │ │ │ │ ├── PredisCluster.php │ │ │ │ ├── RedisCluster.php │ │ │ │ ├── ReplicationInterface.php │ │ │ │ └── SentinelReplication.php │ │ │ ├── AggregateConnectionInterface.php │ │ │ ├── CompositeConnectionInterface.php │ │ │ ├── CompositeStreamConnection.php │ │ │ ├── ConnectionException.php │ │ │ ├── ConnectionInterface.php │ │ │ ├── Factory.php │ │ │ ├── FactoryInterface.php │ │ │ ├── NodeConnectionInterface.php │ │ │ ├── Parameters.php │ │ │ ├── ParametersInterface.php │ │ │ ├── PhpiredisSocketConnection.php │ │ │ ├── PhpiredisStreamConnection.php │ │ │ ├── StreamConnection.php │ │ │ └── WebdisConnection.php │ │ ├── Monitor │ │ │ └── Consumer.php │ │ ├── NotSupportedException.php │ │ ├── Pipeline │ │ │ ├── Atomic.php │ │ │ ├── ConnectionErrorProof.php │ │ │ ├── FireAndForget.php │ │ │ └── Pipeline.php │ │ ├── PredisException.php │ │ ├── Profile │ │ │ ├── Factory.php │ │ │ ├── ProfileInterface.php │ │ │ ├── RedisProfile.php │ │ │ ├── RedisUnstable.php │ │ │ ├── RedisVersion200.php │ │ │ ├── RedisVersion220.php │ │ │ ├── RedisVersion240.php │ │ │ ├── RedisVersion260.php │ │ │ ├── RedisVersion280.php │ │ │ ├── RedisVersion300.php │ │ │ └── RedisVersion320.php │ │ ├── Protocol │ │ │ ├── ProtocolException.php │ │ │ ├── ProtocolProcessorInterface.php │ │ │ ├── RequestSerializerInterface.php │ │ │ ├── ResponseReaderInterface.php │ │ │ └── Text │ │ │ │ ├── CompositeProtocolProcessor.php │ │ │ │ ├── Handler │ │ │ │ ├── BulkResponse.php │ │ │ │ ├── ErrorResponse.php │ │ │ │ ├── IntegerResponse.php │ │ │ │ ├── MultiBulkResponse.php │ │ │ │ ├── ResponseHandlerInterface.php │ │ │ │ ├── StatusResponse.php │ │ │ │ └── StreamableMultiBulkResponse.php │ │ │ │ ├── ProtocolProcessor.php │ │ │ │ ├── RequestSerializer.php │ │ │ │ └── ResponseReader.php │ │ ├── PubSub │ │ │ ├── AbstractConsumer.php │ │ │ ├── Consumer.php │ │ │ └── DispatcherLoop.php │ │ ├── Replication │ │ │ ├── MissingMasterException.php │ │ │ ├── ReplicationStrategy.php │ │ │ └── RoleException.php │ │ ├── Response │ │ │ ├── Error.php │ │ │ ├── ErrorInterface.php │ │ │ ├── Iterator │ │ │ │ ├── MultiBulk.php │ │ │ │ ├── MultiBulkIterator.php │ │ │ │ └── MultiBulkTuple.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerException.php │ │ │ └── Status.php │ │ ├── Session │ │ │ └── Handler.php │ │ └── Transaction │ │ │ ├── AbortedMultiExecException.php │ │ │ ├── MultiExec.php │ │ │ └── MultiExecState.php │ │ └── tests │ │ ├── README.md │ │ ├── apply-patches.php │ │ ├── phpunit_mock_objects.patch │ │ ├── phpunit_php7.patch │ │ ├── phpunit_php8.patch │ │ └── phpunit_php81.patch ├── 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 │ ├── http-client │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ClientExceptionInterface.php │ │ │ ├── ClientInterface.php │ │ │ ├── NetworkExceptionInterface.php │ │ │ └── RequestExceptionInterface.php │ ├── http-factory │ │ ├── .gitignore │ │ ├── .pullapprove.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── RequestFactoryInterface.php │ │ │ ├── ResponseFactoryInterface.php │ │ │ ├── ServerRequestFactoryInterface.php │ │ │ ├── StreamFactoryInterface.php │ │ │ ├── UploadedFileFactoryInterface.php │ │ │ └── UriFactoryInterface.php │ ├── http-message │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── MessageInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerRequestInterface.php │ │ │ ├── StreamInterface.php │ │ │ ├── UploadedFileInterface.php │ │ │ └── UriInterface.php │ ├── link │ │ ├── .editorconfig │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── EvolvableLinkInterface.php │ │ │ ├── EvolvableLinkProviderInterface.php │ │ │ ├── LinkInterface.php │ │ │ └── LinkProviderInterface.php │ ├── log │ │ ├── LICENSE │ │ ├── Psr │ │ │ └── Log │ │ │ │ ├── AbstractLogger.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogLevel.php │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ ├── LoggerInterface.php │ │ │ │ ├── LoggerTrait.php │ │ │ │ ├── NullLogger.php │ │ │ │ └── Test │ │ │ │ ├── DummyTest.php │ │ │ │ ├── LoggerInterfaceTest.php │ │ │ │ └── TestLogger.php │ │ ├── README.md │ │ └── composer.json │ └── simple-cache │ │ ├── .editorconfig │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── CacheException.php │ │ ├── CacheInterface.php │ │ └── InvalidArgumentException.php ├── ralouphie │ └── getallheaders │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── getallheaders.php ├── react │ ├── event-loop │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ExtEvLoop.php │ │ │ ├── ExtEventLoop.php │ │ │ ├── ExtLibevLoop.php │ │ │ ├── ExtLibeventLoop.php │ │ │ ├── ExtUvLoop.php │ │ │ ├── Factory.php │ │ │ ├── Loop.php │ │ │ ├── LoopInterface.php │ │ │ ├── SignalsHandler.php │ │ │ ├── StreamSelectLoop.php │ │ │ ├── Tick │ │ │ └── FutureTickQueue.php │ │ │ ├── Timer │ │ │ ├── Timer.php │ │ │ └── Timers.php │ │ │ └── TimerInterface.php │ └── promise │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── CancellablePromiseInterface.php │ │ ├── CancellationQueue.php │ │ ├── Deferred.php │ │ ├── Exception │ │ └── LengthException.php │ │ ├── ExtendedPromiseInterface.php │ │ ├── FulfilledPromise.php │ │ ├── LazyPromise.php │ │ ├── Promise.php │ │ ├── PromiseInterface.php │ │ ├── PromisorInterface.php │ │ ├── RejectedPromise.php │ │ ├── UnhandledRejectionException.php │ │ ├── functions.php │ │ └── functions_include.php ├── runalyze │ ├── age-grade │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ │ ├── AgeGrade.php │ │ │ ├── Level.php │ │ │ ├── Lookup.php │ │ │ └── Table │ │ │ ├── AbstractTable.php │ │ │ ├── FemaleTable.php │ │ │ ├── MaleTable.php │ │ │ └── TableInterface.php │ ├── dem-reader │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── download-testfiles.sh │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ │ ├── Exception │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ │ │ ├── Interpolation │ │ │ ├── ArgumentsCheckTrait.php │ │ │ ├── BilinearInterpolation.php │ │ │ ├── InterpolationInterface.php │ │ │ └── LambdaInterpolation.php │ │ │ ├── Provider │ │ │ ├── AbstractFileProvider.php │ │ │ ├── AbstractResourceReader.php │ │ │ ├── GeoTIFF │ │ │ │ ├── AbstractGeoTIFFProvider.php │ │ │ │ ├── GeoTIFFReader.php │ │ │ │ ├── SRTM1ArcSecondProvider.php │ │ │ │ └── SRTM4Provider.php │ │ │ ├── GuessInvalidValuesTrait.php │ │ │ ├── ProviderInterface.php │ │ │ └── ResourceReaderInterface.php │ │ │ ├── Reader.php │ │ │ ├── ReaderInterface.php │ │ │ └── Tests │ │ │ ├── Interpolation │ │ │ ├── ArgumentsCheckTraitTest.php │ │ │ ├── BilinearInterpolationTest.php │ │ │ └── LambdaInterpolationTest.php │ │ │ ├── Provider │ │ │ ├── AbstractFileProviderTest.php │ │ │ ├── AbstractResourceReaderTest.php │ │ │ ├── Fixtures │ │ │ │ ├── ProviderForNothing.php │ │ │ │ └── ProviderReturningTheTruth.php │ │ │ ├── GeoTIFF │ │ │ │ ├── SRTM1ArcSecondProviderTest.php │ │ │ │ └── SRTM4ProviderTest.php │ │ │ └── GuessInvalidValuesTraitTest.php │ │ │ └── ReaderTest.php │ ├── glossary │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── Controller │ │ │ └── DefaultController.php │ │ ├── GlossaryBundle.php │ │ ├── LICENSE.md │ │ ├── Resources │ │ │ ├── translations │ │ │ │ ├── .gitkeep │ │ │ │ ├── messages.bg.xlf │ │ │ │ ├── messages.ca.xlf │ │ │ │ ├── messages.da.xlf │ │ │ │ ├── messages.de.xlf │ │ │ │ ├── messages.de_AT.xlf │ │ │ │ ├── messages.el.xlf │ │ │ │ ├── messages.es.xlf │ │ │ │ ├── messages.et.xlf │ │ │ │ ├── messages.fi.xlf │ │ │ │ ├── messages.fr.xlf │ │ │ │ ├── messages.hu.xlf │ │ │ │ ├── messages.it.xlf │ │ │ │ ├── messages.li.xlf │ │ │ │ ├── messages.nl.xlf │ │ │ │ ├── messages.nl_BE.xlf │ │ │ │ ├── messages.pl.xlf │ │ │ │ ├── messages.pt_BR.xlf │ │ │ │ ├── messages.pt_PT.xlf │ │ │ │ ├── messages.ru.xlf │ │ │ │ ├── messages.sl.xlf │ │ │ │ ├── messages.sr.xlf │ │ │ │ ├── messages.sv.xlf │ │ │ │ ├── messages.tr.xlf │ │ │ │ ├── messages.uk.xlf │ │ │ │ ├── messages.zh.xlf │ │ │ │ └── messages.zh_TW.xlf │ │ │ └── views │ │ │ │ ├── _base.html.twig │ │ │ │ ├── _macro │ │ │ │ ├── references.html.twig │ │ │ │ └── see_also.html.twig │ │ │ │ ├── overview.html.twig │ │ │ │ └── topics │ │ │ │ ├── atl.html.twig │ │ │ │ ├── cadence.html.twig │ │ │ │ ├── ctl.html.twig │ │ │ │ ├── detection_run_walk.html.twig │ │ │ │ ├── easy_trimp.html.twig │ │ │ │ ├── efficiency_index.html.twig │ │ │ │ ├── groundcontact.html.twig │ │ │ │ ├── groundcontact_balance.html.twig │ │ │ │ ├── heat_index.html.twig │ │ │ │ ├── hrv.html.twig │ │ │ │ ├── marathon_shape.html.twig │ │ │ │ ├── maximum_heart_rate.html.twig │ │ │ │ ├── monotony.html.twig │ │ │ │ ├── performance_condition.html.twig │ │ │ │ ├── respiration.html.twig │ │ │ │ ├── resting_heart_rate.html.twig │ │ │ │ ├── rpe.html.twig │ │ │ │ ├── running_dynamics.html.twig │ │ │ │ ├── running_effectiveness.html.twig │ │ │ │ ├── self_evaluation.html.twig │ │ │ │ ├── stride_length.html.twig │ │ │ │ ├── swolf.html.twig │ │ │ │ ├── training_effect.html.twig │ │ │ │ ├── training_load_peak.html.twig │ │ │ │ ├── training_strain.html.twig │ │ │ │ ├── trimp.html.twig │ │ │ │ ├── tsb.html.twig │ │ │ │ ├── vertical_oscillation.html.twig │ │ │ │ ├── vertical_ratio.html.twig │ │ │ │ ├── vo2max.html.twig │ │ │ │ └── windchill.html.twig │ │ └── composer.json │ ├── gpxtrackposter │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── create_poster.py │ │ ├── examples │ │ │ ├── example_calendar.png │ │ │ ├── example_calendar.svg │ │ │ ├── example_circular.png │ │ │ ├── example_circular.svg │ │ │ ├── example_grid.png │ │ │ ├── example_grid.svg │ │ │ ├── example_heatmap.png │ │ │ ├── example_heatmap.svg │ │ │ └── examples.sh │ │ ├── img │ │ │ ├── athlete.svg │ │ │ └── runalyze.svg │ │ ├── requirements.txt │ │ └── src │ │ │ ├── __init__.py │ │ │ ├── calendar_drawer.py │ │ │ ├── circular_drawer.py │ │ │ ├── grid_drawer.py │ │ │ ├── heatmap_drawer.py │ │ │ ├── poster.py │ │ │ ├── track.py │ │ │ ├── track_loader.py │ │ │ └── utils.py │ └── translations │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── gettext │ │ ├── bg │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.bg.po │ │ │ │ └── runalyze.mo │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.ca.po │ │ │ │ └── runalyze.mo │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.da.po │ │ │ │ └── runalyze.mo │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.de.po │ │ │ │ └── runalyze.mo │ │ ├── de_AT │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.de_AT.po │ │ │ │ └── runalyze.mo │ │ ├── default.pot │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.el.po │ │ │ │ └── runalyze.mo │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.en.po │ │ │ │ └── runalyze.mo │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.es.po │ │ │ │ └── runalyze.mo │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.et.po │ │ │ │ └── runalyze.mo │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.fi.po │ │ │ │ └── runalyze.mo │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.fr.po │ │ │ │ └── runalyze.mo │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.hu.po │ │ │ │ └── runalyze.mo │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.it.po │ │ │ │ └── runalyze.mo │ │ ├── li │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.li.po │ │ │ │ └── runalyze.mo │ │ ├── messages.bg.po │ │ ├── messages.ca.po │ │ ├── messages.da.po │ │ ├── messages.de.po │ │ ├── messages.de_AT.po │ │ ├── messages.el.po │ │ ├── messages.en.po │ │ ├── messages.es.po │ │ ├── messages.et.po │ │ ├── messages.fi.po │ │ ├── messages.fr.po │ │ ├── messages.hu.po │ │ ├── messages.it.po │ │ ├── messages.li.po │ │ ├── messages.nl.po │ │ ├── messages.nl_BE.po │ │ ├── messages.pl.po │ │ ├── messages.pt_BR.po │ │ ├── messages.pt_PT.po │ │ ├── messages.ru.po │ │ ├── messages.sk.po │ │ ├── messages.sl.po │ │ ├── messages.sr.po │ │ ├── messages.sv.po │ │ ├── messages.tr.po │ │ ├── messages.uk.po │ │ ├── messages.zh.po │ │ ├── messages.zh_TW.po │ │ ├── nb_NO │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.nb_NO.po │ │ │ │ └── runalyze.mo │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.nl.po │ │ │ │ └── runalyze.mo │ │ ├── nl_BE │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.nl_BE.po │ │ │ │ └── runalyze.mo │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ └── messages.no.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.pl.po │ │ │ │ └── runalyze.mo │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.pt_BR.po │ │ │ │ └── runalyze.mo │ │ ├── pt_PT │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.pt_PT.po │ │ │ │ └── runalyze.mo │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.ru.po │ │ │ │ └── runalyze.mo │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.sk.po │ │ │ │ └── runalyze.mo │ │ ├── sl │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.sl.po │ │ │ │ └── runalyze.mo │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.sr.po │ │ │ │ └── runalyze.mo │ │ ├── sv │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.sv.po │ │ │ │ └── runalyze.mo │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.tr.po │ │ │ │ └── runalyze.mo │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.uk.po │ │ │ │ └── runalyze.mo │ │ ├── zh │ │ │ └── LC_MESSAGES │ │ │ │ ├── messages.zh.po │ │ │ │ └── runalyze.mo │ │ └── zh_TW │ │ │ └── LC_MESSAGES │ │ │ ├── messages.zh_TW.po │ │ │ └── runalyze.mo │ │ └── xlf │ │ ├── messages.bg.xlf │ │ ├── messages.ca.xlf │ │ ├── messages.da.xlf │ │ ├── messages.de.xlf │ │ ├── messages.de_AT.xlf │ │ ├── messages.el.xlf │ │ ├── messages.en.xlf │ │ ├── messages.es.xlf │ │ ├── messages.et.xlf │ │ ├── messages.fi.xlf │ │ ├── messages.fr.xlf │ │ ├── messages.hu.xlf │ │ ├── messages.it.xlf │ │ ├── messages.li.xlf │ │ ├── messages.nl.xlf │ │ ├── messages.nl_BE.xlf │ │ ├── messages.no.xlf │ │ ├── messages.pl.xlf │ │ ├── messages.pt_BR.xlf │ │ ├── messages.pt_PT.xlf │ │ ├── messages.ru.xlf │ │ ├── messages.sl.xlf │ │ ├── messages.sr.xlf │ │ ├── messages.sv.xlf │ │ ├── messages.tr.xlf │ │ ├── messages.uk.xlf │ │ ├── messages.vendor.xlf │ │ ├── messages.zh.xlf │ │ └── messages.zh_TW.xlf ├── sebastian │ ├── code-unit-reverse-lookup │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ └── Wizard.php │ │ └── tests │ │ │ └── WizardTest.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 │ ├── diff │ │ ├── .github │ │ │ └── stale.yml │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── 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 │ │ └── tests │ │ │ ├── ChunkTest.php │ │ │ ├── DiffTest.php │ │ │ ├── DifferTest.php │ │ │ ├── Exception │ │ │ ├── ConfigurationExceptionTest.php │ │ │ └── InvalidArgumentExceptionTest.php │ │ │ ├── LineTest.php │ │ │ ├── LongestCommonSubsequenceTest.php │ │ │ ├── MemoryEfficientImplementationTest.php │ │ │ ├── Output │ │ │ ├── AbstractChunkOutputBuilderTest.php │ │ │ ├── DiffOnlyOutputBuilderTest.php │ │ │ ├── Integration │ │ │ │ ├── StrictUnifiedDiffOutputBuilderIntegrationTest.php │ │ │ │ └── UnifiedDiffOutputBuilderIntegrationTest.php │ │ │ ├── StrictUnifiedDiffOutputBuilderDataProvider.php │ │ │ ├── StrictUnifiedDiffOutputBuilderTest.php │ │ │ ├── UnifiedDiffOutputBuilderDataProvider.php │ │ │ └── UnifiedDiffOutputBuilderTest.php │ │ │ ├── ParserTest.php │ │ │ ├── TimeEfficientImplementationTest.php │ │ │ ├── Utils │ │ │ ├── FileUtils.php │ │ │ ├── UnifiedDiffAssertTrait.php │ │ │ ├── UnifiedDiffAssertTraitIntegrationTest.php │ │ │ └── UnifiedDiffAssertTraitTest.php │ │ │ └── fixtures │ │ │ ├── .editorconfig │ │ │ ├── UnifiedDiffAssertTraitIntegrationTest │ │ │ ├── 1_a.txt │ │ │ ├── 1_b.txt │ │ │ ├── 2_a.txt │ │ │ └── 2_b.txt │ │ │ ├── out │ │ │ ├── .editorconfig │ │ │ └── .gitignore │ │ │ ├── patch.txt │ │ │ ├── patch2.txt │ │ │ └── serialized_diff.bin │ ├── environment │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Console.php │ │ │ ├── OperatingSystem.php │ │ │ └── Runtime.php │ │ └── tests │ │ │ ├── ConsoleTest.php │ │ │ ├── OperatingSystemTest.php │ │ │ └── RuntimeTest.php │ ├── exporter │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Exporter.php │ ├── global-state │ │ ├── .github │ │ │ └── stale.yml │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Blacklist.php │ │ │ ├── CodeExporter.php │ │ │ ├── Restorer.php │ │ │ ├── Snapshot.php │ │ │ └── exceptions │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ └── tests │ │ │ ├── BlacklistTest.php │ │ │ ├── CodeExporterTest.php │ │ │ ├── RestorerTest.php │ │ │ ├── SnapshotTest.php │ │ │ └── _fixture │ │ │ ├── BlacklistedChildClass.php │ │ │ ├── BlacklistedClass.php │ │ │ ├── BlacklistedImplementor.php │ │ │ ├── BlacklistedInterface.php │ │ │ ├── SnapshotClass.php │ │ │ ├── SnapshotDomDocument.php │ │ │ ├── SnapshotFunctions.php │ │ │ └── SnapshotTrait.php │ ├── object-enumerator │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Enumerator.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ └── tests │ │ │ ├── EnumeratorTest.php │ │ │ └── _fixture │ │ │ └── ExceptionThrower.php │ ├── object-reflector │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── ObjectReflector.php │ │ └── tests │ │ │ ├── ObjectReflectorTest.php │ │ │ └── _fixture │ │ │ ├── ChildClass.php │ │ │ ├── ClassWithIntegerAttributeName.php │ │ │ └── ParentClass.php │ ├── recursion-context │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Context.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ └── tests │ │ │ └── ContextTest.php │ ├── resource-operations │ │ ├── .github │ │ │ └── stale.yml │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── build │ │ │ └── generate.php │ │ ├── composer.json │ │ ├── src │ │ │ └── ResourceOperations.php │ │ └── tests │ │ │ └── ResourceOperationsTest.php │ ├── type │ │ ├── .gitattributes │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── inspectionProfiles │ │ │ │ └── Project_Default.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── php-inspections-ea-ultimate.xml │ │ │ ├── php.xml │ │ │ ├── type.iml │ │ │ └── vcs.xml │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phive.xml │ │ ├── phpunit.xml │ │ ├── psalm.xml │ │ ├── src │ │ │ ├── CallableType.php │ │ │ ├── GenericObjectType.php │ │ │ ├── IterableType.php │ │ │ ├── NullType.php │ │ │ ├── ObjectType.php │ │ │ ├── SimpleType.php │ │ │ ├── Type.php │ │ │ ├── TypeName.php │ │ │ ├── UnknownType.php │ │ │ ├── VoidType.php │ │ │ └── exception │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ └── tests │ │ │ ├── _fixture │ │ │ ├── ChildClass.php │ │ │ ├── ClassWithCallbackMethods.php │ │ │ ├── ClassWithInvokeMethod.php │ │ │ ├── Iterator.php │ │ │ ├── ParentClass.php │ │ │ └── callback_function.php │ │ │ └── unit │ │ │ ├── CallableTypeTest.php │ │ │ ├── GenericObjectTypeTest.php │ │ │ ├── IterableTypeTest.php │ │ │ ├── NullTypeTest.php │ │ │ ├── ObjectTypeTest.php │ │ │ ├── SimpleTypeTest.php │ │ │ ├── TypeNameTest.php │ │ │ ├── TypeTest.php │ │ │ ├── UnknownTypeTest.php │ │ │ └── VoidTypeTest.php │ └── version │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Version.php ├── sensio │ └── framework-extra-bundle │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── 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 │ │ ├── PsrResponseListener.php │ │ ├── SecurityListener.php │ │ └── TemplateListener.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Request │ │ ├── ArgumentNameConverter.php │ │ ├── ArgumentValueResolver │ │ │ └── Psr7ServerRequestResolver.php │ │ └── ParamConverter │ │ │ ├── DateTimeParamConverter.php │ │ │ ├── DoctrineParamConverter.php │ │ │ ├── ParamConverterInterface.php │ │ │ └── ParamConverterManager.php │ │ ├── Resources │ │ ├── config │ │ │ ├── annotations.xml │ │ │ ├── cache.xml │ │ │ ├── converters.xml │ │ │ ├── psr7.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 │ │ ├── Tests │ │ ├── Configuration │ │ │ ├── ConfigurationAnnotationTest.php │ │ │ └── RouteTest.php │ │ ├── DependencyInjection │ │ │ ├── Compiler │ │ │ │ ├── AddExpressionLanguageProvidersPassTest.php │ │ │ │ └── AddParamConverterPassTest.php │ │ │ └── SensioFrameworkExtraExtensionTest.php │ │ ├── EventListener │ │ │ ├── ControllerListenerTest.php │ │ │ ├── Fixture │ │ │ │ ├── FooControllerCacheAtClass.php │ │ │ │ ├── FooControllerCacheAtClassAndMethod.php │ │ │ │ ├── FooControllerCacheAtMethod.php │ │ │ │ ├── FooControllerMultipleCacheAtClass.php │ │ │ │ ├── FooControllerMultipleCacheAtMethod.php │ │ │ │ ├── FooControllerNullableParameter.php │ │ │ │ └── FooControllerParamConverterAtClassAndMethod.php │ │ │ ├── HttpCacheListenerTest.php │ │ │ ├── IsGrantedListenerTest.php │ │ │ ├── ParamConverterListenerTest.php │ │ │ ├── PsrResponseListenerTest.php │ │ │ └── SecurityListenerTest.php │ │ ├── Fixtures │ │ │ ├── ActionArgumentsBundle │ │ │ │ ├── ActionArgumentsBundle.php │ │ │ │ └── Controller │ │ │ │ │ ├── ActionArgumentsController.php │ │ │ │ │ └── NullableArgumentsController.php │ │ │ ├── FooBundle │ │ │ │ ├── Controller │ │ │ │ │ ├── InvokableClassLevelController.php │ │ │ │ │ ├── InvokableContainerController.php │ │ │ │ │ ├── InvokableController.php │ │ │ │ │ ├── IsGrantedController.php │ │ │ │ │ ├── MultipleActionsClassLevelTemplateController.php │ │ │ │ │ ├── OptionalArgumentsController.php │ │ │ │ │ └── SimpleController.php │ │ │ │ ├── ControllerWithVariadics │ │ │ │ │ └── IsGrantedControllerWithVariadics.php │ │ │ │ ├── Entity │ │ │ │ │ └── Foo.php │ │ │ │ ├── FooBundle.php │ │ │ │ ├── Resources │ │ │ │ │ └── views │ │ │ │ │ │ ├── invokable │ │ │ │ │ │ └── predefined.html.twig │ │ │ │ │ │ ├── invokable_container │ │ │ │ │ │ ├── another_variable.html.twig │ │ │ │ │ │ └── variable.html.twig │ │ │ │ │ │ ├── overwritten.html.twig │ │ │ │ │ │ └── simple │ │ │ │ │ │ ├── another.html.twig │ │ │ │ │ │ ├── some.html.twig │ │ │ │ │ │ └── streamed.html.twig │ │ │ │ └── Security │ │ │ │ │ └── IsGrantedVoter.php │ │ │ ├── FooDateTime.php │ │ │ ├── TestKernel.php │ │ │ └── config │ │ │ │ ├── config.yml │ │ │ │ ├── nullable_type │ │ │ │ ├── config.yml │ │ │ │ └── routing.yml │ │ │ │ └── routing.yml │ │ ├── Functional │ │ │ ├── IsGrantedTest.php │ │ │ ├── NullableAnnotationTest.php │ │ │ ├── OptionalArgumentsTest.php │ │ │ ├── Psr7RequestTest.php │ │ │ └── TemplateAnnotationTest.php │ │ ├── Request │ │ │ ├── ArgumentNameConverterTest.php │ │ │ └── ParamConverter │ │ │ │ ├── DateTimeParamConverterTest.php │ │ │ │ ├── DoctrineParamConverterTest.php │ │ │ │ ├── ParamConverterManagerTest.php │ │ │ │ └── TestUserRepository.php │ │ ├── Routing │ │ │ ├── AnnotatedRouteControllerLoaderTest.php │ │ │ └── Fixtures │ │ │ │ ├── FoobarController.php │ │ │ │ └── InvokableController.php │ │ └── Templating │ │ │ ├── Fixture │ │ │ ├── BarBundle │ │ │ │ └── Controller │ │ │ │ │ └── BarController.php │ │ │ ├── Controller │ │ │ │ └── MyAdmin │ │ │ │ │ └── OutOfBundleController.php │ │ │ ├── FooBarBundle │ │ │ │ └── Controller │ │ │ │ │ └── FooBarController.php │ │ │ └── FooBundle │ │ │ │ ├── Action │ │ │ │ └── FooAction.php │ │ │ │ └── Controller │ │ │ │ ├── FooController.php │ │ │ │ └── SubController │ │ │ │ └── FooBarController.php │ │ │ └── TemplateGuesserTest.php │ │ ├── composer.json │ │ └── phpunit.xml.dist ├── snc │ └── redis-bundle │ │ ├── .github │ │ └── workflows │ │ │ ├── .editorconfig │ │ │ └── continuous-integration.yml │ │ ├── Client │ │ ├── Phpredis │ │ │ ├── Client.php │ │ │ └── ClientCluster.php │ │ └── Predis │ │ │ ├── Cluster │ │ │ └── Distribution │ │ │ │ └── RandomDistributionStrategy.php │ │ │ └── Connection │ │ │ ├── ConnectionFactory.php │ │ │ ├── ConnectionWrapper.php │ │ │ └── PredisCluster.php │ │ ├── Command │ │ ├── RedisBaseCommand.php │ │ ├── RedisFlushallCommand.php │ │ └── RedisFlushdbCommand.php │ │ ├── DataCollector │ │ ├── DataCollectorSymfonyCompatibilityTrait.php │ │ └── RedisDataCollector.php │ │ ├── DependencyInjection │ │ ├── Compiler │ │ │ ├── ClientLocatorPass.php │ │ │ ├── LoggingPass.php │ │ │ ├── MonologPass.php │ │ │ └── SwiftMailerPass.php │ │ ├── Configuration │ │ │ ├── Configuration.php │ │ │ ├── RedisDsn.php │ │ │ └── RedisEnvDsn.php │ │ └── SncRedisExtension.php │ │ ├── Extra │ │ └── RateLimit.php │ │ ├── Factory │ │ ├── PhpredisClientFactory.php │ │ └── PredisParametersFactory.php │ │ ├── LICENSE │ │ ├── Logger │ │ └── RedisLogger.php │ │ ├── Profiler │ │ └── Storage │ │ │ └── RedisProfilerStorage.php │ │ ├── README.md │ │ ├── Resources │ │ ├── config │ │ │ ├── profiler_storage.xml │ │ │ ├── redis.xml │ │ │ ├── schema │ │ │ │ └── redis-1.0.xsd │ │ │ └── session.xml │ │ ├── doc │ │ │ └── index.md │ │ └── views │ │ │ └── Collector │ │ │ ├── icon.svg.twig │ │ │ └── redis.html.twig │ │ ├── Session │ │ └── Storage │ │ │ └── Handler │ │ │ ├── FreeLockCommand.php │ │ │ └── RedisSessionHandler.php │ │ ├── SncRedisBundle.php │ │ ├── SwiftMailer │ │ ├── RedisSpool.php │ │ ├── RedisSpool5.php │ │ └── RedisSpool6.php │ │ └── composer.json ├── swiftmailer │ └── swiftmailer │ │ ├── .gitattributes │ │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ └── workflows │ │ │ └── tests.yml │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── doc │ │ ├── headers.rst │ │ ├── index.rst │ │ ├── introduction.rst │ │ ├── japanese.rst │ │ ├── messages.rst │ │ ├── plugins.rst │ │ └── sending.rst │ │ └── lib │ │ ├── classes │ │ ├── Swift.php │ │ └── Swift │ │ │ ├── AddressEncoder.php │ │ │ ├── AddressEncoder │ │ │ ├── IdnAddressEncoder.php │ │ │ └── Utf8AddressEncoder.php │ │ │ ├── AddressEncoderException.php │ │ │ ├── Attachment.php │ │ │ ├── ByteStream │ │ │ ├── AbstractFilterableInputStream.php │ │ │ ├── ArrayByteStream.php │ │ │ ├── FileByteStream.php │ │ │ └── TemporaryFileByteStream.php │ │ │ ├── CharacterReader.php │ │ │ ├── CharacterReader │ │ │ ├── GenericFixedWidthReader.php │ │ │ ├── UsAsciiReader.php │ │ │ └── Utf8Reader.php │ │ │ ├── CharacterReaderFactory.php │ │ │ ├── CharacterReaderFactory │ │ │ └── SimpleCharacterReaderFactory.php │ │ │ ├── CharacterStream.php │ │ │ ├── CharacterStream │ │ │ ├── ArrayCharacterStream.php │ │ │ └── NgCharacterStream.php │ │ │ ├── ConfigurableSpool.php │ │ │ ├── DependencyContainer.php │ │ │ ├── DependencyException.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── Encoder.php │ │ │ ├── Encoder │ │ │ ├── Base64Encoder.php │ │ │ ├── QpEncoder.php │ │ │ └── Rfc2231Encoder.php │ │ │ ├── Events │ │ │ ├── CommandEvent.php │ │ │ ├── CommandListener.php │ │ │ ├── Event.php │ │ │ ├── EventDispatcher.php │ │ │ ├── EventListener.php │ │ │ ├── EventObject.php │ │ │ ├── ResponseEvent.php │ │ │ ├── ResponseListener.php │ │ │ ├── SendEvent.php │ │ │ ├── SendListener.php │ │ │ ├── SimpleEventDispatcher.php │ │ │ ├── TransportChangeEvent.php │ │ │ ├── TransportChangeListener.php │ │ │ ├── TransportExceptionEvent.php │ │ │ └── TransportExceptionListener.php │ │ │ ├── FailoverTransport.php │ │ │ ├── FileSpool.php │ │ │ ├── FileStream.php │ │ │ ├── Filterable.php │ │ │ ├── IdGenerator.php │ │ │ ├── Image.php │ │ │ ├── InputByteStream.php │ │ │ ├── IoException.php │ │ │ ├── KeyCache.php │ │ │ ├── KeyCache │ │ │ ├── ArrayKeyCache.php │ │ │ ├── DiskKeyCache.php │ │ │ ├── KeyCacheInputStream.php │ │ │ ├── NullKeyCache.php │ │ │ └── SimpleKeyCacheInputStream.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── Mailer.php │ │ │ ├── Mailer │ │ │ ├── ArrayRecipientIterator.php │ │ │ └── RecipientIterator.php │ │ │ ├── MemorySpool.php │ │ │ ├── Message.php │ │ │ ├── Mime │ │ │ ├── Attachment.php │ │ │ ├── CharsetObserver.php │ │ │ ├── ContentEncoder.php │ │ │ ├── ContentEncoder │ │ │ │ ├── Base64ContentEncoder.php │ │ │ │ ├── NativeQpContentEncoder.php │ │ │ │ ├── NullContentEncoder.php │ │ │ │ ├── PlainContentEncoder.php │ │ │ │ ├── QpContentEncoder.php │ │ │ │ ├── QpContentEncoderProxy.php │ │ │ │ └── RawContentEncoder.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── EncodingObserver.php │ │ │ ├── Header.php │ │ │ ├── HeaderEncoder.php │ │ │ ├── HeaderEncoder │ │ │ │ ├── Base64HeaderEncoder.php │ │ │ │ └── QpHeaderEncoder.php │ │ │ ├── Headers │ │ │ │ ├── AbstractHeader.php │ │ │ │ ├── DateHeader.php │ │ │ │ ├── IdentificationHeader.php │ │ │ │ ├── MailboxHeader.php │ │ │ │ ├── OpenDKIMHeader.php │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ ├── PathHeader.php │ │ │ │ └── UnstructuredHeader.php │ │ │ ├── IdGenerator.php │ │ │ ├── MimePart.php │ │ │ ├── SimpleHeaderFactory.php │ │ │ ├── SimpleHeaderSet.php │ │ │ ├── SimpleMessage.php │ │ │ └── SimpleMimeEntity.php │ │ │ ├── MimePart.php │ │ │ ├── NullTransport.php │ │ │ ├── OutputByteStream.php │ │ │ ├── Plugins │ │ │ ├── AntiFloodPlugin.php │ │ │ ├── BandwidthMonitorPlugin.php │ │ │ ├── Decorator │ │ │ │ └── Replacements.php │ │ │ ├── DecoratorPlugin.php │ │ │ ├── ImpersonatePlugin.php │ │ │ ├── Logger.php │ │ │ ├── LoggerPlugin.php │ │ │ ├── Loggers │ │ │ │ ├── ArrayLogger.php │ │ │ │ └── EchoLogger.php │ │ │ ├── MessageLogger.php │ │ │ ├── Pop │ │ │ │ ├── Pop3Connection.php │ │ │ │ └── Pop3Exception.php │ │ │ ├── PopBeforeSmtpPlugin.php │ │ │ ├── RedirectingPlugin.php │ │ │ ├── Reporter.php │ │ │ ├── ReporterPlugin.php │ │ │ ├── Reporters │ │ │ │ ├── HitReporter.php │ │ │ │ └── HtmlReporter.php │ │ │ ├── Sleeper.php │ │ │ ├── ThrottlerPlugin.php │ │ │ └── Timer.php │ │ │ ├── Preferences.php │ │ │ ├── ReplacementFilterFactory.php │ │ │ ├── RfcComplianceException.php │ │ │ ├── SendmailTransport.php │ │ │ ├── Signer.php │ │ │ ├── Signers │ │ │ ├── BodySigner.php │ │ │ ├── DKIMSigner.php │ │ │ ├── DomainKeySigner.php │ │ │ ├── HeaderSigner.php │ │ │ ├── OpenDKIMSigner.php │ │ │ └── SMimeSigner.php │ │ │ ├── SmtpTransport.php │ │ │ ├── Spool.php │ │ │ ├── SpoolTransport.php │ │ │ ├── StreamFilter.php │ │ │ ├── StreamFilters │ │ │ ├── ByteArrayReplacementFilter.php │ │ │ ├── StringReplacementFilter.php │ │ │ └── StringReplacementFilterFactory.php │ │ │ ├── SwiftException.php │ │ │ ├── Transport.php │ │ │ ├── Transport │ │ │ ├── AbstractSmtpTransport.php │ │ │ ├── Esmtp │ │ │ │ ├── Auth │ │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ │ ├── NTLMAuthenticator.php │ │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ │ └── XOAuth2Authenticator.php │ │ │ │ ├── AuthHandler.php │ │ │ │ ├── Authenticator.php │ │ │ │ ├── EightBitMimeHandler.php │ │ │ │ └── SmtpUtf8Handler.php │ │ │ ├── EsmtpHandler.php │ │ │ ├── EsmtpTransport.php │ │ │ ├── FailoverTransport.php │ │ │ ├── IoBuffer.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── NullTransport.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SmtpAgent.php │ │ │ ├── SpoolTransport.php │ │ │ └── StreamBuffer.php │ │ │ └── TransportException.php │ │ ├── dependency_maps │ │ ├── cache_deps.php │ │ ├── message_deps.php │ │ ├── mime_deps.php │ │ └── transport_deps.php │ │ ├── mime_types.php │ │ ├── preferences.php │ │ ├── swift_required.php │ │ └── swiftmailer_generate_mimes_config.php ├── symfony │ ├── deprecation-contracts │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── function.php │ ├── monolog-bundle │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── 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 │ ├── polyfill-apcu │ │ ├── Apcu.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-ctype │ │ ├── Ctype.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ ├── bootstrap80.php │ │ └── composer.json │ ├── polyfill-iconv │ │ ├── Iconv.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ └── charset │ │ │ │ ├── from.big5.php │ │ │ │ ├── from.cp037.php │ │ │ │ ├── from.cp1006.php │ │ │ │ ├── from.cp1026.php │ │ │ │ ├── from.cp424.php │ │ │ │ ├── from.cp437.php │ │ │ │ ├── from.cp500.php │ │ │ │ ├── from.cp737.php │ │ │ │ ├── from.cp775.php │ │ │ │ ├── from.cp850.php │ │ │ │ ├── from.cp852.php │ │ │ │ ├── from.cp855.php │ │ │ │ ├── from.cp856.php │ │ │ │ ├── from.cp857.php │ │ │ │ ├── from.cp860.php │ │ │ │ ├── from.cp861.php │ │ │ │ ├── from.cp862.php │ │ │ │ ├── from.cp863.php │ │ │ │ ├── from.cp864.php │ │ │ │ ├── from.cp865.php │ │ │ │ ├── from.cp866.php │ │ │ │ ├── from.cp869.php │ │ │ │ ├── from.cp874.php │ │ │ │ ├── from.cp875.php │ │ │ │ ├── from.cp932.php │ │ │ │ ├── from.cp936.php │ │ │ │ ├── from.cp949.php │ │ │ │ ├── from.cp950.php │ │ │ │ ├── from.iso-8859-1.php │ │ │ │ ├── from.iso-8859-10.php │ │ │ │ ├── from.iso-8859-11.php │ │ │ │ ├── from.iso-8859-13.php │ │ │ │ ├── from.iso-8859-14.php │ │ │ │ ├── from.iso-8859-15.php │ │ │ │ ├── from.iso-8859-16.php │ │ │ │ ├── from.iso-8859-2.php │ │ │ │ ├── from.iso-8859-3.php │ │ │ │ ├── from.iso-8859-4.php │ │ │ │ ├── from.iso-8859-5.php │ │ │ │ ├── from.iso-8859-6.php │ │ │ │ ├── from.iso-8859-7.php │ │ │ │ ├── from.iso-8859-8.php │ │ │ │ ├── from.iso-8859-9.php │ │ │ │ ├── from.koi8-r.php │ │ │ │ ├── from.koi8-u.php │ │ │ │ ├── from.us-ascii.php │ │ │ │ ├── from.windows-1250.php │ │ │ │ ├── from.windows-1251.php │ │ │ │ ├── from.windows-1252.php │ │ │ │ ├── from.windows-1253.php │ │ │ │ ├── from.windows-1254.php │ │ │ │ ├── from.windows-1255.php │ │ │ │ ├── from.windows-1256.php │ │ │ │ ├── from.windows-1257.php │ │ │ │ ├── from.windows-1258.php │ │ │ │ └── translit.php │ │ ├── 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-php72 │ │ ├── LICENSE │ │ ├── Php72.php │ │ ├── README.md │ │ ├── bootstrap.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 │ ├── swiftmailer-bundle │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── CHANGELOG │ │ ├── Command │ │ │ ├── AbstractSwiftMailerCommand.php │ │ │ ├── DebugCommand.php │ │ │ ├── NewEmailCommand.php │ │ │ └── SendEmailCommand.php │ │ ├── DataCollector │ │ │ └── MessageDataCollector.php │ │ ├── DependencyInjection │ │ │ ├── Compiler │ │ │ │ ├── EnsureNoHotPathPass.php │ │ │ │ └── RegisterPluginsPass.php │ │ │ ├── Configuration.php │ │ │ ├── SmtpTransportConfigurator.php │ │ │ ├── SwiftmailerExtension.php │ │ │ └── SwiftmailerTransportFactory.php │ │ ├── EventListener │ │ │ └── EmailSenderListener.php │ │ ├── Resources │ │ │ ├── config │ │ │ │ ├── console.xml │ │ │ │ ├── schema │ │ │ │ │ └── swiftmailer-1.0.xsd │ │ │ │ └── swiftmailer.xml │ │ │ ├── doc │ │ │ │ └── index.rst │ │ │ ├── meta │ │ │ │ └── LICENSE │ │ │ └── views │ │ │ │ └── Collector │ │ │ │ ├── icon.svg │ │ │ │ └── swiftmailer.html.twig │ │ ├── SwiftmailerBundle.php │ │ ├── Tests │ │ │ ├── Command │ │ │ │ └── SendEmailCommandTest.php │ │ │ └── DependencyInjection │ │ │ │ ├── Fixtures │ │ │ │ └── config │ │ │ │ │ ├── php │ │ │ │ │ ├── antiflood.php │ │ │ │ │ ├── disable_delivery.php │ │ │ │ │ ├── empty.php │ │ │ │ │ ├── full.php │ │ │ │ │ ├── many_mailers.php │ │ │ │ │ ├── null.php │ │ │ │ │ ├── null_mailer.php │ │ │ │ │ ├── one_mailer.php │ │ │ │ │ ├── redirect.php │ │ │ │ │ ├── redirect_multi.php │ │ │ │ │ ├── redirect_single.php │ │ │ │ │ ├── sender_address.php │ │ │ │ │ ├── sendmail.php │ │ │ │ │ ├── sendmail_no_command.php │ │ │ │ │ ├── smtp.php │ │ │ │ │ ├── spool.php │ │ │ │ │ ├── spool_memory.php │ │ │ │ │ ├── spool_service.php │ │ │ │ │ ├── spool_service_invalid.php │ │ │ │ │ ├── stream_options.php │ │ │ │ │ ├── url_with_empty_options.php │ │ │ │ │ └── urls.php │ │ │ │ │ ├── xml │ │ │ │ │ ├── antiflood.xml │ │ │ │ │ ├── disable_delivery.xml │ │ │ │ │ ├── empty.xml │ │ │ │ │ ├── full.xml │ │ │ │ │ ├── mail.xml │ │ │ │ │ ├── many_mailers.xml │ │ │ │ │ ├── null.xml │ │ │ │ │ ├── null_mailer.xml │ │ │ │ │ ├── one_mailer.xml │ │ │ │ │ ├── redirect.xml │ │ │ │ │ ├── redirect_multi.xml │ │ │ │ │ ├── redirect_single.xml │ │ │ │ │ ├── sender_address.xml │ │ │ │ │ ├── sendmail.xml │ │ │ │ │ ├── sendmail_no_command.xml │ │ │ │ │ ├── smtp.xml │ │ │ │ │ ├── spool.xml │ │ │ │ │ ├── spool_memory.xml │ │ │ │ │ ├── spool_service.xml │ │ │ │ │ ├── spool_service_invalid.xml │ │ │ │ │ ├── stream_options.xml │ │ │ │ │ ├── url_with_empty_options.xml │ │ │ │ │ └── urls.xml │ │ │ │ │ └── yml │ │ │ │ │ ├── antiflood.yml │ │ │ │ │ ├── disable_delivery.yml │ │ │ │ │ ├── disable_delivery_env.yml │ │ │ │ │ ├── empty.yml │ │ │ │ │ ├── env_variable.yml │ │ │ │ │ ├── full.yml │ │ │ │ │ ├── mail.yml │ │ │ │ │ ├── many_mailers.yml │ │ │ │ │ ├── null.yml │ │ │ │ │ ├── null_mailer.yml │ │ │ │ │ ├── one_mailer.yml │ │ │ │ │ ├── redirect.yml │ │ │ │ │ ├── redirect_multi.yml │ │ │ │ │ ├── redirect_single.yml │ │ │ │ │ ├── sender_address.yml │ │ │ │ │ ├── sendmail.yml │ │ │ │ │ ├── sendmail_no_command.yml │ │ │ │ │ ├── smtp.yml │ │ │ │ │ ├── spool.yml │ │ │ │ │ ├── spool_memory.yml │ │ │ │ │ ├── spool_service.yml │ │ │ │ │ ├── spool_service_invalid.yml │ │ │ │ │ ├── stream_options.yml │ │ │ │ │ ├── url_with_empty_options.yml │ │ │ │ │ └── urls.yml │ │ │ │ ├── SwiftmailerExtensionTest.php │ │ │ │ └── SwiftmailerTransportFactoryTest.php │ │ ├── composer.json │ │ └── phpunit.xml.dist │ ├── symfony │ │ ├── .appveyor.yml │ │ ├── .editorconfig │ │ ├── .github │ │ │ ├── CODEOWNERS │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ ├── SECURITY.md │ │ │ ├── build-packages.php │ │ │ ├── composer-config.json │ │ │ └── rm-invalid-lowest-lock-files.php │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── CHANGELOG-3.0.md │ │ ├── CHANGELOG-3.1.md │ │ ├── CHANGELOG-3.2.md │ │ ├── CHANGELOG-3.3.md │ │ ├── CHANGELOG-3.4.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE-3.0.md │ │ ├── UPGRADE-3.1.md │ │ ├── UPGRADE-3.2.md │ │ ├── UPGRADE-3.3.md │ │ ├── UPGRADE-3.4.md │ │ ├── UPGRADE-4.0.md │ │ ├── composer.json │ │ ├── link │ │ ├── phpunit │ │ ├── phpunit.xml.dist │ │ └── src │ │ │ └── Symfony │ │ │ ├── Bridge │ │ │ ├── Doctrine │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CacheWarmer │ │ │ │ │ └── ProxyCacheWarmer.php │ │ │ │ ├── ContainerAwareEventManager.php │ │ │ │ ├── DataCollector │ │ │ │ │ └── DoctrineDataCollector.php │ │ │ │ ├── DataFixtures │ │ │ │ │ └── ContainerAwareLoader.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ ├── AbstractDoctrineExtension.php │ │ │ │ │ ├── CompilerPass │ │ │ │ │ │ ├── DoctrineValidationPass.php │ │ │ │ │ │ ├── RegisterEventListenersAndSubscribersPass.php │ │ │ │ │ │ └── RegisterMappingsPass.php │ │ │ │ │ └── Security │ │ │ │ │ │ └── UserProvider │ │ │ │ │ │ └── EntityFactory.php │ │ │ │ ├── ExpressionLanguage │ │ │ │ │ └── DoctrineParserCache.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 │ │ │ │ ├── HttpFoundation │ │ │ │ │ ├── DbalSessionHandler.php │ │ │ │ │ └── DbalSessionHandlerSchema.php │ │ │ │ ├── LICENSE │ │ │ │ ├── Logger │ │ │ │ │ └── DbalLogger.php │ │ │ │ ├── ManagerRegistry.php │ │ │ │ ├── PropertyInfo │ │ │ │ │ └── DoctrineExtractor.php │ │ │ │ ├── README.md │ │ │ │ ├── RegistryInterface.php │ │ │ │ ├── Security │ │ │ │ │ ├── RememberMe │ │ │ │ │ │ └── DoctrineTokenProvider.php │ │ │ │ │ └── User │ │ │ │ │ │ ├── EntityUserProvider.php │ │ │ │ │ │ └── UserLoaderInterface.php │ │ │ │ ├── Test │ │ │ │ │ ├── DoctrineTestHelper.php │ │ │ │ │ └── TestRepositoryFactory.php │ │ │ │ ├── Tests │ │ │ │ │ ├── ContainerAwareEventManagerTest.php │ │ │ │ │ ├── DataCollector │ │ │ │ │ │ └── DoctrineDataCollectorTest.php │ │ │ │ │ ├── DataFixtures │ │ │ │ │ │ └── ContainerAwareLoaderTest.php │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ ├── CompilerPass │ │ │ │ │ │ │ ├── RegisterEventListenersAndSubscribersPassTest.php │ │ │ │ │ │ │ └── RegisterMappingsPassTest.php │ │ │ │ │ │ └── DoctrineExtensionTest.php │ │ │ │ │ ├── ExpressionLanguage │ │ │ │ │ │ └── DoctrineParserCacheTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── AssociationEntity.php │ │ │ │ │ │ ├── AssociationEntity2.php │ │ │ │ │ │ ├── CompositeIntIdEntity.php │ │ │ │ │ │ ├── CompositeObjectNoToStringIdEntity.php │ │ │ │ │ │ ├── CompositeStringIdEntity.php │ │ │ │ │ │ ├── ContainerAwareFixture.php │ │ │ │ │ │ ├── DoubleNameEntity.php │ │ │ │ │ │ ├── DoubleNullableNameEntity.php │ │ │ │ │ │ ├── Embeddable │ │ │ │ │ │ │ └── Identifier.php │ │ │ │ │ │ ├── EmbeddedIdentifierEntity.php │ │ │ │ │ │ ├── Employee.php │ │ │ │ │ │ ├── GroupableEntity.php │ │ │ │ │ │ ├── GuidIdEntity.php │ │ │ │ │ │ ├── Person.php │ │ │ │ │ │ ├── SingleAssociationToIntIdEntity.php │ │ │ │ │ │ ├── SingleIntIdEntity.php │ │ │ │ │ │ ├── SingleIntIdNoToStringEntity.php │ │ │ │ │ │ ├── SingleIntIdStringWrapperNameEntity.php │ │ │ │ │ │ ├── SingleStringCastableIdEntity.php │ │ │ │ │ │ ├── SingleStringIdEntity.php │ │ │ │ │ │ ├── Type │ │ │ │ │ │ │ ├── StringWrapper.php │ │ │ │ │ │ │ └── StringWrapperType.php │ │ │ │ │ │ ├── User.php │ │ │ │ │ │ └── UuidIdEntity.php │ │ │ │ │ ├── Form │ │ │ │ │ │ ├── ChoiceList │ │ │ │ │ │ │ ├── DoctrineChoiceLoaderTest.php │ │ │ │ │ │ │ └── ORMQueryBuilderLoaderTest.php │ │ │ │ │ │ ├── DataTransformer │ │ │ │ │ │ │ └── CollectionToArrayTransformerTest.php │ │ │ │ │ │ ├── DoctrineOrmTypeGuesserTest.php │ │ │ │ │ │ ├── EventListener │ │ │ │ │ │ │ └── MergeDoctrineCollectionListenerTest.php │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ ├── EntityTypePerformanceTest.php │ │ │ │ │ │ │ └── EntityTypeTest.php │ │ │ │ │ ├── HttpFoundation │ │ │ │ │ │ └── DbalSessionHandlerTest.php │ │ │ │ │ ├── Logger │ │ │ │ │ │ └── DbalLoggerTest.php │ │ │ │ │ ├── ManagerRegistryTest.php │ │ │ │ │ ├── PropertyInfo │ │ │ │ │ │ ├── DoctrineExtractorTest.php │ │ │ │ │ │ └── Fixtures │ │ │ │ │ │ │ ├── DoctrineDummy.php │ │ │ │ │ │ │ ├── DoctrineDummy210.php │ │ │ │ │ │ │ ├── DoctrineEmbeddable.php │ │ │ │ │ │ │ ├── DoctrineFooType.php │ │ │ │ │ │ │ ├── DoctrineRelation.php │ │ │ │ │ │ │ ├── DoctrineWithEmbedded.php │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ ├── Security │ │ │ │ │ │ ├── RememberMe │ │ │ │ │ │ │ └── DoctrineTokenProviderTest.php │ │ │ │ │ │ └── User │ │ │ │ │ │ │ └── EntityUserProviderTest.php │ │ │ │ │ └── Validator │ │ │ │ │ │ └── Constraints │ │ │ │ │ │ └── UniqueEntityValidatorTest.php │ │ │ │ ├── Validator │ │ │ │ │ ├── Constraints │ │ │ │ │ │ ├── UniqueEntity.php │ │ │ │ │ │ └── UniqueEntityValidator.php │ │ │ │ │ └── DoctrineInitializer.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── Monolog │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Formatter │ │ │ │ │ ├── ConsoleFormatter.php │ │ │ │ │ └── VarDumperFormatter.php │ │ │ │ ├── Handler │ │ │ │ │ ├── ChromePhpHandler.php │ │ │ │ │ ├── ConsoleHandler.php │ │ │ │ │ ├── DebugHandler.php │ │ │ │ │ ├── FingersCrossed │ │ │ │ │ │ └── NotFoundActivationStrategy.php │ │ │ │ │ ├── FirePHPHandler.php │ │ │ │ │ ├── ServerLogHandler.php │ │ │ │ │ └── SwiftMailerHandler.php │ │ │ │ ├── LICENSE │ │ │ │ ├── Logger.php │ │ │ │ ├── Processor │ │ │ │ │ ├── DebugProcessor.php │ │ │ │ │ ├── TokenProcessor.php │ │ │ │ │ └── WebProcessor.php │ │ │ │ ├── README.md │ │ │ │ ├── Tests │ │ │ │ │ ├── Formatter │ │ │ │ │ │ └── ConsoleFormatterTest.php │ │ │ │ │ ├── Handler │ │ │ │ │ │ ├── ConsoleHandlerTest.php │ │ │ │ │ │ └── FingersCrossed │ │ │ │ │ │ │ └── NotFoundActivationStrategyTest.php │ │ │ │ │ ├── LoggerTest.php │ │ │ │ │ └── Processor │ │ │ │ │ │ ├── DebugProcessorTest.php │ │ │ │ │ │ ├── TokenProcessorTest.php │ │ │ │ │ │ └── WebProcessorTest.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── PhpUnit │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── ClockMock.php │ │ │ │ ├── CoverageListener.php │ │ │ │ ├── DeprecationErrorHandler.php │ │ │ │ ├── DnsMock.php │ │ │ │ ├── LICENSE │ │ │ │ ├── Legacy │ │ │ │ │ ├── CommandForV5.php │ │ │ │ │ ├── CommandForV6.php │ │ │ │ │ ├── CoverageListenerForV5.php │ │ │ │ │ ├── CoverageListenerForV6.php │ │ │ │ │ ├── CoverageListenerForV7.php │ │ │ │ │ ├── CoverageListenerTrait.php │ │ │ │ │ ├── SymfonyTestsListenerForV5.php │ │ │ │ │ ├── SymfonyTestsListenerForV6.php │ │ │ │ │ ├── SymfonyTestsListenerForV7.php │ │ │ │ │ └── SymfonyTestsListenerTrait.php │ │ │ │ ├── README.md │ │ │ │ ├── SymfonyTestsListener.php │ │ │ │ ├── Tests │ │ │ │ │ ├── ClockMockTest.php │ │ │ │ │ ├── CoverageListenerTest.php │ │ │ │ │ ├── DeprecationErrorHandler │ │ │ │ │ │ ├── default.phpt │ │ │ │ │ │ ├── deprecation.phar │ │ │ │ │ │ ├── deprecation │ │ │ │ │ │ │ └── deprecation.php │ │ │ │ │ │ ├── disabled.phpt │ │ │ │ │ │ ├── fake_vendor │ │ │ │ │ │ │ ├── acme │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ │ └── deprecation_riddled.php │ │ │ │ │ │ │ ├── autoload.php │ │ │ │ │ │ │ └── composer │ │ │ │ │ │ │ │ ├── autoload_real.php │ │ │ │ │ │ │ │ └── installed.json │ │ │ │ │ │ ├── generate_phar.php │ │ │ │ │ │ ├── regexp.phpt │ │ │ │ │ │ ├── shutdown_deprecations.phpt │ │ │ │ │ │ ├── weak.phpt │ │ │ │ │ │ ├── weak_vendors_on_eval_d_deprecation.phpt │ │ │ │ │ │ ├── weak_vendors_on_non_vendor.phpt │ │ │ │ │ │ ├── weak_vendors_on_phar_deprecation.phpt │ │ │ │ │ │ └── weak_vendors_on_vendor.phpt │ │ │ │ │ ├── DnsMockTest.php │ │ │ │ │ ├── ExpectedDeprecationAnnotationTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ └── coverage │ │ │ │ │ │ │ ├── phpunit-with-listener.xml.dist │ │ │ │ │ │ │ ├── phpunit-without-listener.xml.dist │ │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── BarCov.php │ │ │ │ │ │ │ └── FooCov.php │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── BarCovTest.php │ │ │ │ │ │ │ ├── CoversDefaultClassTest.php │ │ │ │ │ │ │ ├── CoversNothingTest.php │ │ │ │ │ │ │ ├── CoversTest.php │ │ │ │ │ │ │ ├── SutNotFoundTest.php │ │ │ │ │ │ │ └── bootstrap.php │ │ │ │ │ ├── OnlyExpectingDeprecationSkippedTest.php │ │ │ │ │ └── ProcessIsolationTest.php │ │ │ │ ├── TextUI │ │ │ │ │ └── Command.php │ │ │ │ ├── bin │ │ │ │ │ └── simple-phpunit │ │ │ │ ├── bootstrap.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── ProxyManager │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── LazyProxy │ │ │ │ │ ├── Instantiator │ │ │ │ │ │ ├── LazyLoadingValueHolderFactoryV1.php │ │ │ │ │ │ ├── LazyLoadingValueHolderFactoryV2.php │ │ │ │ │ │ └── RuntimeInstantiator.php │ │ │ │ │ └── PhpDumper │ │ │ │ │ │ ├── LazyLoadingValueHolderGenerator.php │ │ │ │ │ │ └── ProxyDumper.php │ │ │ │ ├── README.md │ │ │ │ ├── Tests │ │ │ │ │ └── LazyProxy │ │ │ │ │ │ ├── ContainerBuilderTest.php │ │ │ │ │ │ ├── Dumper │ │ │ │ │ │ └── PhpDumperTest.php │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── includes │ │ │ │ │ │ │ └── foo.php │ │ │ │ │ │ └── php │ │ │ │ │ │ │ └── lazy_service_structure.txt │ │ │ │ │ │ ├── Instantiator │ │ │ │ │ │ └── RuntimeInstantiatorTest.php │ │ │ │ │ │ └── PhpDumper │ │ │ │ │ │ └── ProxyDumperTest.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ └── Twig │ │ │ │ ├── .gitignore │ │ │ │ ├── AppVariable.php │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Command │ │ │ │ ├── DebugCommand.php │ │ │ │ └── LintCommand.php │ │ │ │ ├── DataCollector │ │ │ │ └── TwigDataCollector.php │ │ │ │ ├── Extension │ │ │ │ ├── AssetExtension.php │ │ │ │ ├── CodeExtension.php │ │ │ │ ├── DumpExtension.php │ │ │ │ ├── ExpressionExtension.php │ │ │ │ ├── FormExtension.php │ │ │ │ ├── HttpFoundationExtension.php │ │ │ │ ├── HttpKernelExtension.php │ │ │ │ ├── HttpKernelRuntime.php │ │ │ │ ├── InitRuntimeInterface.php │ │ │ │ ├── LogoutUrlExtension.php │ │ │ │ ├── ProfilerExtension.php │ │ │ │ ├── RoutingExtension.php │ │ │ │ ├── SecurityExtension.php │ │ │ │ ├── StopwatchExtension.php │ │ │ │ ├── TranslationExtension.php │ │ │ │ ├── WebLinkExtension.php │ │ │ │ ├── WorkflowExtension.php │ │ │ │ └── YamlExtension.php │ │ │ │ ├── Form │ │ │ │ ├── TwigRenderer.php │ │ │ │ ├── TwigRendererEngine.php │ │ │ │ ├── TwigRendererEngineInterface.php │ │ │ │ └── TwigRendererInterface.php │ │ │ │ ├── LICENSE │ │ │ │ ├── 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 │ │ │ │ │ └── Form │ │ │ │ │ ├── bootstrap_3_horizontal_layout.html.twig │ │ │ │ │ ├── bootstrap_3_layout.html.twig │ │ │ │ │ ├── bootstrap_4_horizontal_layout.html.twig │ │ │ │ │ ├── bootstrap_4_layout.html.twig │ │ │ │ │ ├── bootstrap_base_layout.html.twig │ │ │ │ │ ├── form_div_layout.html.twig │ │ │ │ │ ├── form_table_layout.html.twig │ │ │ │ │ └── foundation_5_layout.html.twig │ │ │ │ ├── Tests │ │ │ │ ├── AppVariableTest.php │ │ │ │ ├── Command │ │ │ │ │ ├── DebugCommandTest.php │ │ │ │ │ └── LintCommandTest.php │ │ │ │ ├── Extension │ │ │ │ │ ├── AbstractBootstrap3HorizontalLayoutTest.php │ │ │ │ │ ├── AbstractBootstrap3LayoutTest.php │ │ │ │ │ ├── AbstractBootstrap4HorizontalLayoutTest.php │ │ │ │ │ ├── AbstractBootstrap4LayoutTest.php │ │ │ │ │ ├── CodeExtensionTest.php │ │ │ │ │ ├── DumpExtensionTest.php │ │ │ │ │ ├── ExpressionExtensionTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── StubFilesystemLoader.php │ │ │ │ │ │ ├── StubTranslator.php │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── form │ │ │ │ │ │ │ ├── child_label.html.twig │ │ │ │ │ │ │ ├── custom_widgets.html.twig │ │ │ │ │ │ │ ├── page_dynamic_extends.html.twig │ │ │ │ │ │ │ ├── parent_label.html.twig │ │ │ │ │ │ │ ├── theme.html.twig │ │ │ │ │ │ │ ├── theme_extends.html.twig │ │ │ │ │ │ │ └── theme_use.html.twig │ │ │ │ │ ├── FormExtensionBootstrap3HorizontalLayoutTest.php │ │ │ │ │ ├── FormExtensionBootstrap3LayoutTest.php │ │ │ │ │ ├── FormExtensionBootstrap4HorizontalLayoutTest.php │ │ │ │ │ ├── FormExtensionBootstrap4LayoutTest.php │ │ │ │ │ ├── FormExtensionDivLayoutTest.php │ │ │ │ │ ├── FormExtensionTableLayoutTest.php │ │ │ │ │ ├── FormExtensionTest.php │ │ │ │ │ ├── HttpFoundationExtensionTest.php │ │ │ │ │ ├── HttpKernelExtensionTest.php │ │ │ │ │ ├── RoutingExtensionTest.php │ │ │ │ │ ├── RuntimeLoaderProvider.php │ │ │ │ │ ├── StopwatchExtensionTest.php │ │ │ │ │ ├── TranslationExtensionTest.php │ │ │ │ │ ├── WebLinkExtensionTest.php │ │ │ │ │ └── WorkflowExtensionTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ └── extractor │ │ │ │ │ │ ├── syntax_error.twig │ │ │ │ │ │ └── with_translations.html.twig │ │ │ │ ├── Node │ │ │ │ │ ├── DumpNodeTest.php │ │ │ │ │ ├── FormThemeTest.php │ │ │ │ │ ├── SearchAndRenderBlockNodeTest.php │ │ │ │ │ └── TransNodeTest.php │ │ │ │ ├── NodeVisitor │ │ │ │ │ ├── ScopeTest.php │ │ │ │ │ ├── TranslationDefaultDomainNodeVisitorTest.php │ │ │ │ │ ├── TranslationNodeVisitorTest.php │ │ │ │ │ └── TwigNodeProvider.php │ │ │ │ ├── TokenParser │ │ │ │ │ └── FormThemeTokenParserTest.php │ │ │ │ ├── Translation │ │ │ │ │ └── TwigExtractorTest.php │ │ │ │ └── TwigEngineTest.php │ │ │ │ ├── TokenParser │ │ │ │ ├── DumpTokenParser.php │ │ │ │ ├── FormThemeTokenParser.php │ │ │ │ ├── StopwatchTokenParser.php │ │ │ │ ├── TransChoiceTokenParser.php │ │ │ │ ├── TransDefaultDomainTokenParser.php │ │ │ │ └── TransTokenParser.php │ │ │ │ ├── Translation │ │ │ │ └── TwigExtractor.php │ │ │ │ ├── TwigEngine.php │ │ │ │ ├── UndefinedCallableHandler.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── Bundle │ │ │ ├── DebugBundle │ │ │ │ ├── .gitignore │ │ │ │ ├── DebugBundle.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ ├── Compiler │ │ │ │ │ │ └── DumpDataCollectorPass.php │ │ │ │ │ ├── Configuration.php │ │ │ │ │ └── DebugExtension.php │ │ │ │ ├── LICENSE │ │ │ │ ├── Resources │ │ │ │ │ ├── config │ │ │ │ │ │ ├── schema │ │ │ │ │ │ │ └── debug-1.0.xsd │ │ │ │ │ │ └── services.xml │ │ │ │ │ └── views │ │ │ │ │ │ └── Profiler │ │ │ │ │ │ ├── dump.html.twig │ │ │ │ │ │ └── icon.svg │ │ │ │ ├── Tests │ │ │ │ │ └── DependencyInjection │ │ │ │ │ │ ├── Compiler │ │ │ │ │ │ └── DumpDataCollectorPassTest.php │ │ │ │ │ │ └── DebugExtensionTest.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── FrameworkBundle │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CacheWarmer │ │ │ │ │ ├── AbstractPhpFileCacheWarmer.php │ │ │ │ │ ├── AnnotationsCacheWarmer.php │ │ │ │ │ ├── ClassCacheCacheWarmer.php │ │ │ │ │ ├── RouterCacheWarmer.php │ │ │ │ │ ├── SerializerCacheWarmer.php │ │ │ │ │ ├── TemplateFinder.php │ │ │ │ │ ├── TemplateFinderInterface.php │ │ │ │ │ ├── TemplatePathsCacheWarmer.php │ │ │ │ │ ├── TranslationsCacheWarmer.php │ │ │ │ │ └── ValidatorCacheWarmer.php │ │ │ │ ├── Client.php │ │ │ │ ├── Command │ │ │ │ │ ├── AboutCommand.php │ │ │ │ │ ├── AbstractConfigCommand.php │ │ │ │ │ ├── AssetsInstallCommand.php │ │ │ │ │ ├── CacheClearCommand.php │ │ │ │ │ ├── CachePoolClearCommand.php │ │ │ │ │ ├── CachePoolPruneCommand.php │ │ │ │ │ ├── CacheWarmupCommand.php │ │ │ │ │ ├── ConfigDebugCommand.php │ │ │ │ │ ├── ConfigDumpReferenceCommand.php │ │ │ │ │ ├── ContainerAwareCommand.php │ │ │ │ │ ├── ContainerDebugCommand.php │ │ │ │ │ ├── DebugAutowiringCommand.php │ │ │ │ │ ├── EventDispatcherDebugCommand.php │ │ │ │ │ ├── RouterDebugCommand.php │ │ │ │ │ ├── RouterMatchCommand.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 │ │ │ │ │ ├── Controller.php │ │ │ │ │ ├── ControllerNameParser.php │ │ │ │ │ ├── ControllerResolver.php │ │ │ │ │ ├── ControllerTrait.php │ │ │ │ │ ├── RedirectController.php │ │ │ │ │ └── TemplateController.php │ │ │ │ ├── DataCollector │ │ │ │ │ ├── RequestDataCollector.php │ │ │ │ │ └── RouterDataCollector.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ ├── Compiler │ │ │ │ │ │ ├── AddAnnotationsCachedReaderPass.php │ │ │ │ │ │ ├── AddCacheClearerPass.php │ │ │ │ │ │ ├── AddCacheWarmerPass.php │ │ │ │ │ │ ├── AddConsoleCommandPass.php │ │ │ │ │ │ ├── AddConstraintValidatorsPass.php │ │ │ │ │ │ ├── AddDebugLogProcessorPass.php │ │ │ │ │ │ ├── AddExpressionLanguageProvidersPass.php │ │ │ │ │ │ ├── AddValidatorInitializersPass.php │ │ │ │ │ │ ├── CacheCollectorPass.php │ │ │ │ │ │ ├── CachePoolClearerPass.php │ │ │ │ │ │ ├── CachePoolPass.php │ │ │ │ │ │ ├── CachePoolPrunerPass.php │ │ │ │ │ │ ├── CompilerDebugDumpPass.php │ │ │ │ │ │ ├── ConfigCachePass.php │ │ │ │ │ │ ├── ContainerBuilderDebugDumpPass.php │ │ │ │ │ │ ├── ControllerArgumentValueResolverPass.php │ │ │ │ │ │ ├── DataCollectorTranslatorPass.php │ │ │ │ │ │ ├── FormPass.php │ │ │ │ │ │ ├── LoggingTranslatorPass.php │ │ │ │ │ │ ├── ProfilerPass.php │ │ │ │ │ │ ├── PropertyInfoPass.php │ │ │ │ │ │ ├── RoutingResolverPass.php │ │ │ │ │ │ ├── SerializerPass.php │ │ │ │ │ │ ├── SessionPass.php │ │ │ │ │ │ ├── TemplatingPass.php │ │ │ │ │ │ ├── TranslationDumperPass.php │ │ │ │ │ │ ├── TranslationExtractorPass.php │ │ │ │ │ │ ├── TranslatorPass.php │ │ │ │ │ │ ├── UnusedTagsPass.php │ │ │ │ │ │ ├── ValidateWorkflowsPass.php │ │ │ │ │ │ └── WorkflowGuardListenerPass.php │ │ │ │ │ ├── Configuration.php │ │ │ │ │ └── FrameworkExtension.php │ │ │ │ ├── EventListener │ │ │ │ │ ├── ResolveControllerNameSubscriber.php │ │ │ │ │ ├── SessionListener.php │ │ │ │ │ └── TestSessionListener.php │ │ │ │ ├── FrameworkBundle.php │ │ │ │ ├── HttpCache │ │ │ │ │ └── HttpCache.php │ │ │ │ ├── Kernel │ │ │ │ │ └── MicroKernelTrait.php │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── Resources │ │ │ │ │ ├── bin │ │ │ │ │ │ └── check-unused-known-tags.php │ │ │ │ │ ├── config │ │ │ │ │ │ ├── annotations.xml │ │ │ │ │ │ ├── assets.xml │ │ │ │ │ │ ├── cache.xml │ │ │ │ │ │ ├── cache_debug.xml │ │ │ │ │ │ ├── collectors.xml │ │ │ │ │ │ ├── console.xml │ │ │ │ │ │ ├── debug.xml │ │ │ │ │ │ ├── debug_prod.xml │ │ │ │ │ │ ├── esi.xml │ │ │ │ │ │ ├── form.xml │ │ │ │ │ │ ├── form_csrf.xml │ │ │ │ │ │ ├── form_debug.xml │ │ │ │ │ │ ├── fragment_listener.xml │ │ │ │ │ │ ├── fragment_renderer.xml │ │ │ │ │ │ ├── identity_translator.xml │ │ │ │ │ │ ├── lock.xml │ │ │ │ │ │ ├── profiling.xml │ │ │ │ │ │ ├── property_access.xml │ │ │ │ │ │ ├── property_info.xml │ │ │ │ │ │ ├── request.xml │ │ │ │ │ │ ├── routing.xml │ │ │ │ │ │ ├── schema │ │ │ │ │ │ │ └── symfony-1.0.xsd │ │ │ │ │ │ ├── security_csrf.xml │ │ │ │ │ │ ├── serializer.xml │ │ │ │ │ │ ├── services.xml │ │ │ │ │ │ ├── session.xml │ │ │ │ │ │ ├── ssi.xml │ │ │ │ │ │ ├── templating.xml │ │ │ │ │ │ ├── templating_debug.xml │ │ │ │ │ │ ├── templating_php.xml │ │ │ │ │ │ ├── test.xml │ │ │ │ │ │ ├── translation.xml │ │ │ │ │ │ ├── translation_debug.xml │ │ │ │ │ │ ├── validator.xml │ │ │ │ │ │ ├── validator_debug.xml │ │ │ │ │ │ ├── web.xml │ │ │ │ │ │ ├── web_link.xml │ │ │ │ │ │ └── workflow.xml │ │ │ │ │ └── views │ │ │ │ │ │ ├── Form │ │ │ │ │ │ ├── attributes.html.php │ │ │ │ │ │ ├── button_attributes.html.php │ │ │ │ │ │ ├── button_label.html.php │ │ │ │ │ │ ├── button_row.html.php │ │ │ │ │ │ ├── button_widget.html.php │ │ │ │ │ │ ├── checkbox_widget.html.php │ │ │ │ │ │ ├── choice_attributes.html.php │ │ │ │ │ │ ├── choice_options.html.php │ │ │ │ │ │ ├── choice_widget.html.php │ │ │ │ │ │ ├── choice_widget_collapsed.html.php │ │ │ │ │ │ ├── choice_widget_expanded.html.php │ │ │ │ │ │ ├── choice_widget_options.html.php │ │ │ │ │ │ ├── collection_widget.html.php │ │ │ │ │ │ ├── color_widget.html.php │ │ │ │ │ │ ├── container_attributes.html.php │ │ │ │ │ │ ├── date_widget.html.php │ │ │ │ │ │ ├── datetime_widget.html.php │ │ │ │ │ │ ├── email_widget.html.php │ │ │ │ │ │ ├── form.html.php │ │ │ │ │ │ ├── form_enctype.html.php │ │ │ │ │ │ ├── form_end.html.php │ │ │ │ │ │ ├── form_errors.html.php │ │ │ │ │ │ ├── form_label.html.php │ │ │ │ │ │ ├── form_rest.html.php │ │ │ │ │ │ ├── form_row.html.php │ │ │ │ │ │ ├── form_rows.html.php │ │ │ │ │ │ ├── form_start.html.php │ │ │ │ │ │ ├── form_widget.html.php │ │ │ │ │ │ ├── form_widget_compound.html.php │ │ │ │ │ │ ├── form_widget_simple.html.php │ │ │ │ │ │ ├── hidden_row.html.php │ │ │ │ │ │ ├── hidden_widget.html.php │ │ │ │ │ │ ├── integer_widget.html.php │ │ │ │ │ │ ├── money_widget.html.php │ │ │ │ │ │ ├── number_widget.html.php │ │ │ │ │ │ ├── password_widget.html.php │ │ │ │ │ │ ├── percent_widget.html.php │ │ │ │ │ │ ├── radio_widget.html.php │ │ │ │ │ │ ├── range_widget.html.php │ │ │ │ │ │ ├── repeated_row.html.php │ │ │ │ │ │ ├── reset_widget.html.php │ │ │ │ │ │ ├── search_widget.html.php │ │ │ │ │ │ ├── submit_widget.html.php │ │ │ │ │ │ ├── tel_widget.html.php │ │ │ │ │ │ ├── textarea_widget.html.php │ │ │ │ │ │ ├── time_widget.html.php │ │ │ │ │ │ ├── url_widget.html.php │ │ │ │ │ │ ├── widget_attributes.html.php │ │ │ │ │ │ └── widget_container_attributes.html.php │ │ │ │ │ │ └── FormTable │ │ │ │ │ │ ├── button_row.html.php │ │ │ │ │ │ ├── form_row.html.php │ │ │ │ │ │ ├── form_widget_compound.html.php │ │ │ │ │ │ └── hidden_row.html.php │ │ │ │ ├── Routing │ │ │ │ │ ├── AnnotatedRouteControllerLoader.php │ │ │ │ │ ├── DelegatingLoader.php │ │ │ │ │ ├── RedirectableUrlMatcher.php │ │ │ │ │ └── Router.php │ │ │ │ ├── Templating │ │ │ │ │ ├── DelegatingEngine.php │ │ │ │ │ ├── EngineInterface.php │ │ │ │ │ ├── GlobalVariables.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ ├── ActionsHelper.php │ │ │ │ │ │ ├── AssetsHelper.php │ │ │ │ │ │ ├── CodeHelper.php │ │ │ │ │ │ ├── FormHelper.php │ │ │ │ │ │ ├── RequestHelper.php │ │ │ │ │ │ ├── RouterHelper.php │ │ │ │ │ │ ├── SessionHelper.php │ │ │ │ │ │ ├── StopwatchHelper.php │ │ │ │ │ │ └── TranslatorHelper.php │ │ │ │ │ ├── Loader │ │ │ │ │ │ ├── FilesystemLoader.php │ │ │ │ │ │ └── TemplateLocator.php │ │ │ │ │ ├── PhpEngine.php │ │ │ │ │ ├── TemplateFilenameParser.php │ │ │ │ │ ├── TemplateNameParser.php │ │ │ │ │ ├── TemplateReference.php │ │ │ │ │ └── TimedPhpEngine.php │ │ │ │ ├── Test │ │ │ │ │ ├── ForwardCompatTestTrait.php │ │ │ │ │ ├── KernelTestCase.php │ │ │ │ │ └── WebTestCase.php │ │ │ │ ├── Tests │ │ │ │ │ ├── CacheWarmer │ │ │ │ │ │ ├── AnnotationsCacheWarmerTest.php │ │ │ │ │ │ ├── ClassCacheCacheWarmerTest.php │ │ │ │ │ │ ├── SerializerCacheWarmerTest.php │ │ │ │ │ │ ├── TemplateFinderTest.php │ │ │ │ │ │ ├── TemplatePathsCacheWarmerTest.php │ │ │ │ │ │ └── ValidatorCacheWarmerTest.php │ │ │ │ │ ├── ClientTest.php │ │ │ │ │ ├── Command │ │ │ │ │ │ ├── CacheClearCommand │ │ │ │ │ │ │ ├── CacheClearCommandTest.php │ │ │ │ │ │ │ └── Fixture │ │ │ │ │ │ │ │ ├── TestAppKernel.php │ │ │ │ │ │ │ │ └── config.yml │ │ │ │ │ │ ├── CachePruneCommandTest.php │ │ │ │ │ │ ├── RouterDebugCommandTest.php │ │ │ │ │ │ ├── RouterMatchCommandTest.php │ │ │ │ │ │ ├── TranslationDebugCommandTest.php │ │ │ │ │ │ ├── TranslationUpdateCommandTest.php │ │ │ │ │ │ └── YamlLintCommandTest.php │ │ │ │ │ ├── Console │ │ │ │ │ │ ├── ApplicationTest.php │ │ │ │ │ │ └── Descriptor │ │ │ │ │ │ │ ├── AbstractDescriptorTest.php │ │ │ │ │ │ │ ├── JsonDescriptorTest.php │ │ │ │ │ │ │ ├── MarkdownDescriptorTest.php │ │ │ │ │ │ │ ├── ObjectsProvider.php │ │ │ │ │ │ │ ├── TextDescriptorTest.php │ │ │ │ │ │ │ └── XmlDescriptorTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── AbstractControllerTest.php │ │ │ │ │ │ ├── ControllerNameParserTest.php │ │ │ │ │ │ ├── ControllerResolverTest.php │ │ │ │ │ │ ├── ControllerTest.php │ │ │ │ │ │ ├── ControllerTraitTest.php │ │ │ │ │ │ ├── RedirectControllerTest.php │ │ │ │ │ │ └── TemplateControllerTest.php │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ ├── Compiler │ │ │ │ │ │ │ ├── AddCacheWarmerPassTest.php │ │ │ │ │ │ │ ├── AddConsoleCommandPassTest.php │ │ │ │ │ │ │ ├── AddConstraintValidatorsPassTest.php │ │ │ │ │ │ │ ├── AddExpressionLanguageProvidersPassTest.php │ │ │ │ │ │ │ ├── CacheCollectorPassTest.php │ │ │ │ │ │ │ ├── CachePoolClearerPassTest.php │ │ │ │ │ │ │ ├── CachePoolPassTest.php │ │ │ │ │ │ │ ├── CachePoolPrunerPassTest.php │ │ │ │ │ │ │ ├── ConfigCachePassTest.php │ │ │ │ │ │ │ ├── ControllerArgumentValueResolverPassTest.php │ │ │ │ │ │ │ ├── DataCollectorTranslatorPassTest.php │ │ │ │ │ │ │ ├── FormPassTest.php │ │ │ │ │ │ │ ├── LoggingTranslatorPassTest.php │ │ │ │ │ │ │ ├── ProfilerPassTest.php │ │ │ │ │ │ │ ├── PropertyInfoPassTest.php │ │ │ │ │ │ │ ├── SerializerPassTest.php │ │ │ │ │ │ │ ├── SessionPassTest.php │ │ │ │ │ │ │ ├── TranslatorPassTest.php │ │ │ │ │ │ │ ├── UnusedTagsPassTest.php │ │ │ │ │ │ │ ├── UnusedTagsPassUtils.php │ │ │ │ │ │ │ └── WorkflowGuardListenerPassTest.php │ │ │ │ │ │ ├── ConfigurationTest.php │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ │ ├── CustomPathBundle │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ │ └── config │ │ │ │ │ │ │ │ │ │ ├── validation.xml │ │ │ │ │ │ │ │ │ │ └── validation.yml │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ └── CustomPathBundle.php │ │ │ │ │ │ │ ├── TestBundle │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ │ └── config │ │ │ │ │ │ │ │ │ │ ├── serialization.xml │ │ │ │ │ │ │ │ │ │ ├── serialization.yml │ │ │ │ │ │ │ │ │ │ ├── serializer_mapping │ │ │ │ │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ │ │ │ │ ├── foo.xml │ │ │ │ │ │ │ │ │ │ │ └── foo.yml │ │ │ │ │ │ │ │ │ │ ├── serialization.yaml │ │ │ │ │ │ │ │ │ │ └── serialization.yml │ │ │ │ │ │ │ │ │ │ ├── validation.xml │ │ │ │ │ │ │ │ │ │ ├── validation.yml │ │ │ │ │ │ │ │ │ │ └── validation_mapping │ │ │ │ │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ │ │ │ ├── foo.xml │ │ │ │ │ │ │ │ │ │ └── foo.yml │ │ │ │ │ │ │ │ │ │ ├── validation.yaml │ │ │ │ │ │ │ │ │ │ └── validation.yml │ │ │ │ │ │ │ │ └── TestBundle.php │ │ │ │ │ │ │ ├── php │ │ │ │ │ │ │ │ ├── assets.php │ │ │ │ │ │ │ │ ├── assets_disabled.php │ │ │ │ │ │ │ │ ├── assets_version_strategy_as_service.php │ │ │ │ │ │ │ │ ├── cache.php │ │ │ │ │ │ │ │ ├── cache_env_var.php │ │ │ │ │ │ │ │ ├── csrf.php │ │ │ │ │ │ │ │ ├── csrf_needs_session.php │ │ │ │ │ │ │ │ ├── default_config.php │ │ │ │ │ │ │ │ ├── esi_and_ssi_without_fragments.php │ │ │ │ │ │ │ │ ├── esi_disabled.php │ │ │ │ │ │ │ │ ├── form_no_csrf.php │ │ │ │ │ │ │ │ ├── full.php │ │ │ │ │ │ │ │ ├── php_errors_disabled.php │ │ │ │ │ │ │ │ ├── php_errors_enabled.php │ │ │ │ │ │ │ │ ├── profiler.php │ │ │ │ │ │ │ │ ├── property_accessor.php │ │ │ │ │ │ │ │ ├── property_info.php │ │ │ │ │ │ │ │ ├── request.php │ │ │ │ │ │ │ │ ├── serializer_disabled.php │ │ │ │ │ │ │ │ ├── serializer_enabled.php │ │ │ │ │ │ │ │ ├── serializer_legacy_cache.php │ │ │ │ │ │ │ │ ├── serializer_mapping.php │ │ │ │ │ │ │ │ ├── session.php │ │ │ │ │ │ │ │ ├── ssi_disabled.php │ │ │ │ │ │ │ │ ├── templating_disabled.php │ │ │ │ │ │ │ │ ├── templating_no_assets.php │ │ │ │ │ │ │ │ ├── templating_php_assets_disabled.php │ │ │ │ │ │ │ │ ├── templating_php_translator_disabled.php │ │ │ │ │ │ │ │ ├── templating_php_translator_enabled.php │ │ │ │ │ │ │ │ ├── translator_fallbacks.php │ │ │ │ │ │ │ │ ├── validation_annotations.php │ │ │ │ │ │ │ │ ├── validation_mapping.php │ │ │ │ │ │ │ │ ├── validation_multiple_static_methods.php │ │ │ │ │ │ │ │ ├── validation_no_static_method.php │ │ │ │ │ │ │ │ ├── validation_strict_email.php │ │ │ │ │ │ │ │ ├── validation_translation_domain.php │ │ │ │ │ │ │ │ ├── web_link.php │ │ │ │ │ │ │ │ ├── workflow_with_arguments_and_service.php │ │ │ │ │ │ │ │ ├── workflow_with_guard_expression.php │ │ │ │ │ │ │ │ ├── workflow_with_multiple_transitions_with_same_name.php │ │ │ │ │ │ │ │ ├── workflow_with_support_and_support_strategy.php │ │ │ │ │ │ │ │ ├── workflow_with_type_and_service.php │ │ │ │ │ │ │ │ ├── workflow_without_support_and_support_strategy.php │ │ │ │ │ │ │ │ ├── workflows.php │ │ │ │ │ │ │ │ ├── workflows_enabled.php │ │ │ │ │ │ │ │ ├── workflows_explicitly_enabled.php │ │ │ │ │ │ │ │ ├── workflows_explicitly_enabled_named_workflows.php │ │ │ │ │ │ │ │ └── workflows_without_type.php │ │ │ │ │ │ │ ├── translations │ │ │ │ │ │ │ │ └── test_paths.en.yml │ │ │ │ │ │ │ ├── xml │ │ │ │ │ │ │ │ ├── assets.xml │ │ │ │ │ │ │ │ ├── assets_disabled.xml │ │ │ │ │ │ │ │ ├── assets_version_strategy_as_service.xml │ │ │ │ │ │ │ │ ├── cache.xml │ │ │ │ │ │ │ │ ├── cache_env_var.xml │ │ │ │ │ │ │ │ ├── csrf.xml │ │ │ │ │ │ │ │ ├── csrf_disabled.xml │ │ │ │ │ │ │ │ ├── csrf_needs_session.xml │ │ │ │ │ │ │ │ ├── default_config.xml │ │ │ │ │ │ │ │ ├── esi_and_ssi_without_fragments.xml │ │ │ │ │ │ │ │ ├── esi_disabled.xml │ │ │ │ │ │ │ │ ├── form_csrf_sets_field_name.xml │ │ │ │ │ │ │ │ ├── form_csrf_under_form_sets_field_name.xml │ │ │ │ │ │ │ │ ├── form_no_csrf.xml │ │ │ │ │ │ │ │ ├── full.xml │ │ │ │ │ │ │ │ ├── lock.xml │ │ │ │ │ │ │ │ ├── lock_named.xml │ │ │ │ │ │ │ │ ├── php_errors_disabled.xml │ │ │ │ │ │ │ │ ├── php_errors_enabled.xml │ │ │ │ │ │ │ │ ├── profiler.xml │ │ │ │ │ │ │ │ ├── property_accessor.xml │ │ │ │ │ │ │ │ ├── property_info.xml │ │ │ │ │ │ │ │ ├── request.xml │ │ │ │ │ │ │ │ ├── serializer_disabled.xml │ │ │ │ │ │ │ │ ├── serializer_enabled.xml │ │ │ │ │ │ │ │ ├── serializer_legacy_cache.xml │ │ │ │ │ │ │ │ ├── serializer_mapping.xml │ │ │ │ │ │ │ │ ├── session.xml │ │ │ │ │ │ │ │ ├── ssi_disabled.xml │ │ │ │ │ │ │ │ ├── templating_disabled.xml │ │ │ │ │ │ │ │ ├── templating_no_assets.xml │ │ │ │ │ │ │ │ ├── templating_php_translator_disabled.xml │ │ │ │ │ │ │ │ ├── templating_php_translator_enabled.xml │ │ │ │ │ │ │ │ ├── translator_fallbacks.xml │ │ │ │ │ │ │ │ ├── validation_annotations.xml │ │ │ │ │ │ │ │ ├── validation_mapping.xml │ │ │ │ │ │ │ │ ├── validation_multiple_static_methods.xml │ │ │ │ │ │ │ │ ├── validation_no_static_method.xml │ │ │ │ │ │ │ │ ├── validation_strict_email.xml │ │ │ │ │ │ │ │ ├── validation_translation_domain.xml │ │ │ │ │ │ │ │ ├── web_link.xml │ │ │ │ │ │ │ │ ├── workflow_with_arguments_and_service.xml │ │ │ │ │ │ │ │ ├── workflow_with_guard_expression.xml │ │ │ │ │ │ │ │ ├── workflow_with_multiple_transitions_with_same_name.xml │ │ │ │ │ │ │ │ ├── workflow_with_support_and_support_strategy.xml │ │ │ │ │ │ │ │ ├── workflow_with_type_and_service.xml │ │ │ │ │ │ │ │ ├── workflow_without_support_and_support_strategy.xml │ │ │ │ │ │ │ │ ├── workflows.xml │ │ │ │ │ │ │ │ ├── workflows_enabled.xml │ │ │ │ │ │ │ │ ├── workflows_explicitly_enabled.xml │ │ │ │ │ │ │ │ ├── workflows_explicitly_enabled_named_workflows.xml │ │ │ │ │ │ │ │ └── workflows_without_type.xml │ │ │ │ │ │ │ └── yml │ │ │ │ │ │ │ │ ├── assets.yml │ │ │ │ │ │ │ │ ├── assets_disabled.yml │ │ │ │ │ │ │ │ ├── assets_version_strategy_as_service.yml │ │ │ │ │ │ │ │ ├── cache.yml │ │ │ │ │ │ │ │ ├── cache_env_var.yml │ │ │ │ │ │ │ │ ├── csrf.yml │ │ │ │ │ │ │ │ ├── csrf_needs_session.yml │ │ │ │ │ │ │ │ ├── default_config.yml │ │ │ │ │ │ │ │ ├── esi_and_ssi_without_fragments.yml │ │ │ │ │ │ │ │ ├── esi_disabled.yml │ │ │ │ │ │ │ │ ├── form_no_csrf.yml │ │ │ │ │ │ │ │ ├── full.yml │ │ │ │ │ │ │ │ ├── lock.yml │ │ │ │ │ │ │ │ ├── lock_named.yml │ │ │ │ │ │ │ │ ├── php_errors_disabled.yml │ │ │ │ │ │ │ │ ├── php_errors_enabled.yml │ │ │ │ │ │ │ │ ├── profiler.yml │ │ │ │ │ │ │ │ ├── property_accessor.yml │ │ │ │ │ │ │ │ ├── property_info.yml │ │ │ │ │ │ │ │ ├── request.yml │ │ │ │ │ │ │ │ ├── serializer_disabled.yml │ │ │ │ │ │ │ │ ├── serializer_enabled.yml │ │ │ │ │ │ │ │ ├── serializer_legacy_cache.yml │ │ │ │ │ │ │ │ ├── serializer_mapping.yml │ │ │ │ │ │ │ │ ├── session.yml │ │ │ │ │ │ │ │ ├── ssi_disabled.yml │ │ │ │ │ │ │ │ ├── templating_disabled.yml │ │ │ │ │ │ │ │ ├── templating_no_assets.yml │ │ │ │ │ │ │ │ ├── templating_php_assets_disabled.yml │ │ │ │ │ │ │ │ ├── templating_php_translator_disabled.yml │ │ │ │ │ │ │ │ ├── templating_php_translator_enabled.yml │ │ │ │ │ │ │ │ ├── translator_fallbacks.yml │ │ │ │ │ │ │ │ ├── validation_annotations.yml │ │ │ │ │ │ │ │ ├── validation_mapping.yml │ │ │ │ │ │ │ │ ├── validation_multiple_static_methods.yml │ │ │ │ │ │ │ │ ├── validation_no_static_method.yml │ │ │ │ │ │ │ │ ├── validation_strict_email.yml │ │ │ │ │ │ │ │ ├── validation_translation_domain.yml │ │ │ │ │ │ │ │ ├── web_link.yml │ │ │ │ │ │ │ │ ├── workflow_with_arguments_and_service.yml │ │ │ │ │ │ │ │ ├── workflow_with_guard_expression.yml │ │ │ │ │ │ │ │ ├── workflow_with_multiple_transitions_with_same_name.yml │ │ │ │ │ │ │ │ ├── workflow_with_support_and_support_strategy.yml │ │ │ │ │ │ │ │ ├── workflow_with_type_and_service.yml │ │ │ │ │ │ │ │ ├── workflow_without_support_and_support_strategy.yml │ │ │ │ │ │ │ │ ├── workflows.yml │ │ │ │ │ │ │ │ ├── workflows_enabled.yml │ │ │ │ │ │ │ │ ├── workflows_explicitly_enabled.yml │ │ │ │ │ │ │ │ ├── workflows_explicitly_enabled_named_workflows.yml │ │ │ │ │ │ │ │ └── workflows_without_type.yml │ │ │ │ │ │ ├── FrameworkExtensionTest.php │ │ │ │ │ │ ├── PhpFrameworkExtensionTest.php │ │ │ │ │ │ ├── XmlFrameworkExtensionTest.php │ │ │ │ │ │ ├── YamlFrameworkExtensionTest.php │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── serializer │ │ │ │ │ │ │ │ └── foo.yml │ │ │ │ │ │ │ └── validator │ │ │ │ │ │ │ │ └── foo.xml │ │ │ │ │ │ └── translations │ │ │ │ │ │ │ └── test_default.en.xlf │ │ │ │ │ ├── EventListener │ │ │ │ │ │ └── ResolveControllerNameSubscriberTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── BaseBundle │ │ │ │ │ │ │ ├── BaseBundle.php │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ ├── base.format.engine │ │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ │ └── base.format.engine │ │ │ │ │ │ │ │ └── this.is.a.template.format.engine │ │ │ │ │ │ ├── DeclaredClass.php │ │ │ │ │ │ ├── Descriptor │ │ │ │ │ │ │ ├── alias_1.json │ │ │ │ │ │ │ ├── alias_1.md │ │ │ │ │ │ │ ├── alias_1.txt │ │ │ │ │ │ │ ├── alias_1.xml │ │ │ │ │ │ │ ├── alias_2.json │ │ │ │ │ │ │ ├── alias_2.md │ │ │ │ │ │ │ ├── alias_2.txt │ │ │ │ │ │ │ ├── alias_2.xml │ │ │ │ │ │ │ ├── alias_with_definition_1.json │ │ │ │ │ │ │ ├── alias_with_definition_1.md │ │ │ │ │ │ │ ├── alias_with_definition_1.txt │ │ │ │ │ │ │ ├── alias_with_definition_1.xml │ │ │ │ │ │ │ ├── alias_with_definition_2.json │ │ │ │ │ │ │ ├── alias_with_definition_2.md │ │ │ │ │ │ │ ├── alias_with_definition_2.txt │ │ │ │ │ │ │ ├── alias_with_definition_2.xml │ │ │ │ │ │ │ ├── array_parameter.json │ │ │ │ │ │ │ ├── array_parameter.md │ │ │ │ │ │ │ ├── array_parameter.txt │ │ │ │ │ │ │ ├── array_parameter.xml │ │ │ │ │ │ │ ├── builder_1_arguments.json │ │ │ │ │ │ │ ├── builder_1_arguments.md │ │ │ │ │ │ │ ├── builder_1_arguments.txt │ │ │ │ │ │ │ ├── builder_1_arguments.xml │ │ │ │ │ │ │ ├── builder_1_public.json │ │ │ │ │ │ │ ├── builder_1_public.md │ │ │ │ │ │ │ ├── builder_1_public.txt │ │ │ │ │ │ │ ├── builder_1_public.xml │ │ │ │ │ │ │ ├── builder_1_services.json │ │ │ │ │ │ │ ├── builder_1_services.md │ │ │ │ │ │ │ ├── builder_1_services.txt │ │ │ │ │ │ │ ├── builder_1_services.xml │ │ │ │ │ │ │ ├── builder_1_tag1.json │ │ │ │ │ │ │ ├── builder_1_tag1.md │ │ │ │ │ │ │ ├── builder_1_tag1.txt │ │ │ │ │ │ │ ├── builder_1_tag1.xml │ │ │ │ │ │ │ ├── builder_1_tags.json │ │ │ │ │ │ │ ├── builder_1_tags.md │ │ │ │ │ │ │ ├── builder_1_tags.txt │ │ │ │ │ │ │ ├── builder_1_tags.xml │ │ │ │ │ │ │ ├── callable_1.json │ │ │ │ │ │ │ ├── callable_1.md │ │ │ │ │ │ │ ├── callable_1.txt │ │ │ │ │ │ │ ├── callable_1.xml │ │ │ │ │ │ │ ├── callable_2.json │ │ │ │ │ │ │ ├── callable_2.md │ │ │ │ │ │ │ ├── callable_2.txt │ │ │ │ │ │ │ ├── callable_2.xml │ │ │ │ │ │ │ ├── callable_3.json │ │ │ │ │ │ │ ├── callable_3.md │ │ │ │ │ │ │ ├── callable_3.txt │ │ │ │ │ │ │ ├── callable_3.xml │ │ │ │ │ │ │ ├── callable_4.json │ │ │ │ │ │ │ ├── callable_4.md │ │ │ │ │ │ │ ├── callable_4.txt │ │ │ │ │ │ │ ├── callable_4.xml │ │ │ │ │ │ │ ├── callable_5.json │ │ │ │ │ │ │ ├── callable_5.md │ │ │ │ │ │ │ ├── callable_5.txt │ │ │ │ │ │ │ ├── callable_5.xml │ │ │ │ │ │ │ ├── callable_6.json │ │ │ │ │ │ │ ├── callable_6.md │ │ │ │ │ │ │ ├── callable_6.txt │ │ │ │ │ │ │ ├── callable_6.xml │ │ │ │ │ │ │ ├── callable_7.json │ │ │ │ │ │ │ ├── callable_7.md │ │ │ │ │ │ │ ├── callable_7.txt │ │ │ │ │ │ │ ├── callable_7.xml │ │ │ │ │ │ │ ├── callable_from_callable.json │ │ │ │ │ │ │ ├── callable_from_callable.md │ │ │ │ │ │ │ ├── callable_from_callable.txt │ │ │ │ │ │ │ ├── callable_from_callable.xml │ │ │ │ │ │ │ ├── definition_1.json │ │ │ │ │ │ │ ├── definition_1.md │ │ │ │ │ │ │ ├── definition_1.txt │ │ │ │ │ │ │ ├── definition_1.xml │ │ │ │ │ │ │ ├── definition_2.json │ │ │ │ │ │ │ ├── definition_2.md │ │ │ │ │ │ │ ├── definition_2.txt │ │ │ │ │ │ │ ├── definition_2.xml │ │ │ │ │ │ │ ├── definition_arguments_1.json │ │ │ │ │ │ │ ├── definition_arguments_1.md │ │ │ │ │ │ │ ├── definition_arguments_1.txt │ │ │ │ │ │ │ ├── definition_arguments_1.xml │ │ │ │ │ │ │ ├── definition_arguments_2.json │ │ │ │ │ │ │ ├── definition_arguments_2.md │ │ │ │ │ │ │ ├── definition_arguments_2.txt │ │ │ │ │ │ │ ├── definition_arguments_2.xml │ │ │ │ │ │ │ ├── event_dispatcher_1_event1.json │ │ │ │ │ │ │ ├── event_dispatcher_1_event1.md │ │ │ │ │ │ │ ├── event_dispatcher_1_event1.txt │ │ │ │ │ │ │ ├── event_dispatcher_1_event1.xml │ │ │ │ │ │ │ ├── event_dispatcher_1_events.json │ │ │ │ │ │ │ ├── event_dispatcher_1_events.md │ │ │ │ │ │ │ ├── event_dispatcher_1_events.txt │ │ │ │ │ │ │ ├── event_dispatcher_1_events.xml │ │ │ │ │ │ │ ├── parameter.json │ │ │ │ │ │ │ ├── parameter.md │ │ │ │ │ │ │ ├── parameter.txt │ │ │ │ │ │ │ ├── parameter.xml │ │ │ │ │ │ │ ├── parameters_1.json │ │ │ │ │ │ │ ├── parameters_1.md │ │ │ │ │ │ │ ├── parameters_1.txt │ │ │ │ │ │ │ ├── parameters_1.xml │ │ │ │ │ │ │ ├── route_1.json │ │ │ │ │ │ │ ├── route_1.md │ │ │ │ │ │ │ ├── route_1.txt │ │ │ │ │ │ │ ├── route_1.xml │ │ │ │ │ │ │ ├── route_2.json │ │ │ │ │ │ │ ├── route_2.md │ │ │ │ │ │ │ ├── route_2.txt │ │ │ │ │ │ │ ├── route_2.xml │ │ │ │ │ │ │ ├── route_collection_1.json │ │ │ │ │ │ │ ├── route_collection_1.md │ │ │ │ │ │ │ ├── route_collection_1.txt │ │ │ │ │ │ │ └── route_collection_1.xml │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ ├── BaseBundle │ │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ │ ├── base.format.engine │ │ │ │ │ │ │ │ │ └── controller │ │ │ │ │ │ │ │ │ └── custom.format.engine │ │ │ │ │ │ │ ├── translations │ │ │ │ │ │ │ │ └── messages.fr.yml │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ ├── resource.format.engine │ │ │ │ │ │ │ │ ├── this.is.a.template.format.engine │ │ │ │ │ │ │ │ └── translation.html.php │ │ │ │ │ │ ├── Serialization │ │ │ │ │ │ │ ├── Author.php │ │ │ │ │ │ │ ├── Person.php │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ ├── author.yml │ │ │ │ │ │ │ │ ├── does_not_exist.yaml │ │ │ │ │ │ │ │ └── person.xml │ │ │ │ │ │ ├── TemplatePathsCache │ │ │ │ │ │ │ ├── templates-empty.php │ │ │ │ │ │ │ └── templates.php │ │ │ │ │ │ ├── TestBundle │ │ │ │ │ │ │ ├── Fabpot │ │ │ │ │ │ │ │ └── FooBundle │ │ │ │ │ │ │ │ │ ├── Controller │ │ │ │ │ │ │ │ │ └── DefaultController.php │ │ │ │ │ │ │ │ │ └── FabpotFooBundle.php │ │ │ │ │ │ │ ├── FooBundle │ │ │ │ │ │ │ │ ├── Controller │ │ │ │ │ │ │ │ │ ├── DefaultController.php │ │ │ │ │ │ │ │ │ ├── Sub │ │ │ │ │ │ │ │ │ │ └── DefaultController.php │ │ │ │ │ │ │ │ │ └── Test │ │ │ │ │ │ │ │ │ │ └── DefaultController.php │ │ │ │ │ │ │ │ └── FooBundle.php │ │ │ │ │ │ │ └── Sensio │ │ │ │ │ │ │ │ ├── Cms │ │ │ │ │ │ │ │ └── FooBundle │ │ │ │ │ │ │ │ │ ├── Controller │ │ │ │ │ │ │ │ │ └── DefaultController.php │ │ │ │ │ │ │ │ │ └── SensioCmsFooBundle.php │ │ │ │ │ │ │ │ └── FooBundle │ │ │ │ │ │ │ │ ├── Controller │ │ │ │ │ │ │ │ └── DefaultController.php │ │ │ │ │ │ │ │ └── SensioFooBundle.php │ │ │ │ │ │ ├── Validation │ │ │ │ │ │ │ ├── Article.php │ │ │ │ │ │ │ ├── Author.php │ │ │ │ │ │ │ ├── Category.php │ │ │ │ │ │ │ ├── Person.php │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ ├── author.yml │ │ │ │ │ │ │ │ ├── categories.yml │ │ │ │ │ │ │ │ ├── does_not_exist.yaml │ │ │ │ │ │ │ │ └── person.xml │ │ │ │ │ │ │ └── SubCategory.php │ │ │ │ │ │ ├── WarmedClass.php │ │ │ │ │ │ └── templates.php │ │ │ │ │ ├── Functional │ │ │ │ │ │ ├── AbstractWebTestCase.php │ │ │ │ │ │ ├── AnnotatedControllerTest.php │ │ │ │ │ │ ├── AutowiringTypesTest.php │ │ │ │ │ │ ├── Bundle │ │ │ │ │ │ │ └── TestBundle │ │ │ │ │ │ │ │ ├── AutowiringTypes │ │ │ │ │ │ │ │ └── AutowiredServices.php │ │ │ │ │ │ │ │ ├── Controller │ │ │ │ │ │ │ │ ├── AnnotatedController.php │ │ │ │ │ │ │ │ ├── FragmentController.php │ │ │ │ │ │ │ │ ├── InjectedFlashbagSessionController.php │ │ │ │ │ │ │ │ ├── ProfilerController.php │ │ │ │ │ │ │ │ ├── SessionController.php │ │ │ │ │ │ │ │ ├── SubRequestController.php │ │ │ │ │ │ │ │ └── SubRequestServiceResolutionController.php │ │ │ │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ │ │ ├── AnnotationReaderPass.php │ │ │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ │ │ └── CustomConfig.php │ │ │ │ │ │ │ │ ├── Configuration.php │ │ │ │ │ │ │ │ └── TestExtension.php │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ └── config │ │ │ │ │ │ │ │ │ └── routing.yml │ │ │ │ │ │ │ │ └── TestBundle.php │ │ │ │ │ │ ├── CachePoolClearCommandTest.php │ │ │ │ │ │ ├── CachePoolsTest.php │ │ │ │ │ │ ├── ConfigDebugCommandTest.php │ │ │ │ │ │ ├── ConfigDumpReferenceCommandTest.php │ │ │ │ │ │ ├── ContainerDebugCommandTest.php │ │ │ │ │ │ ├── ContainerDumpTest.php │ │ │ │ │ │ ├── DebugAutowiringCommandTest.php │ │ │ │ │ │ ├── FragmentTest.php │ │ │ │ │ │ ├── ProfilerTest.php │ │ │ │ │ │ ├── PropertyInfoTest.php │ │ │ │ │ │ ├── SerializerTest.php │ │ │ │ │ │ ├── SessionTest.php │ │ │ │ │ │ ├── SubRequestsTest.php │ │ │ │ │ │ └── app │ │ │ │ │ │ │ ├── AnnotatedController │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ └── routing.yml │ │ │ │ │ │ │ ├── AppKernel.php │ │ │ │ │ │ │ ├── AutowiringTypes │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ └── no_annotations_cache.yml │ │ │ │ │ │ │ ├── CachePoolClear │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ └── config.yml │ │ │ │ │ │ │ ├── CachePools │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ ├── redis_config.yml │ │ │ │ │ │ │ └── redis_custom_config.yml │ │ │ │ │ │ │ ├── ConfigDump │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ └── config.yml │ │ │ │ │ │ │ ├── ContainerDebug │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ └── config.yml │ │ │ │ │ │ │ ├── ContainerDump │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ └── config.yml │ │ │ │ │ │ │ ├── ControllerServiceResolution │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ └── routing.yml │ │ │ │ │ │ │ ├── Fragment │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ └── routing.yml │ │ │ │ │ │ │ ├── Profiler │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ └── routing.yml │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ └── fragment.html.php │ │ │ │ │ │ │ ├── Serializer │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ └── config.yml │ │ │ │ │ │ │ ├── Session │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ └── routing.yml │ │ │ │ │ │ │ └── config │ │ │ │ │ │ │ ├── default.yml │ │ │ │ │ │ │ └── framework.yml │ │ │ │ │ ├── Kernel │ │ │ │ │ │ ├── ConcreteMicroKernel.php │ │ │ │ │ │ └── MicroKernelTraitTest.php │ │ │ │ │ ├── Routing │ │ │ │ │ │ ├── DelegatingLoaderTest.php │ │ │ │ │ │ ├── RedirectableUrlMatcherTest.php │ │ │ │ │ │ └── RouterTest.php │ │ │ │ │ ├── Templating │ │ │ │ │ │ ├── DelegatingEngineTest.php │ │ │ │ │ │ ├── GlobalVariablesTest.php │ │ │ │ │ │ ├── Helper │ │ │ │ │ │ │ ├── AssetsHelperTest.php │ │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ │ │ ├── StubTemplateNameParser.php │ │ │ │ │ │ │ │ └── StubTranslator.php │ │ │ │ │ │ │ ├── FormHelperDivLayoutTest.php │ │ │ │ │ │ │ ├── FormHelperTableLayoutTest.php │ │ │ │ │ │ │ ├── RequestHelperTest.php │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ ├── Child │ │ │ │ │ │ │ │ │ └── form_label.html.php │ │ │ │ │ │ │ │ ├── Custom │ │ │ │ │ │ │ │ │ ├── _name_c_entry_label.html.php │ │ │ │ │ │ │ │ │ ├── _names_entry_label.html.php │ │ │ │ │ │ │ │ │ └── _text_id_widget.html.php │ │ │ │ │ │ │ │ └── Parent │ │ │ │ │ │ │ │ │ ├── form_label.html.php │ │ │ │ │ │ │ │ │ └── form_widget_simple.html.php │ │ │ │ │ │ │ ├── SessionHelperTest.php │ │ │ │ │ │ │ └── StopwatchHelperTest.php │ │ │ │ │ │ ├── Loader │ │ │ │ │ │ │ └── TemplateLocatorTest.php │ │ │ │ │ │ ├── PhpEngineTest.php │ │ │ │ │ │ ├── TemplateFilenameParserTest.php │ │ │ │ │ │ ├── TemplateNameParserTest.php │ │ │ │ │ │ ├── TemplateReferenceTest.php │ │ │ │ │ │ ├── TemplateTest.php │ │ │ │ │ │ └── TimedPhpEngineTest.php │ │ │ │ │ ├── TestCase.php │ │ │ │ │ ├── Translation │ │ │ │ │ │ ├── PhpExtractorTest.php │ │ │ │ │ │ └── TranslatorTest.php │ │ │ │ │ └── Validator │ │ │ │ │ │ └── ConstraintValidatorFactoryTest.php │ │ │ │ ├── Translation │ │ │ │ │ ├── PhpExtractor.php │ │ │ │ │ ├── PhpStringTokenParser.php │ │ │ │ │ ├── TranslationLoader.php │ │ │ │ │ └── Translator.php │ │ │ │ ├── Validator │ │ │ │ │ └── ConstraintValidatorFactory.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── FullStack.php │ │ │ ├── SecurityBundle │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Command │ │ │ │ │ ├── InitAclCommand.php │ │ │ │ │ ├── SetAclCommand.php │ │ │ │ │ └── UserPasswordEncoderCommand.php │ │ │ │ ├── DataCollector │ │ │ │ │ └── SecurityDataCollector.php │ │ │ │ ├── Debug │ │ │ │ │ ├── TraceableFirewallListener.php │ │ │ │ │ └── WrappedListener.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ ├── Compiler │ │ │ │ │ │ ├── AddSecurityVotersPass.php │ │ │ │ │ │ ├── AddSessionDomainConstraintPass.php │ │ │ │ │ │ └── RegisterCsrfTokenClearingLogoutHandlerPass.php │ │ │ │ │ ├── MainConfiguration.php │ │ │ │ │ ├── Security │ │ │ │ │ │ ├── Factory │ │ │ │ │ │ │ ├── AbstractFactory.php │ │ │ │ │ │ │ ├── FormLoginFactory.php │ │ │ │ │ │ │ ├── FormLoginLdapFactory.php │ │ │ │ │ │ │ ├── GuardAuthenticationFactory.php │ │ │ │ │ │ │ ├── HttpBasicFactory.php │ │ │ │ │ │ │ ├── HttpBasicLdapFactory.php │ │ │ │ │ │ │ ├── HttpDigestFactory.php │ │ │ │ │ │ │ ├── JsonLoginFactory.php │ │ │ │ │ │ │ ├── RememberMeFactory.php │ │ │ │ │ │ │ ├── RemoteUserFactory.php │ │ │ │ │ │ │ ├── SecurityFactoryInterface.php │ │ │ │ │ │ │ ├── SimpleFormFactory.php │ │ │ │ │ │ │ ├── SimplePreAuthenticationFactory.php │ │ │ │ │ │ │ └── X509Factory.php │ │ │ │ │ │ └── UserProvider │ │ │ │ │ │ │ ├── InMemoryFactory.php │ │ │ │ │ │ │ ├── LdapFactory.php │ │ │ │ │ │ │ └── UserProviderFactoryInterface.php │ │ │ │ │ └── SecurityExtension.php │ │ │ │ ├── EventListener │ │ │ │ │ ├── AclSchemaListener.php │ │ │ │ │ └── FirewallListener.php │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── Resources │ │ │ │ │ ├── config │ │ │ │ │ │ ├── collectors.xml │ │ │ │ │ │ ├── console.xml │ │ │ │ │ │ ├── guard.xml │ │ │ │ │ │ ├── security.xml │ │ │ │ │ │ ├── security_acl.xml │ │ │ │ │ │ ├── security_acl_dbal.xml │ │ │ │ │ │ ├── security_debug.xml │ │ │ │ │ │ ├── security_listeners.xml │ │ │ │ │ │ ├── security_rememberme.xml │ │ │ │ │ │ ├── templating_php.xml │ │ │ │ │ │ └── templating_twig.xml │ │ │ │ │ └── views │ │ │ │ │ │ └── Collector │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ └── security.html.twig │ │ │ │ ├── Security │ │ │ │ │ ├── FirewallConfig.php │ │ │ │ │ ├── FirewallContext.php │ │ │ │ │ └── FirewallMap.php │ │ │ │ ├── SecurityBundle.php │ │ │ │ ├── SecurityUserValueResolver.php │ │ │ │ ├── Templating │ │ │ │ │ └── Helper │ │ │ │ │ │ ├── LogoutUrlHelper.php │ │ │ │ │ │ └── SecurityHelper.php │ │ │ │ ├── Tests │ │ │ │ │ ├── DataCollector │ │ │ │ │ │ └── SecurityDataCollectorTest.php │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── TraceableFirewallListenerTest.php │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ ├── Compiler │ │ │ │ │ │ │ ├── AddSecurityVotersPassTest.php │ │ │ │ │ │ │ └── AddSessionDomainConstraintPassTest.php │ │ │ │ │ │ ├── CompleteConfigurationTest.php │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ │ ├── UserProvider │ │ │ │ │ │ │ │ └── DummyProvider.php │ │ │ │ │ │ │ ├── php │ │ │ │ │ │ │ │ ├── access_decision_manager_customized_config.php │ │ │ │ │ │ │ │ ├── access_decision_manager_default_strategy.php │ │ │ │ │ │ │ │ ├── access_decision_manager_service.php │ │ │ │ │ │ │ │ ├── access_decision_manager_service_and_strategy.php │ │ │ │ │ │ │ │ ├── argon2i_encoder.php │ │ │ │ │ │ │ │ ├── container1.php │ │ │ │ │ │ │ │ ├── container1_with_acl.php │ │ │ │ │ │ │ │ ├── container1_with_digest.php │ │ │ │ │ │ │ │ ├── custom_acl_provider.php │ │ │ │ │ │ │ │ ├── firewall_provider.php │ │ │ │ │ │ │ │ ├── firewall_undefined_provider.php │ │ │ │ │ │ │ │ ├── listener_provider.php │ │ │ │ │ │ │ │ ├── listener_undefined_provider.php │ │ │ │ │ │ │ │ ├── merge.php │ │ │ │ │ │ │ │ ├── merge_import.php │ │ │ │ │ │ │ │ ├── no_custom_user_checker.php │ │ │ │ │ │ │ │ └── remember_me_options.php │ │ │ │ │ │ │ ├── xml │ │ │ │ │ │ │ │ ├── access_decision_manager_customized_config.xml │ │ │ │ │ │ │ │ ├── access_decision_manager_default_strategy.xml │ │ │ │ │ │ │ │ ├── access_decision_manager_service.xml │ │ │ │ │ │ │ │ ├── access_decision_manager_service_and_strategy.xml │ │ │ │ │ │ │ │ ├── argon2i_encoder.xml │ │ │ │ │ │ │ │ ├── container1.xml │ │ │ │ │ │ │ │ ├── container1_with_acl.xml │ │ │ │ │ │ │ │ ├── container1_with_digest.xml │ │ │ │ │ │ │ │ ├── custom_acl_provider.xml │ │ │ │ │ │ │ │ ├── firewall_provider.xml │ │ │ │ │ │ │ │ ├── firewall_undefined_provider.xml │ │ │ │ │ │ │ │ ├── listener_provider.xml │ │ │ │ │ │ │ │ ├── listener_undefined_provider.xml │ │ │ │ │ │ │ │ ├── merge.xml │ │ │ │ │ │ │ │ ├── merge_import.xml │ │ │ │ │ │ │ │ ├── no_custom_user_checker.xml │ │ │ │ │ │ │ │ └── remember_me_options.xml │ │ │ │ │ │ │ └── yml │ │ │ │ │ │ │ │ ├── access_decision_manager_customized_config.yml │ │ │ │ │ │ │ │ ├── access_decision_manager_default_strategy.yml │ │ │ │ │ │ │ │ ├── access_decision_manager_service.yml │ │ │ │ │ │ │ │ ├── access_decision_manager_service_and_strategy.yml │ │ │ │ │ │ │ │ ├── argon2i_encoder.yml │ │ │ │ │ │ │ │ ├── container1.yml │ │ │ │ │ │ │ │ ├── container1_with_acl.yml │ │ │ │ │ │ │ │ ├── container1_with_digest.yml │ │ │ │ │ │ │ │ ├── custom_acl_provider.yml │ │ │ │ │ │ │ │ ├── firewall_provider.yml │ │ │ │ │ │ │ │ ├── firewall_undefined_provider.yml │ │ │ │ │ │ │ │ ├── listener_provider.yml │ │ │ │ │ │ │ │ ├── listener_undefined_provider.yml │ │ │ │ │ │ │ │ ├── merge.yml │ │ │ │ │ │ │ │ ├── merge_import.yml │ │ │ │ │ │ │ │ ├── no_custom_user_checker.yml │ │ │ │ │ │ │ │ └── remember_me_options.yml │ │ │ │ │ │ ├── MainConfigurationTest.php │ │ │ │ │ │ ├── PhpCompleteConfigurationTest.php │ │ │ │ │ │ ├── Security │ │ │ │ │ │ │ └── Factory │ │ │ │ │ │ │ │ ├── AbstractFactoryTest.php │ │ │ │ │ │ │ │ └── GuardAuthenticationFactoryTest.php │ │ │ │ │ │ ├── SecurityExtensionTest.php │ │ │ │ │ │ ├── XmlCompleteConfigurationTest.php │ │ │ │ │ │ └── YamlCompleteConfigurationTest.php │ │ │ │ │ ├── Functional │ │ │ │ │ │ ├── AbstractWebTestCase.php │ │ │ │ │ │ ├── AuthenticationCommencingTest.php │ │ │ │ │ │ ├── AutowiringTypesTest.php │ │ │ │ │ │ ├── Bundle │ │ │ │ │ │ │ ├── AclBundle │ │ │ │ │ │ │ │ ├── AclBundle.php │ │ │ │ │ │ │ │ └── Entity │ │ │ │ │ │ │ │ │ └── Car.php │ │ │ │ │ │ │ ├── AutowiringBundle │ │ │ │ │ │ │ │ ├── AutowiredServices.php │ │ │ │ │ │ │ │ └── AutowiringBundle.php │ │ │ │ │ │ │ ├── CsrfFormLoginBundle │ │ │ │ │ │ │ │ ├── Controller │ │ │ │ │ │ │ │ │ └── LoginController.php │ │ │ │ │ │ │ │ ├── CsrfFormLoginBundle.php │ │ │ │ │ │ │ │ ├── Form │ │ │ │ │ │ │ │ │ └── UserLoginType.php │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ │ └── routing.yml │ │ │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ │ └── Login │ │ │ │ │ │ │ │ │ ├── after_login.html.twig │ │ │ │ │ │ │ │ │ └── login.html.twig │ │ │ │ │ │ │ ├── FirewallEntryPointBundle │ │ │ │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ │ │ │ └── FirewallEntryPointExtension.php │ │ │ │ │ │ │ │ ├── FirewallEntryPointBundle.php │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ │ └── config │ │ │ │ │ │ │ │ │ │ └── services.xml │ │ │ │ │ │ │ │ └── Security │ │ │ │ │ │ │ │ │ └── EntryPointStub.php │ │ │ │ │ │ │ ├── FormLoginBundle │ │ │ │ │ │ │ │ ├── Controller │ │ │ │ │ │ │ │ │ ├── LocalizedController.php │ │ │ │ │ │ │ │ │ └── LoginController.php │ │ │ │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ │ │ │ └── FormLoginExtension.php │ │ │ │ │ │ │ │ ├── FormLoginBundle.php │ │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ │ │ ├── localized_routing.yml │ │ │ │ │ │ │ │ │ │ └── routing.yml │ │ │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ │ │ ├── Localized │ │ │ │ │ │ │ │ │ │ └── login.html.twig │ │ │ │ │ │ │ │ │ │ └── Login │ │ │ │ │ │ │ │ │ │ ├── after_login.html.twig │ │ │ │ │ │ │ │ │ │ └── login.html.twig │ │ │ │ │ │ │ │ └── Security │ │ │ │ │ │ │ │ │ └── LocalizedFormFailureHandler.php │ │ │ │ │ │ │ └── JsonLoginBundle │ │ │ │ │ │ │ │ ├── Controller │ │ │ │ │ │ │ │ └── TestController.php │ │ │ │ │ │ │ │ ├── JsonLoginBundle.php │ │ │ │ │ │ │ │ └── Security │ │ │ │ │ │ │ │ └── Http │ │ │ │ │ │ │ │ ├── JsonAuthenticationFailureHandler.php │ │ │ │ │ │ │ │ └── JsonAuthenticationSuccessHandler.php │ │ │ │ │ │ ├── ClearRememberMeTest.php │ │ │ │ │ │ ├── CsrfFormLoginTest.php │ │ │ │ │ │ ├── FirewallEntryPointTest.php │ │ │ │ │ │ ├── FormLoginTest.php │ │ │ │ │ │ ├── JsonLoginTest.php │ │ │ │ │ │ ├── LocalizedRoutesAsPathTest.php │ │ │ │ │ │ ├── LogoutTest.php │ │ │ │ │ │ ├── SecurityRoutingIntegrationTest.php │ │ │ │ │ │ ├── SecurityTest.php │ │ │ │ │ │ ├── SetAclCommandTest.php │ │ │ │ │ │ ├── SwitchUserTest.php │ │ │ │ │ │ ├── UserPasswordEncoderCommandTest.php │ │ │ │ │ │ └── app │ │ │ │ │ │ │ ├── Acl │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ └── doctrine.yml │ │ │ │ │ │ │ ├── AppKernel.php │ │ │ │ │ │ │ ├── AutowiringTypes │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ └── config.yml │ │ │ │ │ │ │ ├── ClearRememberMe │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ └── routing.yml │ │ │ │ │ │ │ ├── CsrfFormLogin │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ ├── routes_as_path.yml │ │ │ │ │ │ │ └── routing.yml │ │ │ │ │ │ │ ├── FirewallEntryPoint │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ ├── config_form_login.yml │ │ │ │ │ │ │ └── routing.yml │ │ │ │ │ │ │ ├── JsonLogin │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ ├── custom_handlers.yml │ │ │ │ │ │ │ ├── routing.yml │ │ │ │ │ │ │ └── switchuser_stateless.yml │ │ │ │ │ │ │ ├── LogoutAccess │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ └── routing.yml │ │ │ │ │ │ │ ├── LogoutWithoutSessionInvalidation │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ └── routing.yml │ │ │ │ │ │ │ ├── PasswordEncode │ │ │ │ │ │ │ ├── argon2i.yml │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ └── emptysalt.txt │ │ │ │ │ │ │ ├── RememberMeLogout │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ └── routing.yml │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ └── base.html.twig │ │ │ │ │ │ │ ├── SecurityHelper │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ └── config.yml │ │ │ │ │ │ │ ├── StandardFormLogin │ │ │ │ │ │ │ ├── bundles.php │ │ │ │ │ │ │ ├── config.yml │ │ │ │ │ │ │ ├── localized_form_failure_handler.yml │ │ │ │ │ │ │ ├── localized_routes.yml │ │ │ │ │ │ │ ├── localized_routes_with_forward.yml │ │ │ │ │ │ │ ├── routes_as_path.yml │ │ │ │ │ │ │ ├── routing.yml │ │ │ │ │ │ │ └── switchuser.yml │ │ │ │ │ │ │ └── config │ │ │ │ │ │ │ ├── default.yml │ │ │ │ │ │ │ ├── framework.yml │ │ │ │ │ │ │ └── twig.yml │ │ │ │ │ ├── Security │ │ │ │ │ │ ├── FirewallConfigTest.php │ │ │ │ │ │ ├── FirewallContextTest.php │ │ │ │ │ │ └── FirewallMapTest.php │ │ │ │ │ └── SecurityUserValueResolverTest.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── TwigBundle │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CacheWarmer │ │ │ │ │ ├── TemplateCacheCacheWarmer.php │ │ │ │ │ └── TemplateCacheWarmer.php │ │ │ │ ├── Command │ │ │ │ │ ├── DebugCommand.php │ │ │ │ │ └── LintCommand.php │ │ │ │ ├── ContainerAwareRuntimeLoader.php │ │ │ │ ├── Controller │ │ │ │ │ ├── ExceptionController.php │ │ │ │ │ └── PreviewErrorController.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ ├── Compiler │ │ │ │ │ │ ├── ExceptionListenerPass.php │ │ │ │ │ │ ├── ExtensionPass.php │ │ │ │ │ │ ├── RuntimeLoaderPass.php │ │ │ │ │ │ ├── TwigEnvironmentPass.php │ │ │ │ │ │ └── TwigLoaderPass.php │ │ │ │ │ ├── Configuration.php │ │ │ │ │ ├── Configurator │ │ │ │ │ │ └── EnvironmentConfigurator.php │ │ │ │ │ └── TwigExtension.php │ │ │ │ ├── LICENSE │ │ │ │ ├── Loader │ │ │ │ │ └── FilesystemLoader.php │ │ │ │ ├── README.md │ │ │ │ ├── Resources │ │ │ │ │ ├── config │ │ │ │ │ │ ├── console.xml │ │ │ │ │ │ ├── form.xml │ │ │ │ │ │ ├── routing │ │ │ │ │ │ │ └── errors.xml │ │ │ │ │ │ ├── schema │ │ │ │ │ │ │ └── twig-1.0.xsd │ │ │ │ │ │ ├── templating.xml │ │ │ │ │ │ └── twig.xml │ │ │ │ │ └── views │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── error.atom.twig │ │ │ │ │ │ ├── error.css.twig │ │ │ │ │ │ ├── error.html.twig │ │ │ │ │ │ ├── error.js.twig │ │ │ │ │ │ ├── error.json.twig │ │ │ │ │ │ ├── error.rdf.twig │ │ │ │ │ │ ├── error.txt.twig │ │ │ │ │ │ ├── error.xml.twig │ │ │ │ │ │ ├── exception.atom.twig │ │ │ │ │ │ ├── exception.css.twig │ │ │ │ │ │ ├── exception.html.twig │ │ │ │ │ │ ├── exception.js.twig │ │ │ │ │ │ ├── exception.json.twig │ │ │ │ │ │ ├── exception.rdf.twig │ │ │ │ │ │ ├── exception.txt.twig │ │ │ │ │ │ ├── exception.xml.twig │ │ │ │ │ │ ├── exception_full.html.twig │ │ │ │ │ │ ├── logs.html.twig │ │ │ │ │ │ ├── trace.html.twig │ │ │ │ │ │ ├── trace.txt.twig │ │ │ │ │ │ ├── traces.html.twig │ │ │ │ │ │ ├── traces.txt.twig │ │ │ │ │ │ ├── traces.xml.twig │ │ │ │ │ │ └── traces_text.html.twig │ │ │ │ │ │ ├── base_js.html.twig │ │ │ │ │ │ ├── exception.css.twig │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ │ ├── favicon.png.base64 │ │ │ │ │ │ ├── icon-book.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 │ │ │ │ │ │ └── symfony-logo.svg │ │ │ │ │ │ └── layout.html.twig │ │ │ │ ├── TemplateIterator.php │ │ │ │ ├── Tests │ │ │ │ │ ├── ContainerAwareRuntimeLoaderTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── ExceptionControllerTest.php │ │ │ │ │ │ └── PreviewErrorControllerTest.php │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ ├── Compiler │ │ │ │ │ │ │ ├── ExtensionPassTest.php │ │ │ │ │ │ │ ├── TwigEnvironmentPassTest.php │ │ │ │ │ │ │ └── TwigLoaderPassTest.php │ │ │ │ │ │ ├── ConfigurationTest.php │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ │ ├── Bundle │ │ │ │ │ │ │ │ ├── ChildChildChildChildTwigBundle │ │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ │ │ └── layout.html.twig │ │ │ │ │ │ │ │ ├── ChildChildChildTwigBundle │ │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ │ │ └── layout.html.twig │ │ │ │ │ │ │ │ ├── ChildChildTwigBundle │ │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ │ │ └── layout.html.twig │ │ │ │ │ │ │ │ └── ChildTwigBundle │ │ │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ │ └── layout.html.twig │ │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ │ ├── TwigBundle │ │ │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ │ │ └── layout.html.twig │ │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ │ └── layout.html.twig │ │ │ │ │ │ │ ├── php │ │ │ │ │ │ │ │ ├── customTemplateEscapingGuesser.php │ │ │ │ │ │ │ │ ├── empty.php │ │ │ │ │ │ │ │ ├── extra.php │ │ │ │ │ │ │ │ ├── formats.php │ │ │ │ │ │ │ │ └── full.php │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ ├── bundles │ │ │ │ │ │ │ │ │ ├── BarBundle │ │ │ │ │ │ │ │ │ │ └── layout.html.twig │ │ │ │ │ │ │ │ │ └── TwigBundle │ │ │ │ │ │ │ │ │ │ └── layout.html.twig │ │ │ │ │ │ │ │ └── layout.html.twig │ │ │ │ │ │ │ ├── xml │ │ │ │ │ │ │ │ ├── customTemplateEscapingGuesser.xml │ │ │ │ │ │ │ │ ├── empty.xml │ │ │ │ │ │ │ │ ├── extra.xml │ │ │ │ │ │ │ │ ├── formats.xml │ │ │ │ │ │ │ │ └── full.xml │ │ │ │ │ │ │ └── yml │ │ │ │ │ │ │ │ ├── customTemplateEscapingGuesser.yml │ │ │ │ │ │ │ │ ├── empty.yml │ │ │ │ │ │ │ │ ├── extra.yml │ │ │ │ │ │ │ │ ├── formats.yml │ │ │ │ │ │ │ │ └── full.yml │ │ │ │ │ │ └── TwigExtensionTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── BarBundle │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ └── index.html.twig │ │ │ │ │ │ │ ├── Foo │ │ │ │ │ │ │ └── index.html.twig │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── BarBundle │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ │ └── base.html.twig │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ ├── layout.html.twig │ │ │ │ │ │ │ └── sub │ │ │ │ │ │ │ └── sub.html.twig │ │ │ │ │ ├── Functional │ │ │ │ │ │ ├── CacheWarmingTest.php │ │ │ │ │ │ ├── EmptyAppTest.php │ │ │ │ │ │ ├── NoTemplatingEntryTest.php │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── empty_routing.yml │ │ │ │ │ │ │ └── views │ │ │ │ │ │ │ └── index.html.twig │ │ │ │ │ ├── Loader │ │ │ │ │ │ └── FilesystemLoaderTest.php │ │ │ │ │ ├── TemplateIteratorTest.php │ │ │ │ │ └── TestCase.php │ │ │ │ ├── TwigBundle.php │ │ │ │ ├── TwigEngine.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── WebProfilerBundle │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Controller │ │ │ │ │ ├── ExceptionController.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.xml │ │ │ │ │ │ ├── routing │ │ │ │ │ │ │ ├── profiler.xml │ │ │ │ │ │ │ └── wdt.xml │ │ │ │ │ │ ├── schema │ │ │ │ │ │ │ └── webprofiler-1.0.xsd │ │ │ │ │ │ └── toolbar.xml │ │ │ │ │ └── views │ │ │ │ │ │ ├── Collector │ │ │ │ │ │ ├── ajax.html.twig │ │ │ │ │ │ ├── cache.html.twig │ │ │ │ │ │ ├── config.html.twig │ │ │ │ │ │ ├── events.html.twig │ │ │ │ │ │ ├── exception.css.twig │ │ │ │ │ │ ├── exception.html.twig │ │ │ │ │ │ ├── form.html.twig │ │ │ │ │ │ ├── logger.html.twig │ │ │ │ │ │ ├── memory.html.twig │ │ │ │ │ │ ├── request.html.twig │ │ │ │ │ │ ├── router.html.twig │ │ │ │ │ │ ├── time.html.twig │ │ │ │ │ │ ├── translation.html.twig │ │ │ │ │ │ ├── twig.html.twig │ │ │ │ │ │ └── validator.html.twig │ │ │ │ │ │ ├── Icon │ │ │ │ │ │ ├── ajax.svg │ │ │ │ │ │ ├── cache.svg │ │ │ │ │ │ ├── close.svg │ │ │ │ │ │ ├── config.svg │ │ │ │ │ │ ├── event.svg │ │ │ │ │ │ ├── exception.svg │ │ │ │ │ │ ├── form.svg │ │ │ │ │ │ ├── forward.svg │ │ │ │ │ │ ├── logger.svg │ │ │ │ │ │ ├── memory.svg │ │ │ │ │ │ ├── menu.svg │ │ │ │ │ │ ├── no.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 │ │ │ │ │ │ ├── header.html.twig │ │ │ │ │ │ ├── info.html.twig │ │ │ │ │ │ ├── layout.html.twig │ │ │ │ │ │ ├── open.css.twig │ │ │ │ │ │ ├── open.html.twig │ │ │ │ │ │ ├── profiler.css.twig │ │ │ │ │ │ ├── results.html.twig │ │ │ │ │ │ ├── search.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 │ │ │ │ ├── Tests │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── ProfilerControllerTest.php │ │ │ │ │ ├── Csp │ │ │ │ │ │ └── ContentSecurityPolicyHandlerTest.php │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ ├── ConfigurationTest.php │ │ │ │ │ │ └── WebProfilerExtensionTest.php │ │ │ │ │ ├── EventListener │ │ │ │ │ │ └── WebDebugToolbarListenerTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ └── profile.data │ │ │ │ │ ├── Functional │ │ │ │ │ │ └── WebProfilerBundleKernel.php │ │ │ │ │ ├── Profiler │ │ │ │ │ │ └── TemplateManagerTest.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── IconTest.php │ │ │ │ │ └── TestCase.php │ │ │ │ ├── Twig │ │ │ │ │ └── WebProfilerExtension.php │ │ │ │ ├── WebProfilerBundle.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ └── WebServerBundle │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Command │ │ │ │ ├── ServerCommand.php │ │ │ │ ├── ServerLogCommand.php │ │ │ │ ├── ServerRunCommand.php │ │ │ │ ├── ServerStartCommand.php │ │ │ │ ├── ServerStatusCommand.php │ │ │ │ └── ServerStopCommand.php │ │ │ │ ├── DependencyInjection │ │ │ │ └── WebServerExtension.php │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── Resources │ │ │ │ ├── config │ │ │ │ │ └── webserver.xml │ │ │ │ └── router.php │ │ │ │ ├── Tests │ │ │ │ └── DependencyInjection │ │ │ │ │ ├── WebServerExtensionTest.php │ │ │ │ │ └── composer.json │ │ │ │ ├── WebServer.php │ │ │ │ ├── WebServerBundle.php │ │ │ │ ├── WebServerConfig.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ └── Component │ │ │ ├── Asset │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Context │ │ │ │ ├── ContextInterface.php │ │ │ │ ├── NullContext.php │ │ │ │ └── RequestStackContext.php │ │ │ ├── Exception │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ └── LogicException.php │ │ │ ├── LICENSE │ │ │ ├── Package.php │ │ │ ├── PackageInterface.php │ │ │ ├── Packages.php │ │ │ ├── PathPackage.php │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── Context │ │ │ │ │ ├── NullContextTest.php │ │ │ │ │ └── RequestStackContextTest.php │ │ │ │ ├── PackageTest.php │ │ │ │ ├── PackagesTest.php │ │ │ │ ├── PathPackageTest.php │ │ │ │ ├── UrlPackageTest.php │ │ │ │ ├── VersionStrategy │ │ │ │ │ ├── EmptyVersionStrategyTest.php │ │ │ │ │ ├── JsonManifestVersionStrategyTest.php │ │ │ │ │ └── StaticVersionStrategyTest.php │ │ │ │ └── fixtures │ │ │ │ │ ├── manifest-invalid.json │ │ │ │ │ └── manifest-valid.json │ │ │ ├── UrlPackage.php │ │ │ ├── VersionStrategy │ │ │ │ ├── EmptyVersionStrategy.php │ │ │ │ ├── JsonManifestVersionStrategy.php │ │ │ │ ├── StaticVersionStrategy.php │ │ │ │ └── VersionStrategyInterface.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── BrowserKit │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Client.php │ │ │ ├── Cookie.php │ │ │ ├── CookieJar.php │ │ │ ├── History.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Tests │ │ │ │ ├── ClientTest.php │ │ │ │ ├── CookieJarTest.php │ │ │ │ ├── CookieTest.php │ │ │ │ ├── HistoryTest.php │ │ │ │ ├── RequestTest.php │ │ │ │ └── ResponseTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Cache │ │ │ ├── .gitignore │ │ │ ├── Adapter │ │ │ │ ├── AbstractAdapter.php │ │ │ │ ├── AdapterInterface.php │ │ │ │ ├── ApcuAdapter.php │ │ │ │ ├── ArrayAdapter.php │ │ │ │ ├── ChainAdapter.php │ │ │ │ ├── DoctrineAdapter.php │ │ │ │ ├── FilesystemAdapter.php │ │ │ │ ├── MemcachedAdapter.php │ │ │ │ ├── NullAdapter.php │ │ │ │ ├── PdoAdapter.php │ │ │ │ ├── PhpArrayAdapter.php │ │ │ │ ├── PhpFilesAdapter.php │ │ │ │ ├── ProxyAdapter.php │ │ │ │ ├── RedisAdapter.php │ │ │ │ ├── SimpleCacheAdapter.php │ │ │ │ ├── TagAwareAdapter.php │ │ │ │ ├── TagAwareAdapterInterface.php │ │ │ │ ├── TraceableAdapter.php │ │ │ │ └── TraceableTagAwareAdapter.php │ │ │ ├── CHANGELOG.md │ │ │ ├── CacheItem.php │ │ │ ├── DataCollector │ │ │ │ └── CacheDataCollector.php │ │ │ ├── DoctrineProvider.php │ │ │ ├── Exception │ │ │ │ ├── CacheException.php │ │ │ │ └── InvalidArgumentException.php │ │ │ ├── LICENSE │ │ │ ├── PruneableInterface.php │ │ │ ├── README.md │ │ │ ├── ResettableInterface.php │ │ │ ├── Simple │ │ │ │ ├── AbstractCache.php │ │ │ │ ├── ApcuCache.php │ │ │ │ ├── ArrayCache.php │ │ │ │ ├── ChainCache.php │ │ │ │ ├── DoctrineCache.php │ │ │ │ ├── FilesystemCache.php │ │ │ │ ├── MemcachedCache.php │ │ │ │ ├── NullCache.php │ │ │ │ ├── PdoCache.php │ │ │ │ ├── PhpArrayCache.php │ │ │ │ ├── PhpFilesCache.php │ │ │ │ ├── Psr6Cache.php │ │ │ │ ├── RedisCache.php │ │ │ │ └── TraceableCache.php │ │ │ ├── Tests │ │ │ │ ├── Adapter │ │ │ │ │ ├── AbstractRedisAdapterTest.php │ │ │ │ │ ├── AdapterTestCase.php │ │ │ │ │ ├── ApcuAdapterTest.php │ │ │ │ │ ├── ArrayAdapterTest.php │ │ │ │ │ ├── ChainAdapterTest.php │ │ │ │ │ ├── DoctrineAdapterTest.php │ │ │ │ │ ├── FilesystemAdapterTest.php │ │ │ │ │ ├── MaxIdLengthAdapterTest.php │ │ │ │ │ ├── MemcachedAdapterTest.php │ │ │ │ │ ├── NamespacedProxyAdapterTest.php │ │ │ │ │ ├── NullAdapterTest.php │ │ │ │ │ ├── PdoAdapterTest.php │ │ │ │ │ ├── PdoDbalAdapterTest.php │ │ │ │ │ ├── PhpArrayAdapterTest.php │ │ │ │ │ ├── PhpArrayAdapterWithFallbackTest.php │ │ │ │ │ ├── PhpFilesAdapterTest.php │ │ │ │ │ ├── PredisAdapterTest.php │ │ │ │ │ ├── PredisClusterAdapterTest.php │ │ │ │ │ ├── PredisRedisClusterAdapterTest.php │ │ │ │ │ ├── ProxyAdapterTest.php │ │ │ │ │ ├── RedisAdapterTest.php │ │ │ │ │ ├── RedisArrayAdapterTest.php │ │ │ │ │ ├── RedisClusterAdapterTest.php │ │ │ │ │ ├── SimpleCacheAdapterTest.php │ │ │ │ │ ├── TagAwareAdapterTest.php │ │ │ │ │ ├── TagAwareAndProxyAdapterIntegrationTest.php │ │ │ │ │ ├── TraceableAdapterTest.php │ │ │ │ │ └── TraceableTagAwareAdapterTest.php │ │ │ │ ├── CacheItemTest.php │ │ │ │ ├── DoctrineProviderTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── ArrayCache.php │ │ │ │ │ └── ExternalAdapter.php │ │ │ │ ├── Simple │ │ │ │ │ ├── AbstractRedisCacheTest.php │ │ │ │ │ ├── ApcuCacheTest.php │ │ │ │ │ ├── ArrayCacheTest.php │ │ │ │ │ ├── CacheTestCase.php │ │ │ │ │ ├── ChainCacheTest.php │ │ │ │ │ ├── DoctrineCacheTest.php │ │ │ │ │ ├── FilesystemCacheTest.php │ │ │ │ │ ├── MemcachedCacheTest.php │ │ │ │ │ ├── MemcachedCacheTextModeTest.php │ │ │ │ │ ├── NullCacheTest.php │ │ │ │ │ ├── PdoCacheTest.php │ │ │ │ │ ├── PdoDbalCacheTest.php │ │ │ │ │ ├── PhpArrayCacheTest.php │ │ │ │ │ ├── PhpArrayCacheWithFallbackTest.php │ │ │ │ │ ├── PhpFilesCacheTest.php │ │ │ │ │ ├── Psr6CacheTest.php │ │ │ │ │ ├── RedisArrayCacheTest.php │ │ │ │ │ ├── RedisCacheTest.php │ │ │ │ │ ├── RedisClusterCacheTest.php │ │ │ │ │ └── TraceableCacheTest.php │ │ │ │ └── Traits │ │ │ │ │ └── PdoPruneableTrait.php │ │ │ ├── Traits │ │ │ │ ├── AbstractTrait.php │ │ │ │ ├── ApcuTrait.php │ │ │ │ ├── ArrayTrait.php │ │ │ │ ├── DoctrineTrait.php │ │ │ │ ├── FilesystemCommonTrait.php │ │ │ │ ├── FilesystemTrait.php │ │ │ │ ├── MemcachedTrait.php │ │ │ │ ├── PdoTrait.php │ │ │ │ ├── PhpArrayTrait.php │ │ │ │ ├── PhpFilesTrait.php │ │ │ │ ├── ProxyTrait.php │ │ │ │ ├── RedisProxy.php │ │ │ │ └── RedisTrait.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── ClassLoader │ │ │ ├── .gitignore │ │ │ ├── ApcClassLoader.php │ │ │ ├── CHANGELOG.md │ │ │ ├── ClassCollectionLoader.php │ │ │ ├── ClassLoader.php │ │ │ ├── ClassMapGenerator.php │ │ │ ├── LICENSE │ │ │ ├── MapClassLoader.php │ │ │ ├── Psr4ClassLoader.php │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── ApcClassLoaderTest.php │ │ │ │ ├── ClassCollectionLoaderTest.php │ │ │ │ ├── ClassLoaderTest.php │ │ │ │ ├── ClassMapGeneratorTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── Apc │ │ │ │ │ │ ├── Namespaced │ │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ │ ├── Baz.php │ │ │ │ │ │ │ ├── Foo.php │ │ │ │ │ │ │ └── FooBar.php │ │ │ │ │ │ ├── Pearlike │ │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ │ ├── Baz.php │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ │ ├── alpha │ │ │ │ │ │ │ └── Apc │ │ │ │ │ │ │ │ ├── ApcPrefixCollision │ │ │ │ │ │ │ │ └── A │ │ │ │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ │ │ │ └── NamespaceCollision │ │ │ │ │ │ │ │ └── A │ │ │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ │ ├── beta │ │ │ │ │ │ │ └── Apc │ │ │ │ │ │ │ │ ├── ApcPrefixCollision │ │ │ │ │ │ │ │ └── A │ │ │ │ │ │ │ │ │ └── B │ │ │ │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ │ │ │ └── NamespaceCollision │ │ │ │ │ │ │ │ └── A │ │ │ │ │ │ │ │ └── B │ │ │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ │ └── fallback │ │ │ │ │ │ │ ├── Apc │ │ │ │ │ │ │ └── Pearlike │ │ │ │ │ │ │ │ └── FooBar.php │ │ │ │ │ │ │ └── Namespaced │ │ │ │ │ │ │ └── FooBar.php │ │ │ │ │ ├── ClassesWithParents │ │ │ │ │ │ ├── A.php │ │ │ │ │ │ ├── ATrait.php │ │ │ │ │ │ ├── B.php │ │ │ │ │ │ ├── BTrait.php │ │ │ │ │ │ ├── CInterface.php │ │ │ │ │ │ ├── CTrait.php │ │ │ │ │ │ ├── D.php │ │ │ │ │ │ ├── E.php │ │ │ │ │ │ ├── F.php │ │ │ │ │ │ ├── G.php │ │ │ │ │ │ └── GInterface.php │ │ │ │ │ ├── DeclaredClass.php │ │ │ │ │ ├── DeclaredInterface.php │ │ │ │ │ ├── Namespaced │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ ├── Baz.php │ │ │ │ │ │ ├── Foo.php │ │ │ │ │ │ ├── WithComments.php │ │ │ │ │ │ ├── WithDirMagic.php │ │ │ │ │ │ ├── WithFileMagic.php │ │ │ │ │ │ ├── WithHaltCompiler.php │ │ │ │ │ │ └── WithStrictTypes.php │ │ │ │ │ ├── Namespaced2 │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ ├── Baz.php │ │ │ │ │ │ └── Foo.php │ │ │ │ │ ├── Pearlike │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ ├── Baz.php │ │ │ │ │ │ ├── Foo.php │ │ │ │ │ │ └── WithComments.php │ │ │ │ │ ├── Pearlike2 │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ ├── Baz.php │ │ │ │ │ │ └── Foo.php │ │ │ │ │ ├── WarmedClass.php │ │ │ │ │ ├── WarmedInterface.php │ │ │ │ │ ├── alpha │ │ │ │ │ │ ├── NamespaceCollision │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ │ │ └── C │ │ │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ │ └── PrefixCollision │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ │ │ └── C │ │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ ├── beta │ │ │ │ │ │ ├── NamespaceCollision │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ └── B │ │ │ │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ │ │ └── C │ │ │ │ │ │ │ │ └── B │ │ │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ │ └── PrefixCollision │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── B │ │ │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ │ │ └── C │ │ │ │ │ │ │ └── B │ │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ ├── classmap │ │ │ │ │ │ ├── SomeClass.php │ │ │ │ │ │ ├── SomeInterface.php │ │ │ │ │ │ ├── SomeParent.php │ │ │ │ │ │ ├── multipleNs.php │ │ │ │ │ │ ├── notAClass.php │ │ │ │ │ │ ├── notPhpFile.md │ │ │ │ │ │ └── sameNsMultipleClasses.php │ │ │ │ │ ├── deps │ │ │ │ │ │ └── traits.php │ │ │ │ │ ├── fallback │ │ │ │ │ │ ├── Namespaced │ │ │ │ │ │ │ └── FooBar.php │ │ │ │ │ │ ├── Namespaced2 │ │ │ │ │ │ │ └── FooBar.php │ │ │ │ │ │ ├── Pearlike │ │ │ │ │ │ │ └── FooBar.php │ │ │ │ │ │ └── Pearlike2 │ │ │ │ │ │ │ └── FooBar.php │ │ │ │ │ ├── includepath │ │ │ │ │ │ └── Foo.php │ │ │ │ │ ├── php5.4 │ │ │ │ │ │ └── traits.php │ │ │ │ │ ├── php5.5 │ │ │ │ │ │ └── class_cons.php │ │ │ │ │ └── psr-4 │ │ │ │ │ │ ├── Class_With_Underscores.php │ │ │ │ │ │ ├── Foo.php │ │ │ │ │ │ └── Lets │ │ │ │ │ │ └── Go │ │ │ │ │ │ └── Deeper │ │ │ │ │ │ ├── Class_With_Underscores.php │ │ │ │ │ │ └── Foo.php │ │ │ │ └── Psr4ClassLoaderTest.php │ │ │ ├── WinCacheClassLoader.php │ │ │ ├── XcacheClassLoader.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Config │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── ConfigCache.php │ │ │ ├── ConfigCacheFactory.php │ │ │ ├── ConfigCacheFactoryInterface.php │ │ │ ├── ConfigCacheInterface.php │ │ │ ├── Definition │ │ │ │ ├── ArrayNode.php │ │ │ │ ├── BaseNode.php │ │ │ │ ├── BooleanNode.php │ │ │ │ ├── Builder │ │ │ │ │ ├── ArrayNodeDefinition.php │ │ │ │ │ ├── BooleanNodeDefinition.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 │ │ │ ├── DependencyInjection │ │ │ │ └── ConfigCachePass.php │ │ │ ├── Exception │ │ │ │ ├── FileLoaderImportCircularReferenceException.php │ │ │ │ ├── FileLoaderLoadException.php │ │ │ │ └── FileLocatorFileNotFoundException.php │ │ │ ├── FileLocator.php │ │ │ ├── FileLocatorInterface.php │ │ │ ├── LICENSE │ │ │ ├── Loader │ │ │ │ ├── DelegatingLoader.php │ │ │ │ ├── FileLoader.php │ │ │ │ ├── GlobFileLoader.php │ │ │ │ ├── Loader.php │ │ │ │ ├── LoaderInterface.php │ │ │ │ ├── LoaderResolver.php │ │ │ │ └── LoaderResolverInterface.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 │ │ │ ├── Tests │ │ │ │ ├── ConfigCacheFactoryTest.php │ │ │ │ ├── ConfigCacheTest.php │ │ │ │ ├── Definition │ │ │ │ │ ├── ArrayNodeTest.php │ │ │ │ │ ├── BooleanNodeTest.php │ │ │ │ │ ├── Builder │ │ │ │ │ │ ├── ArrayNodeDefinitionTest.php │ │ │ │ │ │ ├── BooleanNodeDefinitionTest.php │ │ │ │ │ │ ├── EnumNodeDefinitionTest.php │ │ │ │ │ │ ├── ExprBuilderTest.php │ │ │ │ │ │ ├── NodeBuilderTest.php │ │ │ │ │ │ ├── NumericNodeDefinitionTest.php │ │ │ │ │ │ └── TreeBuilderTest.php │ │ │ │ │ ├── Dumper │ │ │ │ │ │ ├── XmlReferenceDumperTest.php │ │ │ │ │ │ └── YamlReferenceDumperTest.php │ │ │ │ │ ├── EnumNodeTest.php │ │ │ │ │ ├── FinalizationTest.php │ │ │ │ │ ├── FloatNodeTest.php │ │ │ │ │ ├── IntegerNodeTest.php │ │ │ │ │ ├── MergeTest.php │ │ │ │ │ ├── NormalizationTest.php │ │ │ │ │ ├── PrototypedArrayNodeTest.php │ │ │ │ │ └── ScalarNodeTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── ConfigCachePassTest.php │ │ │ │ ├── Exception │ │ │ │ │ └── FileLoaderLoadExceptionTest.php │ │ │ │ ├── FileLocatorTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── Again │ │ │ │ │ │ └── foo.xml │ │ │ │ │ ├── BadFileName.php │ │ │ │ │ ├── BadParent.php │ │ │ │ │ ├── BarNode.php │ │ │ │ │ ├── Builder │ │ │ │ │ │ ├── BarNodeDefinition.php │ │ │ │ │ │ ├── NodeBuilder.php │ │ │ │ │ │ └── VariableNodeDefinition.php │ │ │ │ │ ├── Configuration │ │ │ │ │ │ └── ExampleConfiguration.php │ │ │ │ │ ├── ParseError.php │ │ │ │ │ ├── Resource │ │ │ │ │ │ ├── .hiddenFile │ │ │ │ │ │ └── ConditionalClass.php │ │ │ │ │ ├── Util │ │ │ │ │ │ ├── document_type.xml │ │ │ │ │ │ ├── invalid.xml │ │ │ │ │ │ ├── invalid_schema.xml │ │ │ │ │ │ ├── not_readable.xml │ │ │ │ │ │ ├── schema.xsd │ │ │ │ │ │ └── valid.xml │ │ │ │ │ └── foo.xml │ │ │ │ ├── Loader │ │ │ │ │ ├── DelegatingLoaderTest.php │ │ │ │ │ ├── FileLoaderTest.php │ │ │ │ │ ├── LoaderResolverTest.php │ │ │ │ │ └── LoaderTest.php │ │ │ │ ├── Resource │ │ │ │ │ ├── ClassExistenceResourceTest.php │ │ │ │ │ ├── ComposerResourceTest.php │ │ │ │ │ ├── DirectoryResourceTest.php │ │ │ │ │ ├── FileExistenceResourceTest.php │ │ │ │ │ ├── FileResourceTest.php │ │ │ │ │ ├── GlobResourceTest.php │ │ │ │ │ ├── ReflectionClassResourceTest.php │ │ │ │ │ └── ResourceStub.php │ │ │ │ ├── ResourceCheckerConfigCacheTest.php │ │ │ │ └── Util │ │ │ │ │ └── XmlUtilsTest.php │ │ │ ├── Util │ │ │ │ ├── Exception │ │ │ │ │ ├── InvalidXmlException.php │ │ │ │ │ └── XmlParsingException.php │ │ │ │ └── XmlUtils.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Console │ │ │ ├── .gitignore │ │ │ ├── Application.php │ │ │ ├── CHANGELOG.md │ │ │ ├── Command │ │ │ │ ├── Command.php │ │ │ │ ├── HelpCommand.php │ │ │ │ ├── ListCommand.php │ │ │ │ └── LockableTrait.php │ │ │ ├── CommandLoader │ │ │ │ ├── CommandLoaderInterface.php │ │ │ │ ├── ContainerCommandLoader.php │ │ │ │ └── FactoryCommandLoader.php │ │ │ ├── ConsoleEvents.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 │ │ │ │ ├── ConsoleExceptionEvent.php │ │ │ │ └── ConsoleTerminateEvent.php │ │ │ ├── EventListener │ │ │ │ └── ErrorListener.php │ │ │ ├── Exception │ │ │ │ ├── CommandNotFoundException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidOptionException.php │ │ │ │ ├── LogicException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── Formatter │ │ │ │ ├── OutputFormatter.php │ │ │ │ ├── OutputFormatterInterface.php │ │ │ │ ├── OutputFormatterStyle.php │ │ │ │ ├── OutputFormatterStyleInterface.php │ │ │ │ └── OutputFormatterStyleStack.php │ │ │ ├── Helper │ │ │ │ ├── DebugFormatterHelper.php │ │ │ │ ├── DescriptorHelper.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 │ │ │ │ ├── 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 │ │ │ │ ├── NullOutput.php │ │ │ │ ├── Output.php │ │ │ │ ├── OutputInterface.php │ │ │ │ └── StreamOutput.php │ │ │ ├── Question │ │ │ │ ├── ChoiceQuestion.php │ │ │ │ ├── ConfirmationQuestion.php │ │ │ │ └── Question.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── bin │ │ │ │ │ └── hiddeninput.exe │ │ │ ├── Style │ │ │ │ ├── OutputStyle.php │ │ │ │ ├── StyleInterface.php │ │ │ │ └── SymfonyStyle.php │ │ │ ├── Terminal.php │ │ │ ├── Tester │ │ │ │ ├── ApplicationTester.php │ │ │ │ └── CommandTester.php │ │ │ ├── Tests │ │ │ │ ├── ApplicationTest.php │ │ │ │ ├── Command │ │ │ │ │ ├── CommandTest.php │ │ │ │ │ ├── HelpCommandTest.php │ │ │ │ │ ├── ListCommandTest.php │ │ │ │ │ └── LockableTraitTest.php │ │ │ │ ├── CommandLoader │ │ │ │ │ ├── ContainerCommandLoaderTest.php │ │ │ │ │ └── FactoryCommandLoaderTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── AddConsoleCommandPassTest.php │ │ │ │ ├── Descriptor │ │ │ │ │ ├── AbstractDescriptorTest.php │ │ │ │ │ ├── ApplicationDescriptionTest.php │ │ │ │ │ ├── JsonDescriptorTest.php │ │ │ │ │ ├── MarkdownDescriptorTest.php │ │ │ │ │ ├── ObjectsProvider.php │ │ │ │ │ ├── TextDescriptorTest.php │ │ │ │ │ └── XmlDescriptorTest.php │ │ │ │ ├── EventListener │ │ │ │ │ └── ErrorListenerTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── BarBucCommand.php │ │ │ │ │ ├── DescriptorApplication1.php │ │ │ │ │ ├── DescriptorApplication2.php │ │ │ │ │ ├── DescriptorApplicationMbString.php │ │ │ │ │ ├── DescriptorCommand1.php │ │ │ │ │ ├── DescriptorCommand2.php │ │ │ │ │ ├── DescriptorCommand3.php │ │ │ │ │ ├── DescriptorCommand4.php │ │ │ │ │ ├── DescriptorCommandMbString.php │ │ │ │ │ ├── DummyOutput.php │ │ │ │ │ ├── Foo1Command.php │ │ │ │ │ ├── Foo2Command.php │ │ │ │ │ ├── Foo3Command.php │ │ │ │ │ ├── Foo4Command.php │ │ │ │ │ ├── Foo5Command.php │ │ │ │ │ ├── Foo6Command.php │ │ │ │ │ ├── FooCommand.php │ │ │ │ │ ├── FooHiddenCommand.php │ │ │ │ │ ├── FooLock2Command.php │ │ │ │ │ ├── FooLockCommand.php │ │ │ │ │ ├── FooOptCommand.php │ │ │ │ │ ├── FooSameCaseLowercaseCommand.php │ │ │ │ │ ├── FooSameCaseUppercaseCommand.php │ │ │ │ │ ├── FooSubnamespaced1Command.php │ │ │ │ │ ├── FooSubnamespaced2Command.php │ │ │ │ │ ├── FoobarCommand.php │ │ │ │ │ ├── Style │ │ │ │ │ │ └── SymfonyStyle │ │ │ │ │ │ │ ├── command │ │ │ │ │ │ │ ├── command_0.php │ │ │ │ │ │ │ ├── command_1.php │ │ │ │ │ │ │ ├── command_10.php │ │ │ │ │ │ │ ├── command_11.php │ │ │ │ │ │ │ ├── command_12.php │ │ │ │ │ │ │ ├── command_13.php │ │ │ │ │ │ │ ├── command_14.php │ │ │ │ │ │ │ ├── command_15.php │ │ │ │ │ │ │ ├── command_16.php │ │ │ │ │ │ │ ├── command_17.php │ │ │ │ │ │ │ ├── command_2.php │ │ │ │ │ │ │ ├── command_3.php │ │ │ │ │ │ │ ├── command_4.php │ │ │ │ │ │ │ ├── command_5.php │ │ │ │ │ │ │ ├── command_6.php │ │ │ │ │ │ │ ├── command_7.php │ │ │ │ │ │ │ ├── command_8.php │ │ │ │ │ │ │ ├── command_9.php │ │ │ │ │ │ │ └── interactive_command_1.php │ │ │ │ │ │ │ └── output │ │ │ │ │ │ │ ├── interactive_output_1.txt │ │ │ │ │ │ │ ├── output_0.txt │ │ │ │ │ │ │ ├── output_1.txt │ │ │ │ │ │ │ ├── output_10.txt │ │ │ │ │ │ │ ├── output_11.txt │ │ │ │ │ │ │ ├── output_12.txt │ │ │ │ │ │ │ ├── output_13.txt │ │ │ │ │ │ │ ├── output_14.txt │ │ │ │ │ │ │ ├── output_15.txt │ │ │ │ │ │ │ ├── output_16.txt │ │ │ │ │ │ │ ├── output_17.txt │ │ │ │ │ │ │ ├── output_2.txt │ │ │ │ │ │ │ ├── output_3.txt │ │ │ │ │ │ │ ├── output_4.txt │ │ │ │ │ │ │ ├── output_5.txt │ │ │ │ │ │ │ ├── output_6.txt │ │ │ │ │ │ │ ├── output_7.txt │ │ │ │ │ │ │ ├── output_8.txt │ │ │ │ │ │ │ └── output_9.txt │ │ │ │ │ ├── TestAmbiguousCommandRegistering.php │ │ │ │ │ ├── TestAmbiguousCommandRegistering2.php │ │ │ │ │ ├── TestCommand.php │ │ │ │ │ ├── application_1.json │ │ │ │ │ ├── application_1.md │ │ │ │ │ ├── application_1.txt │ │ │ │ │ ├── application_1.xml │ │ │ │ │ ├── application_2.json │ │ │ │ │ ├── application_2.md │ │ │ │ │ ├── application_2.txt │ │ │ │ │ ├── application_2.xml │ │ │ │ │ ├── application_filtered_namespace.txt │ │ │ │ │ ├── application_gethelp.txt │ │ │ │ │ ├── application_mbstring.md │ │ │ │ │ ├── application_mbstring.txt │ │ │ │ │ ├── application_renderexception1.txt │ │ │ │ │ ├── application_renderexception2.txt │ │ │ │ │ ├── application_renderexception3.txt │ │ │ │ │ ├── application_renderexception3decorated.txt │ │ │ │ │ ├── application_renderexception4.txt │ │ │ │ │ ├── application_renderexception_doublewidth1.txt │ │ │ │ │ ├── application_renderexception_doublewidth1decorated.txt │ │ │ │ │ ├── application_renderexception_doublewidth2.txt │ │ │ │ │ ├── application_renderexception_escapeslines.txt │ │ │ │ │ ├── application_renderexception_linebreaks.txt │ │ │ │ │ ├── application_run1.txt │ │ │ │ │ ├── application_run2.txt │ │ │ │ │ ├── application_run3.txt │ │ │ │ │ ├── application_run4.txt │ │ │ │ │ ├── command_1.json │ │ │ │ │ ├── command_1.md │ │ │ │ │ ├── command_1.txt │ │ │ │ │ ├── command_1.xml │ │ │ │ │ ├── command_2.json │ │ │ │ │ ├── command_2.md │ │ │ │ │ ├── command_2.txt │ │ │ │ │ ├── command_2.xml │ │ │ │ │ ├── command_mbstring.md │ │ │ │ │ ├── command_mbstring.txt │ │ │ │ │ ├── input_argument_1.json │ │ │ │ │ ├── input_argument_1.md │ │ │ │ │ ├── input_argument_1.txt │ │ │ │ │ ├── input_argument_1.xml │ │ │ │ │ ├── input_argument_2.json │ │ │ │ │ ├── input_argument_2.md │ │ │ │ │ ├── input_argument_2.txt │ │ │ │ │ ├── input_argument_2.xml │ │ │ │ │ ├── input_argument_3.json │ │ │ │ │ ├── input_argument_3.md │ │ │ │ │ ├── input_argument_3.txt │ │ │ │ │ ├── input_argument_3.xml │ │ │ │ │ ├── input_argument_4.json │ │ │ │ │ ├── input_argument_4.md │ │ │ │ │ ├── input_argument_4.txt │ │ │ │ │ ├── input_argument_4.xml │ │ │ │ │ ├── input_argument_with_default_inf_value.json │ │ │ │ │ ├── input_argument_with_default_inf_value.md │ │ │ │ │ ├── input_argument_with_default_inf_value.txt │ │ │ │ │ ├── input_argument_with_default_inf_value.xml │ │ │ │ │ ├── input_argument_with_style.json │ │ │ │ │ ├── input_argument_with_style.md │ │ │ │ │ ├── input_argument_with_style.txt │ │ │ │ │ ├── input_argument_with_style.xml │ │ │ │ │ ├── input_definition_1.json │ │ │ │ │ ├── input_definition_1.md │ │ │ │ │ ├── input_definition_1.txt │ │ │ │ │ ├── input_definition_1.xml │ │ │ │ │ ├── input_definition_2.json │ │ │ │ │ ├── input_definition_2.md │ │ │ │ │ ├── input_definition_2.txt │ │ │ │ │ ├── input_definition_2.xml │ │ │ │ │ ├── input_definition_3.json │ │ │ │ │ ├── input_definition_3.md │ │ │ │ │ ├── input_definition_3.txt │ │ │ │ │ ├── input_definition_3.xml │ │ │ │ │ ├── input_definition_4.json │ │ │ │ │ ├── input_definition_4.md │ │ │ │ │ ├── input_definition_4.txt │ │ │ │ │ ├── input_definition_4.xml │ │ │ │ │ ├── input_option_1.json │ │ │ │ │ ├── input_option_1.md │ │ │ │ │ ├── input_option_1.txt │ │ │ │ │ ├── input_option_1.xml │ │ │ │ │ ├── input_option_2.json │ │ │ │ │ ├── input_option_2.md │ │ │ │ │ ├── input_option_2.txt │ │ │ │ │ ├── input_option_2.xml │ │ │ │ │ ├── input_option_3.json │ │ │ │ │ ├── input_option_3.md │ │ │ │ │ ├── input_option_3.txt │ │ │ │ │ ├── input_option_3.xml │ │ │ │ │ ├── input_option_4.json │ │ │ │ │ ├── input_option_4.md │ │ │ │ │ ├── input_option_4.txt │ │ │ │ │ ├── input_option_4.xml │ │ │ │ │ ├── input_option_5.json │ │ │ │ │ ├── input_option_5.md │ │ │ │ │ ├── input_option_5.txt │ │ │ │ │ ├── input_option_5.xml │ │ │ │ │ ├── input_option_6.json │ │ │ │ │ ├── input_option_6.md │ │ │ │ │ ├── input_option_6.txt │ │ │ │ │ ├── input_option_6.xml │ │ │ │ │ ├── input_option_with_default_inf_value.json │ │ │ │ │ ├── input_option_with_default_inf_value.md │ │ │ │ │ ├── input_option_with_default_inf_value.txt │ │ │ │ │ ├── input_option_with_default_inf_value.xml │ │ │ │ │ ├── input_option_with_style.json │ │ │ │ │ ├── input_option_with_style.md │ │ │ │ │ ├── input_option_with_style.txt │ │ │ │ │ ├── input_option_with_style.xml │ │ │ │ │ ├── input_option_with_style_array.json │ │ │ │ │ ├── input_option_with_style_array.md │ │ │ │ │ ├── input_option_with_style_array.txt │ │ │ │ │ ├── input_option_with_style_array.xml │ │ │ │ │ └── stream_output_file.txt │ │ │ │ ├── Formatter │ │ │ │ │ ├── OutputFormatterStyleStackTest.php │ │ │ │ │ ├── OutputFormatterStyleTest.php │ │ │ │ │ └── OutputFormatterTest.php │ │ │ │ ├── Helper │ │ │ │ │ ├── AbstractQuestionHelperTest.php │ │ │ │ │ ├── FormatterHelperTest.php │ │ │ │ │ ├── HelperSetTest.php │ │ │ │ │ ├── HelperTest.php │ │ │ │ │ ├── ProcessHelperTest.php │ │ │ │ │ ├── ProgressBarTest.php │ │ │ │ │ ├── ProgressIndicatorTest.php │ │ │ │ │ ├── QuestionHelperTest.php │ │ │ │ │ ├── SymfonyQuestionHelperTest.php │ │ │ │ │ ├── TableStyleTest.php │ │ │ │ │ └── TableTest.php │ │ │ │ ├── Input │ │ │ │ │ ├── ArgvInputTest.php │ │ │ │ │ ├── ArrayInputTest.php │ │ │ │ │ ├── InputArgumentTest.php │ │ │ │ │ ├── InputDefinitionTest.php │ │ │ │ │ ├── InputOptionTest.php │ │ │ │ │ ├── InputTest.php │ │ │ │ │ └── StringInputTest.php │ │ │ │ ├── Logger │ │ │ │ │ └── ConsoleLoggerTest.php │ │ │ │ ├── Output │ │ │ │ │ ├── ConsoleOutputTest.php │ │ │ │ │ ├── NullOutputTest.php │ │ │ │ │ ├── OutputTest.php │ │ │ │ │ └── StreamOutputTest.php │ │ │ │ ├── Question │ │ │ │ │ ├── ChoiceQuestionTest.php │ │ │ │ │ └── ConfirmationQuestionTest.php │ │ │ │ ├── Style │ │ │ │ │ └── SymfonyStyleTest.php │ │ │ │ ├── TerminalTest.php │ │ │ │ └── Tester │ │ │ │ │ ├── ApplicationTesterTest.php │ │ │ │ │ └── CommandTesterTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── CssSelector │ │ │ ├── .gitignore │ │ │ ├── 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 │ │ │ ├── Tests │ │ │ │ ├── CssSelectorConverterTest.php │ │ │ │ ├── Node │ │ │ │ │ ├── AbstractNodeTest.php │ │ │ │ │ ├── AttributeNodeTest.php │ │ │ │ │ ├── ClassNodeTest.php │ │ │ │ │ ├── CombinedSelectorNodeTest.php │ │ │ │ │ ├── ElementNodeTest.php │ │ │ │ │ ├── FunctionNodeTest.php │ │ │ │ │ ├── HashNodeTest.php │ │ │ │ │ ├── NegationNodeTest.php │ │ │ │ │ ├── PseudoNodeTest.php │ │ │ │ │ ├── SelectorNodeTest.php │ │ │ │ │ └── SpecificityTest.php │ │ │ │ ├── Parser │ │ │ │ │ ├── Handler │ │ │ │ │ │ ├── AbstractHandlerTest.php │ │ │ │ │ │ ├── CommentHandlerTest.php │ │ │ │ │ │ ├── HashHandlerTest.php │ │ │ │ │ │ ├── IdentifierHandlerTest.php │ │ │ │ │ │ ├── NumberHandlerTest.php │ │ │ │ │ │ ├── StringHandlerTest.php │ │ │ │ │ │ └── WhitespaceHandlerTest.php │ │ │ │ │ ├── ParserTest.php │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ ├── Shortcut │ │ │ │ │ │ ├── ClassParserTest.php │ │ │ │ │ │ ├── ElementParserTest.php │ │ │ │ │ │ ├── EmptyStringParserTest.php │ │ │ │ │ │ └── HashParserTest.php │ │ │ │ │ └── TokenStreamTest.php │ │ │ │ └── XPath │ │ │ │ │ ├── Fixtures │ │ │ │ │ ├── ids.html │ │ │ │ │ ├── lang.xml │ │ │ │ │ └── shakespear.html │ │ │ │ │ └── TranslatorTest.php │ │ │ ├── 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 │ │ │ └── phpunit.xml.dist │ │ │ ├── Debug │ │ │ ├── .gitignore │ │ │ ├── BufferingLogger.php │ │ │ ├── CHANGELOG.md │ │ │ ├── Debug.php │ │ │ ├── DebugClassLoader.php │ │ │ ├── ErrorHandler.php │ │ │ ├── Exception │ │ │ │ ├── ClassNotFoundException.php │ │ │ │ ├── ContextErrorException.php │ │ │ │ ├── FatalErrorException.php │ │ │ │ ├── FatalThrowableError.php │ │ │ │ ├── FlattenException.php │ │ │ │ ├── OutOfMemoryException.php │ │ │ │ ├── SilencedErrorContext.php │ │ │ │ ├── UndefinedFunctionException.php │ │ │ │ └── UndefinedMethodException.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── FatalErrorHandler │ │ │ │ ├── ClassNotFoundFatalErrorHandler.php │ │ │ │ ├── FatalErrorHandlerInterface.php │ │ │ │ ├── UndefinedFunctionFatalErrorHandler.php │ │ │ │ └── UndefinedMethodFatalErrorHandler.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── ext │ │ │ │ │ ├── README.md │ │ │ │ │ ├── config.m4 │ │ │ │ │ ├── config.w32 │ │ │ │ │ ├── php_symfony_debug.h │ │ │ │ │ ├── symfony_debug.c │ │ │ │ │ └── tests │ │ │ │ │ ├── 001.phpt │ │ │ │ │ ├── 002.phpt │ │ │ │ │ ├── 002_1.phpt │ │ │ │ │ └── 003.phpt │ │ │ ├── Tests │ │ │ │ ├── DebugClassLoaderTest.php │ │ │ │ ├── ErrorHandlerTest.php │ │ │ │ ├── Exception │ │ │ │ │ └── FlattenExceptionTest.php │ │ │ │ ├── ExceptionHandlerTest.php │ │ │ │ ├── FatalErrorHandler │ │ │ │ │ ├── ClassNotFoundFatalErrorHandlerTest.php │ │ │ │ │ ├── UndefinedFunctionFatalErrorHandlerTest.php │ │ │ │ │ └── UndefinedMethodFatalErrorHandlerTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── AnnotatedClass.php │ │ │ │ │ ├── ClassAlias.php │ │ │ │ │ ├── DefinitionInEvaluatedCode.php │ │ │ │ │ ├── DeprecatedClass.php │ │ │ │ │ ├── DeprecatedInterface.php │ │ │ │ │ ├── ErrorHandlerThatUsesThePreviousOne.php │ │ │ │ │ ├── ExtendedFinalMethod.php │ │ │ │ │ ├── FinalClasses.php │ │ │ │ │ ├── FinalMethod.php │ │ │ │ │ ├── FinalMethod2Trait.php │ │ │ │ │ ├── InternalClass.php │ │ │ │ │ ├── InternalInterface.php │ │ │ │ │ ├── InternalTrait.php │ │ │ │ │ ├── InternalTrait2.php │ │ │ │ │ ├── LoggerThatSetAnErrorHandler.php │ │ │ │ │ ├── NonDeprecatedInterface.php │ │ │ │ │ ├── PEARClass.php │ │ │ │ │ ├── Throwing.php │ │ │ │ │ ├── ToStringThrower.php │ │ │ │ │ ├── TraitWithInternalMethod.php │ │ │ │ │ ├── casemismatch.php │ │ │ │ │ ├── notPsr0Bis.php │ │ │ │ │ ├── psr4 │ │ │ │ │ │ └── Psr4CaseMismatch.php │ │ │ │ │ └── reallyNotPsr0.php │ │ │ │ ├── Fixtures2 │ │ │ │ │ └── RequiredTwice.php │ │ │ │ ├── HeaderMock.php │ │ │ │ └── phpt │ │ │ │ │ ├── debug_class_loader.phpt │ │ │ │ │ ├── decorate_exception_hander.phpt │ │ │ │ │ ├── exception_rethrown.phpt │ │ │ │ │ └── fatal_with_nested_handlers.phpt │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── DependencyInjection │ │ │ ├── .gitignore │ │ │ ├── Alias.php │ │ │ ├── Argument │ │ │ │ ├── ArgumentInterface.php │ │ │ │ ├── BoundArgument.php │ │ │ │ ├── IteratorArgument.php │ │ │ │ ├── RewindableGenerator.php │ │ │ │ ├── ServiceClosureArgument.php │ │ │ │ └── TaggedIteratorArgument.php │ │ │ ├── CHANGELOG.md │ │ │ ├── ChildDefinition.php │ │ │ ├── Compiler │ │ │ │ ├── AbstractRecursivePass.php │ │ │ │ ├── AnalyzeServiceReferencesPass.php │ │ │ │ ├── AutoAliasServicePass.php │ │ │ │ ├── AutowireExceptionPass.php │ │ │ │ ├── AutowirePass.php │ │ │ │ ├── AutowireRequiredMethodsPass.php │ │ │ │ ├── CheckArgumentsValidityPass.php │ │ │ │ ├── CheckCircularReferencesPass.php │ │ │ │ ├── CheckDefinitionValidityPass.php │ │ │ │ ├── CheckExceptionOnInvalidReferenceBehaviorPass.php │ │ │ │ ├── CheckReferenceValidityPass.php │ │ │ │ ├── Compiler.php │ │ │ │ ├── CompilerPassInterface.php │ │ │ │ ├── DecoratorServicePass.php │ │ │ │ ├── DefinitionErrorExceptionPass.php │ │ │ │ ├── ExtensionCompilerPass.php │ │ │ │ ├── FactoryReturnTypePass.php │ │ │ │ ├── InlineServiceDefinitionsPass.php │ │ │ │ ├── LoggingFormatter.php │ │ │ │ ├── MergeExtensionConfigurationPass.php │ │ │ │ ├── PassConfig.php │ │ │ │ ├── PriorityTaggedServiceTrait.php │ │ │ │ ├── RegisterEnvVarProcessorsPass.php │ │ │ │ ├── RegisterServiceSubscribersPass.php │ │ │ │ ├── RemoveAbstractDefinitionsPass.php │ │ │ │ ├── RemovePrivateAliasesPass.php │ │ │ │ ├── RemoveUnusedDefinitionsPass.php │ │ │ │ ├── RepeatablePassInterface.php │ │ │ │ ├── RepeatedPass.php │ │ │ │ ├── ReplaceAliasByActualDefinitionPass.php │ │ │ │ ├── ResolveBindingsPass.php │ │ │ │ ├── ResolveChildDefinitionsPass.php │ │ │ │ ├── ResolveClassPass.php │ │ │ │ ├── ResolveDefinitionTemplatesPass.php │ │ │ │ ├── ResolveEnvPlaceholdersPass.php │ │ │ │ ├── ResolveFactoryClassPass.php │ │ │ │ ├── ResolveHotPathPass.php │ │ │ │ ├── ResolveInstanceofConditionalsPass.php │ │ │ │ ├── ResolveInvalidReferencesPass.php │ │ │ │ ├── ResolveNamedArgumentsPass.php │ │ │ │ ├── ResolveParameterPlaceHoldersPass.php │ │ │ │ ├── ResolvePrivatesPass.php │ │ │ │ ├── ResolveReferencesToAliasesPass.php │ │ │ │ ├── ResolveServiceSubscribersPass.php │ │ │ │ ├── ResolveTaggedIteratorArgumentPass.php │ │ │ │ ├── ServiceLocatorTagPass.php │ │ │ │ ├── ServiceReferenceGraph.php │ │ │ │ ├── ServiceReferenceGraphEdge.php │ │ │ │ └── ServiceReferenceGraphNode.php │ │ │ ├── Config │ │ │ │ ├── AutowireServiceResource.php │ │ │ │ ├── ContainerParametersResource.php │ │ │ │ └── ContainerParametersResourceChecker.php │ │ │ ├── Container.php │ │ │ ├── ContainerAwareInterface.php │ │ │ ├── ContainerAwareTrait.php │ │ │ ├── ContainerBuilder.php │ │ │ ├── ContainerInterface.php │ │ │ ├── Definition.php │ │ │ ├── DefinitionDecorator.php │ │ │ ├── Dumper │ │ │ │ ├── Dumper.php │ │ │ │ ├── DumperInterface.php │ │ │ │ ├── GraphvizDumper.php │ │ │ │ ├── PhpDumper.php │ │ │ │ ├── XmlDumper.php │ │ │ │ └── YamlDumper.php │ │ │ ├── EnvVarProcessor.php │ │ │ ├── EnvVarProcessorInterface.php │ │ │ ├── Exception │ │ │ │ ├── AutowiringFailedException.php │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── EnvNotFoundException.php │ │ │ │ ├── EnvParameterException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.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 │ │ │ │ │ ├── ContainerConfigurator.php │ │ │ │ │ ├── DefaultsConfigurator.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 │ │ │ │ ├── EnvPlaceholderParameterBag.php │ │ │ │ ├── FrozenParameterBag.php │ │ │ │ ├── ParameterBag.php │ │ │ │ └── ParameterBagInterface.php │ │ │ ├── README.md │ │ │ ├── Reference.php │ │ │ ├── ResettableContainerInterface.php │ │ │ ├── ServiceLocator.php │ │ │ ├── ServiceSubscriberInterface.php │ │ │ ├── TaggedContainerInterface.php │ │ │ ├── Tests │ │ │ │ ├── Argument │ │ │ │ │ └── RewindableGeneratorTest.php │ │ │ │ ├── ChildDefinitionTest.php │ │ │ │ ├── Compiler │ │ │ │ │ ├── AnalyzeServiceReferencesPassTest.php │ │ │ │ │ ├── AutoAliasServicePassTest.php │ │ │ │ │ ├── AutowireExceptionPassTest.php │ │ │ │ │ ├── AutowirePassTest.php │ │ │ │ │ ├── AutowireRequiredMethodsPassTest.php │ │ │ │ │ ├── CheckArgumentsValidityPassTest.php │ │ │ │ │ ├── CheckCircularReferencesPassTest.php │ │ │ │ │ ├── CheckDefinitionValidityPassTest.php │ │ │ │ │ ├── CheckExceptionOnInvalidReferenceBehaviorPassTest.php │ │ │ │ │ ├── CheckReferenceValidityPassTest.php │ │ │ │ │ ├── DecoratorServicePassTest.php │ │ │ │ │ ├── DefinitionErrorExceptionPassTest.php │ │ │ │ │ ├── ExtensionCompilerPassTest.php │ │ │ │ │ ├── FactoryReturnTypePassTest.php │ │ │ │ │ ├── InlineServiceDefinitionsPassTest.php │ │ │ │ │ ├── IntegrationTest.php │ │ │ │ │ ├── MergeExtensionConfigurationPassTest.php │ │ │ │ │ ├── OptionalServiceClass.php │ │ │ │ │ ├── PassConfigTest.php │ │ │ │ │ ├── PriorityTaggedServiceTraitTest.php │ │ │ │ │ ├── RegisterEnvVarProcessorsPassTest.php │ │ │ │ │ ├── RegisterServiceSubscribersPassTest.php │ │ │ │ │ ├── RemoveUnusedDefinitionsPassTest.php │ │ │ │ │ ├── ReplaceAliasByActualDefinitionPassTest.php │ │ │ │ │ ├── ResolveBindingsPassTest.php │ │ │ │ │ ├── ResolveChildDefinitionsPassTest.php │ │ │ │ │ ├── ResolveClassPassTest.php │ │ │ │ │ ├── ResolveDefinitionTemplatesPassTest.php │ │ │ │ │ ├── ResolveFactoryClassPassTest.php │ │ │ │ │ ├── ResolveHotPathPassTest.php │ │ │ │ │ ├── ResolveInstanceofConditionalsPassTest.php │ │ │ │ │ ├── ResolveInvalidReferencesPassTest.php │ │ │ │ │ ├── ResolveNamedArgumentsPassTest.php │ │ │ │ │ ├── ResolveParameterPlaceHoldersPassTest.php │ │ │ │ │ ├── ResolvePrivatesPassTest.php │ │ │ │ │ ├── ResolveReferencesToAliasesPassTest.php │ │ │ │ │ ├── ResolveTaggedIteratorArgumentPassTest.php │ │ │ │ │ └── ServiceLocatorTagPassTest.php │ │ │ │ ├── Config │ │ │ │ │ ├── AutowireServiceResourceTest.php │ │ │ │ │ ├── ContainerParametersResourceCheckerTest.php │ │ │ │ │ └── ContainerParametersResourceTest.php │ │ │ │ ├── ContainerBuilderTest.php │ │ │ │ ├── ContainerTest.php │ │ │ │ ├── CrossCheckTest.php │ │ │ │ ├── DefinitionDecoratorTest.php │ │ │ │ ├── DefinitionTest.php │ │ │ │ ├── Dumper │ │ │ │ │ ├── GraphvizDumperTest.php │ │ │ │ │ ├── PhpDumperTest.php │ │ │ │ │ ├── XmlDumperTest.php │ │ │ │ │ └── YamlDumperTest.php │ │ │ │ ├── EnvVarProcessorTest.php │ │ │ │ ├── Extension │ │ │ │ │ └── ExtensionTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── Bar.php │ │ │ │ │ ├── BarInterface.php │ │ │ │ │ ├── CaseSensitiveClass.php │ │ │ │ │ ├── Container │ │ │ │ │ │ ├── ConstructorWithMandatoryArgumentsContainer.php │ │ │ │ │ │ ├── ConstructorWithOptionalArgumentsContainer.php │ │ │ │ │ │ ├── ConstructorWithoutArgumentsContainer.php │ │ │ │ │ │ └── NoConstructorContainer.php │ │ │ │ │ ├── CustomDefinition.php │ │ │ │ │ ├── DeprecatedClass.php │ │ │ │ │ ├── FactoryDummy.php │ │ │ │ │ ├── FactoryDummyWithoutReturnTypes.php │ │ │ │ │ ├── FooForCircularWithAddCalls.php │ │ │ │ │ ├── NamedArgumentsDummy.php │ │ │ │ │ ├── ParentNotExists.php │ │ │ │ │ ├── Prototype │ │ │ │ │ │ ├── BadClasses │ │ │ │ │ │ │ └── MissingParent.php │ │ │ │ │ │ ├── Foo.php │ │ │ │ │ │ ├── FooInterface.php │ │ │ │ │ │ ├── OtherDir │ │ │ │ │ │ │ ├── AnotherSub │ │ │ │ │ │ │ │ └── DeeperBaz.php │ │ │ │ │ │ │ ├── Baz.php │ │ │ │ │ │ │ ├── Component1 │ │ │ │ │ │ │ │ ├── Dir1 │ │ │ │ │ │ │ │ │ └── Service1.php │ │ │ │ │ │ │ │ └── Dir2 │ │ │ │ │ │ │ │ │ └── Service2.php │ │ │ │ │ │ │ └── Component2 │ │ │ │ │ │ │ │ ├── Dir1 │ │ │ │ │ │ │ │ └── Service4.php │ │ │ │ │ │ │ │ └── Dir2 │ │ │ │ │ │ │ │ └── Service5.php │ │ │ │ │ │ └── Sub │ │ │ │ │ │ │ ├── Bar.php │ │ │ │ │ │ │ └── BarInterface.php │ │ │ │ │ ├── ScalarFactory.php │ │ │ │ │ ├── SimilarArgumentsDummy.php │ │ │ │ │ ├── StubbedTranslator.php │ │ │ │ │ ├── TestDefinition1.php │ │ │ │ │ ├── TestDefinition2.php │ │ │ │ │ ├── TestServiceSubscriber.php │ │ │ │ │ ├── array.json │ │ │ │ │ ├── config │ │ │ │ │ │ ├── basic.expected.yml │ │ │ │ │ │ ├── basic.php │ │ │ │ │ │ ├── child.expected.yml │ │ │ │ │ │ ├── child.php │ │ │ │ │ │ ├── defaults.expected.yml │ │ │ │ │ │ ├── defaults.php │ │ │ │ │ │ ├── factory_short_notation.php │ │ │ │ │ │ ├── instanceof.expected.yml │ │ │ │ │ │ ├── instanceof.php │ │ │ │ │ │ ├── php7.expected.yml │ │ │ │ │ │ ├── php7.php │ │ │ │ │ │ ├── prototype.expected.yml │ │ │ │ │ │ ├── prototype.php │ │ │ │ │ │ ├── services9.php │ │ │ │ │ │ └── services_autoconfigure_with_parent.php │ │ │ │ │ ├── containers │ │ │ │ │ │ ├── CustomContainer.php │ │ │ │ │ │ ├── container10.php │ │ │ │ │ │ ├── container11.php │ │ │ │ │ │ ├── container12.php │ │ │ │ │ │ ├── container13.php │ │ │ │ │ │ ├── container14.php │ │ │ │ │ │ ├── container15.php │ │ │ │ │ │ ├── container16.php │ │ │ │ │ │ ├── container17.php │ │ │ │ │ │ ├── container19.php │ │ │ │ │ │ ├── container21.php │ │ │ │ │ │ ├── container24.php │ │ │ │ │ │ ├── container33.php │ │ │ │ │ │ ├── container8.php │ │ │ │ │ │ ├── container9.php │ │ │ │ │ │ ├── container_abstract.php │ │ │ │ │ │ ├── container_almost_circular.php │ │ │ │ │ │ ├── container_env_in_id.php │ │ │ │ │ │ ├── container_inline_requires.php │ │ │ │ │ │ └── container_uninitialized_ref.php │ │ │ │ │ ├── directory │ │ │ │ │ │ ├── import │ │ │ │ │ │ │ └── import.yml │ │ │ │ │ │ ├── recurse │ │ │ │ │ │ │ ├── simple.ini │ │ │ │ │ │ │ └── simple.yml │ │ │ │ │ │ └── simple.php │ │ │ │ │ ├── graphviz │ │ │ │ │ │ ├── services1.dot │ │ │ │ │ │ ├── services10-1.dot │ │ │ │ │ │ ├── services10.dot │ │ │ │ │ │ ├── services13.dot │ │ │ │ │ │ ├── services14.dot │ │ │ │ │ │ ├── services17.dot │ │ │ │ │ │ ├── services18.dot │ │ │ │ │ │ ├── services9.dot │ │ │ │ │ │ └── services_inline.dot │ │ │ │ │ ├── includes │ │ │ │ │ │ ├── FooVariadic.php │ │ │ │ │ │ ├── HotPath │ │ │ │ │ │ │ ├── C1.php │ │ │ │ │ │ │ ├── C2.php │ │ │ │ │ │ │ ├── C3.php │ │ │ │ │ │ │ ├── I1.php │ │ │ │ │ │ │ ├── P1.php │ │ │ │ │ │ │ └── T1.php │ │ │ │ │ │ ├── MultipleArgumentsOptionalScalarNotReallyOptional.php │ │ │ │ │ │ ├── ProjectExtension.php │ │ │ │ │ │ ├── ProjectWithXsdExtension.php │ │ │ │ │ │ ├── ProjectWithXsdExtensionInPhar.phar │ │ │ │ │ │ ├── autowiring_classes.php │ │ │ │ │ │ ├── classes.php │ │ │ │ │ │ ├── createphar.php │ │ │ │ │ │ ├── foo.php │ │ │ │ │ │ ├── schema │ │ │ │ │ │ │ └── project-1.0.xsd │ │ │ │ │ │ └── uniontype_classes.php │ │ │ │ │ ├── ini │ │ │ │ │ │ ├── almostvalid.ini │ │ │ │ │ │ ├── ini_with_wrong_ext.xml │ │ │ │ │ │ ├── nonvalid.ini │ │ │ │ │ │ ├── parameters.ini │ │ │ │ │ │ ├── parameters1.ini │ │ │ │ │ │ ├── parameters2.ini │ │ │ │ │ │ └── types.ini │ │ │ │ │ ├── php │ │ │ │ │ │ ├── custom_container_class_constructor_without_arguments.php │ │ │ │ │ │ ├── custom_container_class_with_mandatory_constructor_arguments.php │ │ │ │ │ │ ├── custom_container_class_with_optional_constructor_arguments.php │ │ │ │ │ │ ├── custom_container_class_without_constructor.php │ │ │ │ │ │ ├── php_with_wrong_ext.yml │ │ │ │ │ │ ├── services1-1.php │ │ │ │ │ │ ├── services1.php │ │ │ │ │ │ ├── services10.php │ │ │ │ │ │ ├── services12.php │ │ │ │ │ │ ├── services13.php │ │ │ │ │ │ ├── services19.php │ │ │ │ │ │ ├── services24.php │ │ │ │ │ │ ├── services26.php │ │ │ │ │ │ ├── services33.php │ │ │ │ │ │ ├── services8.php │ │ │ │ │ │ ├── services9.php │ │ │ │ │ │ ├── services9_as_files.txt │ │ │ │ │ │ ├── services9_compiled.php │ │ │ │ │ │ ├── services_adawson.php │ │ │ │ │ │ ├── services_almost_circular_private.php │ │ │ │ │ │ ├── services_almost_circular_public.php │ │ │ │ │ │ ├── services_array_params.php │ │ │ │ │ │ ├── services_base64_env.php │ │ │ │ │ │ ├── services_dedup_lazy_proxy.php │ │ │ │ │ │ ├── services_deep_graph.php │ │ │ │ │ │ ├── services_env_in_id.php │ │ │ │ │ │ ├── services_inline_requires.php │ │ │ │ │ │ ├── services_inline_self_ref.php │ │ │ │ │ │ ├── services_legacy_privates.php │ │ │ │ │ │ ├── services_locator.php │ │ │ │ │ │ ├── services_non_shared_lazy.php │ │ │ │ │ │ ├── services_private_frozen.php │ │ │ │ │ │ ├── services_private_in_expression.php │ │ │ │ │ │ ├── services_rot13_env.php │ │ │ │ │ │ ├── services_subscriber.php │ │ │ │ │ │ ├── services_tsantos.php │ │ │ │ │ │ ├── services_uninitialized_ref.php │ │ │ │ │ │ ├── services_unsupported_characters.php │ │ │ │ │ │ └── simple.php │ │ │ │ │ ├── xml │ │ │ │ │ │ ├── class_from_id.xml │ │ │ │ │ │ ├── defaults_bindings.xml │ │ │ │ │ │ ├── defaults_bindings2.xml │ │ │ │ │ │ ├── extension1 │ │ │ │ │ │ │ └── services.xml │ │ │ │ │ │ ├── extension2 │ │ │ │ │ │ │ └── services.xml │ │ │ │ │ │ ├── extensions │ │ │ │ │ │ │ ├── services1.xml │ │ │ │ │ │ │ ├── services2.xml │ │ │ │ │ │ │ ├── services3.xml │ │ │ │ │ │ │ ├── services4.xml │ │ │ │ │ │ │ ├── services5.xml │ │ │ │ │ │ │ ├── services6.xml │ │ │ │ │ │ │ └── services7.xml │ │ │ │ │ │ ├── legacy_invalid_alias_definition.xml │ │ │ │ │ │ ├── namespaces.xml │ │ │ │ │ │ ├── nested_service_without_id.xml │ │ │ │ │ │ ├── nonvalid.xml │ │ │ │ │ │ ├── services1.xml │ │ │ │ │ │ ├── services10.xml │ │ │ │ │ │ ├── services13.xml │ │ │ │ │ │ ├── services14.xml │ │ │ │ │ │ ├── services2.xml │ │ │ │ │ │ ├── services21.xml │ │ │ │ │ │ ├── services22.xml │ │ │ │ │ │ ├── services23.xml │ │ │ │ │ │ ├── services24.xml │ │ │ │ │ │ ├── services28.xml │ │ │ │ │ │ ├── services3.xml │ │ │ │ │ │ ├── services4.xml │ │ │ │ │ │ ├── services4_bad_import.xml │ │ │ │ │ │ ├── services5.xml │ │ │ │ │ │ ├── services6.xml │ │ │ │ │ │ ├── services7.xml │ │ │ │ │ │ ├── services8.xml │ │ │ │ │ │ ├── services9.xml │ │ │ │ │ │ ├── services_abstract.xml │ │ │ │ │ │ ├── services_autoconfigure.xml │ │ │ │ │ │ ├── services_autoconfigure_with_parent.xml │ │ │ │ │ │ ├── services_bindings.xml │ │ │ │ │ │ ├── services_defaults_with_parent.xml │ │ │ │ │ │ ├── services_deprecated.xml │ │ │ │ │ │ ├── services_dump_load.xml │ │ │ │ │ │ ├── services_inline_not_candidate.xml │ │ │ │ │ │ ├── services_instanceof.xml │ │ │ │ │ │ ├── services_instanceof_with_parent.xml │ │ │ │ │ │ ├── services_named_args.xml │ │ │ │ │ │ ├── services_prototype.xml │ │ │ │ │ │ ├── services_tsantos.xml │ │ │ │ │ │ ├── services_without_id.xml │ │ │ │ │ │ ├── tag_with_empty_name.xml │ │ │ │ │ │ ├── tag_without_name.xml │ │ │ │ │ │ ├── with_key_outside_collection.xml │ │ │ │ │ │ ├── withdoctype.xml │ │ │ │ │ │ └── xml_with_wrong_ext.php │ │ │ │ │ └── yaml │ │ │ │ │ │ ├── anonymous_services.yml │ │ │ │ │ │ ├── anonymous_services_alias.yml │ │ │ │ │ │ ├── anonymous_services_in_instanceof.yml │ │ │ │ │ │ ├── anonymous_services_in_parameters.yml │ │ │ │ │ │ ├── bad_calls.yml │ │ │ │ │ │ ├── bad_decorates.yml │ │ │ │ │ │ ├── bad_empty_defaults.yml │ │ │ │ │ │ ├── bad_empty_instanceof.yml │ │ │ │ │ │ ├── bad_format.yml │ │ │ │ │ │ ├── bad_import.yml │ │ │ │ │ │ ├── bad_imports.yml │ │ │ │ │ │ ├── bad_parameters.yml │ │ │ │ │ │ ├── bad_service.yml │ │ │ │ │ │ ├── bad_services.yml │ │ │ │ │ │ ├── bad_types1.yml │ │ │ │ │ │ ├── bad_types2.yml │ │ │ │ │ │ ├── badtag1.yml │ │ │ │ │ │ ├── badtag2.yml │ │ │ │ │ │ ├── badtag3.yml │ │ │ │ │ │ ├── bar │ │ │ │ │ │ └── services.yml │ │ │ │ │ │ ├── class_from_id.yml │ │ │ │ │ │ ├── defaults_bindings.yml │ │ │ │ │ │ ├── defaults_bindings2.yml │ │ │ │ │ │ ├── foo │ │ │ │ │ │ └── services.yml │ │ │ │ │ │ ├── integration │ │ │ │ │ │ ├── autoconfigure_child_not_applied │ │ │ │ │ │ │ ├── _child.yml │ │ │ │ │ │ │ ├── expected.yml │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ ├── autoconfigure_parent_child │ │ │ │ │ │ │ ├── _child.yml │ │ │ │ │ │ │ ├── expected.yml │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ ├── autoconfigure_parent_child_tags │ │ │ │ │ │ │ ├── _child.yml │ │ │ │ │ │ │ ├── expected.yml │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ ├── child_parent │ │ │ │ │ │ │ ├── expected.yml │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ ├── defaults_child_tags │ │ │ │ │ │ │ ├── expected.yml │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ ├── defaults_instanceof_importance │ │ │ │ │ │ │ ├── expected.yml │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ ├── defaults_parent_child │ │ │ │ │ │ │ ├── _child.yml │ │ │ │ │ │ │ ├── expected.yml │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ └── instanceof_parent_child │ │ │ │ │ │ │ ├── _child.yml │ │ │ │ │ │ │ ├── expected.yml │ │ │ │ │ │ │ └── main.yml │ │ │ │ │ │ ├── legacy_invalid_alias_definition.yml │ │ │ │ │ │ ├── legacy_invalid_definition.yml │ │ │ │ │ │ ├── nonvalid1.yml │ │ │ │ │ │ ├── nonvalid2.yml │ │ │ │ │ │ ├── null_config.yml │ │ │ │ │ │ ├── services1.yml │ │ │ │ │ │ ├── services10.yml │ │ │ │ │ │ ├── services11.yml │ │ │ │ │ │ ├── services13.yml │ │ │ │ │ │ ├── services14.yml │ │ │ │ │ │ ├── services2.yml │ │ │ │ │ │ ├── services21.yml │ │ │ │ │ │ ├── services22.yml │ │ │ │ │ │ ├── services23.yml │ │ │ │ │ │ ├── services24.yml │ │ │ │ │ │ ├── services26.yml │ │ │ │ │ │ ├── services28.yml │ │ │ │ │ │ ├── services3.yml │ │ │ │ │ │ ├── services31_invalid_tags.yml │ │ │ │ │ │ ├── services4.yml │ │ │ │ │ │ ├── services4_bad_import.yml │ │ │ │ │ │ ├── services6.yml │ │ │ │ │ │ ├── services7.yml │ │ │ │ │ │ ├── services8.yml │ │ │ │ │ │ ├── services9.yml │ │ │ │ │ │ ├── services_adawson.yml │ │ │ │ │ │ ├── services_autoconfigure.yml │ │ │ │ │ │ ├── services_autoconfigure_with_parent.yml │ │ │ │ │ │ ├── services_bindings.yml │ │ │ │ │ │ ├── services_configurator_short_syntax.yml │ │ │ │ │ │ ├── services_deep_graph.yml │ │ │ │ │ │ ├── services_defaults_with_parent.yml │ │ │ │ │ │ ├── services_dump_load.yml │ │ │ │ │ │ ├── services_inline.yml │ │ │ │ │ │ ├── services_instanceof.yml │ │ │ │ │ │ ├── services_instanceof_with_parent.yml │ │ │ │ │ │ ├── services_legacy_privates.yml │ │ │ │ │ │ ├── services_named_args.yml │ │ │ │ │ │ ├── services_prototype.yml │ │ │ │ │ │ ├── services_prototype_namespace.yml │ │ │ │ │ │ ├── services_prototype_namespace_without_resource.yml │ │ │ │ │ │ ├── services_underscore.yml │ │ │ │ │ │ ├── tag_name_empty_string.yml │ │ │ │ │ │ ├── tag_name_no_string.yml │ │ │ │ │ │ ├── tag_name_only.yml │ │ │ │ │ │ └── yaml_with_wrong_ext.ini │ │ │ │ ├── LazyProxy │ │ │ │ │ ├── Instantiator │ │ │ │ │ │ └── RealServiceInstantiatorTest.php │ │ │ │ │ └── PhpDumper │ │ │ │ │ │ └── NullDumperTest.php │ │ │ │ ├── Loader │ │ │ │ │ ├── ClosureLoaderTest.php │ │ │ │ │ ├── DirectoryLoaderTest.php │ │ │ │ │ ├── FileLoaderTest.php │ │ │ │ │ ├── GlobFileLoaderTest.php │ │ │ │ │ ├── IniFileLoaderTest.php │ │ │ │ │ ├── LoaderResolverTest.php │ │ │ │ │ ├── PhpFileLoaderTest.php │ │ │ │ │ ├── XmlFileLoaderTest.php │ │ │ │ │ └── YamlFileLoaderTest.php │ │ │ │ ├── ParameterBag │ │ │ │ │ ├── EnvPlaceholderParameterBagTest.php │ │ │ │ │ ├── FrozenParameterBagTest.php │ │ │ │ │ └── ParameterBagTest.php │ │ │ │ ├── ParameterTest.php │ │ │ │ ├── ReferenceTest.php │ │ │ │ └── ServiceLocatorTest.php │ │ │ ├── TypedReference.php │ │ │ ├── Variable.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── DomCrawler │ │ │ ├── .gitignore │ │ │ ├── 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 │ │ │ ├── Tests │ │ │ │ ├── CrawlerTest.php │ │ │ │ ├── Field │ │ │ │ │ ├── ChoiceFormFieldTest.php │ │ │ │ │ ├── FileFormFieldTest.php │ │ │ │ │ ├── FormFieldTest.php │ │ │ │ │ ├── FormFieldTestCase.php │ │ │ │ │ ├── InputFormFieldTest.php │ │ │ │ │ └── TextareaFormFieldTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── no-extension │ │ │ │ │ └── windows-1250.html │ │ │ │ ├── FormTest.php │ │ │ │ ├── ImageTest.php │ │ │ │ └── LinkTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Dotenv │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Dotenv.php │ │ │ ├── Exception │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── FormatException.php │ │ │ │ ├── FormatExceptionContext.php │ │ │ │ └── PathException.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ └── DotenvTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── EventDispatcher │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── ContainerAwareEventDispatcher.php │ │ │ ├── Debug │ │ │ │ ├── TraceableEventDispatcher.php │ │ │ │ ├── TraceableEventDispatcherInterface.php │ │ │ │ └── WrappedListener.php │ │ │ ├── DependencyInjection │ │ │ │ └── RegisterListenersPass.php │ │ │ ├── Event.php │ │ │ ├── EventDispatcher.php │ │ │ ├── EventDispatcherInterface.php │ │ │ ├── EventSubscriberInterface.php │ │ │ ├── GenericEvent.php │ │ │ ├── ImmutableEventDispatcher.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── AbstractEventDispatcherTest.php │ │ │ │ ├── ContainerAwareEventDispatcherTest.php │ │ │ │ ├── Debug │ │ │ │ │ ├── TraceableEventDispatcherTest.php │ │ │ │ │ └── WrappedListenerTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── RegisterListenersPassTest.php │ │ │ │ ├── EventDispatcherTest.php │ │ │ │ ├── EventTest.php │ │ │ │ ├── GenericEventTest.php │ │ │ │ └── ImmutableEventDispatcherTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── ExpressionLanguage │ │ │ ├── .gitignore │ │ │ ├── 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 │ │ │ ├── ParserCache │ │ │ │ ├── ArrayParserCache.php │ │ │ │ ├── ParserCacheAdapter.php │ │ │ │ └── ParserCacheInterface.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── bin │ │ │ │ │ └── generate_operator_regex.php │ │ │ ├── SerializedParsedExpression.php │ │ │ ├── SyntaxError.php │ │ │ ├── Tests │ │ │ │ ├── ExpressionFunctionTest.php │ │ │ │ ├── ExpressionLanguageTest.php │ │ │ │ ├── ExpressionTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ └── TestProvider.php │ │ │ │ ├── LexerTest.php │ │ │ │ ├── Node │ │ │ │ │ ├── AbstractNodeTest.php │ │ │ │ │ ├── ArgumentsNodeTest.php │ │ │ │ │ ├── ArrayNodeTest.php │ │ │ │ │ ├── BinaryNodeTest.php │ │ │ │ │ ├── ConditionalNodeTest.php │ │ │ │ │ ├── ConstantNodeTest.php │ │ │ │ │ ├── FunctionNodeTest.php │ │ │ │ │ ├── GetAttrNodeTest.php │ │ │ │ │ ├── NameNodeTest.php │ │ │ │ │ ├── NodeTest.php │ │ │ │ │ └── UnaryNodeTest.php │ │ │ │ ├── ParsedExpressionTest.php │ │ │ │ ├── ParserCache │ │ │ │ │ └── ParserCacheAdapterTest.php │ │ │ │ └── ParserTest.php │ │ │ ├── Token.php │ │ │ ├── TokenStream.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Filesystem │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Exception │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── FileNotFoundException.php │ │ │ │ ├── IOException.php │ │ │ │ └── IOExceptionInterface.php │ │ │ ├── Filesystem.php │ │ │ ├── LICENSE │ │ │ ├── LockHandler.php │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── ExceptionTest.php │ │ │ │ ├── FilesystemTest.php │ │ │ │ ├── FilesystemTestCase.php │ │ │ │ ├── Fixtures │ │ │ │ │ └── MockStream │ │ │ │ │ │ └── MockStream.php │ │ │ │ └── LockHandlerTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Finder │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Comparator │ │ │ │ ├── Comparator.php │ │ │ │ ├── DateComparator.php │ │ │ │ └── NumberComparator.php │ │ │ ├── Exception │ │ │ │ ├── AccessDeniedException.php │ │ │ │ └── ExceptionInterface.php │ │ │ ├── Finder.php │ │ │ ├── Glob.php │ │ │ ├── Iterator │ │ │ │ ├── CustomFilterIterator.php │ │ │ │ ├── DateRangeFilterIterator.php │ │ │ │ ├── DepthRangeFilterIterator.php │ │ │ │ ├── ExcludeDirectoryFilterIterator.php │ │ │ │ ├── FileTypeFilterIterator.php │ │ │ │ ├── FilecontentFilterIterator.php │ │ │ │ ├── FilenameFilterIterator.php │ │ │ │ ├── FilterIterator.php │ │ │ │ ├── MultiplePcreFilterIterator.php │ │ │ │ ├── PathFilterIterator.php │ │ │ │ ├── RecursiveDirectoryIterator.php │ │ │ │ ├── SizeRangeFilterIterator.php │ │ │ │ └── SortableIterator.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SplFileInfo.php │ │ │ ├── Tests │ │ │ │ ├── Comparator │ │ │ │ │ ├── ComparatorTest.php │ │ │ │ │ ├── DateComparatorTest.php │ │ │ │ │ └── NumberComparatorTest.php │ │ │ │ ├── FinderTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── .dot │ │ │ │ │ │ ├── a │ │ │ │ │ │ └── b │ │ │ │ │ │ │ ├── c.neon │ │ │ │ │ │ │ └── d.neon │ │ │ │ │ ├── A │ │ │ │ │ │ ├── B │ │ │ │ │ │ │ ├── C │ │ │ │ │ │ │ │ └── abc.dat │ │ │ │ │ │ │ └── ab.dat │ │ │ │ │ │ └── a.dat │ │ │ │ │ ├── copy │ │ │ │ │ │ └── A │ │ │ │ │ │ │ ├── B │ │ │ │ │ │ │ ├── C │ │ │ │ │ │ │ │ └── abc.dat.copy │ │ │ │ │ │ │ └── ab.dat.copy │ │ │ │ │ │ │ └── a.dat.copy │ │ │ │ │ ├── dolor.txt │ │ │ │ │ ├── ipsum.txt │ │ │ │ │ ├── lorem.txt │ │ │ │ │ ├── one │ │ │ │ │ │ ├── .dot │ │ │ │ │ │ ├── a │ │ │ │ │ │ └── b │ │ │ │ │ │ │ ├── c.neon │ │ │ │ │ │ │ └── d.neon │ │ │ │ │ ├── r+e.gex[c]a(r)s │ │ │ │ │ │ └── dir │ │ │ │ │ │ │ └── bar.dat │ │ │ │ │ └── with space │ │ │ │ │ │ └── foo.txt │ │ │ │ ├── GlobTest.php │ │ │ │ └── Iterator │ │ │ │ │ ├── CustomFilterIteratorTest.php │ │ │ │ │ ├── DateRangeFilterIteratorTest.php │ │ │ │ │ ├── DepthRangeFilterIteratorTest.php │ │ │ │ │ ├── ExcludeDirectoryFilterIteratorTest.php │ │ │ │ │ ├── FileTypeFilterIteratorTest.php │ │ │ │ │ ├── FilecontentFilterIteratorTest.php │ │ │ │ │ ├── FilenameFilterIteratorTest.php │ │ │ │ │ ├── FilterIteratorTest.php │ │ │ │ │ ├── Iterator.php │ │ │ │ │ ├── IteratorTestCase.php │ │ │ │ │ ├── MockFileListIterator.php │ │ │ │ │ ├── MockSplFileInfo.php │ │ │ │ │ ├── MultiplePcreFilterIteratorTest.php │ │ │ │ │ ├── PathFilterIteratorTest.php │ │ │ │ │ ├── RealIteratorTestCase.php │ │ │ │ │ ├── RecursiveDirectoryIteratorTest.php │ │ │ │ │ ├── SizeRangeFilterIteratorTest.php │ │ │ │ │ └── SortableIteratorTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Form │ │ │ ├── .gitignore │ │ │ ├── AbstractExtension.php │ │ │ ├── AbstractRendererEngine.php │ │ │ ├── AbstractType.php │ │ │ ├── AbstractTypeExtension.php │ │ │ ├── Button.php │ │ │ ├── ButtonBuilder.php │ │ │ ├── ButtonTypeInterface.php │ │ │ ├── CHANGELOG.md │ │ │ ├── CallbackTransformer.php │ │ │ ├── ChoiceList │ │ │ │ ├── ArrayChoiceList.php │ │ │ │ ├── ChoiceListInterface.php │ │ │ │ ├── Factory │ │ │ │ │ ├── CachingFactoryDecorator.php │ │ │ │ │ ├── ChoiceListFactoryInterface.php │ │ │ │ │ ├── DefaultChoiceListFactory.php │ │ │ │ │ └── PropertyAccessDecorator.php │ │ │ │ ├── LazyChoiceList.php │ │ │ │ ├── Loader │ │ │ │ │ ├── CallbackChoiceLoader.php │ │ │ │ │ └── ChoiceLoaderInterface.php │ │ │ │ └── View │ │ │ │ │ ├── ChoiceGroupView.php │ │ │ │ │ ├── ChoiceListView.php │ │ │ │ │ └── ChoiceView.php │ │ │ ├── ClickableInterface.php │ │ │ ├── Command │ │ │ │ └── DebugCommand.php │ │ │ ├── Console │ │ │ │ ├── Descriptor │ │ │ │ │ ├── Descriptor.php │ │ │ │ │ ├── JsonDescriptor.php │ │ │ │ │ └── TextDescriptor.php │ │ │ │ └── Helper │ │ │ │ │ └── DescriptorHelper.php │ │ │ ├── DataMapperInterface.php │ │ │ ├── DataTransformerInterface.php │ │ │ ├── DependencyInjection │ │ │ │ └── FormPass.php │ │ │ ├── Exception │ │ │ │ ├── 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 │ │ │ │ │ ├── DataMapper │ │ │ │ │ │ ├── CheckboxListMapper.php │ │ │ │ │ │ ├── PropertyPathMapper.php │ │ │ │ │ │ └── RadioListMapper.php │ │ │ │ │ ├── DataTransformer │ │ │ │ │ │ ├── ArrayToPartsTransformer.php │ │ │ │ │ │ ├── BaseDateTimeTransformer.php │ │ │ │ │ │ ├── BooleanToStringTransformer.php │ │ │ │ │ │ ├── ChoiceToValueTransformer.php │ │ │ │ │ │ ├── ChoicesToValuesTransformer.php │ │ │ │ │ │ ├── DataTransformerChain.php │ │ │ │ │ │ ├── DateIntervalToArrayTransformer.php │ │ │ │ │ │ ├── DateIntervalToStringTransformer.php │ │ │ │ │ │ ├── DateTimeToArrayTransformer.php │ │ │ │ │ │ ├── DateTimeToHtml5LocalDateTimeTransformer.php │ │ │ │ │ │ ├── DateTimeToLocalizedStringTransformer.php │ │ │ │ │ │ ├── DateTimeToRfc3339Transformer.php │ │ │ │ │ │ ├── DateTimeToStringTransformer.php │ │ │ │ │ │ ├── DateTimeToTimestampTransformer.php │ │ │ │ │ │ ├── DateTimeZoneToStringTransformer.php │ │ │ │ │ │ ├── IntegerToLocalizedStringTransformer.php │ │ │ │ │ │ ├── MoneyToLocalizedStringTransformer.php │ │ │ │ │ │ ├── NumberToLocalizedStringTransformer.php │ │ │ │ │ │ ├── PercentToLocalizedStringTransformer.php │ │ │ │ │ │ └── ValueToDuplicatesTransformer.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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ └── UrlType.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 │ │ │ │ ├── Templating │ │ │ │ │ ├── TemplatingExtension.php │ │ │ │ │ └── TemplatingRendererEngine.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 │ │ │ ├── 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.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.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.tl.xlf │ │ │ │ │ ├── validators.tr.xlf │ │ │ │ │ ├── validators.uk.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 │ │ │ │ ├── ForwardCompatTestTrait.php │ │ │ │ ├── Traits │ │ │ │ │ └── ValidatorExtensionTrait.php │ │ │ │ └── TypeTestCase.php │ │ │ ├── Tests │ │ │ │ ├── AbstractDivLayoutTest.php │ │ │ │ ├── AbstractExtensionTest.php │ │ │ │ ├── AbstractFormTest.php │ │ │ │ ├── AbstractLayoutTest.php │ │ │ │ ├── AbstractRequestHandlerTest.php │ │ │ │ ├── AbstractTableLayoutTest.php │ │ │ │ ├── ButtonBuilderTest.php │ │ │ │ ├── ButtonTest.php │ │ │ │ ├── CallbackTransformerTest.php │ │ │ │ ├── ChoiceList │ │ │ │ │ ├── AbstractChoiceListTest.php │ │ │ │ │ ├── ArrayChoiceListTest.php │ │ │ │ │ ├── Factory │ │ │ │ │ │ ├── CachingFactoryDecoratorTest.php │ │ │ │ │ │ ├── DefaultChoiceListFactoryTest.php │ │ │ │ │ │ └── PropertyAccessDecoratorTest.php │ │ │ │ │ ├── LazyChoiceListTest.php │ │ │ │ │ └── Loader │ │ │ │ │ │ └── CallbackChoiceLoaderTest.php │ │ │ │ ├── Command │ │ │ │ │ └── DebugCommandTest.php │ │ │ │ ├── CompoundFormPerformanceTest.php │ │ │ │ ├── CompoundFormTest.php │ │ │ │ ├── Console │ │ │ │ │ └── Descriptor │ │ │ │ │ │ ├── AbstractDescriptorTest.php │ │ │ │ │ │ ├── JsonDescriptorTest.php │ │ │ │ │ │ └── TextDescriptorTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── FormPassTest.php │ │ │ │ ├── Extension │ │ │ │ │ ├── Core │ │ │ │ │ │ ├── CoreExtensionTest.php │ │ │ │ │ │ ├── DataMapper │ │ │ │ │ │ │ └── PropertyPathMapperTest.php │ │ │ │ │ │ ├── DataTransformer │ │ │ │ │ │ │ ├── ArrayToPartsTransformerTest.php │ │ │ │ │ │ │ ├── BaseDateTimeTransformerTest.php │ │ │ │ │ │ │ ├── BooleanToStringTransformerTest.php │ │ │ │ │ │ │ ├── ChoiceToValueTransformerTest.php │ │ │ │ │ │ │ ├── ChoicesToValuesTransformerTest.php │ │ │ │ │ │ │ ├── DataTransformerChainTest.php │ │ │ │ │ │ │ ├── DateIntervalTestCase.php │ │ │ │ │ │ │ ├── DateIntervalToArrayTransformerTest.php │ │ │ │ │ │ │ ├── DateIntervalToStringTransformerTest.php │ │ │ │ │ │ │ ├── DateTimeToArrayTransformerTest.php │ │ │ │ │ │ │ ├── DateTimeToHtml5LocalDateTimeTransformerTest.php │ │ │ │ │ │ │ ├── DateTimeToLocalizedStringTransformerTest.php │ │ │ │ │ │ │ ├── DateTimeToRfc3339TransformerTest.php │ │ │ │ │ │ │ ├── DateTimeToStringTransformerTest.php │ │ │ │ │ │ │ ├── DateTimeToTimestampTransformerTest.php │ │ │ │ │ │ │ ├── DateTimeZoneToStringTransformerTest.php │ │ │ │ │ │ │ ├── IntegerToLocalizedStringTransformerTest.php │ │ │ │ │ │ │ ├── MoneyToLocalizedStringTransformerTest.php │ │ │ │ │ │ │ ├── NumberToLocalizedStringTransformerTest.php │ │ │ │ │ │ │ ├── PercentToLocalizedStringTransformerTest.php │ │ │ │ │ │ │ ├── Traits │ │ │ │ │ │ │ │ └── DateTimeEqualsTrait.php │ │ │ │ │ │ │ └── ValueToDuplicatesTransformerTest.php │ │ │ │ │ │ ├── EventListener │ │ │ │ │ │ │ ├── FixUrlProtocolListenerTest.php │ │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ │ │ └── randomhash │ │ │ │ │ │ │ ├── MergeCollectionListenerArrayObjectTest.php │ │ │ │ │ │ │ ├── MergeCollectionListenerArrayTest.php │ │ │ │ │ │ │ ├── MergeCollectionListenerCustomArrayObjectTest.php │ │ │ │ │ │ │ ├── MergeCollectionListenerTest.php │ │ │ │ │ │ │ ├── ResizeFormListenerTest.php │ │ │ │ │ │ │ └── TrimListenerTest.php │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ ├── BaseTypeTest.php │ │ │ │ │ │ │ ├── BirthdayTypeTest.php │ │ │ │ │ │ │ ├── ButtonTypeTest.php │ │ │ │ │ │ │ ├── CheckboxTypeTest.php │ │ │ │ │ │ │ ├── ChoiceTypePerformanceTest.php │ │ │ │ │ │ │ ├── ChoiceTypeTest.php │ │ │ │ │ │ │ ├── CollectionTypeTest.php │ │ │ │ │ │ │ ├── CountryTypeTest.php │ │ │ │ │ │ │ ├── CurrencyTypeTest.php │ │ │ │ │ │ │ ├── DateIntervalTypeTest.php │ │ │ │ │ │ │ ├── DateTimeTypeTest.php │ │ │ │ │ │ │ ├── DateTypeTest.php │ │ │ │ │ │ │ ├── ExtendedChoiceTypeTest.php │ │ │ │ │ │ │ ├── FileTypeTest.php │ │ │ │ │ │ │ ├── FormTypeTest.php │ │ │ │ │ │ │ ├── IntegerTypeTest.php │ │ │ │ │ │ │ ├── LanguageTypeTest.php │ │ │ │ │ │ │ ├── LocaleTypeTest.php │ │ │ │ │ │ │ ├── MoneyTypeTest.php │ │ │ │ │ │ │ ├── NumberTypeTest.php │ │ │ │ │ │ │ ├── PasswordTypeTest.php │ │ │ │ │ │ │ ├── RepeatedTypeTest.php │ │ │ │ │ │ │ ├── SubmitTypeTest.php │ │ │ │ │ │ │ ├── TextTypeTest.php │ │ │ │ │ │ │ ├── TimeTypeTest.php │ │ │ │ │ │ │ ├── TimezoneTypeTest.php │ │ │ │ │ │ │ └── UrlTypeTest.php │ │ │ │ │ ├── Csrf │ │ │ │ │ │ ├── EventListener │ │ │ │ │ │ │ └── CsrfValidationListenerTest.php │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ └── FormTypeCsrfExtensionTest.php │ │ │ │ │ ├── DataCollector │ │ │ │ │ │ ├── DataCollectorExtensionTest.php │ │ │ │ │ │ ├── FormDataCollectorTest.php │ │ │ │ │ │ ├── FormDataExtractorTest.php │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ └── DataCollectorTypeExtensionTest.php │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ └── DependencyInjectionExtensionTest.php │ │ │ │ │ ├── HttpFoundation │ │ │ │ │ │ └── HttpFoundationRequestHandlerTest.php │ │ │ │ │ └── Validator │ │ │ │ │ │ ├── Constraints │ │ │ │ │ │ ├── FormValidatorFunctionalTest.php │ │ │ │ │ │ ├── FormValidatorPerformanceTest.php │ │ │ │ │ │ └── FormValidatorTest.php │ │ │ │ │ │ ├── EventListener │ │ │ │ │ │ └── ValidationListenerTest.php │ │ │ │ │ │ ├── Type │ │ │ │ │ │ ├── BaseValidatorExtensionTest.php │ │ │ │ │ │ ├── FormTypeValidatorExtensionTest.php │ │ │ │ │ │ ├── SubmitTypeValidatorExtensionTest.php │ │ │ │ │ │ └── UploadValidatorExtensionTest.php │ │ │ │ │ │ ├── Util │ │ │ │ │ │ └── ServerParamsTest.php │ │ │ │ │ │ ├── ValidatorExtensionTest.php │ │ │ │ │ │ ├── ValidatorTypeGuesserTest.php │ │ │ │ │ │ └── ViolationMapper │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ └── Issue.php │ │ │ │ │ │ ├── ViolationMapperTest.php │ │ │ │ │ │ └── ViolationPathTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── AbstractAuthor.php │ │ │ │ │ ├── AlternatingRowType.php │ │ │ │ │ ├── Author.php │ │ │ │ │ ├── AuthorInterface.php │ │ │ │ │ ├── AuthorType.php │ │ │ │ │ ├── ChoiceSubType.php │ │ │ │ │ ├── ChoiceTypeExtension.php │ │ │ │ │ ├── CustomArrayObject.php │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ └── AmbiguousType.php │ │ │ │ │ │ └── B │ │ │ │ │ │ │ └── AmbiguousType.php │ │ │ │ │ ├── Descriptor │ │ │ │ │ │ ├── default_option_with_normalizer.json │ │ │ │ │ │ ├── default_option_with_normalizer.txt │ │ │ │ │ │ ├── defaults_1.json │ │ │ │ │ │ ├── defaults_1.txt │ │ │ │ │ │ ├── overridden_option_with_default_closures.json │ │ │ │ │ │ ├── overridden_option_with_default_closures.txt │ │ │ │ │ │ ├── required_option_with_allowed_values.json │ │ │ │ │ │ ├── required_option_with_allowed_values.txt │ │ │ │ │ │ ├── resolved_form_type_1.json │ │ │ │ │ │ ├── resolved_form_type_1.txt │ │ │ │ │ │ ├── resolved_form_type_2.json │ │ │ │ │ │ └── resolved_form_type_2.txt │ │ │ │ │ ├── FBooType.php │ │ │ │ │ ├── FixedDataTransformer.php │ │ │ │ │ ├── FixedFilterListener.php │ │ │ │ │ ├── Foo.php │ │ │ │ │ ├── Foo1Bar2Type.php │ │ │ │ │ ├── FooBarHTMLType.php │ │ │ │ │ ├── FooSubType.php │ │ │ │ │ ├── FooType.php │ │ │ │ │ ├── FooTypeBarExtension.php │ │ │ │ │ ├── FooTypeBazExtension.php │ │ │ │ │ ├── FormWithSameParentType.php │ │ │ │ │ ├── LazyChoiceTypeExtension.php │ │ │ │ │ ├── NotMappedType.php │ │ │ │ │ ├── RecursiveFormTypeBar.php │ │ │ │ │ ├── RecursiveFormTypeBaz.php │ │ │ │ │ ├── RecursiveFormTypeFoo.php │ │ │ │ │ ├── TestExtension.php │ │ │ │ │ ├── Type.php │ │ │ │ │ ├── TypehintedPropertiesCar.php │ │ │ │ │ ├── foo │ │ │ │ │ ├── foo2 │ │ │ │ │ └── foo3 │ │ │ │ ├── FormBuilderTest.php │ │ │ │ ├── FormConfigTest.php │ │ │ │ ├── FormErrorIteratorTest.php │ │ │ │ ├── FormFactoryBuilderTest.php │ │ │ │ ├── FormFactoryTest.php │ │ │ │ ├── FormRegistryTest.php │ │ │ │ ├── FormRendererTest.php │ │ │ │ ├── Guess │ │ │ │ │ └── GuessTest.php │ │ │ │ ├── NativeRequestHandlerTest.php │ │ │ │ ├── ResolvedFormTypeTest.php │ │ │ │ ├── Resources │ │ │ │ │ └── TranslationFilesTest.php │ │ │ │ ├── SimpleFormTest.php │ │ │ │ ├── Util │ │ │ │ │ ├── OrderedHashMapTest.php │ │ │ │ │ └── StringUtilTest.php │ │ │ │ └── VersionAwareTest.php │ │ │ ├── Util │ │ │ │ ├── FormUtil.php │ │ │ │ ├── InheritDataAwareIterator.php │ │ │ │ ├── OptionsResolverWrapper.php │ │ │ │ ├── OrderedHashMap.php │ │ │ │ ├── OrderedHashMapIterator.php │ │ │ │ ├── ServerParams.php │ │ │ │ └── StringUtil.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── HttpFoundation │ │ │ ├── .gitignore │ │ │ ├── AcceptHeader.php │ │ │ ├── AcceptHeaderItem.php │ │ │ ├── ApacheRequest.php │ │ │ ├── BinaryFileResponse.php │ │ │ ├── CHANGELOG.md │ │ │ ├── Cookie.php │ │ │ ├── Exception │ │ │ │ ├── ConflictingHeadersException.php │ │ │ │ ├── RequestExceptionInterface.php │ │ │ │ └── SuspiciousOperationException.php │ │ │ ├── ExpressionRequestMatcher.php │ │ │ ├── File │ │ │ │ ├── Exception │ │ │ │ │ ├── AccessDeniedException.php │ │ │ │ │ ├── FileException.php │ │ │ │ │ ├── FileNotFoundException.php │ │ │ │ │ ├── UnexpectedTypeException.php │ │ │ │ │ └── UploadException.php │ │ │ │ ├── File.php │ │ │ │ ├── MimeType │ │ │ │ │ ├── ExtensionGuesser.php │ │ │ │ │ ├── ExtensionGuesserInterface.php │ │ │ │ │ ├── FileBinaryMimeTypeGuesser.php │ │ │ │ │ ├── FileinfoMimeTypeGuesser.php │ │ │ │ │ ├── MimeTypeExtensionGuesser.php │ │ │ │ │ ├── MimeTypeGuesser.php │ │ │ │ │ └── MimeTypeGuesserInterface.php │ │ │ │ ├── Stream.php │ │ │ │ └── UploadedFile.php │ │ │ ├── FileBag.php │ │ │ ├── HeaderBag.php │ │ │ ├── IpUtils.php │ │ │ ├── JsonResponse.php │ │ │ ├── LICENSE │ │ │ ├── ParameterBag.php │ │ │ ├── README.md │ │ │ ├── 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 │ │ │ │ ├── SessionInterface.php │ │ │ │ ├── SessionUtils.php │ │ │ │ └── Storage │ │ │ │ │ ├── Handler │ │ │ │ │ ├── AbstractSessionHandler.php │ │ │ │ │ ├── MemcacheSessionHandler.php │ │ │ │ │ ├── MemcachedSessionHandler.php │ │ │ │ │ ├── MongoDbSessionHandler.php │ │ │ │ │ ├── NativeFileSessionHandler.php │ │ │ │ │ ├── NativeSessionHandler.php │ │ │ │ │ ├── NullSessionHandler.php │ │ │ │ │ ├── PdoSessionHandler.php │ │ │ │ │ ├── StrictSessionHandler.php │ │ │ │ │ └── WriteCheckSessionHandler.php │ │ │ │ │ ├── MetadataBag.php │ │ │ │ │ ├── MockArraySessionStorage.php │ │ │ │ │ ├── MockFileSessionStorage.php │ │ │ │ │ ├── NativeSessionStorage.php │ │ │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ │ │ ├── Proxy │ │ │ │ │ ├── AbstractProxy.php │ │ │ │ │ ├── NativeProxy.php │ │ │ │ │ └── SessionHandlerProxy.php │ │ │ │ │ └── SessionStorageInterface.php │ │ │ ├── StreamedResponse.php │ │ │ ├── Tests │ │ │ │ ├── AcceptHeaderItemTest.php │ │ │ │ ├── AcceptHeaderTest.php │ │ │ │ ├── ApacheRequestTest.php │ │ │ │ ├── BinaryFileResponseTest.php │ │ │ │ ├── CookieTest.php │ │ │ │ ├── ExpressionRequestMatcherTest.php │ │ │ │ ├── File │ │ │ │ │ ├── FakeFile.php │ │ │ │ │ ├── FileTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── -test │ │ │ │ │ │ ├── .unknownextension │ │ │ │ │ │ ├── case-sensitive-mime-type.xlsm │ │ │ │ │ │ ├── directory │ │ │ │ │ │ │ └── .empty │ │ │ │ │ │ ├── other-file.example │ │ │ │ │ │ ├── test │ │ │ │ │ │ ├── test.docx │ │ │ │ │ │ └── test.gif │ │ │ │ │ ├── MimeType │ │ │ │ │ │ └── MimeTypeTest.php │ │ │ │ │ └── UploadedFileTest.php │ │ │ │ ├── FileBagTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ └── response-functional │ │ │ │ │ │ ├── common.inc │ │ │ │ │ │ ├── cookie_max_age.expected │ │ │ │ │ │ ├── cookie_max_age.php │ │ │ │ │ │ ├── cookie_raw_urlencode.expected │ │ │ │ │ │ ├── cookie_raw_urlencode.php │ │ │ │ │ │ ├── cookie_samesite_lax.expected │ │ │ │ │ │ ├── cookie_samesite_lax.php │ │ │ │ │ │ ├── cookie_samesite_strict.expected │ │ │ │ │ │ ├── cookie_samesite_strict.php │ │ │ │ │ │ ├── cookie_urlencode.expected │ │ │ │ │ │ ├── cookie_urlencode.php │ │ │ │ │ │ ├── invalid_cookie_name.expected │ │ │ │ │ │ └── invalid_cookie_name.php │ │ │ │ ├── HeaderBagTest.php │ │ │ │ ├── IpUtilsTest.php │ │ │ │ ├── JsonResponseTest.php │ │ │ │ ├── ParameterBagTest.php │ │ │ │ ├── RedirectResponseTest.php │ │ │ │ ├── RequestMatcherTest.php │ │ │ │ ├── RequestStackTest.php │ │ │ │ ├── RequestTest.php │ │ │ │ ├── ResponseFunctionalTest.php │ │ │ │ ├── ResponseHeaderBagTest.php │ │ │ │ ├── ResponseTest.php │ │ │ │ ├── ResponseTestCase.php │ │ │ │ ├── ServerBagTest.php │ │ │ │ ├── Session │ │ │ │ │ ├── Attribute │ │ │ │ │ │ ├── AttributeBagTest.php │ │ │ │ │ │ └── NamespacedAttributeBagTest.php │ │ │ │ │ ├── Flash │ │ │ │ │ │ ├── AutoExpireFlashBagTest.php │ │ │ │ │ │ └── FlashBagTest.php │ │ │ │ │ ├── SessionTest.php │ │ │ │ │ └── Storage │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ ├── AbstractSessionHandlerTest.php │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ │ ├── common.inc │ │ │ │ │ │ │ ├── empty_destroys.expected │ │ │ │ │ │ │ ├── empty_destroys.php │ │ │ │ │ │ │ ├── read_only.expected │ │ │ │ │ │ │ ├── read_only.php │ │ │ │ │ │ │ ├── regenerate.expected │ │ │ │ │ │ │ ├── regenerate.php │ │ │ │ │ │ │ ├── storage.expected │ │ │ │ │ │ │ ├── storage.php │ │ │ │ │ │ │ ├── with_cookie.expected │ │ │ │ │ │ │ ├── with_cookie.php │ │ │ │ │ │ │ ├── with_cookie_and_session.expected │ │ │ │ │ │ │ ├── with_cookie_and_session.php │ │ │ │ │ │ │ ├── with_samesite.expected │ │ │ │ │ │ │ ├── with_samesite.php │ │ │ │ │ │ │ ├── with_samesite_and_migration.expected │ │ │ │ │ │ │ └── with_samesite_and_migration.php │ │ │ │ │ │ ├── MemcacheSessionHandlerTest.php │ │ │ │ │ │ ├── MemcachedSessionHandlerTest.php │ │ │ │ │ │ ├── MongoDbSessionHandlerTest.php │ │ │ │ │ │ ├── NativeFileSessionHandlerTest.php │ │ │ │ │ │ ├── NativeSessionHandlerTest.php │ │ │ │ │ │ ├── NullSessionHandlerTest.php │ │ │ │ │ │ ├── PdoSessionHandlerTest.php │ │ │ │ │ │ ├── StrictSessionHandlerTest.php │ │ │ │ │ │ └── WriteCheckSessionHandlerTest.php │ │ │ │ │ │ ├── MetadataBagTest.php │ │ │ │ │ │ ├── MockArraySessionStorageTest.php │ │ │ │ │ │ ├── MockFileSessionStorageTest.php │ │ │ │ │ │ ├── NativeSessionStorageTest.php │ │ │ │ │ │ ├── PhpBridgeSessionStorageTest.php │ │ │ │ │ │ └── Proxy │ │ │ │ │ │ ├── AbstractProxyTest.php │ │ │ │ │ │ ├── NativeProxyTest.php │ │ │ │ │ │ └── SessionHandlerProxyTest.php │ │ │ │ ├── StreamedResponseTest.php │ │ │ │ └── schema │ │ │ │ │ ├── http-status-codes.rng │ │ │ │ │ └── iana-registry.rng │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── HttpKernel │ │ │ ├── .gitignore │ │ │ ├── Bundle │ │ │ │ ├── Bundle.php │ │ │ │ └── BundleInterface.php │ │ │ ├── CHANGELOG.md │ │ │ ├── CacheClearer │ │ │ │ ├── CacheClearerInterface.php │ │ │ │ ├── ChainCacheClearer.php │ │ │ │ └── Psr6CacheClearer.php │ │ │ ├── CacheWarmer │ │ │ │ ├── CacheWarmer.php │ │ │ │ ├── CacheWarmerAggregate.php │ │ │ │ ├── CacheWarmerInterface.php │ │ │ │ └── WarmableInterface.php │ │ │ ├── Client.php │ │ │ ├── Config │ │ │ │ ├── EnvParametersResource.php │ │ │ │ └── FileLocator.php │ │ │ ├── Controller │ │ │ │ ├── ArgumentResolver.php │ │ │ │ ├── ArgumentResolver │ │ │ │ │ ├── DefaultValueResolver.php │ │ │ │ │ ├── RequestAttributeValueResolver.php │ │ │ │ │ ├── RequestValueResolver.php │ │ │ │ │ ├── ServiceValueResolver.php │ │ │ │ │ ├── SessionValueResolver.php │ │ │ │ │ └── VariadicValueResolver.php │ │ │ │ ├── ArgumentResolverInterface.php │ │ │ │ ├── ArgumentValueResolverInterface.php │ │ │ │ ├── ContainerControllerResolver.php │ │ │ │ ├── ControllerReference.php │ │ │ │ ├── ControllerResolver.php │ │ │ │ ├── ControllerResolverInterface.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 │ │ │ │ └── Util │ │ │ │ │ └── ValueExporter.php │ │ │ ├── Debug │ │ │ │ ├── FileLinkFormatter.php │ │ │ │ └── TraceableEventDispatcher.php │ │ │ ├── DependencyInjection │ │ │ │ ├── AddAnnotatedClassesToCachePass.php │ │ │ │ ├── AddClassesToCachePass.php │ │ │ │ ├── ConfigurableExtension.php │ │ │ │ ├── ControllerArgumentValueResolverPass.php │ │ │ │ ├── Extension.php │ │ │ │ ├── FragmentRendererPass.php │ │ │ │ ├── LazyLoadingFragmentHandler.php │ │ │ │ ├── LoggerPass.php │ │ │ │ ├── MergeExtensionConfigurationPass.php │ │ │ │ ├── RegisterControllerArgumentLocatorsPass.php │ │ │ │ ├── RemoveEmptyControllerArgumentLocatorsPass.php │ │ │ │ ├── ResettableServicePass.php │ │ │ │ └── ServicesResetter.php │ │ │ ├── Event │ │ │ │ ├── FilterControllerArgumentsEvent.php │ │ │ │ ├── FilterControllerEvent.php │ │ │ │ ├── FilterResponseEvent.php │ │ │ │ ├── FinishRequestEvent.php │ │ │ │ ├── GetResponseEvent.php │ │ │ │ ├── GetResponseForControllerResultEvent.php │ │ │ │ ├── GetResponseForExceptionEvent.php │ │ │ │ ├── KernelEvent.php │ │ │ │ └── PostResponseEvent.php │ │ │ ├── EventListener │ │ │ │ ├── AbstractSessionListener.php │ │ │ │ ├── AbstractTestSessionListener.php │ │ │ │ ├── AddRequestFormatsListener.php │ │ │ │ ├── DebugHandlersListener.php │ │ │ │ ├── DumpListener.php │ │ │ │ ├── ExceptionListener.php │ │ │ │ ├── FragmentListener.php │ │ │ │ ├── LocaleListener.php │ │ │ │ ├── ProfilerListener.php │ │ │ │ ├── ResponseListener.php │ │ │ │ ├── RouterListener.php │ │ │ │ ├── SaveSessionListener.php │ │ │ │ ├── SessionListener.php │ │ │ │ ├── StreamedResponseListener.php │ │ │ │ ├── SurrogateListener.php │ │ │ │ ├── TestSessionListener.php │ │ │ │ ├── TranslatorListener.php │ │ │ │ └── ValidateRequestListener.php │ │ │ ├── Exception │ │ │ │ ├── AccessDeniedHttpException.php │ │ │ │ ├── BadRequestHttpException.php │ │ │ │ ├── ConflictHttpException.php │ │ │ │ ├── GoneHttpException.php │ │ │ │ ├── HttpException.php │ │ │ │ ├── HttpExceptionInterface.php │ │ │ │ ├── LengthRequiredHttpException.php │ │ │ │ ├── MethodNotAllowedHttpException.php │ │ │ │ ├── NotAcceptableHttpException.php │ │ │ │ ├── NotFoundHttpException.php │ │ │ │ ├── PreconditionFailedHttpException.php │ │ │ │ ├── PreconditionRequiredHttpException.php │ │ │ │ ├── ServiceUnavailableHttpException.php │ │ │ │ ├── TooManyRequestsHttpException.php │ │ │ │ ├── UnauthorizedHttpException.php │ │ │ │ ├── UnprocessableEntityHttpException.php │ │ │ │ └── UnsupportedMediaTypeHttpException.php │ │ │ ├── Fragment │ │ │ │ ├── AbstractSurrogateFragmentRenderer.php │ │ │ │ ├── EsiFragmentRenderer.php │ │ │ │ ├── FragmentHandler.php │ │ │ │ ├── FragmentRendererInterface.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 │ │ │ ├── HttpKernel.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 │ │ │ ├── Tests │ │ │ │ ├── Bundle │ │ │ │ │ └── BundleTest.php │ │ │ │ ├── CacheClearer │ │ │ │ │ ├── ChainCacheClearerTest.php │ │ │ │ │ └── Psr6CacheClearerTest.php │ │ │ │ ├── CacheWarmer │ │ │ │ │ ├── CacheWarmerAggregateTest.php │ │ │ │ │ └── CacheWarmerTest.php │ │ │ │ ├── ClientTest.php │ │ │ │ ├── Config │ │ │ │ │ ├── EnvParametersResourceTest.php │ │ │ │ │ └── FileLocatorTest.php │ │ │ │ ├── Controller │ │ │ │ │ ├── ArgumentResolver │ │ │ │ │ │ └── ServiceValueResolverTest.php │ │ │ │ │ ├── ArgumentResolverTest.php │ │ │ │ │ ├── ContainerControllerResolverTest.php │ │ │ │ │ └── ControllerResolverTest.php │ │ │ │ ├── ControllerMetadata │ │ │ │ │ ├── ArgumentMetadataFactoryTest.php │ │ │ │ │ └── ArgumentMetadataTest.php │ │ │ │ ├── DataCollector │ │ │ │ │ ├── Compiler.log │ │ │ │ │ ├── ConfigDataCollectorTest.php │ │ │ │ │ ├── DataCollectorTest.php │ │ │ │ │ ├── DumpDataCollectorTest.php │ │ │ │ │ ├── ExceptionDataCollectorTest.php │ │ │ │ │ ├── LoggerDataCollectorTest.php │ │ │ │ │ ├── MemoryDataCollectorTest.php │ │ │ │ │ ├── RequestDataCollectorTest.php │ │ │ │ │ ├── TimeDataCollectorTest.php │ │ │ │ │ └── Util │ │ │ │ │ │ └── ValueExporterTest.php │ │ │ │ ├── Debug │ │ │ │ │ ├── FileLinkFormatterTest.php │ │ │ │ │ └── TraceableEventDispatcherTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ ├── AddAnnotatedClassesToCachePassTest.php │ │ │ │ │ ├── ControllerArgumentValueResolverPassTest.php │ │ │ │ │ ├── FragmentRendererPassTest.php │ │ │ │ │ ├── LazyLoadingFragmentHandlerTest.php │ │ │ │ │ ├── LoggerPassTest.php │ │ │ │ │ ├── MergeExtensionConfigurationPassTest.php │ │ │ │ │ ├── RegisterControllerArgumentLocatorsPassTest.php │ │ │ │ │ ├── RemoveEmptyControllerArgumentLocatorsPassTest.php │ │ │ │ │ ├── ResettableServicePassTest.php │ │ │ │ │ └── ServicesResetterTest.php │ │ │ │ ├── Event │ │ │ │ │ ├── FilterControllerArgumentsEventTest.php │ │ │ │ │ └── GetResponseForExceptionEventTest.php │ │ │ │ ├── EventListener │ │ │ │ │ ├── AddRequestFormatsListenerTest.php │ │ │ │ │ ├── DebugHandlersListenerTest.php │ │ │ │ │ ├── DumpListenerTest.php │ │ │ │ │ ├── ExceptionListenerTest.php │ │ │ │ │ ├── FragmentListenerTest.php │ │ │ │ │ ├── LocaleListenerTest.php │ │ │ │ │ ├── ProfilerListenerTest.php │ │ │ │ │ ├── ResponseListenerTest.php │ │ │ │ │ ├── RouterListenerTest.php │ │ │ │ │ ├── SaveSessionListenerTest.php │ │ │ │ │ ├── SessionListenerTest.php │ │ │ │ │ ├── SurrogateListenerTest.php │ │ │ │ │ ├── TestSessionListenerTest.php │ │ │ │ │ ├── TranslatorListenerTest.php │ │ │ │ │ └── ValidateRequestListenerTest.php │ │ │ │ ├── Exception │ │ │ │ │ ├── AccessDeniedHttpExceptionTest.php │ │ │ │ │ ├── BadRequestHttpExceptionTest.php │ │ │ │ │ ├── ConflictHttpExceptionTest.php │ │ │ │ │ ├── GoneHttpExceptionTest.php │ │ │ │ │ ├── HttpExceptionTest.php │ │ │ │ │ ├── LengthRequiredHttpExceptionTest.php │ │ │ │ │ ├── MethodNotAllowedHttpExceptionTest.php │ │ │ │ │ ├── NotAcceptableHttpExceptionTest.php │ │ │ │ │ ├── NotFoundHttpExceptionTest.php │ │ │ │ │ ├── PreconditionFailedHttpExceptionTest.php │ │ │ │ │ ├── PreconditionRequiredHttpExceptionTest.php │ │ │ │ │ ├── ServiceUnavailableHttpExceptionTest.php │ │ │ │ │ ├── TooManyRequestsHttpExceptionTest.php │ │ │ │ │ ├── UnauthorizedHttpExceptionTest.php │ │ │ │ │ ├── UnprocessableEntityHttpExceptionTest.php │ │ │ │ │ └── UnsupportedMediaTypeHttpExceptionTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── 123 │ │ │ │ │ │ └── Kernel123.php │ │ │ │ │ ├── BaseBundle │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── foo.txt │ │ │ │ │ │ │ └── hide.txt │ │ │ │ │ ├── Bundle1Bundle │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ ├── bar.txt │ │ │ │ │ │ └── foo.txt │ │ │ │ │ ├── Bundle2Bundle │ │ │ │ │ │ └── foo.txt │ │ │ │ │ ├── ChildBundle │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ ├── foo.txt │ │ │ │ │ │ │ └── hide.txt │ │ │ │ │ ├── ClearableService.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── BasicTypesController.php │ │ │ │ │ │ ├── ExtendingRequest.php │ │ │ │ │ │ ├── ExtendingSession.php │ │ │ │ │ │ ├── LegacyNullableController.php │ │ │ │ │ │ ├── NullableController.php │ │ │ │ │ │ └── VariadicController.php │ │ │ │ │ ├── DataCollector │ │ │ │ │ │ └── CloneVarDataCollector.php │ │ │ │ │ ├── ExtensionAbsentBundle │ │ │ │ │ │ └── ExtensionAbsentBundle.php │ │ │ │ │ ├── ExtensionNotValidBundle │ │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ │ └── ExtensionNotValidExtension.php │ │ │ │ │ │ └── ExtensionNotValidBundle.php │ │ │ │ │ ├── ExtensionPresentBundle │ │ │ │ │ │ ├── Command │ │ │ │ │ │ │ └── FooCommand.php │ │ │ │ │ │ ├── DependencyInjection │ │ │ │ │ │ │ └── ExtensionPresentExtension.php │ │ │ │ │ │ └── ExtensionPresentBundle.php │ │ │ │ │ ├── KernelForOverrideName.php │ │ │ │ │ ├── KernelForTest.php │ │ │ │ │ ├── KernelWithoutBundles.php │ │ │ │ │ ├── ResettableService.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── BaseBundle │ │ │ │ │ │ │ └── hide.txt │ │ │ │ │ │ ├── Bundle1Bundle │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ ├── ChildBundle │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ │ └── FooBundle │ │ │ │ │ │ │ └── foo.txt │ │ │ │ │ └── TestClient.php │ │ │ │ ├── Fragment │ │ │ │ │ ├── EsiFragmentRendererTest.php │ │ │ │ │ ├── FragmentHandlerTest.php │ │ │ │ │ ├── HIncludeFragmentRendererTest.php │ │ │ │ │ ├── InlineFragmentRendererTest.php │ │ │ │ │ ├── RoutableFragmentRendererTest.php │ │ │ │ │ └── SsiFragmentRendererTest.php │ │ │ │ ├── HttpCache │ │ │ │ │ ├── EsiTest.php │ │ │ │ │ ├── HttpCacheTest.php │ │ │ │ │ ├── HttpCacheTestCase.php │ │ │ │ │ ├── ResponseCacheStrategyTest.php │ │ │ │ │ ├── SsiTest.php │ │ │ │ │ ├── StoreTest.php │ │ │ │ │ ├── SubRequestHandlerTest.php │ │ │ │ │ ├── TestHttpKernel.php │ │ │ │ │ └── TestMultipleHttpKernel.php │ │ │ │ ├── HttpKernelTest.php │ │ │ │ ├── KernelTest.php │ │ │ │ ├── Log │ │ │ │ │ └── LoggerTest.php │ │ │ │ ├── Logger.php │ │ │ │ ├── Profiler │ │ │ │ │ ├── FileProfilerStorageTest.php │ │ │ │ │ └── ProfilerTest.php │ │ │ │ ├── TestHttpKernel.php │ │ │ │ └── UriSignerTest.php │ │ │ ├── UriSigner.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Inflector │ │ │ ├── .gitignore │ │ │ ├── Inflector.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ └── InflectorTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Intl │ │ │ ├── .gitignore │ │ │ ├── Collator │ │ │ │ └── Collator.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 │ │ │ │ ├── Provider │ │ │ │ │ ├── CurrencyDataProvider.php │ │ │ │ │ ├── LanguageDataProvider.php │ │ │ │ │ ├── LocaleDataProvider.php │ │ │ │ │ ├── RegionDataProvider.php │ │ │ │ │ └── ScriptDataProvider.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 │ │ │ ├── Locale.php │ │ │ ├── Locale │ │ │ │ └── Locale.php │ │ │ ├── NumberFormatter │ │ │ │ └── NumberFormatter.php │ │ │ ├── README.md │ │ │ ├── ResourceBundle │ │ │ │ ├── CurrencyBundle.php │ │ │ │ ├── CurrencyBundleInterface.php │ │ │ │ ├── LanguageBundle.php │ │ │ │ ├── LanguageBundleInterface.php │ │ │ │ ├── LocaleBundle.php │ │ │ │ ├── LocaleBundleInterface.php │ │ │ │ ├── RegionBundle.php │ │ │ │ ├── RegionBundleInterface.php │ │ │ │ └── ResourceBundleInterface.php │ │ │ ├── Resources │ │ │ │ ├── bin │ │ │ │ │ ├── autoload.php │ │ │ │ │ ├── common.php │ │ │ │ │ ├── compile │ │ │ │ │ └── update-data.php │ │ │ │ ├── data │ │ │ │ │ ├── currencies │ │ │ │ │ │ ├── af.json │ │ │ │ │ │ ├── af_NA.json │ │ │ │ │ │ ├── ak.json │ │ │ │ │ │ ├── am.json │ │ │ │ │ │ ├── ar.json │ │ │ │ │ │ ├── ar_DJ.json │ │ │ │ │ │ ├── ar_ER.json │ │ │ │ │ │ ├── ar_KM.json │ │ │ │ │ │ ├── ar_LB.json │ │ │ │ │ │ ├── ar_SO.json │ │ │ │ │ │ ├── ar_SS.json │ │ │ │ │ │ ├── as.json │ │ │ │ │ │ ├── az.json │ │ │ │ │ │ ├── az_Cyrl.json │ │ │ │ │ │ ├── be.json │ │ │ │ │ │ ├── bg.json │ │ │ │ │ │ ├── bm.json │ │ │ │ │ │ ├── bn.json │ │ │ │ │ │ ├── bo.json │ │ │ │ │ │ ├── bo_IN.json │ │ │ │ │ │ ├── br.json │ │ │ │ │ │ ├── bs.json │ │ │ │ │ │ ├── bs_Cyrl.json │ │ │ │ │ │ ├── ca.json │ │ │ │ │ │ ├── ca_FR.json │ │ │ │ │ │ ├── ce.json │ │ │ │ │ │ ├── cs.json │ │ │ │ │ │ ├── cy.json │ │ │ │ │ │ ├── da.json │ │ │ │ │ │ ├── de.json │ │ │ │ │ │ ├── de_CH.json │ │ │ │ │ │ ├── de_LI.json │ │ │ │ │ │ ├── de_LU.json │ │ │ │ │ │ ├── dz.json │ │ │ │ │ │ ├── ee.json │ │ │ │ │ │ ├── el.json │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ ├── en_001.json │ │ │ │ │ │ ├── en_150.json │ │ │ │ │ │ ├── en_AE.json │ │ │ │ │ │ ├── en_AG.json │ │ │ │ │ │ ├── en_AI.json │ │ │ │ │ │ ├── en_AU.json │ │ │ │ │ │ ├── en_BB.json │ │ │ │ │ │ ├── en_BI.json │ │ │ │ │ │ ├── en_BM.json │ │ │ │ │ │ ├── en_BS.json │ │ │ │ │ │ ├── en_BW.json │ │ │ │ │ │ ├── en_BZ.json │ │ │ │ │ │ ├── en_CA.json │ │ │ │ │ │ ├── en_CC.json │ │ │ │ │ │ ├── en_CK.json │ │ │ │ │ │ ├── en_CX.json │ │ │ │ │ │ ├── en_DK.json │ │ │ │ │ │ ├── en_DM.json │ │ │ │ │ │ ├── en_ER.json │ │ │ │ │ │ ├── en_FJ.json │ │ │ │ │ │ ├── en_FK.json │ │ │ │ │ │ ├── en_GD.json │ │ │ │ │ │ ├── en_GG.json │ │ │ │ │ │ ├── en_GH.json │ │ │ │ │ │ ├── en_GI.json │ │ │ │ │ │ ├── en_GM.json │ │ │ │ │ │ ├── en_GY.json │ │ │ │ │ │ ├── en_IM.json │ │ │ │ │ │ ├── en_IN.json │ │ │ │ │ │ ├── en_JE.json │ │ │ │ │ │ ├── en_JM.json │ │ │ │ │ │ ├── en_KE.json │ │ │ │ │ │ ├── en_KI.json │ │ │ │ │ │ ├── en_KN.json │ │ │ │ │ │ ├── en_KY.json │ │ │ │ │ │ ├── en_LC.json │ │ │ │ │ │ ├── en_LR.json │ │ │ │ │ │ ├── en_LS.json │ │ │ │ │ │ ├── en_MG.json │ │ │ │ │ │ ├── en_MO.json │ │ │ │ │ │ ├── en_MS.json │ │ │ │ │ │ ├── en_MT.json │ │ │ │ │ │ ├── en_MU.json │ │ │ │ │ │ ├── en_MW.json │ │ │ │ │ │ ├── en_MY.json │ │ │ │ │ │ ├── en_NA.json │ │ │ │ │ │ ├── en_NF.json │ │ │ │ │ │ ├── en_NG.json │ │ │ │ │ │ ├── en_NH.json │ │ │ │ │ │ ├── en_NR.json │ │ │ │ │ │ ├── en_NU.json │ │ │ │ │ │ ├── en_NZ.json │ │ │ │ │ │ ├── en_PG.json │ │ │ │ │ │ ├── en_PH.json │ │ │ │ │ │ ├── en_PK.json │ │ │ │ │ │ ├── en_PN.json │ │ │ │ │ │ ├── en_RW.json │ │ │ │ │ │ ├── en_SB.json │ │ │ │ │ │ ├── en_SC.json │ │ │ │ │ │ ├── en_SE.json │ │ │ │ │ │ ├── en_SG.json │ │ │ │ │ │ ├── en_SH.json │ │ │ │ │ │ ├── en_SL.json │ │ │ │ │ │ ├── en_SS.json │ │ │ │ │ │ ├── en_SX.json │ │ │ │ │ │ ├── en_SZ.json │ │ │ │ │ │ ├── en_TK.json │ │ │ │ │ │ ├── en_TO.json │ │ │ │ │ │ ├── en_TT.json │ │ │ │ │ │ ├── en_TV.json │ │ │ │ │ │ ├── en_TZ.json │ │ │ │ │ │ ├── en_UG.json │ │ │ │ │ │ ├── en_VC.json │ │ │ │ │ │ ├── en_VU.json │ │ │ │ │ │ ├── en_WS.json │ │ │ │ │ │ ├── en_ZA.json │ │ │ │ │ │ ├── en_ZM.json │ │ │ │ │ │ ├── es.json │ │ │ │ │ │ ├── es_419.json │ │ │ │ │ │ ├── es_AR.json │ │ │ │ │ │ ├── es_BO.json │ │ │ │ │ │ ├── es_BR.json │ │ │ │ │ │ ├── es_BZ.json │ │ │ │ │ │ ├── es_CL.json │ │ │ │ │ │ ├── es_CO.json │ │ │ │ │ │ ├── es_CR.json │ │ │ │ │ │ ├── es_CU.json │ │ │ │ │ │ ├── es_DO.json │ │ │ │ │ │ ├── es_EC.json │ │ │ │ │ │ ├── es_GQ.json │ │ │ │ │ │ ├── es_GT.json │ │ │ │ │ │ ├── es_HN.json │ │ │ │ │ │ ├── es_MX.json │ │ │ │ │ │ ├── es_NI.json │ │ │ │ │ │ ├── es_PA.json │ │ │ │ │ │ ├── es_PE.json │ │ │ │ │ │ ├── es_PH.json │ │ │ │ │ │ ├── es_PR.json │ │ │ │ │ │ ├── es_PY.json │ │ │ │ │ │ ├── es_SV.json │ │ │ │ │ │ ├── es_US.json │ │ │ │ │ │ ├── es_UY.json │ │ │ │ │ │ ├── es_VE.json │ │ │ │ │ │ ├── et.json │ │ │ │ │ │ ├── eu.json │ │ │ │ │ │ ├── fa.json │ │ │ │ │ │ ├── fa_AF.json │ │ │ │ │ │ ├── ff.json │ │ │ │ │ │ ├── ff_Adlm.json │ │ │ │ │ │ ├── ff_Adlm_BF.json │ │ │ │ │ │ ├── ff_Adlm_CM.json │ │ │ │ │ │ ├── ff_Adlm_GH.json │ │ │ │ │ │ ├── ff_Adlm_GM.json │ │ │ │ │ │ ├── ff_Adlm_GW.json │ │ │ │ │ │ ├── ff_Adlm_LR.json │ │ │ │ │ │ ├── ff_Adlm_MR.json │ │ │ │ │ │ ├── ff_Adlm_NE.json │ │ │ │ │ │ ├── ff_Adlm_NG.json │ │ │ │ │ │ ├── ff_Adlm_SL.json │ │ │ │ │ │ ├── ff_Adlm_SN.json │ │ │ │ │ │ ├── ff_GN.json │ │ │ │ │ │ ├── ff_Latn_GH.json │ │ │ │ │ │ ├── ff_Latn_GM.json │ │ │ │ │ │ ├── ff_Latn_GN.json │ │ │ │ │ │ ├── ff_Latn_LR.json │ │ │ │ │ │ ├── ff_Latn_MR.json │ │ │ │ │ │ ├── ff_Latn_NG.json │ │ │ │ │ │ ├── ff_Latn_SL.json │ │ │ │ │ │ ├── ff_MR.json │ │ │ │ │ │ ├── fi.json │ │ │ │ │ │ ├── fo.json │ │ │ │ │ │ ├── fo_DK.json │ │ │ │ │ │ ├── fr.json │ │ │ │ │ │ ├── fr_BI.json │ │ │ │ │ │ ├── fr_CA.json │ │ │ │ │ │ ├── fr_CD.json │ │ │ │ │ │ ├── fr_DJ.json │ │ │ │ │ │ ├── fr_DZ.json │ │ │ │ │ │ ├── fr_GN.json │ │ │ │ │ │ ├── fr_HT.json │ │ │ │ │ │ ├── fr_KM.json │ │ │ │ │ │ ├── fr_LU.json │ │ │ │ │ │ ├── fr_MG.json │ │ │ │ │ │ ├── fr_MR.json │ │ │ │ │ │ ├── fr_MU.json │ │ │ │ │ │ ├── fr_RW.json │ │ │ │ │ │ ├── fr_SC.json │ │ │ │ │ │ ├── fr_SY.json │ │ │ │ │ │ ├── fr_TN.json │ │ │ │ │ │ ├── fr_VU.json │ │ │ │ │ │ ├── fy.json │ │ │ │ │ │ ├── ga.json │ │ │ │ │ │ ├── gd.json │ │ │ │ │ │ ├── gl.json │ │ │ │ │ │ ├── gu.json │ │ │ │ │ │ ├── ha.json │ │ │ │ │ │ ├── ha_GH.json │ │ │ │ │ │ ├── he.json │ │ │ │ │ │ ├── hi.json │ │ │ │ │ │ ├── hr.json │ │ │ │ │ │ ├── hr_BA.json │ │ │ │ │ │ ├── hu.json │ │ │ │ │ │ ├── hy.json │ │ │ │ │ │ ├── ia.json │ │ │ │ │ │ ├── id.json │ │ │ │ │ │ ├── ig.json │ │ │ │ │ │ ├── ii.json │ │ │ │ │ │ ├── in.json │ │ │ │ │ │ ├── is.json │ │ │ │ │ │ ├── it.json │ │ │ │ │ │ ├── iw.json │ │ │ │ │ │ ├── ja.json │ │ │ │ │ │ ├── jv.json │ │ │ │ │ │ ├── ka.json │ │ │ │ │ │ ├── ki.json │ │ │ │ │ │ ├── kk.json │ │ │ │ │ │ ├── kl.json │ │ │ │ │ │ ├── km.json │ │ │ │ │ │ ├── kn.json │ │ │ │ │ │ ├── ko.json │ │ │ │ │ │ ├── ks.json │ │ │ │ │ │ ├── ku.json │ │ │ │ │ │ ├── ky.json │ │ │ │ │ │ ├── lb.json │ │ │ │ │ │ ├── lg.json │ │ │ │ │ │ ├── ln.json │ │ │ │ │ │ ├── ln_AO.json │ │ │ │ │ │ ├── lo.json │ │ │ │ │ │ ├── lt.json │ │ │ │ │ │ ├── lu.json │ │ │ │ │ │ ├── lv.json │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── mg.json │ │ │ │ │ │ ├── mi.json │ │ │ │ │ │ ├── mk.json │ │ │ │ │ │ ├── ml.json │ │ │ │ │ │ ├── mn.json │ │ │ │ │ │ ├── mo.json │ │ │ │ │ │ ├── mr.json │ │ │ │ │ │ ├── ms.json │ │ │ │ │ │ ├── ms_BN.json │ │ │ │ │ │ ├── ms_ID.json │ │ │ │ │ │ ├── ms_SG.json │ │ │ │ │ │ ├── mt.json │ │ │ │ │ │ ├── my.json │ │ │ │ │ │ ├── nb.json │ │ │ │ │ │ ├── nd.json │ │ │ │ │ │ ├── ne.json │ │ │ │ │ │ ├── nl.json │ │ │ │ │ │ ├── nl_AW.json │ │ │ │ │ │ ├── nl_BQ.json │ │ │ │ │ │ ├── nl_CW.json │ │ │ │ │ │ ├── nl_SR.json │ │ │ │ │ │ ├── nl_SX.json │ │ │ │ │ │ ├── nn.json │ │ │ │ │ │ ├── no.json │ │ │ │ │ │ ├── om.json │ │ │ │ │ │ ├── om_KE.json │ │ │ │ │ │ ├── or.json │ │ │ │ │ │ ├── os.json │ │ │ │ │ │ ├── os_RU.json │ │ │ │ │ │ ├── pa.json │ │ │ │ │ │ ├── pa_Arab.json │ │ │ │ │ │ ├── pl.json │ │ │ │ │ │ ├── ps.json │ │ │ │ │ │ ├── ps_PK.json │ │ │ │ │ │ ├── pt.json │ │ │ │ │ │ ├── pt_AO.json │ │ │ │ │ │ ├── pt_CV.json │ │ │ │ │ │ ├── pt_LU.json │ │ │ │ │ │ ├── pt_MO.json │ │ │ │ │ │ ├── pt_MZ.json │ │ │ │ │ │ ├── pt_PT.json │ │ │ │ │ │ ├── pt_ST.json │ │ │ │ │ │ ├── qu.json │ │ │ │ │ │ ├── qu_BO.json │ │ │ │ │ │ ├── qu_EC.json │ │ │ │ │ │ ├── rm.json │ │ │ │ │ │ ├── rn.json │ │ │ │ │ │ ├── ro.json │ │ │ │ │ │ ├── ro_MD.json │ │ │ │ │ │ ├── root.json │ │ │ │ │ │ ├── ru.json │ │ │ │ │ │ ├── ru_BY.json │ │ │ │ │ │ ├── ru_KG.json │ │ │ │ │ │ ├── ru_KZ.json │ │ │ │ │ │ ├── ru_MD.json │ │ │ │ │ │ ├── rw.json │ │ │ │ │ │ ├── sd.json │ │ │ │ │ │ ├── sd_Deva.json │ │ │ │ │ │ ├── se.json │ │ │ │ │ │ ├── se_SE.json │ │ │ │ │ │ ├── sg.json │ │ │ │ │ │ ├── sh.json │ │ │ │ │ │ ├── si.json │ │ │ │ │ │ ├── sk.json │ │ │ │ │ │ ├── sl.json │ │ │ │ │ │ ├── sn.json │ │ │ │ │ │ ├── so.json │ │ │ │ │ │ ├── so_DJ.json │ │ │ │ │ │ ├── so_ET.json │ │ │ │ │ │ ├── so_KE.json │ │ │ │ │ │ ├── sq.json │ │ │ │ │ │ ├── sq_MK.json │ │ │ │ │ │ ├── sr.json │ │ │ │ │ │ ├── sr_Latn.json │ │ │ │ │ │ ├── su.json │ │ │ │ │ │ ├── sv.json │ │ │ │ │ │ ├── sw.json │ │ │ │ │ │ ├── sw_CD.json │ │ │ │ │ │ ├── sw_KE.json │ │ │ │ │ │ ├── sw_UG.json │ │ │ │ │ │ ├── ta.json │ │ │ │ │ │ ├── ta_LK.json │ │ │ │ │ │ ├── ta_MY.json │ │ │ │ │ │ ├── ta_SG.json │ │ │ │ │ │ ├── te.json │ │ │ │ │ │ ├── tg.json │ │ │ │ │ │ ├── th.json │ │ │ │ │ │ ├── ti.json │ │ │ │ │ │ ├── ti_ER.json │ │ │ │ │ │ ├── tk.json │ │ │ │ │ │ ├── tl.json │ │ │ │ │ │ ├── to.json │ │ │ │ │ │ ├── tr.json │ │ │ │ │ │ ├── tt.json │ │ │ │ │ │ ├── ug.json │ │ │ │ │ │ ├── uk.json │ │ │ │ │ │ ├── ur.json │ │ │ │ │ │ ├── ur_IN.json │ │ │ │ │ │ ├── uz.json │ │ │ │ │ │ ├── uz_Arab.json │ │ │ │ │ │ ├── uz_Cyrl.json │ │ │ │ │ │ ├── vi.json │ │ │ │ │ │ ├── wo.json │ │ │ │ │ │ ├── xh.json │ │ │ │ │ │ ├── yi.json │ │ │ │ │ │ ├── yo.json │ │ │ │ │ │ ├── yo_BJ.json │ │ │ │ │ │ ├── zh.json │ │ │ │ │ │ ├── zh_HK.json │ │ │ │ │ │ ├── zh_Hans_HK.json │ │ │ │ │ │ ├── zh_Hans_MO.json │ │ │ │ │ │ ├── zh_Hans_SG.json │ │ │ │ │ │ ├── zh_Hant.json │ │ │ │ │ │ ├── zh_Hant_HK.json │ │ │ │ │ │ ├── zh_Hant_MO.json │ │ │ │ │ │ ├── zh_MO.json │ │ │ │ │ │ ├── zh_SG.json │ │ │ │ │ │ └── zu.json │ │ │ │ │ ├── git-info.txt │ │ │ │ │ ├── languages │ │ │ │ │ │ ├── af.json │ │ │ │ │ │ ├── ak.json │ │ │ │ │ │ ├── am.json │ │ │ │ │ │ ├── ar.json │ │ │ │ │ │ ├── ar_EG.json │ │ │ │ │ │ ├── ar_LY.json │ │ │ │ │ │ ├── ar_SA.json │ │ │ │ │ │ ├── as.json │ │ │ │ │ │ ├── az.json │ │ │ │ │ │ ├── az_Cyrl.json │ │ │ │ │ │ ├── be.json │ │ │ │ │ │ ├── bg.json │ │ │ │ │ │ ├── bm.json │ │ │ │ │ │ ├── bn.json │ │ │ │ │ │ ├── bn_IN.json │ │ │ │ │ │ ├── bo.json │ │ │ │ │ │ ├── br.json │ │ │ │ │ │ ├── bs.json │ │ │ │ │ │ ├── bs_Cyrl.json │ │ │ │ │ │ ├── ca.json │ │ │ │ │ │ ├── ce.json │ │ │ │ │ │ ├── cs.json │ │ │ │ │ │ ├── cy.json │ │ │ │ │ │ ├── da.json │ │ │ │ │ │ ├── de.json │ │ │ │ │ │ ├── de_AT.json │ │ │ │ │ │ ├── de_CH.json │ │ │ │ │ │ ├── de_LU.json │ │ │ │ │ │ ├── dz.json │ │ │ │ │ │ ├── ee.json │ │ │ │ │ │ ├── el.json │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ ├── en_001.json │ │ │ │ │ │ ├── en_AU.json │ │ │ │ │ │ ├── en_CA.json │ │ │ │ │ │ ├── en_GB.json │ │ │ │ │ │ ├── en_IN.json │ │ │ │ │ │ ├── en_NZ.json │ │ │ │ │ │ ├── eo.json │ │ │ │ │ │ ├── es.json │ │ │ │ │ │ ├── es_419.json │ │ │ │ │ │ ├── es_AR.json │ │ │ │ │ │ ├── es_BO.json │ │ │ │ │ │ ├── es_CL.json │ │ │ │ │ │ ├── es_CO.json │ │ │ │ │ │ ├── es_CR.json │ │ │ │ │ │ ├── es_DO.json │ │ │ │ │ │ ├── es_EC.json │ │ │ │ │ │ ├── es_GT.json │ │ │ │ │ │ ├── es_HN.json │ │ │ │ │ │ ├── es_MX.json │ │ │ │ │ │ ├── es_NI.json │ │ │ │ │ │ ├── es_PA.json │ │ │ │ │ │ ├── es_PE.json │ │ │ │ │ │ ├── es_PR.json │ │ │ │ │ │ ├── es_PY.json │ │ │ │ │ │ ├── es_SV.json │ │ │ │ │ │ ├── es_US.json │ │ │ │ │ │ ├── es_VE.json │ │ │ │ │ │ ├── et.json │ │ │ │ │ │ ├── eu.json │ │ │ │ │ │ ├── fa.json │ │ │ │ │ │ ├── fa_AF.json │ │ │ │ │ │ ├── ff.json │ │ │ │ │ │ ├── ff_Adlm.json │ │ │ │ │ │ ├── fi.json │ │ │ │ │ │ ├── fo.json │ │ │ │ │ │ ├── fr.json │ │ │ │ │ │ ├── fr_BE.json │ │ │ │ │ │ ├── fr_CA.json │ │ │ │ │ │ ├── fr_CH.json │ │ │ │ │ │ ├── fy.json │ │ │ │ │ │ ├── ga.json │ │ │ │ │ │ ├── gd.json │ │ │ │ │ │ ├── gl.json │ │ │ │ │ │ ├── gu.json │ │ │ │ │ │ ├── gv.json │ │ │ │ │ │ ├── ha.json │ │ │ │ │ │ ├── ha_NE.json │ │ │ │ │ │ ├── he.json │ │ │ │ │ │ ├── hi.json │ │ │ │ │ │ ├── hr.json │ │ │ │ │ │ ├── hu.json │ │ │ │ │ │ ├── hy.json │ │ │ │ │ │ ├── ia.json │ │ │ │ │ │ ├── id.json │ │ │ │ │ │ ├── ig.json │ │ │ │ │ │ ├── ii.json │ │ │ │ │ │ ├── in.json │ │ │ │ │ │ ├── is.json │ │ │ │ │ │ ├── it.json │ │ │ │ │ │ ├── iw.json │ │ │ │ │ │ ├── ja.json │ │ │ │ │ │ ├── jv.json │ │ │ │ │ │ ├── ka.json │ │ │ │ │ │ ├── ki.json │ │ │ │ │ │ ├── kk.json │ │ │ │ │ │ ├── kl.json │ │ │ │ │ │ ├── km.json │ │ │ │ │ │ ├── kn.json │ │ │ │ │ │ ├── ko.json │ │ │ │ │ │ ├── ks.json │ │ │ │ │ │ ├── ku.json │ │ │ │ │ │ ├── kw.json │ │ │ │ │ │ ├── ky.json │ │ │ │ │ │ ├── lb.json │ │ │ │ │ │ ├── lg.json │ │ │ │ │ │ ├── ln.json │ │ │ │ │ │ ├── lo.json │ │ │ │ │ │ ├── lt.json │ │ │ │ │ │ ├── lu.json │ │ │ │ │ │ ├── lv.json │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── mg.json │ │ │ │ │ │ ├── mi.json │ │ │ │ │ │ ├── mk.json │ │ │ │ │ │ ├── ml.json │ │ │ │ │ │ ├── mn.json │ │ │ │ │ │ ├── mo.json │ │ │ │ │ │ ├── mr.json │ │ │ │ │ │ ├── ms.json │ │ │ │ │ │ ├── mt.json │ │ │ │ │ │ ├── my.json │ │ │ │ │ │ ├── nb.json │ │ │ │ │ │ ├── nd.json │ │ │ │ │ │ ├── ne.json │ │ │ │ │ │ ├── nl.json │ │ │ │ │ │ ├── nn.json │ │ │ │ │ │ ├── no.json │ │ │ │ │ │ ├── om.json │ │ │ │ │ │ ├── or.json │ │ │ │ │ │ ├── os.json │ │ │ │ │ │ ├── pa.json │ │ │ │ │ │ ├── pa_Arab.json │ │ │ │ │ │ ├── pl.json │ │ │ │ │ │ ├── ps.json │ │ │ │ │ │ ├── ps_PK.json │ │ │ │ │ │ ├── pt.json │ │ │ │ │ │ ├── pt_PT.json │ │ │ │ │ │ ├── qu.json │ │ │ │ │ │ ├── rm.json │ │ │ │ │ │ ├── rn.json │ │ │ │ │ │ ├── ro.json │ │ │ │ │ │ ├── ro_MD.json │ │ │ │ │ │ ├── ru.json │ │ │ │ │ │ ├── rw.json │ │ │ │ │ │ ├── sd.json │ │ │ │ │ │ ├── sd_Deva.json │ │ │ │ │ │ ├── se.json │ │ │ │ │ │ ├── se_FI.json │ │ │ │ │ │ ├── sg.json │ │ │ │ │ │ ├── sh.json │ │ │ │ │ │ ├── sh_BA.json │ │ │ │ │ │ ├── si.json │ │ │ │ │ │ ├── sk.json │ │ │ │ │ │ ├── sl.json │ │ │ │ │ │ ├── sn.json │ │ │ │ │ │ ├── so.json │ │ │ │ │ │ ├── sq.json │ │ │ │ │ │ ├── sr.json │ │ │ │ │ │ ├── sr_BA.json │ │ │ │ │ │ ├── sr_Cyrl_BA.json │ │ │ │ │ │ ├── sr_Cyrl_ME.json │ │ │ │ │ │ ├── sr_Cyrl_XK.json │ │ │ │ │ │ ├── sr_Latn.json │ │ │ │ │ │ ├── sr_Latn_BA.json │ │ │ │ │ │ ├── sr_Latn_ME.json │ │ │ │ │ │ ├── sr_Latn_XK.json │ │ │ │ │ │ ├── sr_ME.json │ │ │ │ │ │ ├── sr_XK.json │ │ │ │ │ │ ├── su.json │ │ │ │ │ │ ├── sv.json │ │ │ │ │ │ ├── sw.json │ │ │ │ │ │ ├── sw_CD.json │ │ │ │ │ │ ├── sw_KE.json │ │ │ │ │ │ ├── ta.json │ │ │ │ │ │ ├── te.json │ │ │ │ │ │ ├── tg.json │ │ │ │ │ │ ├── th.json │ │ │ │ │ │ ├── ti.json │ │ │ │ │ │ ├── tk.json │ │ │ │ │ │ ├── tl.json │ │ │ │ │ │ ├── to.json │ │ │ │ │ │ ├── tr.json │ │ │ │ │ │ ├── tt.json │ │ │ │ │ │ ├── ug.json │ │ │ │ │ │ ├── uk.json │ │ │ │ │ │ ├── ur.json │ │ │ │ │ │ ├── ur_IN.json │ │ │ │ │ │ ├── uz.json │ │ │ │ │ │ ├── uz_Arab.json │ │ │ │ │ │ ├── uz_Cyrl.json │ │ │ │ │ │ ├── vi.json │ │ │ │ │ │ ├── wo.json │ │ │ │ │ │ ├── xh.json │ │ │ │ │ │ ├── yi.json │ │ │ │ │ │ ├── yo.json │ │ │ │ │ │ ├── yo_BJ.json │ │ │ │ │ │ ├── zh.json │ │ │ │ │ │ ├── zh_HK.json │ │ │ │ │ │ ├── zh_Hant.json │ │ │ │ │ │ ├── zh_Hant_HK.json │ │ │ │ │ │ └── zu.json │ │ │ │ │ ├── locales │ │ │ │ │ │ ├── af.json │ │ │ │ │ │ ├── ak.json │ │ │ │ │ │ ├── am.json │ │ │ │ │ │ ├── ar.json │ │ │ │ │ │ ├── ar_EG.json │ │ │ │ │ │ ├── ar_LY.json │ │ │ │ │ │ ├── ar_SA.json │ │ │ │ │ │ ├── as.json │ │ │ │ │ │ ├── az.json │ │ │ │ │ │ ├── az_Cyrl.json │ │ │ │ │ │ ├── be.json │ │ │ │ │ │ ├── bg.json │ │ │ │ │ │ ├── bm.json │ │ │ │ │ │ ├── bn.json │ │ │ │ │ │ ├── bn_IN.json │ │ │ │ │ │ ├── bo.json │ │ │ │ │ │ ├── br.json │ │ │ │ │ │ ├── bs.json │ │ │ │ │ │ ├── bs_Cyrl.json │ │ │ │ │ │ ├── ca.json │ │ │ │ │ │ ├── ce.json │ │ │ │ │ │ ├── cs.json │ │ │ │ │ │ ├── cy.json │ │ │ │ │ │ ├── da.json │ │ │ │ │ │ ├── de.json │ │ │ │ │ │ ├── de_AT.json │ │ │ │ │ │ ├── de_CH.json │ │ │ │ │ │ ├── de_LU.json │ │ │ │ │ │ ├── dz.json │ │ │ │ │ │ ├── ee.json │ │ │ │ │ │ ├── el.json │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ ├── en_001.json │ │ │ │ │ │ ├── en_AU.json │ │ │ │ │ │ ├── en_CA.json │ │ │ │ │ │ ├── en_IN.json │ │ │ │ │ │ ├── en_NZ.json │ │ │ │ │ │ ├── eo.json │ │ │ │ │ │ ├── es.json │ │ │ │ │ │ ├── es_419.json │ │ │ │ │ │ ├── es_AR.json │ │ │ │ │ │ ├── es_BO.json │ │ │ │ │ │ ├── es_CL.json │ │ │ │ │ │ ├── es_CO.json │ │ │ │ │ │ ├── es_CR.json │ │ │ │ │ │ ├── es_DO.json │ │ │ │ │ │ ├── es_EC.json │ │ │ │ │ │ ├── es_GT.json │ │ │ │ │ │ ├── es_HN.json │ │ │ │ │ │ ├── es_MX.json │ │ │ │ │ │ ├── es_NI.json │ │ │ │ │ │ ├── es_PA.json │ │ │ │ │ │ ├── es_PE.json │ │ │ │ │ │ ├── es_PR.json │ │ │ │ │ │ ├── es_PY.json │ │ │ │ │ │ ├── es_SV.json │ │ │ │ │ │ ├── es_US.json │ │ │ │ │ │ ├── es_VE.json │ │ │ │ │ │ ├── et.json │ │ │ │ │ │ ├── eu.json │ │ │ │ │ │ ├── fa.json │ │ │ │ │ │ ├── fa_AF.json │ │ │ │ │ │ ├── ff.json │ │ │ │ │ │ ├── ff_Adlm.json │ │ │ │ │ │ ├── fi.json │ │ │ │ │ │ ├── fo.json │ │ │ │ │ │ ├── fr.json │ │ │ │ │ │ ├── fr_BE.json │ │ │ │ │ │ ├── fr_CA.json │ │ │ │ │ │ ├── fr_CH.json │ │ │ │ │ │ ├── fy.json │ │ │ │ │ │ ├── ga.json │ │ │ │ │ │ ├── gd.json │ │ │ │ │ │ ├── gl.json │ │ │ │ │ │ ├── gu.json │ │ │ │ │ │ ├── gv.json │ │ │ │ │ │ ├── ha.json │ │ │ │ │ │ ├── ha_NE.json │ │ │ │ │ │ ├── he.json │ │ │ │ │ │ ├── hi.json │ │ │ │ │ │ ├── hr.json │ │ │ │ │ │ ├── hu.json │ │ │ │ │ │ ├── hy.json │ │ │ │ │ │ ├── ia.json │ │ │ │ │ │ ├── id.json │ │ │ │ │ │ ├── ig.json │ │ │ │ │ │ ├── ii.json │ │ │ │ │ │ ├── is.json │ │ │ │ │ │ ├── it.json │ │ │ │ │ │ ├── ja.json │ │ │ │ │ │ ├── jv.json │ │ │ │ │ │ ├── ka.json │ │ │ │ │ │ ├── ki.json │ │ │ │ │ │ ├── kk.json │ │ │ │ │ │ ├── kl.json │ │ │ │ │ │ ├── km.json │ │ │ │ │ │ ├── kn.json │ │ │ │ │ │ ├── ko.json │ │ │ │ │ │ ├── ko_KP.json │ │ │ │ │ │ ├── ks.json │ │ │ │ │ │ ├── ku.json │ │ │ │ │ │ ├── kw.json │ │ │ │ │ │ ├── ky.json │ │ │ │ │ │ ├── lb.json │ │ │ │ │ │ ├── lg.json │ │ │ │ │ │ ├── ln.json │ │ │ │ │ │ ├── lo.json │ │ │ │ │ │ ├── lt.json │ │ │ │ │ │ ├── lu.json │ │ │ │ │ │ ├── lv.json │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── mg.json │ │ │ │ │ │ ├── mi.json │ │ │ │ │ │ ├── mk.json │ │ │ │ │ │ ├── ml.json │ │ │ │ │ │ ├── mn.json │ │ │ │ │ │ ├── mr.json │ │ │ │ │ │ ├── ms.json │ │ │ │ │ │ ├── mt.json │ │ │ │ │ │ ├── my.json │ │ │ │ │ │ ├── nb.json │ │ │ │ │ │ ├── nd.json │ │ │ │ │ │ ├── ne.json │ │ │ │ │ │ ├── nl.json │ │ │ │ │ │ ├── nn.json │ │ │ │ │ │ ├── om.json │ │ │ │ │ │ ├── or.json │ │ │ │ │ │ ├── os.json │ │ │ │ │ │ ├── pa.json │ │ │ │ │ │ ├── pa_Arab.json │ │ │ │ │ │ ├── pl.json │ │ │ │ │ │ ├── ps.json │ │ │ │ │ │ ├── ps_PK.json │ │ │ │ │ │ ├── pt.json │ │ │ │ │ │ ├── pt_PT.json │ │ │ │ │ │ ├── qu.json │ │ │ │ │ │ ├── rm.json │ │ │ │ │ │ ├── rn.json │ │ │ │ │ │ ├── ro.json │ │ │ │ │ │ ├── ro_MD.json │ │ │ │ │ │ ├── ru.json │ │ │ │ │ │ ├── ru_UA.json │ │ │ │ │ │ ├── rw.json │ │ │ │ │ │ ├── sd.json │ │ │ │ │ │ ├── sd_Deva.json │ │ │ │ │ │ ├── se.json │ │ │ │ │ │ ├── se_FI.json │ │ │ │ │ │ ├── sg.json │ │ │ │ │ │ ├── si.json │ │ │ │ │ │ ├── sk.json │ │ │ │ │ │ ├── sl.json │ │ │ │ │ │ ├── sn.json │ │ │ │ │ │ ├── so.json │ │ │ │ │ │ ├── sq.json │ │ │ │ │ │ ├── sr.json │ │ │ │ │ │ ├── sr_Cyrl_BA.json │ │ │ │ │ │ ├── sr_Cyrl_ME.json │ │ │ │ │ │ ├── sr_Cyrl_XK.json │ │ │ │ │ │ ├── sr_Latn.json │ │ │ │ │ │ ├── sr_Latn_BA.json │ │ │ │ │ │ ├── sr_Latn_ME.json │ │ │ │ │ │ ├── sr_Latn_XK.json │ │ │ │ │ │ ├── su.json │ │ │ │ │ │ ├── sv.json │ │ │ │ │ │ ├── sw.json │ │ │ │ │ │ ├── sw_CD.json │ │ │ │ │ │ ├── sw_KE.json │ │ │ │ │ │ ├── ta.json │ │ │ │ │ │ ├── te.json │ │ │ │ │ │ ├── tg.json │ │ │ │ │ │ ├── th.json │ │ │ │ │ │ ├── ti.json │ │ │ │ │ │ ├── tk.json │ │ │ │ │ │ ├── to.json │ │ │ │ │ │ ├── tr.json │ │ │ │ │ │ ├── tt.json │ │ │ │ │ │ ├── ug.json │ │ │ │ │ │ ├── uk.json │ │ │ │ │ │ ├── ur.json │ │ │ │ │ │ ├── ur_IN.json │ │ │ │ │ │ ├── uz.json │ │ │ │ │ │ ├── uz_Arab.json │ │ │ │ │ │ ├── uz_Cyrl.json │ │ │ │ │ │ ├── vi.json │ │ │ │ │ │ ├── wo.json │ │ │ │ │ │ ├── xh.json │ │ │ │ │ │ ├── yi.json │ │ │ │ │ │ ├── yo.json │ │ │ │ │ │ ├── yo_BJ.json │ │ │ │ │ │ ├── zh.json │ │ │ │ │ │ ├── zh_Hant.json │ │ │ │ │ │ ├── zh_Hant_HK.json │ │ │ │ │ │ └── zu.json │ │ │ │ │ ├── regions │ │ │ │ │ │ ├── af.json │ │ │ │ │ │ ├── ak.json │ │ │ │ │ │ ├── am.json │ │ │ │ │ │ ├── ar.json │ │ │ │ │ │ ├── ar_LY.json │ │ │ │ │ │ ├── ar_SA.json │ │ │ │ │ │ ├── as.json │ │ │ │ │ │ ├── az.json │ │ │ │ │ │ ├── az_Cyrl.json │ │ │ │ │ │ ├── be.json │ │ │ │ │ │ ├── bg.json │ │ │ │ │ │ ├── bm.json │ │ │ │ │ │ ├── bn.json │ │ │ │ │ │ ├── bn_IN.json │ │ │ │ │ │ ├── bo.json │ │ │ │ │ │ ├── bo_IN.json │ │ │ │ │ │ ├── br.json │ │ │ │ │ │ ├── bs.json │ │ │ │ │ │ ├── bs_Cyrl.json │ │ │ │ │ │ ├── ca.json │ │ │ │ │ │ ├── ce.json │ │ │ │ │ │ ├── cs.json │ │ │ │ │ │ ├── cy.json │ │ │ │ │ │ ├── da.json │ │ │ │ │ │ ├── de.json │ │ │ │ │ │ ├── de_AT.json │ │ │ │ │ │ ├── de_CH.json │ │ │ │ │ │ ├── dz.json │ │ │ │ │ │ ├── ee.json │ │ │ │ │ │ ├── el.json │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ ├── en_001.json │ │ │ │ │ │ ├── en_AU.json │ │ │ │ │ │ ├── eo.json │ │ │ │ │ │ ├── es.json │ │ │ │ │ │ ├── es_419.json │ │ │ │ │ │ ├── es_AR.json │ │ │ │ │ │ ├── es_BO.json │ │ │ │ │ │ ├── es_CL.json │ │ │ │ │ │ ├── es_CO.json │ │ │ │ │ │ ├── es_CR.json │ │ │ │ │ │ ├── es_DO.json │ │ │ │ │ │ ├── es_EC.json │ │ │ │ │ │ ├── es_GT.json │ │ │ │ │ │ ├── es_HN.json │ │ │ │ │ │ ├── es_MX.json │ │ │ │ │ │ ├── es_NI.json │ │ │ │ │ │ ├── es_PA.json │ │ │ │ │ │ ├── es_PE.json │ │ │ │ │ │ ├── es_PR.json │ │ │ │ │ │ ├── es_PY.json │ │ │ │ │ │ ├── es_SV.json │ │ │ │ │ │ ├── es_US.json │ │ │ │ │ │ ├── es_VE.json │ │ │ │ │ │ ├── et.json │ │ │ │ │ │ ├── eu.json │ │ │ │ │ │ ├── fa.json │ │ │ │ │ │ ├── fa_AF.json │ │ │ │ │ │ ├── ff.json │ │ │ │ │ │ ├── ff_Adlm.json │ │ │ │ │ │ ├── fi.json │ │ │ │ │ │ ├── fo.json │ │ │ │ │ │ ├── fr.json │ │ │ │ │ │ ├── fr_BE.json │ │ │ │ │ │ ├── fr_CA.json │ │ │ │ │ │ ├── fy.json │ │ │ │ │ │ ├── ga.json │ │ │ │ │ │ ├── gd.json │ │ │ │ │ │ ├── gl.json │ │ │ │ │ │ ├── gu.json │ │ │ │ │ │ ├── gv.json │ │ │ │ │ │ ├── ha.json │ │ │ │ │ │ ├── he.json │ │ │ │ │ │ ├── hi.json │ │ │ │ │ │ ├── hr.json │ │ │ │ │ │ ├── hu.json │ │ │ │ │ │ ├── hy.json │ │ │ │ │ │ ├── ia.json │ │ │ │ │ │ ├── id.json │ │ │ │ │ │ ├── ig.json │ │ │ │ │ │ ├── ii.json │ │ │ │ │ │ ├── in.json │ │ │ │ │ │ ├── is.json │ │ │ │ │ │ ├── it.json │ │ │ │ │ │ ├── iw.json │ │ │ │ │ │ ├── ja.json │ │ │ │ │ │ ├── jv.json │ │ │ │ │ │ ├── ka.json │ │ │ │ │ │ ├── ki.json │ │ │ │ │ │ ├── kk.json │ │ │ │ │ │ ├── kl.json │ │ │ │ │ │ ├── km.json │ │ │ │ │ │ ├── kn.json │ │ │ │ │ │ ├── ko.json │ │ │ │ │ │ ├── ko_KP.json │ │ │ │ │ │ ├── ks.json │ │ │ │ │ │ ├── ku.json │ │ │ │ │ │ ├── kw.json │ │ │ │ │ │ ├── ky.json │ │ │ │ │ │ ├── lb.json │ │ │ │ │ │ ├── lg.json │ │ │ │ │ │ ├── ln.json │ │ │ │ │ │ ├── lo.json │ │ │ │ │ │ ├── lt.json │ │ │ │ │ │ ├── lu.json │ │ │ │ │ │ ├── lv.json │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── mg.json │ │ │ │ │ │ ├── mi.json │ │ │ │ │ │ ├── mk.json │ │ │ │ │ │ ├── ml.json │ │ │ │ │ │ ├── mn.json │ │ │ │ │ │ ├── mo.json │ │ │ │ │ │ ├── mr.json │ │ │ │ │ │ ├── ms.json │ │ │ │ │ │ ├── mt.json │ │ │ │ │ │ ├── my.json │ │ │ │ │ │ ├── nb.json │ │ │ │ │ │ ├── nd.json │ │ │ │ │ │ ├── ne.json │ │ │ │ │ │ ├── nl.json │ │ │ │ │ │ ├── nn.json │ │ │ │ │ │ ├── no.json │ │ │ │ │ │ ├── om.json │ │ │ │ │ │ ├── or.json │ │ │ │ │ │ ├── os.json │ │ │ │ │ │ ├── pa.json │ │ │ │ │ │ ├── pa_Arab.json │ │ │ │ │ │ ├── pl.json │ │ │ │ │ │ ├── ps.json │ │ │ │ │ │ ├── ps_PK.json │ │ │ │ │ │ ├── pt.json │ │ │ │ │ │ ├── pt_PT.json │ │ │ │ │ │ ├── qu.json │ │ │ │ │ │ ├── rm.json │ │ │ │ │ │ ├── rn.json │ │ │ │ │ │ ├── ro.json │ │ │ │ │ │ ├── ro_MD.json │ │ │ │ │ │ ├── ru.json │ │ │ │ │ │ ├── ru_UA.json │ │ │ │ │ │ ├── rw.json │ │ │ │ │ │ ├── sd.json │ │ │ │ │ │ ├── sd_Deva.json │ │ │ │ │ │ ├── se.json │ │ │ │ │ │ ├── se_FI.json │ │ │ │ │ │ ├── sg.json │ │ │ │ │ │ ├── sh.json │ │ │ │ │ │ ├── sh_BA.json │ │ │ │ │ │ ├── si.json │ │ │ │ │ │ ├── sk.json │ │ │ │ │ │ ├── sl.json │ │ │ │ │ │ ├── sn.json │ │ │ │ │ │ ├── so.json │ │ │ │ │ │ ├── sq.json │ │ │ │ │ │ ├── sr.json │ │ │ │ │ │ ├── sr_BA.json │ │ │ │ │ │ ├── sr_Cyrl_BA.json │ │ │ │ │ │ ├── sr_Cyrl_ME.json │ │ │ │ │ │ ├── sr_Cyrl_XK.json │ │ │ │ │ │ ├── sr_Latn.json │ │ │ │ │ │ ├── sr_Latn_BA.json │ │ │ │ │ │ ├── sr_Latn_ME.json │ │ │ │ │ │ ├── sr_Latn_XK.json │ │ │ │ │ │ ├── sr_ME.json │ │ │ │ │ │ ├── sr_XK.json │ │ │ │ │ │ ├── su.json │ │ │ │ │ │ ├── sv.json │ │ │ │ │ │ ├── sw.json │ │ │ │ │ │ ├── sw_CD.json │ │ │ │ │ │ ├── sw_KE.json │ │ │ │ │ │ ├── ta.json │ │ │ │ │ │ ├── te.json │ │ │ │ │ │ ├── tg.json │ │ │ │ │ │ ├── th.json │ │ │ │ │ │ ├── ti.json │ │ │ │ │ │ ├── tk.json │ │ │ │ │ │ ├── tl.json │ │ │ │ │ │ ├── to.json │ │ │ │ │ │ ├── tr.json │ │ │ │ │ │ ├── tt.json │ │ │ │ │ │ ├── ug.json │ │ │ │ │ │ ├── uk.json │ │ │ │ │ │ ├── ur.json │ │ │ │ │ │ ├── ur_IN.json │ │ │ │ │ │ ├── uz.json │ │ │ │ │ │ ├── uz_Arab.json │ │ │ │ │ │ ├── uz_Cyrl.json │ │ │ │ │ │ ├── vi.json │ │ │ │ │ │ ├── wo.json │ │ │ │ │ │ ├── xh.json │ │ │ │ │ │ ├── yi.json │ │ │ │ │ │ ├── yo.json │ │ │ │ │ │ ├── yo_BJ.json │ │ │ │ │ │ ├── zh.json │ │ │ │ │ │ ├── zh_HK.json │ │ │ │ │ │ ├── zh_Hant.json │ │ │ │ │ │ ├── zh_Hant_HK.json │ │ │ │ │ │ └── zu.json │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── af.json │ │ │ │ │ │ ├── am.json │ │ │ │ │ │ ├── ar.json │ │ │ │ │ │ ├── as.json │ │ │ │ │ │ ├── az.json │ │ │ │ │ │ ├── az_Cyrl.json │ │ │ │ │ │ ├── be.json │ │ │ │ │ │ ├── bg.json │ │ │ │ │ │ ├── bn.json │ │ │ │ │ │ ├── bo.json │ │ │ │ │ │ ├── br.json │ │ │ │ │ │ ├── bs.json │ │ │ │ │ │ ├── bs_Cyrl.json │ │ │ │ │ │ ├── ca.json │ │ │ │ │ │ ├── ce.json │ │ │ │ │ │ ├── cs.json │ │ │ │ │ │ ├── cy.json │ │ │ │ │ │ ├── da.json │ │ │ │ │ │ ├── de.json │ │ │ │ │ │ ├── dz.json │ │ │ │ │ │ ├── ee.json │ │ │ │ │ │ ├── el.json │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ ├── en_AU.json │ │ │ │ │ │ ├── en_IN.json │ │ │ │ │ │ ├── es.json │ │ │ │ │ │ ├── es_419.json │ │ │ │ │ │ ├── es_MX.json │ │ │ │ │ │ ├── es_US.json │ │ │ │ │ │ ├── et.json │ │ │ │ │ │ ├── eu.json │ │ │ │ │ │ ├── fa.json │ │ │ │ │ │ ├── fa_AF.json │ │ │ │ │ │ ├── ff_Adlm.json │ │ │ │ │ │ ├── fi.json │ │ │ │ │ │ ├── fo.json │ │ │ │ │ │ ├── fr.json │ │ │ │ │ │ ├── fr_CA.json │ │ │ │ │ │ ├── fy.json │ │ │ │ │ │ ├── ga.json │ │ │ │ │ │ ├── gd.json │ │ │ │ │ │ ├── gl.json │ │ │ │ │ │ ├── gu.json │ │ │ │ │ │ ├── ha.json │ │ │ │ │ │ ├── he.json │ │ │ │ │ │ ├── hi.json │ │ │ │ │ │ ├── hr.json │ │ │ │ │ │ ├── hu.json │ │ │ │ │ │ ├── hy.json │ │ │ │ │ │ ├── ia.json │ │ │ │ │ │ ├── id.json │ │ │ │ │ │ ├── ig.json │ │ │ │ │ │ ├── ii.json │ │ │ │ │ │ ├── in.json │ │ │ │ │ │ ├── is.json │ │ │ │ │ │ ├── it.json │ │ │ │ │ │ ├── iw.json │ │ │ │ │ │ ├── ja.json │ │ │ │ │ │ ├── jv.json │ │ │ │ │ │ ├── ka.json │ │ │ │ │ │ ├── kk.json │ │ │ │ │ │ ├── km.json │ │ │ │ │ │ ├── kn.json │ │ │ │ │ │ ├── ko.json │ │ │ │ │ │ ├── ks.json │ │ │ │ │ │ ├── ku.json │ │ │ │ │ │ ├── ky.json │ │ │ │ │ │ ├── lb.json │ │ │ │ │ │ ├── lo.json │ │ │ │ │ │ ├── lt.json │ │ │ │ │ │ ├── lv.json │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── mi.json │ │ │ │ │ │ ├── mk.json │ │ │ │ │ │ ├── ml.json │ │ │ │ │ │ ├── mn.json │ │ │ │ │ │ ├── mo.json │ │ │ │ │ │ ├── mr.json │ │ │ │ │ │ ├── ms.json │ │ │ │ │ │ ├── mt.json │ │ │ │ │ │ ├── my.json │ │ │ │ │ │ ├── nb.json │ │ │ │ │ │ ├── ne.json │ │ │ │ │ │ ├── nl.json │ │ │ │ │ │ ├── nn.json │ │ │ │ │ │ ├── no.json │ │ │ │ │ │ ├── om.json │ │ │ │ │ │ ├── or.json │ │ │ │ │ │ ├── os.json │ │ │ │ │ │ ├── pa.json │ │ │ │ │ │ ├── pa_Arab.json │ │ │ │ │ │ ├── pl.json │ │ │ │ │ │ ├── ps.json │ │ │ │ │ │ ├── pt.json │ │ │ │ │ │ ├── pt_PT.json │ │ │ │ │ │ ├── rm.json │ │ │ │ │ │ ├── ro.json │ │ │ │ │ │ ├── ru.json │ │ │ │ │ │ ├── sd.json │ │ │ │ │ │ ├── sd_Deva.json │ │ │ │ │ │ ├── se.json │ │ │ │ │ │ ├── se_FI.json │ │ │ │ │ │ ├── sh.json │ │ │ │ │ │ ├── si.json │ │ │ │ │ │ ├── sk.json │ │ │ │ │ │ ├── sl.json │ │ │ │ │ │ ├── so.json │ │ │ │ │ │ ├── sq.json │ │ │ │ │ │ ├── sr.json │ │ │ │ │ │ ├── sr_Latn.json │ │ │ │ │ │ ├── su.json │ │ │ │ │ │ ├── sv.json │ │ │ │ │ │ ├── sw.json │ │ │ │ │ │ ├── sw_KE.json │ │ │ │ │ │ ├── ta.json │ │ │ │ │ │ ├── te.json │ │ │ │ │ │ ├── tg.json │ │ │ │ │ │ ├── th.json │ │ │ │ │ │ ├── ti.json │ │ │ │ │ │ ├── tk.json │ │ │ │ │ │ ├── tl.json │ │ │ │ │ │ ├── to.json │ │ │ │ │ │ ├── tr.json │ │ │ │ │ │ ├── tt.json │ │ │ │ │ │ ├── ug.json │ │ │ │ │ │ ├── uk.json │ │ │ │ │ │ ├── ur.json │ │ │ │ │ │ ├── uz.json │ │ │ │ │ │ ├── uz_Arab.json │ │ │ │ │ │ ├── uz_Cyrl.json │ │ │ │ │ │ ├── vi.json │ │ │ │ │ │ ├── wo.json │ │ │ │ │ │ ├── yi.json │ │ │ │ │ │ ├── yo.json │ │ │ │ │ │ ├── yo_BJ.json │ │ │ │ │ │ ├── zh.json │ │ │ │ │ │ ├── zh_HK.json │ │ │ │ │ │ ├── zh_Hant.json │ │ │ │ │ │ ├── zh_Hant_HK.json │ │ │ │ │ │ └── zu.json │ │ │ │ │ └── version.txt │ │ │ │ └── stubs │ │ │ │ │ ├── Collator.php │ │ │ │ │ ├── IntlDateFormatter.php │ │ │ │ │ ├── Locale.php │ │ │ │ │ └── NumberFormatter.php │ │ │ ├── Tests │ │ │ │ ├── Collator │ │ │ │ │ ├── AbstractCollatorTest.php │ │ │ │ │ ├── CollatorTest.php │ │ │ │ │ └── Verification │ │ │ │ │ │ └── CollatorTest.php │ │ │ │ ├── Data │ │ │ │ │ ├── Bundle │ │ │ │ │ │ ├── Reader │ │ │ │ │ │ │ ├── BundleEntryReaderTest.php │ │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ │ │ ├── NotAFile │ │ │ │ │ │ │ │ │ └── en.php │ │ │ │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ │ │ ├── build.sh │ │ │ │ │ │ │ │ ├── en.php │ │ │ │ │ │ │ │ ├── en.res │ │ │ │ │ │ │ │ ├── en.txt │ │ │ │ │ │ │ │ ├── invalid_directory │ │ │ │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ │ │ │ └── en.php │ │ │ │ │ │ │ │ ├── json │ │ │ │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ │ │ │ └── en_Invalid.json │ │ │ │ │ │ │ │ ├── php │ │ │ │ │ │ │ │ │ └── en.php │ │ │ │ │ │ │ │ ├── res │ │ │ │ │ │ │ │ │ ├── alias.res │ │ │ │ │ │ │ │ │ ├── mo.res │ │ │ │ │ │ │ │ │ ├── ro.res │ │ │ │ │ │ │ │ │ ├── ro_MD.res │ │ │ │ │ │ │ │ │ └── root.res │ │ │ │ │ │ │ │ └── txt │ │ │ │ │ │ │ │ │ ├── alias.txt │ │ │ │ │ │ │ │ │ ├── mo.txt │ │ │ │ │ │ │ │ │ ├── ro.txt │ │ │ │ │ │ │ │ │ ├── ro_MD.txt │ │ │ │ │ │ │ │ │ └── root.txt │ │ │ │ │ │ │ ├── IntlBundleReaderTest.php │ │ │ │ │ │ │ ├── JsonBundleReaderTest.php │ │ │ │ │ │ │ └── PhpBundleReaderTest.php │ │ │ │ │ │ └── Writer │ │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ │ ├── en.json │ │ │ │ │ │ │ ├── en.php │ │ │ │ │ │ │ ├── en.res │ │ │ │ │ │ │ ├── en.txt │ │ │ │ │ │ │ ├── en_nofallback.txt │ │ │ │ │ │ │ ├── escaped.txt │ │ │ │ │ │ │ ├── rb.json │ │ │ │ │ │ │ ├── rb.php │ │ │ │ │ │ │ ├── rb.res │ │ │ │ │ │ │ └── rb.txt │ │ │ │ │ │ │ ├── JsonBundleWriterTest.php │ │ │ │ │ │ │ ├── PhpBundleWriterTest.php │ │ │ │ │ │ │ └── TextBundleWriterTest.php │ │ │ │ │ ├── Provider │ │ │ │ │ │ ├── AbstractCurrencyDataProviderTest.php │ │ │ │ │ │ ├── AbstractDataProviderTest.php │ │ │ │ │ │ ├── AbstractLanguageDataProviderTest.php │ │ │ │ │ │ ├── AbstractLocaleDataProviderTest.php │ │ │ │ │ │ ├── AbstractRegionDataProviderTest.php │ │ │ │ │ │ ├── AbstractScriptDataProviderTest.php │ │ │ │ │ │ └── Json │ │ │ │ │ │ │ ├── JsonCurrencyDataProviderTest.php │ │ │ │ │ │ │ ├── JsonLanguageDataProviderTest.php │ │ │ │ │ │ │ ├── JsonLocaleDataProviderTest.php │ │ │ │ │ │ │ ├── JsonRegionDataProviderTest.php │ │ │ │ │ │ │ └── JsonScriptDataProviderTest.php │ │ │ │ │ └── Util │ │ │ │ │ │ ├── LocaleScannerTest.php │ │ │ │ │ │ └── RingBufferTest.php │ │ │ │ ├── DateFormatter │ │ │ │ │ ├── AbstractIntlDateFormatterTest.php │ │ │ │ │ ├── IntlDateFormatterTest.php │ │ │ │ │ └── Verification │ │ │ │ │ │ └── IntlDateFormatterTest.php │ │ │ │ ├── Globals │ │ │ │ │ ├── AbstractIntlGlobalsTest.php │ │ │ │ │ ├── IntlGlobalsTest.php │ │ │ │ │ └── Verification │ │ │ │ │ │ └── IntlGlobalsTest.php │ │ │ │ ├── IntlTest.php │ │ │ │ ├── Locale │ │ │ │ │ ├── AbstractLocaleTest.php │ │ │ │ │ ├── LocaleTest.php │ │ │ │ │ └── Verification │ │ │ │ │ │ └── LocaleTest.php │ │ │ │ ├── LocaleTest.php │ │ │ │ ├── NumberFormatter │ │ │ │ │ ├── AbstractNumberFormatterTest.php │ │ │ │ │ ├── NumberFormatterTest.php │ │ │ │ │ └── Verification │ │ │ │ │ │ └── NumberFormatterTest.php │ │ │ │ └── Util │ │ │ │ │ ├── GitRepositoryTest.php │ │ │ │ │ ├── IcuVersionTest.php │ │ │ │ │ └── VersionTest.php │ │ │ ├── Util │ │ │ │ ├── GitRepository.php │ │ │ │ ├── IcuVersion.php │ │ │ │ ├── IntlTestHelper.php │ │ │ │ └── Version.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Ldap │ │ │ ├── .gitignore │ │ │ ├── Adapter │ │ │ │ ├── AbstractConnection.php │ │ │ │ ├── AbstractQuery.php │ │ │ │ ├── AdapterInterface.php │ │ │ │ ├── CollectionInterface.php │ │ │ │ ├── ConnectionInterface.php │ │ │ │ ├── EntryManagerInterface.php │ │ │ │ ├── ExtLdap │ │ │ │ │ ├── Adapter.php │ │ │ │ │ ├── Collection.php │ │ │ │ │ ├── Connection.php │ │ │ │ │ ├── ConnectionOptions.php │ │ │ │ │ ├── EntryManager.php │ │ │ │ │ └── Query.php │ │ │ │ ├── QueryInterface.php │ │ │ │ └── RenameEntryInterface.php │ │ │ ├── CHANGELOG.md │ │ │ ├── Entry.php │ │ │ ├── Exception │ │ │ │ ├── ConnectionException.php │ │ │ │ ├── DriverNotFoundException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── LdapException.php │ │ │ │ └── NotBoundException.php │ │ │ ├── LICENSE │ │ │ ├── Ldap.php │ │ │ ├── LdapClient.php │ │ │ ├── LdapClientInterface.php │ │ │ ├── LdapInterface.php │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── Adapter │ │ │ │ │ └── ExtLdap │ │ │ │ │ │ ├── AdapterTest.php │ │ │ │ │ │ ├── EntryManagerTest.php │ │ │ │ │ │ └── LdapManagerTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── conf │ │ │ │ │ │ └── slapd.conf │ │ │ │ │ └── data │ │ │ │ │ │ ├── base.ldif │ │ │ │ │ │ └── fixtures.ldif │ │ │ │ ├── LdapClientTest.php │ │ │ │ ├── LdapTest.php │ │ │ │ └── LdapTestCase.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Lock │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Exception │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LockAcquiringException.php │ │ │ │ ├── LockConflictedException.php │ │ │ │ ├── LockExpiredException.php │ │ │ │ ├── LockReleasingException.php │ │ │ │ ├── LockStorageException.php │ │ │ │ └── NotSupportedException.php │ │ │ ├── Factory.php │ │ │ ├── Key.php │ │ │ ├── LICENSE │ │ │ ├── Lock.php │ │ │ ├── LockInterface.php │ │ │ ├── README.md │ │ │ ├── Store │ │ │ │ ├── CombinedStore.php │ │ │ │ ├── ExpiringStoreTrait.php │ │ │ │ ├── FlockStore.php │ │ │ │ ├── MemcachedStore.php │ │ │ │ ├── RedisStore.php │ │ │ │ ├── RetryTillSaveStore.php │ │ │ │ ├── SemaphoreStore.php │ │ │ │ └── StoreFactory.php │ │ │ ├── StoreInterface.php │ │ │ ├── Strategy │ │ │ │ ├── ConsensusStrategy.php │ │ │ │ ├── StrategyInterface.php │ │ │ │ └── UnanimousStrategy.php │ │ │ ├── Tests │ │ │ │ ├── FactoryTest.php │ │ │ │ ├── LockTest.php │ │ │ │ ├── Store │ │ │ │ │ ├── AbstractRedisStoreTest.php │ │ │ │ │ ├── AbstractStoreTest.php │ │ │ │ │ ├── BlockingStoreTestTrait.php │ │ │ │ │ ├── CombinedStoreTest.php │ │ │ │ │ ├── ExpiringStoreTestTrait.php │ │ │ │ │ ├── FlockStoreTest.php │ │ │ │ │ ├── MemcachedStoreTest.php │ │ │ │ │ ├── PredisStoreTest.php │ │ │ │ │ ├── RedisArrayStoreTest.php │ │ │ │ │ ├── RedisClusterStoreTest.php │ │ │ │ │ ├── RedisStoreTest.php │ │ │ │ │ ├── RetryTillSaveStoreTest.php │ │ │ │ │ └── SemaphoreStoreTest.php │ │ │ │ └── Strategy │ │ │ │ │ ├── ConsensusStrategyTest.php │ │ │ │ │ └── UnanimousStrategyTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── OptionsResolver │ │ │ ├── .gitignore │ │ │ ├── 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 │ │ │ ├── Options.php │ │ │ ├── OptionsResolver.php │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── Debug │ │ │ │ │ └── OptionsResolverIntrospectorTest.php │ │ │ │ └── OptionsResolverTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Process │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Exception │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogicException.php │ │ │ │ ├── ProcessFailedException.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 │ │ │ ├── ProcessBuilder.php │ │ │ ├── ProcessUtils.php │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── ErrorProcessInitiator.php │ │ │ │ ├── ExecutableFinderTest.php │ │ │ │ ├── NonStopableProcess.php │ │ │ │ ├── PhpExecutableFinderTest.php │ │ │ │ ├── PhpProcessTest.php │ │ │ │ ├── PipeStdinInStdoutStdErrStreamSelect.php │ │ │ │ ├── ProcessBuilderTest.php │ │ │ │ ├── ProcessFailedExceptionTest.php │ │ │ │ ├── ProcessTest.php │ │ │ │ ├── ProcessUtilsTest.php │ │ │ │ └── SignalListener.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── PropertyAccess │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Exception │ │ │ │ ├── AccessException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidPropertyPathException.php │ │ │ │ ├── NoSuchIndexException.php │ │ │ │ ├── NoSuchPropertyException.php │ │ │ │ ├── OutOfBoundsException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ └── UnexpectedTypeException.php │ │ │ ├── LICENSE │ │ │ ├── PropertyAccess.php │ │ │ ├── PropertyAccessor.php │ │ │ ├── PropertyAccessorBuilder.php │ │ │ ├── PropertyAccessorInterface.php │ │ │ ├── PropertyPath.php │ │ │ ├── PropertyPathBuilder.php │ │ │ ├── PropertyPathInterface.php │ │ │ ├── PropertyPathIterator.php │ │ │ ├── PropertyPathIteratorInterface.php │ │ │ ├── README.md │ │ │ ├── StringUtil.php │ │ │ ├── Tests │ │ │ │ ├── Fixtures │ │ │ │ │ ├── NonTraversableArrayObject.php │ │ │ │ │ ├── ReturnTyped.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ ├── TestClassIsWritable.php │ │ │ │ │ ├── TestClassMagicCall.php │ │ │ │ │ ├── TestClassMagicGet.php │ │ │ │ │ ├── TestClassSetValue.php │ │ │ │ │ ├── TestClassTypeErrorInsideCall.php │ │ │ │ │ ├── TestSingularAndPluralProps.php │ │ │ │ │ ├── Ticket5775Object.php │ │ │ │ │ ├── TraversableArrayObject.php │ │ │ │ │ ├── TypeHinted.php │ │ │ │ │ ├── UninitializedPrivateProperty.php │ │ │ │ │ └── UninitializedProperty.php │ │ │ │ ├── PropertyAccessorArrayAccessTest.php │ │ │ │ ├── PropertyAccessorArrayObjectTest.php │ │ │ │ ├── PropertyAccessorArrayTest.php │ │ │ │ ├── PropertyAccessorBuilderTest.php │ │ │ │ ├── PropertyAccessorCollectionTest.php │ │ │ │ ├── PropertyAccessorNonTraversableArrayObjectTest.php │ │ │ │ ├── PropertyAccessorTest.php │ │ │ │ ├── PropertyAccessorTraversableArrayObjectTest.php │ │ │ │ ├── PropertyPathBuilderTest.php │ │ │ │ ├── PropertyPathTest.php │ │ │ │ ├── StringUtilTest.php │ │ │ │ ├── TestPluralAdderRemoverAndSetter.php │ │ │ │ └── TestPluralAdderRemoverAndSetterSameSingularAndPlural.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── PropertyInfo │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── DependencyInjection │ │ │ │ └── PropertyInfoPass.php │ │ │ ├── Extractor │ │ │ │ ├── PhpDocExtractor.php │ │ │ │ ├── ReflectionExtractor.php │ │ │ │ └── SerializerExtractor.php │ │ │ ├── LICENSE │ │ │ ├── PropertyAccessExtractorInterface.php │ │ │ ├── PropertyDescriptionExtractorInterface.php │ │ │ ├── PropertyInfoCacheExtractor.php │ │ │ ├── PropertyInfoExtractor.php │ │ │ ├── PropertyInfoExtractorInterface.php │ │ │ ├── PropertyListExtractorInterface.php │ │ │ ├── PropertyTypeExtractorInterface.php │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── AbstractPropertyInfoExtractorTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── PropertyInfoPassTest.php │ │ │ │ ├── Extractor │ │ │ │ │ ├── PhpDocExtractorTest.php │ │ │ │ │ ├── ReflectionExtractorTest.php │ │ │ │ │ └── SerializerExtractorTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── AdderRemoverDummy.php │ │ │ │ │ ├── DockBlockFallback.php │ │ │ │ │ ├── Dummy.php │ │ │ │ │ ├── DummyExtractor.php │ │ │ │ │ ├── NoProperties.php │ │ │ │ │ ├── NullExtractor.php │ │ │ │ │ ├── ParentDummy.php │ │ │ │ │ ├── Php71Dummy.php │ │ │ │ │ ├── Php7Dummy.php │ │ │ │ │ └── Php80Dummy.php │ │ │ │ ├── PropertyInfoCacheExtractorTest.php │ │ │ │ ├── PropertyInfoExtractorTest.php │ │ │ │ └── TypeTest.php │ │ │ ├── Type.php │ │ │ ├── Util │ │ │ │ └── PhpDocTypeHelper.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Routing │ │ │ ├── .gitignore │ │ │ ├── Annotation │ │ │ │ └── Route.php │ │ │ ├── CHANGELOG.md │ │ │ ├── CompiledRoute.php │ │ │ ├── DependencyInjection │ │ │ │ └── RoutingResolverPass.php │ │ │ ├── Exception │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidParameterException.php │ │ │ │ ├── MethodNotAllowedException.php │ │ │ │ ├── MissingMandatoryParametersException.php │ │ │ │ ├── NoConfigurationException.php │ │ │ │ ├── ResourceNotFoundException.php │ │ │ │ └── RouteNotFoundException.php │ │ │ ├── Generator │ │ │ │ ├── ConfigurableRequirementsInterface.php │ │ │ │ ├── Dumper │ │ │ │ │ ├── GeneratorDumper.php │ │ │ │ │ ├── GeneratorDumperInterface.php │ │ │ │ │ └── PhpGeneratorDumper.php │ │ │ │ ├── UrlGenerator.php │ │ │ │ └── UrlGeneratorInterface.php │ │ │ ├── LICENSE │ │ │ ├── Loader │ │ │ │ ├── AnnotationClassLoader.php │ │ │ │ ├── AnnotationDirectoryLoader.php │ │ │ │ ├── AnnotationFileLoader.php │ │ │ │ ├── ClosureLoader.php │ │ │ │ ├── Configurator │ │ │ │ │ ├── CollectionConfigurator.php │ │ │ │ │ ├── ImportConfigurator.php │ │ │ │ │ ├── RouteConfigurator.php │ │ │ │ │ ├── RoutingConfigurator.php │ │ │ │ │ └── Traits │ │ │ │ │ │ ├── AddTrait.php │ │ │ │ │ │ └── RouteTrait.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── ServiceRouterLoader.php │ │ │ │ ├── DirectoryLoader.php │ │ │ │ ├── GlobFileLoader.php │ │ │ │ ├── ObjectRouteLoader.php │ │ │ │ ├── PhpFileLoader.php │ │ │ │ ├── XmlFileLoader.php │ │ │ │ ├── YamlFileLoader.php │ │ │ │ └── schema │ │ │ │ │ └── routing │ │ │ │ │ └── routing-1.0.xsd │ │ │ ├── Matcher │ │ │ │ ├── Dumper │ │ │ │ │ ├── DumperCollection.php │ │ │ │ │ ├── DumperRoute.php │ │ │ │ │ ├── MatcherDumper.php │ │ │ │ │ ├── MatcherDumperInterface.php │ │ │ │ │ ├── PhpMatcherDumper.php │ │ │ │ │ └── StaticPrefixCollection.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 │ │ │ ├── Tests │ │ │ │ ├── Annotation │ │ │ │ │ └── RouteTest.php │ │ │ │ ├── CompiledRouteTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── RoutingResolverPassTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── AnnotatedClasses │ │ │ │ │ │ ├── AbstractClass.php │ │ │ │ │ │ ├── BarClass.php │ │ │ │ │ │ ├── BazClass.php │ │ │ │ │ │ ├── EncodingClass.php │ │ │ │ │ │ ├── FooClass.php │ │ │ │ │ │ └── FooTrait.php │ │ │ │ │ ├── CustomCompiledRoute.php │ │ │ │ │ ├── CustomRouteCompiler.php │ │ │ │ │ ├── CustomXmlFileLoader.php │ │ │ │ │ ├── OtherAnnotatedClasses │ │ │ │ │ │ ├── AnonymousClassInTrait.php │ │ │ │ │ │ ├── NoStartTagClass.php │ │ │ │ │ │ └── VariadicClass.php │ │ │ │ │ ├── RedirectableUrlMatcher.php │ │ │ │ │ ├── annotated.php │ │ │ │ │ ├── bad_format.yml │ │ │ │ │ ├── bar.xml │ │ │ │ │ ├── controller │ │ │ │ │ │ ├── import__controller.xml │ │ │ │ │ │ ├── import__controller.yml │ │ │ │ │ │ ├── import_controller.xml │ │ │ │ │ │ ├── import_controller.yml │ │ │ │ │ │ ├── import_override_defaults.xml │ │ │ │ │ │ ├── import_override_defaults.yml │ │ │ │ │ │ ├── override_defaults.xml │ │ │ │ │ │ ├── override_defaults.yml │ │ │ │ │ │ ├── routing.xml │ │ │ │ │ │ └── routing.yml │ │ │ │ │ ├── directory │ │ │ │ │ │ ├── recurse │ │ │ │ │ │ │ ├── routes1.yml │ │ │ │ │ │ │ └── routes2.yml │ │ │ │ │ │ └── routes3.yml │ │ │ │ │ ├── directory_import │ │ │ │ │ │ └── import.yml │ │ │ │ │ ├── dumper │ │ │ │ │ │ ├── url_matcher0.php │ │ │ │ │ │ ├── url_matcher1.php │ │ │ │ │ │ ├── url_matcher2.php │ │ │ │ │ │ ├── url_matcher3.php │ │ │ │ │ │ ├── url_matcher4.php │ │ │ │ │ │ ├── url_matcher5.php │ │ │ │ │ │ ├── url_matcher6.php │ │ │ │ │ │ └── url_matcher7.php │ │ │ │ │ ├── empty.yml │ │ │ │ │ ├── file_resource.yml │ │ │ │ │ ├── foo.xml │ │ │ │ │ ├── foo1.xml │ │ │ │ │ ├── glob │ │ │ │ │ │ ├── bar.xml │ │ │ │ │ │ ├── bar.yml │ │ │ │ │ │ ├── baz.xml │ │ │ │ │ │ ├── baz.yml │ │ │ │ │ │ ├── import_multiple.xml │ │ │ │ │ │ ├── import_multiple.yml │ │ │ │ │ │ ├── import_single.xml │ │ │ │ │ │ ├── import_single.yml │ │ │ │ │ │ ├── php_dsl.php │ │ │ │ │ │ ├── php_dsl_bar.php │ │ │ │ │ │ └── php_dsl_baz.php │ │ │ │ │ ├── incomplete.yml │ │ │ │ │ ├── list_defaults.xml │ │ │ │ │ ├── list_in_list_defaults.xml │ │ │ │ │ ├── list_in_map_defaults.xml │ │ │ │ │ ├── list_null_values.xml │ │ │ │ │ ├── localized │ │ │ │ │ │ └── utf8.xml │ │ │ │ │ ├── map_defaults.xml │ │ │ │ │ ├── map_in_list_defaults.xml │ │ │ │ │ ├── map_in_map_defaults.xml │ │ │ │ │ ├── map_null_values.xml │ │ │ │ │ ├── missing_id.xml │ │ │ │ │ ├── missing_path.xml │ │ │ │ │ ├── namespaceprefix.xml │ │ │ │ │ ├── nonesense_resource_plus_path.yml │ │ │ │ │ ├── nonesense_type_without_resource.yml │ │ │ │ │ ├── nonvalid.xml │ │ │ │ │ ├── nonvalid.yml │ │ │ │ │ ├── nonvalid2.yml │ │ │ │ │ ├── nonvalidkeys.yml │ │ │ │ │ ├── nonvalidnode.xml │ │ │ │ │ ├── nonvalidroute.xml │ │ │ │ │ ├── null_values.xml │ │ │ │ │ ├── php_dsl.php │ │ │ │ │ ├── php_dsl_sub.php │ │ │ │ │ ├── scalar_defaults.xml │ │ │ │ │ ├── special_route_name.yml │ │ │ │ │ ├── validpattern.php │ │ │ │ │ ├── validpattern.xml │ │ │ │ │ ├── validpattern.yml │ │ │ │ │ ├── validresource.php │ │ │ │ │ ├── validresource.xml │ │ │ │ │ ├── validresource.yml │ │ │ │ │ ├── with_define_path_variable.php │ │ │ │ │ └── withdoctype.xml │ │ │ │ ├── Generator │ │ │ │ │ ├── Dumper │ │ │ │ │ │ └── PhpGeneratorDumperTest.php │ │ │ │ │ └── UrlGeneratorTest.php │ │ │ │ ├── Loader │ │ │ │ │ ├── AbstractAnnotationLoaderTest.php │ │ │ │ │ ├── AnnotationClassLoaderTest.php │ │ │ │ │ ├── AnnotationDirectoryLoaderTest.php │ │ │ │ │ ├── AnnotationFileLoaderTest.php │ │ │ │ │ ├── ClosureLoaderTest.php │ │ │ │ │ ├── DirectoryLoaderTest.php │ │ │ │ │ ├── GlobFileLoaderTest.php │ │ │ │ │ ├── ObjectRouteLoaderTest.php │ │ │ │ │ ├── PhpFileLoaderTest.php │ │ │ │ │ ├── XmlFileLoaderTest.php │ │ │ │ │ └── YamlFileLoaderTest.php │ │ │ │ ├── Matcher │ │ │ │ │ ├── DumpedRedirectableUrlMatcherTest.php │ │ │ │ │ ├── DumpedUrlMatcherTest.php │ │ │ │ │ ├── Dumper │ │ │ │ │ │ ├── DumperCollectionTest.php │ │ │ │ │ │ ├── PhpMatcherDumperTest.php │ │ │ │ │ │ └── StaticPrefixCollectionTest.php │ │ │ │ │ ├── RedirectableUrlMatcherTest.php │ │ │ │ │ ├── TraceableUrlMatcherTest.php │ │ │ │ │ └── UrlMatcherTest.php │ │ │ │ ├── RequestContextTest.php │ │ │ │ ├── RouteCollectionBuilderTest.php │ │ │ │ ├── RouteCollectionTest.php │ │ │ │ ├── RouteCompilerTest.php │ │ │ │ ├── RouteTest.php │ │ │ │ └── RouterTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Security │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Core │ │ │ │ ├── .gitignore │ │ │ │ ├── Authentication │ │ │ │ │ ├── AuthenticationManagerInterface.php │ │ │ │ │ ├── AuthenticationProviderManager.php │ │ │ │ │ ├── AuthenticationTrustResolver.php │ │ │ │ │ ├── AuthenticationTrustResolverInterface.php │ │ │ │ │ ├── Provider │ │ │ │ │ │ ├── AnonymousAuthenticationProvider.php │ │ │ │ │ │ ├── AuthenticationProviderInterface.php │ │ │ │ │ │ ├── DaoAuthenticationProvider.php │ │ │ │ │ │ ├── LdapBindAuthenticationProvider.php │ │ │ │ │ │ ├── PreAuthenticatedAuthenticationProvider.php │ │ │ │ │ │ ├── RememberMeAuthenticationProvider.php │ │ │ │ │ │ ├── SimpleAuthenticationProvider.php │ │ │ │ │ │ └── UserAuthenticationProvider.php │ │ │ │ │ ├── RememberMe │ │ │ │ │ │ ├── InMemoryTokenProvider.php │ │ │ │ │ │ ├── PersistentToken.php │ │ │ │ │ │ ├── PersistentTokenInterface.php │ │ │ │ │ │ └── TokenProviderInterface.php │ │ │ │ │ ├── SimpleAuthenticatorInterface.php │ │ │ │ │ └── Token │ │ │ │ │ │ ├── AbstractToken.php │ │ │ │ │ │ ├── AnonymousToken.php │ │ │ │ │ │ ├── PreAuthenticatedToken.php │ │ │ │ │ │ ├── RememberMeToken.php │ │ │ │ │ │ ├── Storage │ │ │ │ │ │ ├── TokenStorage.php │ │ │ │ │ │ └── TokenStorageInterface.php │ │ │ │ │ │ ├── TokenInterface.php │ │ │ │ │ │ └── UsernamePasswordToken.php │ │ │ │ ├── AuthenticationEvents.php │ │ │ │ ├── Authorization │ │ │ │ │ ├── AccessDecisionManager.php │ │ │ │ │ ├── AccessDecisionManagerInterface.php │ │ │ │ │ ├── AuthorizationChecker.php │ │ │ │ │ ├── AuthorizationCheckerInterface.php │ │ │ │ │ ├── DebugAccessDecisionManager.php │ │ │ │ │ ├── ExpressionLanguage.php │ │ │ │ │ ├── ExpressionLanguageProvider.php │ │ │ │ │ ├── TraceableAccessDecisionManager.php │ │ │ │ │ └── Voter │ │ │ │ │ │ ├── AuthenticatedVoter.php │ │ │ │ │ │ ├── ExpressionVoter.php │ │ │ │ │ │ ├── RoleHierarchyVoter.php │ │ │ │ │ │ ├── RoleVoter.php │ │ │ │ │ │ ├── Voter.php │ │ │ │ │ │ └── VoterInterface.php │ │ │ │ ├── Encoder │ │ │ │ │ ├── Argon2iPasswordEncoder.php │ │ │ │ │ ├── BCryptPasswordEncoder.php │ │ │ │ │ ├── BasePasswordEncoder.php │ │ │ │ │ ├── EncoderAwareInterface.php │ │ │ │ │ ├── EncoderFactory.php │ │ │ │ │ ├── EncoderFactoryInterface.php │ │ │ │ │ ├── MessageDigestPasswordEncoder.php │ │ │ │ │ ├── PasswordEncoderInterface.php │ │ │ │ │ ├── Pbkdf2PasswordEncoder.php │ │ │ │ │ ├── PlaintextPasswordEncoder.php │ │ │ │ │ ├── SelfSaltingEncoderInterface.php │ │ │ │ │ ├── UserPasswordEncoder.php │ │ │ │ │ └── UserPasswordEncoderInterface.php │ │ │ │ ├── Event │ │ │ │ │ ├── AuthenticationEvent.php │ │ │ │ │ └── AuthenticationFailureEvent.php │ │ │ │ ├── Exception │ │ │ │ │ ├── AccessDeniedException.php │ │ │ │ │ ├── AccountExpiredException.php │ │ │ │ │ ├── AccountStatusException.php │ │ │ │ │ ├── AuthenticationCredentialsNotFoundException.php │ │ │ │ │ ├── AuthenticationException.php │ │ │ │ │ ├── AuthenticationExpiredException.php │ │ │ │ │ ├── AuthenticationServiceException.php │ │ │ │ │ ├── BadCredentialsException.php │ │ │ │ │ ├── CookieTheftException.php │ │ │ │ │ ├── CredentialsExpiredException.php │ │ │ │ │ ├── CustomUserMessageAuthenticationException.php │ │ │ │ │ ├── DisabledException.php │ │ │ │ │ ├── ExceptionInterface.php │ │ │ │ │ ├── InsufficientAuthenticationException.php │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ ├── InvalidCsrfTokenException.php │ │ │ │ │ ├── LockedException.php │ │ │ │ │ ├── LogicException.php │ │ │ │ │ ├── LogoutException.php │ │ │ │ │ ├── NonceExpiredException.php │ │ │ │ │ ├── ProviderNotFoundException.php │ │ │ │ │ ├── RuntimeException.php │ │ │ │ │ ├── SessionUnavailableException.php │ │ │ │ │ ├── TokenNotFoundException.php │ │ │ │ │ ├── UnsupportedUserException.php │ │ │ │ │ └── UsernameNotFoundException.php │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── Resources │ │ │ │ │ └── translations │ │ │ │ │ │ ├── security.ar.xlf │ │ │ │ │ │ ├── security.az.xlf │ │ │ │ │ │ ├── security.be.xlf │ │ │ │ │ │ ├── security.bg.xlf │ │ │ │ │ │ ├── security.ca.xlf │ │ │ │ │ │ ├── security.cs.xlf │ │ │ │ │ │ ├── security.da.xlf │ │ │ │ │ │ ├── security.de.xlf │ │ │ │ │ │ ├── security.el.xlf │ │ │ │ │ │ ├── security.en.xlf │ │ │ │ │ │ ├── security.es.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.id.xlf │ │ │ │ │ │ ├── security.it.xlf │ │ │ │ │ │ ├── security.ja.xlf │ │ │ │ │ │ ├── security.lb.xlf │ │ │ │ │ │ ├── security.lt.xlf │ │ │ │ │ │ ├── security.lv.xlf │ │ │ │ │ │ ├── security.nb.xlf │ │ │ │ │ │ ├── security.nl.xlf │ │ │ │ │ │ ├── security.nn.xlf │ │ │ │ │ │ ├── security.no.xlf │ │ │ │ │ │ ├── security.pl.xlf │ │ │ │ │ │ ├── security.pt_BR.xlf │ │ │ │ │ │ ├── security.pt_PT.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.vi.xlf │ │ │ │ │ │ ├── security.zh_CN.xlf │ │ │ │ │ │ └── security.zh_TW.xlf │ │ │ │ ├── Role │ │ │ │ │ ├── Role.php │ │ │ │ │ ├── RoleHierarchy.php │ │ │ │ │ ├── RoleHierarchyInterface.php │ │ │ │ │ ├── RoleInterface.php │ │ │ │ │ └── SwitchUserRole.php │ │ │ │ ├── Security.php │ │ │ │ ├── Tests │ │ │ │ │ ├── Authentication │ │ │ │ │ │ ├── AuthenticationProviderManagerTest.php │ │ │ │ │ │ ├── AuthenticationTrustResolverTest.php │ │ │ │ │ │ ├── Provider │ │ │ │ │ │ │ ├── AnonymousAuthenticationProviderTest.php │ │ │ │ │ │ │ ├── DaoAuthenticationProviderTest.php │ │ │ │ │ │ │ ├── LdapBindAuthenticationProviderTest.php │ │ │ │ │ │ │ ├── PreAuthenticatedAuthenticationProviderTest.php │ │ │ │ │ │ │ ├── RememberMeAuthenticationProviderTest.php │ │ │ │ │ │ │ ├── SimpleAuthenticationProviderTest.php │ │ │ │ │ │ │ └── UserAuthenticationProviderTest.php │ │ │ │ │ │ ├── RememberMe │ │ │ │ │ │ │ ├── InMemoryTokenProviderTest.php │ │ │ │ │ │ │ └── PersistentTokenTest.php │ │ │ │ │ │ └── Token │ │ │ │ │ │ │ ├── AbstractTokenTest.php │ │ │ │ │ │ │ ├── AnonymousTokenTest.php │ │ │ │ │ │ │ ├── PreAuthenticatedTokenTest.php │ │ │ │ │ │ │ ├── RememberMeTokenTest.php │ │ │ │ │ │ │ ├── Storage │ │ │ │ │ │ │ └── TokenStorageTest.php │ │ │ │ │ │ │ └── UsernamePasswordTokenTest.php │ │ │ │ │ ├── Authorization │ │ │ │ │ │ ├── AccessDecisionManagerTest.php │ │ │ │ │ │ ├── AuthorizationCheckerTest.php │ │ │ │ │ │ ├── ExpressionLanguageTest.php │ │ │ │ │ │ ├── Stub │ │ │ │ │ │ │ └── VoterWithoutInterface.php │ │ │ │ │ │ ├── TraceableAccessDecisionManagerTest.php │ │ │ │ │ │ └── Voter │ │ │ │ │ │ │ ├── AuthenticatedVoterTest.php │ │ │ │ │ │ │ ├── ExpressionVoterTest.php │ │ │ │ │ │ │ ├── RoleHierarchyVoterTest.php │ │ │ │ │ │ │ ├── RoleVoterTest.php │ │ │ │ │ │ │ └── VoterTest.php │ │ │ │ │ ├── Encoder │ │ │ │ │ │ ├── Argon2iPasswordEncoderTest.php │ │ │ │ │ │ ├── BCryptPasswordEncoderTest.php │ │ │ │ │ │ ├── BasePasswordEncoderTest.php │ │ │ │ │ │ ├── EncoderFactoryTest.php │ │ │ │ │ │ ├── MessageDigestPasswordEncoderTest.php │ │ │ │ │ │ ├── Pbkdf2PasswordEncoderTest.php │ │ │ │ │ │ ├── PlaintextPasswordEncoderTest.php │ │ │ │ │ │ └── UserPasswordEncoderTest.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── CustomUserMessageAuthenticationExceptionTest.php │ │ │ │ │ │ └── UsernameNotFoundExceptionTest.php │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── TranslationFilesTest.php │ │ │ │ │ ├── Role │ │ │ │ │ │ ├── RoleHierarchyTest.php │ │ │ │ │ │ ├── RoleTest.php │ │ │ │ │ │ └── SwitchUserRoleTest.php │ │ │ │ │ ├── SecurityTest.php │ │ │ │ │ ├── User │ │ │ │ │ │ ├── ChainUserProviderTest.php │ │ │ │ │ │ ├── InMemoryUserProviderTest.php │ │ │ │ │ │ ├── LdapUserProviderTest.php │ │ │ │ │ │ ├── UserCheckerTest.php │ │ │ │ │ │ └── UserTest.php │ │ │ │ │ └── Validator │ │ │ │ │ │ └── Constraints │ │ │ │ │ │ └── UserPasswordValidatorTest.php │ │ │ │ ├── User │ │ │ │ │ ├── AdvancedUserInterface.php │ │ │ │ │ ├── ChainUserProvider.php │ │ │ │ │ ├── EquatableInterface.php │ │ │ │ │ ├── InMemoryUserProvider.php │ │ │ │ │ ├── LdapUserProvider.php │ │ │ │ │ ├── User.php │ │ │ │ │ ├── UserChecker.php │ │ │ │ │ ├── UserCheckerInterface.php │ │ │ │ │ ├── UserInterface.php │ │ │ │ │ └── UserProviderInterface.php │ │ │ │ ├── Validator │ │ │ │ │ └── Constraints │ │ │ │ │ │ ├── UserPassword.php │ │ │ │ │ │ └── UserPasswordValidator.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── Csrf │ │ │ │ ├── .gitignore │ │ │ │ ├── CsrfToken.php │ │ │ │ ├── CsrfTokenManager.php │ │ │ │ ├── CsrfTokenManagerInterface.php │ │ │ │ ├── Exception │ │ │ │ │ └── TokenNotFoundException.php │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── Tests │ │ │ │ │ ├── CsrfTokenManagerTest.php │ │ │ │ │ ├── TokenGenerator │ │ │ │ │ │ └── UriSafeTokenGeneratorTest.php │ │ │ │ │ └── TokenStorage │ │ │ │ │ │ ├── NativeSessionTokenStorageTest.php │ │ │ │ │ │ └── SessionTokenStorageTest.php │ │ │ │ ├── TokenGenerator │ │ │ │ │ ├── TokenGeneratorInterface.php │ │ │ │ │ └── UriSafeTokenGenerator.php │ │ │ │ ├── TokenStorage │ │ │ │ │ ├── ClearableTokenStorageInterface.php │ │ │ │ │ ├── NativeSessionTokenStorage.php │ │ │ │ │ ├── SessionTokenStorage.php │ │ │ │ │ └── TokenStorageInterface.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── Guard │ │ │ │ ├── .gitignore │ │ │ │ ├── AbstractGuardAuthenticator.php │ │ │ │ ├── Authenticator │ │ │ │ │ └── AbstractFormLoginAuthenticator.php │ │ │ │ ├── AuthenticatorInterface.php │ │ │ │ ├── Firewall │ │ │ │ │ └── GuardAuthenticationListener.php │ │ │ │ ├── GuardAuthenticatorHandler.php │ │ │ │ ├── GuardAuthenticatorInterface.php │ │ │ │ ├── LICENSE │ │ │ │ ├── Provider │ │ │ │ │ └── GuardAuthenticationProvider.php │ │ │ │ ├── README.md │ │ │ │ ├── Tests │ │ │ │ │ ├── Authenticator │ │ │ │ │ │ └── FormLoginAuthenticatorTest.php │ │ │ │ │ ├── Firewall │ │ │ │ │ │ └── GuardAuthenticationListenerTest.php │ │ │ │ │ ├── GuardAuthenticatorHandlerTest.php │ │ │ │ │ └── Provider │ │ │ │ │ │ └── GuardAuthenticationProviderTest.php │ │ │ │ ├── Token │ │ │ │ │ ├── GuardTokenInterface.php │ │ │ │ │ ├── PostAuthenticationGuardToken.php │ │ │ │ │ └── PreAuthenticationGuardToken.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── Http │ │ │ │ ├── .gitignore │ │ │ │ ├── AccessMap.php │ │ │ │ ├── AccessMapInterface.php │ │ │ │ ├── Authentication │ │ │ │ │ ├── AuthenticationFailureHandlerInterface.php │ │ │ │ │ ├── AuthenticationSuccessHandlerInterface.php │ │ │ │ │ ├── AuthenticationUtils.php │ │ │ │ │ ├── CustomAuthenticationFailureHandler.php │ │ │ │ │ ├── CustomAuthenticationSuccessHandler.php │ │ │ │ │ ├── DefaultAuthenticationFailureHandler.php │ │ │ │ │ ├── DefaultAuthenticationSuccessHandler.php │ │ │ │ │ ├── SimpleAuthenticationHandler.php │ │ │ │ │ ├── SimpleFormAuthenticatorInterface.php │ │ │ │ │ └── SimplePreAuthenticatorInterface.php │ │ │ │ ├── Authorization │ │ │ │ │ └── AccessDeniedHandlerInterface.php │ │ │ │ ├── EntryPoint │ │ │ │ │ ├── AuthenticationEntryPointInterface.php │ │ │ │ │ ├── BasicAuthenticationEntryPoint.php │ │ │ │ │ ├── DigestAuthenticationEntryPoint.php │ │ │ │ │ ├── FormAuthenticationEntryPoint.php │ │ │ │ │ └── RetryAuthenticationEntryPoint.php │ │ │ │ ├── Event │ │ │ │ │ ├── InteractiveLoginEvent.php │ │ │ │ │ └── SwitchUserEvent.php │ │ │ │ ├── Firewall.php │ │ │ │ ├── Firewall │ │ │ │ │ ├── AbstractAuthenticationListener.php │ │ │ │ │ ├── AbstractPreAuthenticatedListener.php │ │ │ │ │ ├── AccessListener.php │ │ │ │ │ ├── AnonymousAuthenticationListener.php │ │ │ │ │ ├── BasicAuthenticationListener.php │ │ │ │ │ ├── ChannelListener.php │ │ │ │ │ ├── ContextListener.php │ │ │ │ │ ├── DigestAuthenticationListener.php │ │ │ │ │ ├── ExceptionListener.php │ │ │ │ │ ├── ListenerInterface.php │ │ │ │ │ ├── LogoutListener.php │ │ │ │ │ ├── RememberMeListener.php │ │ │ │ │ ├── RemoteUserAuthenticationListener.php │ │ │ │ │ ├── SimpleFormAuthenticationListener.php │ │ │ │ │ ├── SimplePreAuthenticationListener.php │ │ │ │ │ ├── SwitchUserListener.php │ │ │ │ │ ├── UsernamePasswordFormAuthenticationListener.php │ │ │ │ │ ├── UsernamePasswordJsonAuthenticationListener.php │ │ │ │ │ └── X509AuthenticationListener.php │ │ │ │ ├── FirewallMap.php │ │ │ │ ├── FirewallMapInterface.php │ │ │ │ ├── HttpUtils.php │ │ │ │ ├── LICENSE │ │ │ │ ├── Logout │ │ │ │ │ ├── CookieClearingLogoutHandler.php │ │ │ │ │ ├── CsrfTokenClearingLogoutHandler.php │ │ │ │ │ ├── DefaultLogoutSuccessHandler.php │ │ │ │ │ ├── LogoutHandlerInterface.php │ │ │ │ │ ├── LogoutSuccessHandlerInterface.php │ │ │ │ │ ├── LogoutUrlGenerator.php │ │ │ │ │ └── SessionLogoutHandler.php │ │ │ │ ├── ParameterBagUtils.php │ │ │ │ ├── README.md │ │ │ │ ├── RememberMe │ │ │ │ │ ├── AbstractRememberMeServices.php │ │ │ │ │ ├── PersistentTokenBasedRememberMeServices.php │ │ │ │ │ ├── RememberMeServicesInterface.php │ │ │ │ │ ├── ResponseListener.php │ │ │ │ │ └── TokenBasedRememberMeServices.php │ │ │ │ ├── SecurityEvents.php │ │ │ │ ├── Session │ │ │ │ │ ├── SessionAuthenticationStrategy.php │ │ │ │ │ └── SessionAuthenticationStrategyInterface.php │ │ │ │ ├── Tests │ │ │ │ │ ├── AccessMapTest.php │ │ │ │ │ ├── Authentication │ │ │ │ │ │ ├── DefaultAuthenticationFailureHandlerTest.php │ │ │ │ │ │ ├── DefaultAuthenticationSuccessHandlerTest.php │ │ │ │ │ │ └── SimpleAuthenticationHandlerTest.php │ │ │ │ │ ├── EntryPoint │ │ │ │ │ │ ├── BasicAuthenticationEntryPointTest.php │ │ │ │ │ │ ├── DigestAuthenticationEntryPointTest.php │ │ │ │ │ │ ├── FormAuthenticationEntryPointTest.php │ │ │ │ │ │ └── RetryAuthenticationEntryPointTest.php │ │ │ │ │ ├── Firewall │ │ │ │ │ │ ├── AbstractPreAuthenticatedListenerTest.php │ │ │ │ │ │ ├── AccessListenerTest.php │ │ │ │ │ │ ├── AnonymousAuthenticationListenerTest.php │ │ │ │ │ │ ├── BasicAuthenticationListenerTest.php │ │ │ │ │ │ ├── ChannelListenerTest.php │ │ │ │ │ │ ├── ContextListenerTest.php │ │ │ │ │ │ ├── DigestAuthenticationListenerTest.php │ │ │ │ │ │ ├── DigestDataTest.php │ │ │ │ │ │ ├── ExceptionListenerTest.php │ │ │ │ │ │ ├── LogoutListenerTest.php │ │ │ │ │ │ ├── RememberMeListenerTest.php │ │ │ │ │ │ ├── RemoteUserAuthenticationListenerTest.php │ │ │ │ │ │ ├── SimplePreAuthenticationListenerTest.php │ │ │ │ │ │ ├── SwitchUserListenerTest.php │ │ │ │ │ │ ├── UsernamePasswordFormAuthenticationListenerTest.php │ │ │ │ │ │ ├── UsernamePasswordJsonAuthenticationListenerTest.php │ │ │ │ │ │ └── X509AuthenticationListenerTest.php │ │ │ │ │ ├── FirewallMapTest.php │ │ │ │ │ ├── FirewallTest.php │ │ │ │ │ ├── HttpUtilsTest.php │ │ │ │ │ ├── Logout │ │ │ │ │ │ ├── CookieClearingLogoutHandlerTest.php │ │ │ │ │ │ ├── CsrfTokenClearingLogoutHandlerTest.php │ │ │ │ │ │ ├── DefaultLogoutSuccessHandlerTest.php │ │ │ │ │ │ ├── LogoutUrlGeneratorTest.php │ │ │ │ │ │ └── SessionLogoutHandlerTest.php │ │ │ │ │ ├── RememberMe │ │ │ │ │ │ ├── AbstractRememberMeServicesTest.php │ │ │ │ │ │ ├── PersistentTokenBasedRememberMeServicesTest.php │ │ │ │ │ │ ├── ResponseListenerTest.php │ │ │ │ │ │ └── TokenBasedRememberMeServicesTest.php │ │ │ │ │ ├── Session │ │ │ │ │ │ └── SessionAuthenticationStrategyTest.php │ │ │ │ │ └── Util │ │ │ │ │ │ └── TargetPathTraitTest.php │ │ │ │ ├── Util │ │ │ │ │ └── TargetPathTrait.php │ │ │ │ ├── composer.json │ │ │ │ └── phpunit.xml.dist │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Serializer │ │ │ ├── .gitignore │ │ │ ├── Annotation │ │ │ │ ├── Groups.php │ │ │ │ └── MaxDepth.php │ │ │ ├── CHANGELOG.md │ │ │ ├── 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 │ │ │ │ ├── SerializerAwareEncoder.php │ │ │ │ ├── XmlEncoder.php │ │ │ │ └── YamlEncoder.php │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── CircularReferenceException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── ExtraAttributesException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogicException.php │ │ │ │ ├── MappingException.php │ │ │ │ ├── NotEncodableValueException.php │ │ │ │ ├── NotNormalizableValueException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── UnexpectedValueException.php │ │ │ │ └── UnsupportedException.php │ │ │ ├── LICENSE │ │ │ ├── Mapping │ │ │ │ ├── AttributeMetadata.php │ │ │ │ ├── AttributeMetadataInterface.php │ │ │ │ ├── ClassMetadata.php │ │ │ │ ├── ClassMetadataInterface.php │ │ │ │ ├── Factory │ │ │ │ │ ├── CacheClassMetadataFactory.php │ │ │ │ │ ├── ClassMetadataFactory.php │ │ │ │ │ ├── ClassMetadataFactoryInterface.php │ │ │ │ │ └── ClassResolverTrait.php │ │ │ │ └── Loader │ │ │ │ │ ├── AnnotationLoader.php │ │ │ │ │ ├── FileLoader.php │ │ │ │ │ ├── LoaderChain.php │ │ │ │ │ ├── LoaderInterface.php │ │ │ │ │ ├── XmlFileLoader.php │ │ │ │ │ ├── YamlFileLoader.php │ │ │ │ │ └── schema │ │ │ │ │ └── dic │ │ │ │ │ └── serializer-mapping │ │ │ │ │ └── serializer-mapping-1.0.xsd │ │ │ ├── NameConverter │ │ │ │ ├── CamelCaseToSnakeCaseNameConverter.php │ │ │ │ └── NameConverterInterface.php │ │ │ ├── Normalizer │ │ │ │ ├── AbstractNormalizer.php │ │ │ │ ├── AbstractObjectNormalizer.php │ │ │ │ ├── ArrayDenormalizer.php │ │ │ │ ├── ContextAwareDenormalizerInterface.php │ │ │ │ ├── ContextAwareNormalizerInterface.php │ │ │ │ ├── CustomNormalizer.php │ │ │ │ ├── DataUriNormalizer.php │ │ │ │ ├── DateIntervalNormalizer.php │ │ │ │ ├── DateTimeNormalizer.php │ │ │ │ ├── DenormalizableInterface.php │ │ │ │ ├── DenormalizerAwareInterface.php │ │ │ │ ├── DenormalizerAwareTrait.php │ │ │ │ ├── DenormalizerInterface.php │ │ │ │ ├── GetSetMethodNormalizer.php │ │ │ │ ├── JsonSerializableNormalizer.php │ │ │ │ ├── NormalizableInterface.php │ │ │ │ ├── NormalizerAwareInterface.php │ │ │ │ ├── NormalizerAwareTrait.php │ │ │ │ ├── NormalizerInterface.php │ │ │ │ ├── ObjectNormalizer.php │ │ │ │ ├── ObjectToPopulateTrait.php │ │ │ │ ├── PropertyNormalizer.php │ │ │ │ └── SerializerAwareNormalizer.php │ │ │ ├── README.md │ │ │ ├── Serializer.php │ │ │ ├── SerializerAwareInterface.php │ │ │ ├── SerializerAwareTrait.php │ │ │ ├── SerializerInterface.php │ │ │ ├── Tests │ │ │ │ ├── Annotation │ │ │ │ │ ├── GroupsTest.php │ │ │ │ │ └── MaxDepthTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── SerializerPassTest.php │ │ │ │ ├── DeserializeNestedArrayOfObjectsTest.php │ │ │ │ ├── Encoder │ │ │ │ │ ├── ChainDecoderTest.php │ │ │ │ │ ├── ChainEncoderTest.php │ │ │ │ │ ├── CsvEncoderTest.php │ │ │ │ │ ├── JsonDecodeTest.php │ │ │ │ │ ├── JsonEncodeTest.php │ │ │ │ │ ├── JsonEncoderTest.php │ │ │ │ │ ├── XmlEncoderTest.php │ │ │ │ │ └── YamlEncoderTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── AbstractNormalizerDummy.php │ │ │ │ │ ├── CircularReferenceDummy.php │ │ │ │ │ ├── DenormalizableDummy.php │ │ │ │ │ ├── Dummy.php │ │ │ │ │ ├── GroupDummy.php │ │ │ │ │ ├── GroupDummyChild.php │ │ │ │ │ ├── GroupDummyInterface.php │ │ │ │ │ ├── GroupDummyParent.php │ │ │ │ │ ├── JsonSerializableDummy.php │ │ │ │ │ ├── MaxDepthDummy.php │ │ │ │ │ ├── NormalizableTraversableDummy.php │ │ │ │ │ ├── NullableConstructorArgumentDummy.php │ │ │ │ │ ├── Php74Dummy.php │ │ │ │ │ ├── PropertyCircularReferenceDummy.php │ │ │ │ │ ├── PropertySiblingHolder.php │ │ │ │ │ ├── ProxyDummy.php │ │ │ │ │ ├── ScalarDummy.php │ │ │ │ │ ├── SiblingHolder.php │ │ │ │ │ ├── StaticConstructorDummy.php │ │ │ │ │ ├── StaticConstructorNormalizer.php │ │ │ │ │ ├── ToBeProxyfiedDummy.php │ │ │ │ │ ├── TraversableDummy.php │ │ │ │ │ ├── VariadicConstructorArgsDummy.php │ │ │ │ │ ├── VariadicConstructorTypedArgsDummy.php │ │ │ │ │ ├── empty-mapping.yml │ │ │ │ │ ├── invalid-mapping.yml │ │ │ │ │ ├── serialization.xml │ │ │ │ │ ├── serialization.yml │ │ │ │ │ ├── test.gif │ │ │ │ │ └── test.txt │ │ │ │ ├── Mapping │ │ │ │ │ ├── AttributeMetadataTest.php │ │ │ │ │ ├── ClassMetadataTest.php │ │ │ │ │ ├── Factory │ │ │ │ │ │ ├── CacheMetadataFactoryTest.php │ │ │ │ │ │ └── ClassMetadataFactoryTest.php │ │ │ │ │ ├── Loader │ │ │ │ │ │ ├── AnnotationLoaderTest.php │ │ │ │ │ │ ├── XmlFileLoaderTest.php │ │ │ │ │ │ └── YamlFileLoaderTest.php │ │ │ │ │ └── TestClassMetadataFactory.php │ │ │ │ ├── NameConverter │ │ │ │ │ └── CamelCaseToSnakeCaseNameConverterTest.php │ │ │ │ ├── Normalizer │ │ │ │ │ ├── AbstractNormalizerTest.php │ │ │ │ │ ├── AbstractObjectNormalizerTest.php │ │ │ │ │ ├── ArrayDenormalizerTest.php │ │ │ │ │ ├── CustomNormalizerTest.php │ │ │ │ │ ├── DataUriNormalizerTest.php │ │ │ │ │ ├── DateIntervalNormalizerTest.php │ │ │ │ │ ├── DateTimeNormalizerTest.php │ │ │ │ │ ├── GetSetMethodNormalizerTest.php │ │ │ │ │ ├── JsonSerializableNormalizerTest.php │ │ │ │ │ ├── ObjectNormalizerTest.php │ │ │ │ │ ├── ObjectToPopulateTraitTest.php │ │ │ │ │ ├── PropertyNormalizerTest.php │ │ │ │ │ ├── TestDenormalizer.php │ │ │ │ │ └── TestNormalizer.php │ │ │ │ └── SerializerTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Stopwatch │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Section.php │ │ │ ├── Stopwatch.php │ │ │ ├── StopwatchEvent.php │ │ │ ├── StopwatchPeriod.php │ │ │ ├── Tests │ │ │ │ ├── StopwatchEventTest.php │ │ │ │ ├── StopwatchPeriodTest.php │ │ │ │ └── StopwatchTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Templating │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── DelegatingEngine.php │ │ │ ├── EngineInterface.php │ │ │ ├── Helper │ │ │ │ ├── Helper.php │ │ │ │ ├── HelperInterface.php │ │ │ │ └── SlotsHelper.php │ │ │ ├── LICENSE │ │ │ ├── Loader │ │ │ │ ├── CacheLoader.php │ │ │ │ ├── ChainLoader.php │ │ │ │ ├── FilesystemLoader.php │ │ │ │ ├── Loader.php │ │ │ │ └── LoaderInterface.php │ │ │ ├── PhpEngine.php │ │ │ ├── README.md │ │ │ ├── Storage │ │ │ │ ├── FileStorage.php │ │ │ │ ├── Storage.php │ │ │ │ └── StringStorage.php │ │ │ ├── StreamingEngineInterface.php │ │ │ ├── TemplateNameParser.php │ │ │ ├── TemplateNameParserInterface.php │ │ │ ├── TemplateReference.php │ │ │ ├── TemplateReferenceInterface.php │ │ │ ├── Tests │ │ │ │ ├── DelegatingEngineTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── SimpleHelper.php │ │ │ │ │ └── templates │ │ │ │ │ │ └── foo.php │ │ │ │ ├── Helper │ │ │ │ │ ├── HelperTest.php │ │ │ │ │ └── SlotsHelperTest.php │ │ │ │ ├── Loader │ │ │ │ │ ├── CacheLoaderTest.php │ │ │ │ │ ├── ChainLoaderTest.php │ │ │ │ │ ├── FilesystemLoaderTest.php │ │ │ │ │ └── LoaderTest.php │ │ │ │ ├── PhpEngineTest.php │ │ │ │ ├── Storage │ │ │ │ │ ├── FileStorageTest.php │ │ │ │ │ ├── StorageTest.php │ │ │ │ │ └── StringStorageTest.php │ │ │ │ └── TemplateNameParserTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Translation │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Catalogue │ │ │ │ ├── AbstractOperation.php │ │ │ │ ├── MergeOperation.php │ │ │ │ ├── OperationInterface.php │ │ │ │ └── TargetOperation.php │ │ │ ├── Command │ │ │ │ └── XliffLintCommand.php │ │ │ ├── DataCollector │ │ │ │ └── TranslationDataCollector.php │ │ │ ├── DataCollectorTranslator.php │ │ │ ├── DependencyInjection │ │ │ │ ├── TranslationDumperPass.php │ │ │ │ ├── TranslationExtractorPass.php │ │ │ │ └── TranslatorPass.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 │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidResourceException.php │ │ │ │ ├── LogicException.php │ │ │ │ ├── NotFoundResourceException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── Extractor │ │ │ │ ├── AbstractFileExtractor.php │ │ │ │ ├── ChainExtractor.php │ │ │ │ ├── ExtractorInterface.php │ │ │ │ ├── PhpExtractor.php │ │ │ │ └── PhpStringTokenParser.php │ │ │ ├── Formatter │ │ │ │ ├── ChoiceMessageFormatterInterface.php │ │ │ │ ├── MessageFormatter.php │ │ │ │ └── MessageFormatterInterface.php │ │ │ ├── IdentityTranslator.php │ │ │ ├── Interval.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 │ │ │ │ └── schema │ │ │ │ │ └── dic │ │ │ │ │ └── xliff-core │ │ │ │ │ ├── xliff-core-1.2-strict.xsd │ │ │ │ │ ├── xliff-core-2.0.xsd │ │ │ │ │ └── xml.xsd │ │ │ ├── LoggingTranslator.php │ │ │ ├── MessageCatalogue.php │ │ │ ├── MessageCatalogueInterface.php │ │ │ ├── MessageSelector.php │ │ │ ├── MetadataAwareInterface.php │ │ │ ├── PluralizationRules.php │ │ │ ├── README.md │ │ │ ├── Reader │ │ │ │ ├── TranslationReader.php │ │ │ │ └── TranslationReaderInterface.php │ │ │ ├── Resources │ │ │ │ ├── bin │ │ │ │ │ └── translation-status.php │ │ │ │ └── schemas │ │ │ │ │ └── xliff-core-1.2-strict.xsd │ │ │ ├── Tests │ │ │ │ ├── Catalogue │ │ │ │ │ ├── AbstractOperationTest.php │ │ │ │ │ ├── MergeOperationTest.php │ │ │ │ │ └── TargetOperationTest.php │ │ │ │ ├── DataCollector │ │ │ │ │ └── TranslationDataCollectorTest.php │ │ │ │ ├── DataCollectorTranslatorTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ ├── TranslationDumperPassTest.php │ │ │ │ │ ├── TranslationExtractorPassTest.php │ │ │ │ │ └── TranslationPassTest.php │ │ │ │ ├── Dumper │ │ │ │ │ ├── CsvFileDumperTest.php │ │ │ │ │ ├── FileDumperTest.php │ │ │ │ │ ├── IcuResFileDumperTest.php │ │ │ │ │ ├── IniFileDumperTest.php │ │ │ │ │ ├── JsonFileDumperTest.php │ │ │ │ │ ├── MoFileDumperTest.php │ │ │ │ │ ├── PhpFileDumperTest.php │ │ │ │ │ ├── PoFileDumperTest.php │ │ │ │ │ ├── QtFileDumperTest.php │ │ │ │ │ ├── XliffFileDumperTest.php │ │ │ │ │ └── YamlFileDumperTest.php │ │ │ │ ├── Extractor │ │ │ │ │ └── PhpExtractorTest.php │ │ │ │ ├── Formatter │ │ │ │ │ └── MessageFormatterTest.php │ │ │ │ ├── IdentityTranslatorTest.php │ │ │ │ ├── IntervalTest.php │ │ │ │ ├── Loader │ │ │ │ │ ├── CsvFileLoaderTest.php │ │ │ │ │ ├── IcuDatFileLoaderTest.php │ │ │ │ │ ├── IcuResFileLoaderTest.php │ │ │ │ │ ├── IniFileLoaderTest.php │ │ │ │ │ ├── JsonFileLoaderTest.php │ │ │ │ │ ├── LocalizedTestCase.php │ │ │ │ │ ├── MoFileLoaderTest.php │ │ │ │ │ ├── PhpFileLoaderTest.php │ │ │ │ │ ├── PoFileLoaderTest.php │ │ │ │ │ ├── QtFileLoaderTest.php │ │ │ │ │ ├── XliffFileLoaderTest.php │ │ │ │ │ └── YamlFileLoaderTest.php │ │ │ │ ├── LoggingTranslatorTest.php │ │ │ │ ├── MessageCatalogueTest.php │ │ │ │ ├── MessageSelectorTest.php │ │ │ │ ├── PluralizationRulesTest.php │ │ │ │ ├── TranslatorCacheTest.php │ │ │ │ ├── TranslatorTest.php │ │ │ │ ├── Util │ │ │ │ │ └── ArrayConverterTest.php │ │ │ │ ├── Writer │ │ │ │ │ └── TranslationWriterTest.php │ │ │ │ └── fixtures │ │ │ │ │ ├── empty-translation.mo │ │ │ │ │ ├── empty-translation.po │ │ │ │ │ ├── empty.csv │ │ │ │ │ ├── empty.ini │ │ │ │ │ ├── empty.json │ │ │ │ │ ├── empty.mo │ │ │ │ │ ├── empty.po │ │ │ │ │ ├── empty.xlf │ │ │ │ │ ├── empty.yml │ │ │ │ │ ├── encoding.xlf │ │ │ │ │ ├── escaped-id-plurals.po │ │ │ │ │ ├── escaped-id.po │ │ │ │ │ ├── extractor │ │ │ │ │ ├── resource.format.engine │ │ │ │ │ ├── this.is.a.template.format.engine │ │ │ │ │ └── translation.html.php │ │ │ │ │ ├── fuzzy-translations.po │ │ │ │ │ ├── invalid-xml-resources.xlf │ │ │ │ │ ├── malformed.json │ │ │ │ │ ├── messages.yml │ │ │ │ │ ├── messages_linear.yml │ │ │ │ │ ├── missing-plurals.po │ │ │ │ │ ├── non-valid.xlf │ │ │ │ │ ├── non-valid.yml │ │ │ │ │ ├── plurals.mo │ │ │ │ │ ├── plurals.po │ │ │ │ │ ├── resname.xlf │ │ │ │ │ ├── resourcebundle │ │ │ │ │ ├── corrupted │ │ │ │ │ │ └── resources.dat │ │ │ │ │ ├── dat │ │ │ │ │ │ ├── en.res │ │ │ │ │ │ ├── en.txt │ │ │ │ │ │ ├── fr.res │ │ │ │ │ │ ├── fr.txt │ │ │ │ │ │ ├── packagelist.txt │ │ │ │ │ │ └── resources.dat │ │ │ │ │ └── res │ │ │ │ │ │ └── en.res │ │ │ │ │ ├── resources-2.0-clean.xlf │ │ │ │ │ ├── resources-2.0-multi-segment-unit.xlf │ │ │ │ │ ├── resources-2.0.xlf │ │ │ │ │ ├── resources-clean.xlf │ │ │ │ │ ├── resources-notes-meta.xlf │ │ │ │ │ ├── resources-target-attributes.xlf │ │ │ │ │ ├── resources-tool-info.xlf │ │ │ │ │ ├── resources.csv │ │ │ │ │ ├── resources.dump.json │ │ │ │ │ ├── resources.ini │ │ │ │ │ ├── resources.json │ │ │ │ │ ├── resources.mo │ │ │ │ │ ├── resources.php │ │ │ │ │ ├── resources.po │ │ │ │ │ ├── resources.ts │ │ │ │ │ ├── resources.xlf │ │ │ │ │ ├── resources.yml │ │ │ │ │ ├── valid.csv │ │ │ │ │ ├── with-attributes.xlf │ │ │ │ │ ├── withdoctype.xlf │ │ │ │ │ └── withnote.xlf │ │ │ ├── Translator.php │ │ │ ├── TranslatorBagInterface.php │ │ │ ├── TranslatorInterface.php │ │ │ ├── Util │ │ │ │ └── ArrayConverter.php │ │ │ ├── Writer │ │ │ │ ├── TranslationWriter.php │ │ │ │ └── TranslationWriterInterface.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Validator │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── 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 │ │ │ │ ├── Bic.php │ │ │ │ ├── BicValidator.php │ │ │ │ ├── Blank.php │ │ │ │ ├── BlankValidator.php │ │ │ │ ├── Callback.php │ │ │ │ ├── CallbackValidator.php │ │ │ │ ├── CardScheme.php │ │ │ │ ├── CardSchemeValidator.php │ │ │ │ ├── Choice.php │ │ │ │ ├── ChoiceValidator.php │ │ │ │ ├── Collection.php │ │ │ │ ├── CollectionValidator.php │ │ │ │ ├── Composite.php │ │ │ │ ├── Count.php │ │ │ │ ├── CountValidator.php │ │ │ │ ├── Country.php │ │ │ │ ├── CountryValidator.php │ │ │ │ ├── Currency.php │ │ │ │ ├── CurrencyValidator.php │ │ │ │ ├── Date.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── DateTimeValidator.php │ │ │ │ ├── DateValidator.php │ │ │ │ ├── Email.php │ │ │ │ ├── EmailValidator.php │ │ │ │ ├── EqualTo.php │ │ │ │ ├── EqualToValidator.php │ │ │ │ ├── Existence.php │ │ │ │ ├── Expression.php │ │ │ │ ├── ExpressionValidator.php │ │ │ │ ├── File.php │ │ │ │ ├── FileValidator.php │ │ │ │ ├── GreaterThan.php │ │ │ │ ├── GreaterThanOrEqual.php │ │ │ │ ├── GreaterThanOrEqualValidator.php │ │ │ │ ├── GreaterThanValidator.php │ │ │ │ ├── GroupSequence.php │ │ │ │ ├── GroupSequenceProvider.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 │ │ │ │ ├── Issn.php │ │ │ │ ├── IssnValidator.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 │ │ │ │ ├── NotBlank.php │ │ │ │ ├── NotBlankValidator.php │ │ │ │ ├── NotEqualTo.php │ │ │ │ ├── NotEqualToValidator.php │ │ │ │ ├── NotIdenticalTo.php │ │ │ │ ├── NotIdenticalToValidator.php │ │ │ │ ├── NotNull.php │ │ │ │ ├── NotNullValidator.php │ │ │ │ ├── Optional.php │ │ │ │ ├── Range.php │ │ │ │ ├── RangeValidator.php │ │ │ │ ├── Regex.php │ │ │ │ ├── RegexValidator.php │ │ │ │ ├── Required.php │ │ │ │ ├── Time.php │ │ │ │ ├── TimeValidator.php │ │ │ │ ├── Traverse.php │ │ │ │ ├── Type.php │ │ │ │ ├── TypeValidator.php │ │ │ │ ├── Url.php │ │ │ │ ├── UrlValidator.php │ │ │ │ ├── Uuid.php │ │ │ │ ├── UuidValidator.php │ │ │ │ ├── Valid.php │ │ │ │ └── ValidValidator.php │ │ │ ├── ContainerConstraintValidatorFactory.php │ │ │ ├── Context │ │ │ │ ├── ExecutionContext.php │ │ │ │ ├── ExecutionContextFactory.php │ │ │ │ ├── ExecutionContextFactoryInterface.php │ │ │ │ └── ExecutionContextInterface.php │ │ │ ├── DataCollector │ │ │ │ └── ValidatorDataCollector.php │ │ │ ├── DependencyInjection │ │ │ │ ├── AddConstraintValidatorsPass.php │ │ │ │ └── AddValidatorInitializersPass.php │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── ConstraintDefinitionException.php │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── GroupDefinitionException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidOptionsException.php │ │ │ │ ├── MappingException.php │ │ │ │ ├── MissingOptionsException.php │ │ │ │ ├── NoSuchMetadataException.php │ │ │ │ ├── OutOfBoundsException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ ├── UnexpectedTypeException.php │ │ │ │ ├── UnsupportedMetadataException.php │ │ │ │ └── ValidatorException.php │ │ │ ├── GroupSequenceProviderInterface.php │ │ │ ├── LICENSE │ │ │ ├── Mapping │ │ │ │ ├── Cache │ │ │ │ │ ├── CacheInterface.php │ │ │ │ │ ├── DoctrineCache.php │ │ │ │ │ └── Psr6Cache.php │ │ │ │ ├── CascadingStrategy.php │ │ │ │ ├── ClassMetadata.php │ │ │ │ ├── ClassMetadataInterface.php │ │ │ │ ├── Factory │ │ │ │ │ ├── BlackHoleMetadataFactory.php │ │ │ │ │ ├── LazyLoadingMetadataFactory.php │ │ │ │ │ └── MetadataFactoryInterface.php │ │ │ │ ├── GenericMetadata.php │ │ │ │ ├── GetterMetadata.php │ │ │ │ ├── Loader │ │ │ │ │ ├── AbstractLoader.php │ │ │ │ │ ├── AnnotationLoader.php │ │ │ │ │ ├── FileLoader.php │ │ │ │ │ ├── FilesLoader.php │ │ │ │ │ ├── LoaderChain.php │ │ │ │ │ ├── LoaderInterface.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.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.vi.xlf │ │ │ │ │ ├── validators.zh_CN.xlf │ │ │ │ │ └── validators.zh_TW.xlf │ │ │ ├── Test │ │ │ │ ├── ConstraintValidatorTestCase.php │ │ │ │ └── ForwardCompatTestTrait.php │ │ │ ├── Tests │ │ │ │ ├── ConstraintTest.php │ │ │ │ ├── ConstraintValidatorTest.php │ │ │ │ ├── ConstraintViolationListTest.php │ │ │ │ ├── ConstraintViolationTest.php │ │ │ │ ├── Constraints │ │ │ │ │ ├── AbstractComparisonValidatorTestCase.php │ │ │ │ │ ├── AbstractConstraintValidatorTest.php │ │ │ │ │ ├── AllTest.php │ │ │ │ │ ├── AllValidatorTest.php │ │ │ │ │ ├── BicValidatorTest.php │ │ │ │ │ ├── BlankValidatorTest.php │ │ │ │ │ ├── CallbackValidatorTest.php │ │ │ │ │ ├── CardSchemeValidatorTest.php │ │ │ │ │ ├── ChoiceValidatorTest.php │ │ │ │ │ ├── CollectionTest.php │ │ │ │ │ ├── CollectionValidatorArrayObjectTest.php │ │ │ │ │ ├── CollectionValidatorArrayTest.php │ │ │ │ │ ├── CollectionValidatorCustomArrayObjectTest.php │ │ │ │ │ ├── CollectionValidatorTest.php │ │ │ │ │ ├── CompositeTest.php │ │ │ │ │ ├── CountValidatorArrayTest.php │ │ │ │ │ ├── CountValidatorCountableTest.php │ │ │ │ │ ├── CountValidatorTest.php │ │ │ │ │ ├── CountryValidatorTest.php │ │ │ │ │ ├── CurrencyValidatorTest.php │ │ │ │ │ ├── DateTimeValidatorTest.php │ │ │ │ │ ├── DateValidatorTest.php │ │ │ │ │ ├── EmailValidatorTest.php │ │ │ │ │ ├── EqualToValidatorTest.php │ │ │ │ │ ├── ExpressionValidatorTest.php │ │ │ │ │ ├── FileTest.php │ │ │ │ │ ├── FileValidatorObjectTest.php │ │ │ │ │ ├── FileValidatorPathTest.php │ │ │ │ │ ├── FileValidatorTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── ChildA.php │ │ │ │ │ │ ├── ChildB.php │ │ │ │ │ │ ├── foo │ │ │ │ │ │ ├── test.gif │ │ │ │ │ │ ├── test_4by3.gif │ │ │ │ │ │ ├── test_corrupted.gif │ │ │ │ │ │ ├── test_landscape.gif │ │ │ │ │ │ └── test_portrait.gif │ │ │ │ │ ├── GreaterThanOrEqualValidatorTest.php │ │ │ │ │ ├── GreaterThanValidatorTest.php │ │ │ │ │ ├── GroupSequenceTest.php │ │ │ │ │ ├── IbanValidatorTest.php │ │ │ │ │ ├── IdenticalToValidatorTest.php │ │ │ │ │ ├── ImageValidatorTest.php │ │ │ │ │ ├── IpValidatorTest.php │ │ │ │ │ ├── IsFalseValidatorTest.php │ │ │ │ │ ├── IsNullValidatorTest.php │ │ │ │ │ ├── IsTrueValidatorTest.php │ │ │ │ │ ├── IsbnValidatorTest.php │ │ │ │ │ ├── IssnValidatorTest.php │ │ │ │ │ ├── LanguageValidatorTest.php │ │ │ │ │ ├── LengthValidatorTest.php │ │ │ │ │ ├── LessThanOrEqualValidatorTest.php │ │ │ │ │ ├── LessThanValidatorTest.php │ │ │ │ │ ├── LocaleValidatorTest.php │ │ │ │ │ ├── LuhnValidatorTest.php │ │ │ │ │ ├── NotBlankValidatorTest.php │ │ │ │ │ ├── NotEqualToValidatorTest.php │ │ │ │ │ ├── NotIdenticalToValidatorTest.php │ │ │ │ │ ├── NotNullValidatorTest.php │ │ │ │ │ ├── RangeValidatorTest.php │ │ │ │ │ ├── RegexTest.php │ │ │ │ │ ├── RegexValidatorTest.php │ │ │ │ │ ├── TimeValidatorTest.php │ │ │ │ │ ├── TypeValidatorTest.php │ │ │ │ │ ├── UrlValidatorTest.php │ │ │ │ │ ├── UuidValidatorTest.php │ │ │ │ │ ├── ValidTest.php │ │ │ │ │ └── ValidValidatorTest.php │ │ │ │ ├── ContainerConstraintValidatorFactoryTest.php │ │ │ │ ├── DataCollector │ │ │ │ │ └── ValidatorDataCollectorTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ ├── AddConstraintValidatorsPassTest.php │ │ │ │ │ └── AddValidatorInitializersPassTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── AbstractPropertyGetter.php │ │ │ │ │ ├── CallbackClass.php │ │ │ │ │ ├── ChildGetterInterface.php │ │ │ │ │ ├── ClassConstraint.php │ │ │ │ │ ├── ConstraintA.php │ │ │ │ │ ├── ConstraintB.php │ │ │ │ │ ├── ConstraintC.php │ │ │ │ │ ├── ConstraintWithStaticProperty.php │ │ │ │ │ ├── ConstraintWithTypedProperty.php │ │ │ │ │ ├── ConstraintWithValue.php │ │ │ │ │ ├── ConstraintWithValueAsDefault.php │ │ │ │ │ ├── Countable.php │ │ │ │ │ ├── CustomArrayObject.php │ │ │ │ │ ├── Entity.php │ │ │ │ │ ├── EntityInterfaceA.php │ │ │ │ │ ├── EntityInterfaceB.php │ │ │ │ │ ├── EntityParent.php │ │ │ │ │ ├── EntityParentInterface.php │ │ │ │ │ ├── EntityStaticCar.php │ │ │ │ │ ├── EntityStaticCarTurbo.php │ │ │ │ │ ├── EntityStaticVehicle.php │ │ │ │ │ ├── EntityWithGroupedConstraintOnMethods.php │ │ │ │ │ ├── Entity_74.php │ │ │ │ │ ├── Entity_74_Proxy.php │ │ │ │ │ ├── FailingConstraint.php │ │ │ │ │ ├── FailingConstraintValidator.php │ │ │ │ │ ├── FakeMetadataFactory.php │ │ │ │ │ ├── FilesLoader.php │ │ │ │ │ ├── GroupSequenceProviderChildEntity.php │ │ │ │ │ ├── GroupSequenceProviderEntity.php │ │ │ │ │ ├── InvalidConstraint.php │ │ │ │ │ ├── PropertyConstraint.php │ │ │ │ │ ├── PropertyGetter.php │ │ │ │ │ ├── PropertyGetterInterface.php │ │ │ │ │ ├── Reference.php │ │ │ │ │ └── ToString.php │ │ │ │ ├── Mapping │ │ │ │ │ ├── Cache │ │ │ │ │ │ ├── AbstractCacheTest.php │ │ │ │ │ │ ├── DoctrineCacheTest.php │ │ │ │ │ │ └── Psr6CacheTest.php │ │ │ │ │ ├── ClassMetadataTest.php │ │ │ │ │ ├── Factory │ │ │ │ │ │ ├── BlackHoleMetadataFactoryTest.php │ │ │ │ │ │ └── LazyLoadingMetadataFactoryTest.php │ │ │ │ │ ├── GetterMetadataTest.php │ │ │ │ │ ├── Loader │ │ │ │ │ │ ├── AbstractStaticMethodLoader.php │ │ │ │ │ │ ├── AnnotationLoaderTest.php │ │ │ │ │ │ ├── FilesLoaderTest.php │ │ │ │ │ │ ├── LoaderChainTest.php │ │ │ │ │ │ ├── StaticMethodLoaderTest.php │ │ │ │ │ │ ├── XmlFileLoaderTest.php │ │ │ │ │ │ ├── YamlFileLoaderTest.php │ │ │ │ │ │ ├── bad-format.yml │ │ │ │ │ │ ├── constraint-mapping-non-strings.xml │ │ │ │ │ │ ├── constraint-mapping.xml │ │ │ │ │ │ ├── constraint-mapping.yml │ │ │ │ │ │ ├── empty-mapping.yml │ │ │ │ │ │ ├── mapping-with-constants.yml │ │ │ │ │ │ ├── nonvalid-mapping.yml │ │ │ │ │ │ └── withdoctype.xml │ │ │ │ │ ├── MemberMetadataTest.php │ │ │ │ │ └── PropertyMetadataTest.php │ │ │ │ ├── Resources │ │ │ │ │ └── TranslationFilesTest.php │ │ │ │ ├── Util │ │ │ │ │ └── PropertyPathTest.php │ │ │ │ ├── Validator │ │ │ │ │ ├── AbstractTest.php │ │ │ │ │ ├── AbstractValidatorTest.php │ │ │ │ │ ├── RecursiveValidatorTest.php │ │ │ │ │ └── TraceableValidatorTest.php │ │ │ │ ├── ValidatorBuilderTest.php │ │ │ │ └── Violation │ │ │ │ │ └── ConstraintViolationBuilderTest.php │ │ │ ├── Util │ │ │ │ └── PropertyPath.php │ │ │ ├── Validation.php │ │ │ ├── Validator │ │ │ │ ├── ContextualValidatorInterface.php │ │ │ │ ├── LazyProperty.php │ │ │ │ ├── RecursiveContextualValidator.php │ │ │ │ ├── RecursiveValidator.php │ │ │ │ ├── TraceableValidator.php │ │ │ │ └── ValidatorInterface.php │ │ │ ├── ValidatorBuilder.php │ │ │ ├── ValidatorBuilderInterface.php │ │ │ ├── Violation │ │ │ │ ├── ConstraintViolationBuilder.php │ │ │ │ └── ConstraintViolationBuilderInterface.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── VarDumper │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Caster │ │ │ │ ├── AmqpCaster.php │ │ │ │ ├── ArgsStub.php │ │ │ │ ├── Caster.php │ │ │ │ ├── ClassStub.php │ │ │ │ ├── ConstStub.php │ │ │ │ ├── CutArrayStub.php │ │ │ │ ├── CutStub.php │ │ │ │ ├── DOMCaster.php │ │ │ │ ├── DateCaster.php │ │ │ │ ├── DoctrineCaster.php │ │ │ │ ├── EnumStub.php │ │ │ │ ├── ExceptionCaster.php │ │ │ │ ├── FrameStub.php │ │ │ │ ├── LinkStub.php │ │ │ │ ├── MongoCaster.php │ │ │ │ ├── PdoCaster.php │ │ │ │ ├── PgSqlCaster.php │ │ │ │ ├── RedisCaster.php │ │ │ │ ├── ReflectionCaster.php │ │ │ │ ├── ResourceCaster.php │ │ │ │ ├── SplCaster.php │ │ │ │ ├── StubCaster.php │ │ │ │ ├── SymfonyCaster.php │ │ │ │ ├── TraceStub.php │ │ │ │ ├── XmlReaderCaster.php │ │ │ │ └── XmlResourceCaster.php │ │ │ ├── Cloner │ │ │ │ ├── AbstractCloner.php │ │ │ │ ├── ClonerInterface.php │ │ │ │ ├── Cursor.php │ │ │ │ ├── Data.php │ │ │ │ ├── DumperInterface.php │ │ │ │ ├── Stub.php │ │ │ │ └── VarCloner.php │ │ │ ├── Dumper │ │ │ │ ├── AbstractDumper.php │ │ │ │ ├── CliDumper.php │ │ │ │ ├── DataDumperInterface.php │ │ │ │ └── HtmlDumper.php │ │ │ ├── Exception │ │ │ │ └── ThrowingCasterException.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── functions │ │ │ │ │ └── dump.php │ │ │ ├── Test │ │ │ │ └── VarDumperTestTrait.php │ │ │ ├── Tests │ │ │ │ ├── Caster │ │ │ │ │ ├── CasterTest.php │ │ │ │ │ ├── DateCasterTest.php │ │ │ │ │ ├── ExceptionCasterTest.php │ │ │ │ │ ├── PdoCasterTest.php │ │ │ │ │ ├── RedisCasterTest.php │ │ │ │ │ ├── ReflectionCasterTest.php │ │ │ │ │ ├── SplCasterTest.php │ │ │ │ │ ├── StubCasterTest.php │ │ │ │ │ └── XmlReaderCasterTest.php │ │ │ │ ├── Cloner │ │ │ │ │ ├── DataTest.php │ │ │ │ │ └── VarClonerTest.php │ │ │ │ ├── Dumper │ │ │ │ │ ├── CliDumperTest.php │ │ │ │ │ ├── FunctionsTest.php │ │ │ │ │ └── HtmlDumperTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── DateTimeChild.php │ │ │ │ │ ├── FooInterface.php │ │ │ │ │ ├── GeneratorDemo.php │ │ │ │ │ ├── NotLoadableClass.php │ │ │ │ │ ├── Php74.php │ │ │ │ │ ├── Twig.php │ │ │ │ │ ├── dumb-var.php │ │ │ │ │ └── xml_reader.xml │ │ │ │ └── Test │ │ │ │ │ └── VarDumperTestTraitTest.php │ │ │ ├── VarDumper.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── WebLink │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── EventListener │ │ │ │ └── AddLinkHeaderListener.php │ │ │ ├── HttpHeaderSerializer.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── EventListener │ │ │ │ │ └── AddLinkHeaderListenerTest.php │ │ │ │ └── HttpHeaderSerializerTest.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── Workflow │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Definition.php │ │ │ ├── DefinitionBuilder.php │ │ │ ├── DependencyInjection │ │ │ │ └── ValidateWorkflowsPass.php │ │ │ ├── Dumper │ │ │ │ ├── DumperInterface.php │ │ │ │ ├── GraphvizDumper.php │ │ │ │ └── StateMachineGraphvizDumper.php │ │ │ ├── Event │ │ │ │ ├── Event.php │ │ │ │ └── GuardEvent.php │ │ │ ├── EventListener │ │ │ │ ├── AuditTrailListener.php │ │ │ │ ├── ExpressionLanguage.php │ │ │ │ ├── GuardExpression.php │ │ │ │ └── GuardListener.php │ │ │ ├── Exception │ │ │ │ ├── ExceptionInterface.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidDefinitionException.php │ │ │ │ ├── InvalidTokenConfigurationException.php │ │ │ │ ├── LogicException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── LICENSE │ │ │ ├── Marking.php │ │ │ ├── MarkingStore │ │ │ │ ├── MarkingStoreInterface.php │ │ │ │ ├── MultipleStateMarkingStore.php │ │ │ │ └── SingleStateMarkingStore.php │ │ │ ├── README.md │ │ │ ├── Registry.php │ │ │ ├── StateMachine.php │ │ │ ├── SupportStrategy │ │ │ │ ├── ClassInstanceSupportStrategy.php │ │ │ │ └── SupportStrategyInterface.php │ │ │ ├── Tests │ │ │ │ ├── DefinitionBuilderTest.php │ │ │ │ ├── DefinitionTest.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── ValidateWorkflowsPassTest.php │ │ │ │ ├── Dumper │ │ │ │ │ ├── GraphvizDumperTest.php │ │ │ │ │ └── StateMachineGraphvizDumperTest.php │ │ │ │ ├── EventListener │ │ │ │ │ ├── AuditTrailListenerTest.php │ │ │ │ │ └── GuardListenerTest.php │ │ │ │ ├── MarkingStore │ │ │ │ │ ├── MultipleStateMarkingStoreTest.php │ │ │ │ │ └── SingleStateMarkingStoreTest.php │ │ │ │ ├── MarkingTest.php │ │ │ │ ├── RegistryTest.php │ │ │ │ ├── StateMachineTest.php │ │ │ │ ├── SupportStrategy │ │ │ │ │ └── ClassInstanceSupportStrategyTest.php │ │ │ │ ├── TransitionTest.php │ │ │ │ ├── Validator │ │ │ │ │ ├── StateMachineValidatorTest.php │ │ │ │ │ └── WorkflowValidatorTest.php │ │ │ │ ├── WorkflowBuilderTrait.php │ │ │ │ └── WorkflowTest.php │ │ │ ├── Transition.php │ │ │ ├── Validator │ │ │ │ ├── DefinitionValidatorInterface.php │ │ │ │ ├── StateMachineValidator.php │ │ │ │ └── WorkflowValidator.php │ │ │ ├── Workflow.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ └── Yaml │ │ │ ├── .gitignore │ │ │ ├── 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 │ │ │ ├── Tag │ │ │ └── TaggedValue.php │ │ │ ├── Tests │ │ │ ├── Command │ │ │ │ └── LintCommandTest.php │ │ │ ├── DumperTest.php │ │ │ ├── Fixtures │ │ │ │ ├── YtsAnchorAlias.yml │ │ │ │ ├── YtsBasicTests.yml │ │ │ │ ├── YtsBlockMapping.yml │ │ │ │ ├── YtsDocumentSeparator.yml │ │ │ │ ├── YtsErrorTests.yml │ │ │ │ ├── YtsFlowCollections.yml │ │ │ │ ├── YtsFoldedScalars.yml │ │ │ │ ├── YtsNullsAndEmpties.yml │ │ │ │ ├── YtsSpecificationExamples.yml │ │ │ │ ├── YtsTypeTransfers.yml │ │ │ │ ├── arrow.gif │ │ │ │ ├── booleanMappingKeys.yml │ │ │ │ ├── embededPhp.yml │ │ │ │ ├── escapedCharacters.yml │ │ │ │ ├── index.yml │ │ │ │ ├── legacyBooleanMappingKeys.yml │ │ │ │ ├── legacyNonStringKeys.yml │ │ │ │ ├── legacyNullMappingKey.yml │ │ │ │ ├── multiple_lines_as_literal_block.yml │ │ │ │ ├── multiple_lines_as_literal_block_for_tagged_values.yml │ │ │ │ ├── multiple_lines_as_literal_block_leading_space_in_first_line.yml │ │ │ │ ├── nonStringKeys.yml │ │ │ │ ├── not_readable.yml │ │ │ │ ├── nullMappingKey.yml │ │ │ │ ├── numericMappingKeys.yml │ │ │ │ ├── sfComments.yml │ │ │ │ ├── sfCompact.yml │ │ │ │ ├── sfMergeKey.yml │ │ │ │ ├── sfObjects.yml │ │ │ │ ├── sfQuotes.yml │ │ │ │ ├── sfTests.yml │ │ │ │ └── unindentedCollections.yml │ │ │ ├── InlineTest.php │ │ │ ├── ParseExceptionTest.php │ │ │ ├── ParserTest.php │ │ │ └── YamlTest.php │ │ │ ├── Unescaper.php │ │ │ ├── Yaml.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ └── translation-contracts │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── LocaleAwareInterface.php │ │ ├── README.md │ │ ├── Test │ │ └── TranslatorTest.php │ │ ├── TranslatableInterface.php │ │ ├── TranslatorInterface.php │ │ ├── TranslatorTrait.php │ │ └── composer.json ├── 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 │ ├── extensions │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.rst │ │ ├── composer.json │ │ ├── doc │ │ │ ├── array.rst │ │ │ ├── date.rst │ │ │ ├── i18n.rst │ │ │ ├── index.rst │ │ │ ├── intl.rst │ │ │ └── text.rst │ │ ├── lib │ │ │ └── Twig │ │ │ │ └── Extensions │ │ │ │ ├── Autoloader.php │ │ │ │ ├── Extension │ │ │ │ ├── Array.php │ │ │ │ ├── Date.php │ │ │ │ ├── I18n.php │ │ │ │ ├── Intl.php │ │ │ │ └── Text.php │ │ │ │ ├── Grammar.php │ │ │ │ ├── Grammar │ │ │ │ ├── Arguments.php │ │ │ │ ├── Array.php │ │ │ │ ├── Body.php │ │ │ │ ├── Boolean.php │ │ │ │ ├── Constant.php │ │ │ │ ├── Expression.php │ │ │ │ ├── Hash.php │ │ │ │ ├── Number.php │ │ │ │ ├── Optional.php │ │ │ │ ├── Switch.php │ │ │ │ └── Tag.php │ │ │ │ ├── GrammarInterface.php │ │ │ │ ├── Node │ │ │ │ └── Trans.php │ │ │ │ ├── SimpleTokenParser.php │ │ │ │ └── TokenParser │ │ │ │ └── Trans.php │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ ├── ArrayExtension.php │ │ │ ├── DateExtension.php │ │ │ ├── I18nExtension.php │ │ │ ├── IntlExtension.php │ │ │ ├── Node │ │ │ │ └── TransNode.php │ │ │ ├── TextExtension.php │ │ │ └── TokenParser │ │ │ │ └── TransTokenParser.php │ │ └── test │ │ │ └── Twig │ │ │ └── Tests │ │ │ ├── Extension │ │ │ ├── ArrayTest.php │ │ │ ├── DateTest.php │ │ │ ├── IntlTest.php │ │ │ └── TextTest.php │ │ │ ├── Grammar │ │ │ ├── ArgumentsTest.php │ │ │ ├── ArrayTest.php │ │ │ ├── BodyTest.php │ │ │ ├── BooleanTest.php │ │ │ ├── ConstantTest.php │ │ │ ├── ExpressionTest.php │ │ │ ├── NumberTest.php │ │ │ ├── OptionalTest.php │ │ │ └── TagTest.php │ │ │ ├── Node │ │ │ └── TransTest.php │ │ │ ├── SimpleTokenParser.php │ │ │ ├── SimpleTokenParserTest.php │ │ │ └── grammarTest.php │ └── twig │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .github │ │ └── workflows │ │ │ ├── ci.yml │ │ │ └── documentation.yml │ │ ├── .gitignore │ │ ├── .php-cs-fixer.dist.php │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── README.rst │ │ ├── composer.json │ │ ├── lib │ │ └── Twig │ │ │ ├── Autoloader.php │ │ │ ├── BaseNodeVisitor.php │ │ │ ├── Cache │ │ │ ├── Filesystem.php │ │ │ └── Null.php │ │ │ ├── CacheInterface.php │ │ │ ├── Compiler.php │ │ │ ├── CompilerInterface.php │ │ │ ├── ContainerRuntimeLoader.php │ │ │ ├── Environment.php │ │ │ ├── Error.php │ │ │ ├── Error │ │ │ ├── Loader.php │ │ │ ├── Runtime.php │ │ │ └── Syntax.php │ │ │ ├── ExistsLoaderInterface.php │ │ │ ├── ExpressionParser.php │ │ │ ├── Extension.php │ │ │ ├── Extension │ │ │ ├── Core.php │ │ │ ├── Debug.php │ │ │ ├── Escaper.php │ │ │ ├── GlobalsInterface.php │ │ │ ├── InitRuntimeInterface.php │ │ │ ├── Optimizer.php │ │ │ ├── Profiler.php │ │ │ ├── Sandbox.php │ │ │ ├── Staging.php │ │ │ └── StringLoader.php │ │ │ ├── ExtensionInterface.php │ │ │ ├── FactoryRuntimeLoader.php │ │ │ ├── FileExtensionEscapingStrategy.php │ │ │ ├── Filter.php │ │ │ ├── Filter │ │ │ ├── Function.php │ │ │ ├── Method.php │ │ │ └── Node.php │ │ │ ├── FilterCallableInterface.php │ │ │ ├── FilterInterface.php │ │ │ ├── Function.php │ │ │ ├── Function │ │ │ ├── Function.php │ │ │ ├── Method.php │ │ │ └── Node.php │ │ │ ├── FunctionCallableInterface.php │ │ │ ├── FunctionInterface.php │ │ │ ├── Lexer.php │ │ │ ├── LexerInterface.php │ │ │ ├── Loader │ │ │ ├── Array.php │ │ │ ├── Chain.php │ │ │ ├── Filesystem.php │ │ │ └── String.php │ │ │ ├── LoaderInterface.php │ │ │ ├── Markup.php │ │ │ ├── Node.php │ │ │ ├── Node │ │ │ ├── AutoEscape.php │ │ │ ├── Block.php │ │ │ ├── BlockReference.php │ │ │ ├── Body.php │ │ │ ├── CheckSecurity.php │ │ │ ├── Deprecated.php │ │ │ ├── Do.php │ │ │ ├── Embed.php │ │ │ ├── Expression.php │ │ │ ├── Expression │ │ │ │ ├── Array.php │ │ │ │ ├── AssignName.php │ │ │ │ ├── Binary.php │ │ │ │ ├── Binary │ │ │ │ │ ├── Add.php │ │ │ │ │ ├── And.php │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ ├── Concat.php │ │ │ │ │ ├── Div.php │ │ │ │ │ ├── EndsWith.php │ │ │ │ │ ├── Equal.php │ │ │ │ │ ├── FloorDiv.php │ │ │ │ │ ├── Greater.php │ │ │ │ │ ├── GreaterEqual.php │ │ │ │ │ ├── In.php │ │ │ │ │ ├── Less.php │ │ │ │ │ ├── LessEqual.php │ │ │ │ │ ├── Matches.php │ │ │ │ │ ├── Mod.php │ │ │ │ │ ├── Mul.php │ │ │ │ │ ├── NotEqual.php │ │ │ │ │ ├── NotIn.php │ │ │ │ │ ├── Or.php │ │ │ │ │ ├── Power.php │ │ │ │ │ ├── Range.php │ │ │ │ │ ├── StartsWith.php │ │ │ │ │ └── Sub.php │ │ │ │ ├── BlockReference.php │ │ │ │ ├── Call.php │ │ │ │ ├── Conditional.php │ │ │ │ ├── Constant.php │ │ │ │ ├── ExtensionReference.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Filter │ │ │ │ │ └── Default.php │ │ │ │ ├── Function.php │ │ │ │ ├── GetAttr.php │ │ │ │ ├── MethodCall.php │ │ │ │ ├── Name.php │ │ │ │ ├── NullCoalesce.php │ │ │ │ ├── Parent.php │ │ │ │ ├── TempName.php │ │ │ │ ├── Test.php │ │ │ │ ├── Test │ │ │ │ │ ├── Constant.php │ │ │ │ │ ├── Defined.php │ │ │ │ │ ├── Divisibleby.php │ │ │ │ │ ├── Even.php │ │ │ │ │ ├── Null.php │ │ │ │ │ ├── Odd.php │ │ │ │ │ └── Sameas.php │ │ │ │ ├── Unary.php │ │ │ │ └── Unary │ │ │ │ │ ├── Neg.php │ │ │ │ │ ├── Not.php │ │ │ │ │ └── Pos.php │ │ │ ├── Flush.php │ │ │ ├── For.php │ │ │ ├── ForLoop.php │ │ │ ├── If.php │ │ │ ├── Import.php │ │ │ ├── Include.php │ │ │ ├── Macro.php │ │ │ ├── Module.php │ │ │ ├── Print.php │ │ │ ├── Sandbox.php │ │ │ ├── SandboxedPrint.php │ │ │ ├── Set.php │ │ │ ├── SetTemp.php │ │ │ ├── Spaceless.php │ │ │ ├── Text.php │ │ │ └── With.php │ │ │ ├── NodeCaptureInterface.php │ │ │ ├── NodeInterface.php │ │ │ ├── NodeOutputInterface.php │ │ │ ├── NodeTraverser.php │ │ │ ├── NodeVisitor │ │ │ ├── Escaper.php │ │ │ ├── Optimizer.php │ │ │ ├── SafeAnalysis.php │ │ │ └── Sandbox.php │ │ │ ├── NodeVisitorInterface.php │ │ │ ├── Parser.php │ │ │ ├── ParserInterface.php │ │ │ ├── Profiler │ │ │ ├── Dumper │ │ │ │ ├── Base.php │ │ │ │ ├── Blackfire.php │ │ │ │ ├── Html.php │ │ │ │ └── Text.php │ │ │ ├── Node │ │ │ │ ├── EnterProfile.php │ │ │ │ └── LeaveProfile.php │ │ │ ├── NodeVisitor │ │ │ │ └── Profiler.php │ │ │ └── Profile.php │ │ │ ├── RuntimeLoaderInterface.php │ │ │ ├── Sandbox │ │ │ ├── SecurityError.php │ │ │ ├── SecurityNotAllowedFilterError.php │ │ │ ├── SecurityNotAllowedFunctionError.php │ │ │ ├── SecurityNotAllowedMethodError.php │ │ │ ├── SecurityNotAllowedPropertyError.php │ │ │ ├── SecurityNotAllowedTagError.php │ │ │ ├── SecurityPolicy.php │ │ │ └── SecurityPolicyInterface.php │ │ │ ├── SimpleFilter.php │ │ │ ├── SimpleFunction.php │ │ │ ├── SimpleTest.php │ │ │ ├── Source.php │ │ │ ├── SourceContextLoaderInterface.php │ │ │ ├── Template.php │ │ │ ├── TemplateInterface.php │ │ │ ├── TemplateWrapper.php │ │ │ ├── Test.php │ │ │ ├── Test │ │ │ ├── Function.php │ │ │ ├── IntegrationTestCase.php │ │ │ ├── Method.php │ │ │ ├── Node.php │ │ │ └── NodeTestCase.php │ │ │ ├── TestCallableInterface.php │ │ │ ├── TestInterface.php │ │ │ ├── Token.php │ │ │ ├── TokenParser.php │ │ │ ├── TokenParser │ │ │ ├── AutoEscape.php │ │ │ ├── Block.php │ │ │ ├── Deprecated.php │ │ │ ├── Do.php │ │ │ ├── Embed.php │ │ │ ├── Extends.php │ │ │ ├── Filter.php │ │ │ ├── Flush.php │ │ │ ├── For.php │ │ │ ├── From.php │ │ │ ├── If.php │ │ │ ├── Import.php │ │ │ ├── Include.php │ │ │ ├── Macro.php │ │ │ ├── Sandbox.php │ │ │ ├── Set.php │ │ │ ├── Spaceless.php │ │ │ ├── Use.php │ │ │ └── With.php │ │ │ ├── TokenParserBroker.php │ │ │ ├── TokenParserBrokerInterface.php │ │ │ ├── TokenParserInterface.php │ │ │ ├── TokenStream.php │ │ │ └── Util │ │ │ ├── DeprecationCollector.php │ │ │ └── TemplateDirIterator.php │ │ └── 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 │ │ ├── InitRuntimeInterface.php │ │ ├── OptimizerExtension.php │ │ ├── ProfilerExtension.php │ │ ├── RuntimeExtensionInterface.php │ │ ├── SandboxExtension.php │ │ ├── StagingExtension.php │ │ └── StringLoaderExtension.php │ │ ├── FileExtensionEscapingStrategy.php │ │ ├── Lexer.php │ │ ├── Loader │ │ ├── ArrayLoader.php │ │ ├── ChainLoader.php │ │ ├── ExistsLoaderInterface.php │ │ ├── FilesystemLoader.php │ │ ├── LoaderInterface.php │ │ └── SourceContextLoaderInterface.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 │ │ │ │ ├── InBinary.php │ │ │ │ ├── LessBinary.php │ │ │ │ ├── LessEqualBinary.php │ │ │ │ ├── MatchesBinary.php │ │ │ │ ├── ModBinary.php │ │ │ │ ├── MulBinary.php │ │ │ │ ├── NotEqualBinary.php │ │ │ │ ├── NotInBinary.php │ │ │ │ ├── OrBinary.php │ │ │ │ ├── PowerBinary.php │ │ │ │ ├── RangeBinary.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 │ │ ├── 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 │ │ ├── SandboxedPrintNode.php │ │ ├── SetNode.php │ │ ├── SetTempNode.php │ │ ├── SpacelessNode.php │ │ ├── TextNode.php │ │ └── WithNode.php │ │ ├── NodeTraverser.php │ │ ├── NodeVisitor │ │ ├── AbstractNodeVisitor.php │ │ ├── EscaperNodeVisitor.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 │ │ ├── FilterTokenParser.php │ │ ├── FlushTokenParser.php │ │ ├── ForTokenParser.php │ │ ├── FromTokenParser.php │ │ ├── IfTokenParser.php │ │ ├── ImportTokenParser.php │ │ ├── IncludeTokenParser.php │ │ ├── MacroTokenParser.php │ │ ├── SandboxTokenParser.php │ │ ├── SetTokenParser.php │ │ ├── SpacelessTokenParser.php │ │ ├── TokenParserInterface.php │ │ ├── UseTokenParser.php │ │ └── WithTokenParser.php │ │ ├── TokenStream.php │ │ ├── TwigFilter.php │ │ ├── TwigFunction.php │ │ ├── TwigTest.php │ │ └── Util │ │ ├── DeprecationCollector.php │ │ └── TemplateDirIterator.php ├── webimpress │ └── safe-writer │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── psalm.xml │ │ └── src │ │ ├── Exception │ │ ├── ChmodException.php │ │ ├── ExceptionInterface.php │ │ ├── RenameException.php │ │ ├── RuntimeException.php │ │ └── WriteContentException.php │ │ └── FileWriter.php └── willdurand │ └── geocoder │ ├── .github │ └── workflows │ │ └── component.yml │ ├── Assert.php │ ├── CHANGELOG.md │ ├── Collection.php │ ├── Dumper │ ├── AbstractArrayDumper.php │ ├── AbstractDumper.php │ ├── Dumper.php │ ├── GeoArray.php │ ├── GeoJson.php │ ├── Gpx.php │ ├── Kml.php │ ├── Wkb.php │ └── Wkt.php │ ├── Exception │ ├── CollectionIsEmpty.php │ ├── Exception.php │ ├── ExtensionNotLoaded.php │ ├── FunctionNotFound.php │ ├── InvalidArgument.php │ ├── InvalidCredentials.php │ ├── InvalidServerResponse.php │ ├── LogicException.php │ ├── OutOfBounds.php │ ├── ProviderNotRegistered.php │ ├── QuotaExceeded.php │ └── UnsupportedOperation.php │ ├── Formatter │ └── StringFormatter.php │ ├── Geocoder.php │ ├── GeocoderTrait.php │ ├── LICENSE │ ├── Location.php │ ├── Model │ ├── Address.php │ ├── AddressBuilder.php │ ├── AddressCollection.php │ ├── AdminLevel.php │ ├── AdminLevelCollection.php │ ├── Bounds.php │ ├── Coordinates.php │ └── Country.php │ ├── Provider │ ├── AbstractProvider.php │ └── Provider.php │ ├── ProviderAggregator.php │ ├── Query │ ├── GeocodeQuery.php │ ├── Query.php │ └── ReverseQuery.php │ ├── Readme.md │ ├── StatefulGeocoder.php │ ├── TimedGeocoder.php │ └── composer.json └── web ├── .htaccess ├── app.php ├── app_dev.php ├── apple-touch-icon-114x114.png ├── apple-touch-icon-120x120.png ├── apple-touch-icon-144x144.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-57x57.png ├── apple-touch-icon-72x72.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon.png ├── assets ├── appmanifest.json ├── css │ ├── runalyze-installer.css │ └── runalyze-style.css ├── images │ ├── damage.png │ ├── poster-collage.png │ ├── runalyze-header-swoosh.png │ ├── runalyze-start.png │ ├── runalyze-swoosh.png │ └── runalyze.png ├── js │ ├── scripts.min.js │ └── scripts.min.js.map └── v2.x │ ├── img │ ├── backgrounds │ │ ├── Default.jpg │ │ ├── Pattern.jpg │ │ ├── Schuhe.jpg │ │ ├── Start.jpg │ │ ├── Strasse-2.jpg │ │ ├── Strasse.jpg │ │ ├── california.jpg │ │ ├── laufbahn.jpg │ │ ├── leer.png │ │ ├── runalyze.jpg │ │ └── running_sunset.jpg │ ├── wait-black.gif │ └── wait.gif │ └── vendor │ ├── garmin │ ├── bg.jpg │ ├── communicator2.css │ ├── garmin │ │ ├── activity │ │ │ ├── GarminActivity.js │ │ │ ├── GarminActivityDirectory.js │ │ │ ├── GarminActivityFilter.js │ │ │ ├── GarminActivityMatcher.js │ │ │ ├── GarminMeasurement.js │ │ │ ├── GarminSample.js │ │ │ ├── GarminSeries.js │ │ │ ├── GpxActivityFactory.js │ │ │ └── TcxActivityFactory.js │ │ ├── api │ │ │ └── GarminRemoteTransfer.js │ │ ├── device │ │ │ ├── GarminDevice.js │ │ │ ├── GarminDeviceControl.js │ │ │ ├── GarminDeviceDisplay.js │ │ │ ├── GarminDevicePlugin.js │ │ │ ├── GarminGeocode.js │ │ │ ├── GarminGpsDataStructures.js │ │ │ ├── GarminObjectGenerator.js │ │ │ ├── GarminPluginUtils.js │ │ │ └── GoogleMapController.js │ │ ├── directory │ │ │ ├── GarminDirectoryFactory.js │ │ │ ├── GarminDirectoryUtils.js │ │ │ └── GarminFile.js │ │ └── util │ │ │ ├── Util-Broadcaster.js │ │ │ ├── Util-BrowserDetect.js │ │ │ ├── Util-DateTimeFormat.js │ │ │ ├── Util-Json2.js │ │ │ ├── Util-PluginDetect.js │ │ │ └── Util-XmlConverter.js │ └── prototype │ │ └── prototype.js │ ├── icons8 │ ├── Runalyze-sports_af360bca4f539e045596eeaa6580f7c2.eot │ ├── Runalyze-sports_af360bca4f539e045596eeaa6580f7c2.svg │ ├── Runalyze-sports_af360bca4f539e045596eeaa6580f7c2.ttf │ ├── Runalyze-sports_af360bca4f539e045596eeaa6580f7c2.woff │ └── styles.css │ └── iconvault-forecast │ ├── iconvault-forecast.css │ ├── iconvault_forecastfont.eot │ ├── iconvault_forecastfont.svg │ ├── iconvault_forecastfont.ttf │ └── iconvault_forecastfont.woff ├── favicon.ico ├── lib ├── embedded.css └── embedded.js └── vendor ├── d3-collection ├── .bower.json ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── d3-collection.sublime-project ├── package.json ├── rollup.config.js ├── src │ ├── entries.js │ ├── index.js │ ├── keys.js │ ├── map.js │ ├── nest.js │ ├── set.js │ └── values.js ├── test │ ├── entries-test.js │ ├── isNaN.js │ ├── keys-test.js │ ├── map-test.js │ ├── nest-test.js │ ├── set-test.js │ └── values-test.js └── yarn.lock ├── d3-selection ├── .bower.json ├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── d3-selection.sublime-project ├── package.json ├── rollup.config.js ├── src │ ├── constant.js │ ├── create.js │ ├── creator.js │ ├── identity.js │ ├── index.js │ ├── local.js │ ├── matcher.js │ ├── mouse.js │ ├── namespace.js │ ├── namespaces.js │ ├── point.js │ ├── select.js │ ├── selectAll.js │ ├── selection │ │ ├── append.js │ │ ├── attr.js │ │ ├── call.js │ │ ├── classed.js │ │ ├── clone.js │ │ ├── data.js │ │ ├── datum.js │ │ ├── dispatch.js │ │ ├── each.js │ │ ├── empty.js │ │ ├── enter.js │ │ ├── exit.js │ │ ├── filter.js │ │ ├── html.js │ │ ├── index.js │ │ ├── insert.js │ │ ├── join.js │ │ ├── lower.js │ │ ├── merge.js │ │ ├── node.js │ │ ├── nodes.js │ │ ├── on.js │ │ ├── order.js │ │ ├── property.js │ │ ├── raise.js │ │ ├── remove.js │ │ ├── select.js │ │ ├── selectAll.js │ │ ├── size.js │ │ ├── sort.js │ │ ├── sparse.js │ │ ├── style.js │ │ └── text.js │ ├── selector.js │ ├── selectorAll.js │ ├── sourceEvent.js │ ├── touch.js │ ├── touches.js │ └── window.js ├── test │ ├── create-test.js │ ├── creator-test.js │ ├── event-test.js │ ├── jsdom.js │ ├── matcher-test.js │ ├── namespace-test.js │ ├── namespaces-test.js │ ├── select-test.js │ ├── selectAll-test.js │ ├── selection │ │ ├── append-test.js │ │ ├── attr-test.js │ │ ├── call-test.js │ │ ├── classed-test.js │ │ ├── data-test.js │ │ ├── datum-test.js │ │ ├── dispatch-test.js │ │ ├── each-test.js │ │ ├── empty-test.js │ │ ├── enter-test.js │ │ ├── exit-test.js │ │ ├── filter-test.js │ │ ├── html-test.js │ │ ├── index-test.js │ │ ├── insert-test.js │ │ ├── join-test.js │ │ ├── merge-test.js │ │ ├── node-test.js │ │ ├── nodes-test.js │ │ ├── on-test.js │ │ ├── order-test.js │ │ ├── property-test.js │ │ ├── remove-test.js │ │ ├── select-test.js │ │ ├── selectAll-test.js │ │ ├── size-test.js │ │ ├── sort-test.js │ │ ├── style-test.js │ │ └── text-test.js │ ├── selector-test.js │ ├── selectorAll-test.js │ └── window-test.js └── yarn.lock ├── d3-tip ├── .bower.json ├── LICENSE ├── README.md ├── bower.json ├── circle.yml ├── index.js └── package.json ├── d3 ├── .bower.json ├── LICENSE ├── README.md ├── bower.json ├── d3.js └── d3.min.js ├── font-awesome ├── .bower.json ├── .gitignore ├── .npmignore ├── HELP-US-OUT.txt ├── bower.json ├── css │ ├── font-awesome.css │ ├── font-awesome.css.map │ └── font-awesome.min.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── less │ ├── animated.less │ ├── bordered-pulled.less │ ├── core.less │ ├── fixed-width.less │ ├── font-awesome.less │ ├── icons.less │ ├── larger.less │ ├── list.less │ ├── mixins.less │ ├── path.less │ ├── rotated-flipped.less │ ├── screen-reader.less │ ├── stacked.less │ └── variables.less └── scss │ ├── _animated.scss │ ├── _bordered-pulled.scss │ ├── _core.scss │ ├── _fixed-width.scss │ ├── _icons.scss │ ├── _larger.scss │ ├── _list.scss │ ├── _mixins.scss │ ├── _path.scss │ ├── _rotated-flipped.scss │ ├── _screen-reader.scss │ ├── _stacked.scss │ ├── _variables.scss │ └── font-awesome.scss ├── fontIconPicker ├── .bower.json ├── README.md ├── bower.json ├── css │ ├── iconpicker.eot │ ├── iconpicker.svg │ ├── iconpicker.ttf │ ├── iconpicker.woff │ ├── jquery.fonticonpicker.css │ └── jquery.fonticonpicker.min.css ├── jquery.fonticonpicker.js ├── jquery.fonticonpicker.min.js └── themes │ ├── bootstrap-theme │ ├── jquery.fonticonpicker.bootstrap.css │ └── jquery.fonticonpicker.bootstrap.min.css │ ├── dark-grey-theme │ ├── jquery.fonticonpicker.darkgrey.css │ └── jquery.fonticonpicker.darkgrey.min.css │ ├── grey-theme │ ├── jquery.fonticonpicker.grey.css │ └── jquery.fonticonpicker.grey.min.css │ └── inverted-theme │ ├── jquery.fonticonpicker.inverted.css │ └── jquery.fonticonpicker.inverted.min.css ├── ifvisible.js ├── .bower.json ├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── LICENSE.md ├── README.md ├── bower.json ├── docs │ ├── docco.css │ ├── ifvisible.html │ └── public │ │ ├── fonts │ │ ├── aller-bold.eot │ │ ├── aller-bold.ttf │ │ ├── aller-bold.woff │ │ ├── aller-light.eot │ │ ├── aller-light.ttf │ │ ├── aller-light.woff │ │ ├── fleurons.eot │ │ ├── fleurons.ttf │ │ ├── fleurons.woff │ │ ├── novecento-bold.eot │ │ ├── novecento-bold.ttf │ │ ├── novecento-bold.woff │ │ ├── roboto-black.eot │ │ ├── roboto-black.ttf │ │ └── roboto-black.woff │ │ ├── images │ │ └── gray.png │ │ └── stylesheets │ │ └── normalize.css ├── ifvisible.d.ts ├── package.json ├── src │ ├── ifvisible.coffee │ ├── ifvisible.js │ ├── ifvisible.js.map │ └── ifvisible.min.js └── tests │ └── index.html ├── jquery-timeago ├── .bower.json ├── .github │ └── no-response.yml ├── .gitignore ├── CNAME ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.markdown ├── Rakefile ├── bower.json ├── clock.png ├── composer.json ├── contrib │ └── timeago-koext.js ├── index.html ├── jquery.timeago.js ├── locales │ ├── README.md │ ├── jquery.timeago.af.js │ ├── jquery.timeago.am.js │ ├── jquery.timeago.ar.js │ ├── jquery.timeago.az-short.js │ ├── jquery.timeago.az.js │ ├── jquery.timeago.be.js │ ├── jquery.timeago.bg.js │ ├── jquery.timeago.bs.js │ ├── jquery.timeago.ca.js │ ├── jquery.timeago.cs.js │ ├── jquery.timeago.cy.js │ ├── jquery.timeago.da.js │ ├── jquery.timeago.de-short.js │ ├── jquery.timeago.de.js │ ├── jquery.timeago.dv.js │ ├── jquery.timeago.el.js │ ├── jquery.timeago.en-short.js │ ├── jquery.timeago.en.js │ ├── jquery.timeago.es-short.js │ ├── jquery.timeago.es.js │ ├── jquery.timeago.et.js │ ├── jquery.timeago.eu.js │ ├── jquery.timeago.fa-short.js │ ├── jquery.timeago.fa.js │ ├── jquery.timeago.fi.js │ ├── jquery.timeago.fr-short.js │ ├── jquery.timeago.fr.js │ ├── jquery.timeago.gl.js │ ├── jquery.timeago.he.js │ ├── jquery.timeago.hr.js │ ├── jquery.timeago.hu.js │ ├── jquery.timeago.hy.js │ ├── jquery.timeago.id.js │ ├── jquery.timeago.is.js │ ├── jquery.timeago.it-short.js │ ├── jquery.timeago.it.js │ ├── jquery.timeago.ja.js │ ├── jquery.timeago.jv.js │ ├── jquery.timeago.ko.js │ ├── jquery.timeago.ky.js │ ├── jquery.timeago.lt.js │ ├── jquery.timeago.lv.js │ ├── jquery.timeago.mk.js │ ├── jquery.timeago.nl.js │ ├── jquery.timeago.no.js │ ├── jquery.timeago.pl.js │ ├── jquery.timeago.pt-br-short.js │ ├── jquery.timeago.pt-br.js │ ├── jquery.timeago.pt-short.js │ ├── jquery.timeago.pt.js │ ├── jquery.timeago.ro.js │ ├── jquery.timeago.rs.js │ ├── jquery.timeago.ru.js │ ├── jquery.timeago.rw.js │ ├── jquery.timeago.si.js │ ├── jquery.timeago.sk.js │ ├── jquery.timeago.sl.js │ ├── jquery.timeago.sq.js │ ├── jquery.timeago.sr.js │ ├── jquery.timeago.sv.js │ ├── jquery.timeago.th.js │ ├── jquery.timeago.tr-short.js │ ├── jquery.timeago.tr.js │ ├── jquery.timeago.uk.js │ ├── jquery.timeago.ur.js │ ├── jquery.timeago.uz.js │ ├── jquery.timeago.vi.js │ ├── jquery.timeago.zh-CN.js │ └── jquery.timeago.zh-TW.js ├── package.json └── timeago.jquery.json ├── jquery ├── .bower.json ├── AUTHORS.txt ├── LICENSE.txt ├── README.md ├── bower.json ├── dist │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ ├── jquery.slim.js │ ├── jquery.slim.min.js │ └── jquery.slim.min.map ├── external │ └── sizzle │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── sizzle.js │ │ ├── sizzle.min.js │ │ └── sizzle.min.map └── src │ ├── ajax.js │ ├── ajax │ ├── jsonp.js │ ├── load.js │ ├── script.js │ ├── var │ │ ├── location.js │ │ ├── nonce.js │ │ └── rquery.js │ └── xhr.js │ ├── attributes.js │ ├── attributes │ ├── attr.js │ ├── classes.js │ ├── prop.js │ ├── support.js │ └── val.js │ ├── callbacks.js │ ├── core.js │ ├── core │ ├── DOMEval.js │ ├── access.js │ ├── camelCase.js │ ├── init.js │ ├── isAttached.js │ ├── nodeName.js │ ├── parseHTML.js │ ├── parseXML.js │ ├── ready-no-deferred.js │ ├── ready.js │ ├── readyException.js │ ├── stripAndCollapse.js │ ├── support.js │ ├── toType.js │ └── var │ │ └── rsingleTag.js │ ├── css.js │ ├── css │ ├── addGetHookIf.js │ ├── adjustCSS.js │ ├── curCSS.js │ ├── finalPropName.js │ ├── hiddenVisibleSelectors.js │ ├── showHide.js │ ├── support.js │ └── var │ │ ├── cssExpand.js │ │ ├── getStyles.js │ │ ├── isHiddenWithinTree.js │ │ ├── rboxStyle.js │ │ ├── rnumnonpx.js │ │ └── swap.js │ ├── data.js │ ├── data │ ├── Data.js │ └── var │ │ ├── acceptData.js │ │ ├── dataPriv.js │ │ └── dataUser.js │ ├── deferred.js │ ├── deferred │ └── exceptionHook.js │ ├── deprecated.js │ ├── deprecated │ ├── ajax-event-alias.js │ └── event.js │ ├── dimensions.js │ ├── effects.js │ ├── effects │ ├── Tween.js │ └── animatedSelector.js │ ├── event.js │ ├── event │ ├── focusin.js │ ├── support.js │ └── trigger.js │ ├── exports │ ├── amd.js │ └── global.js │ ├── jquery.js │ ├── manipulation.js │ ├── manipulation │ ├── _evalUrl.js │ ├── buildFragment.js │ ├── getAll.js │ ├── setGlobalEval.js │ ├── support.js │ ├── var │ │ ├── rscriptType.js │ │ └── rtagName.js │ └── wrapMap.js │ ├── offset.js │ ├── queue.js │ ├── queue │ └── delay.js │ ├── selector-native.js │ ├── selector-sizzle.js │ ├── selector.js │ ├── serialize.js │ ├── traversing.js │ ├── traversing │ ├── findFilter.js │ └── var │ │ ├── dir.js │ │ ├── rneedsContext.js │ │ └── siblings.js │ ├── var │ ├── ObjectFunctionString.js │ ├── arr.js │ ├── class2type.js │ ├── document.js │ ├── documentElement.js │ ├── flat.js │ ├── fnToString.js │ ├── getProto.js │ ├── hasOwn.js │ ├── indexOf.js │ ├── isFunction.js │ ├── isWindow.js │ ├── pnum.js │ ├── push.js │ ├── rcheckableType.js │ ├── rcssNum.js │ ├── rnothtmlwhite.js │ ├── slice.js │ ├── support.js │ └── toString.js │ └── wrap.js ├── leaflet ├── .bower.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Jakefile.js ├── LICENSE ├── PLUGIN-GUIDE.md ├── README.md ├── bower.json ├── component.json ├── dist │ ├── images │ │ ├── layers-2x.png │ │ ├── layers.png │ │ ├── marker-icon-2x.png │ │ ├── marker-icon.png │ │ └── marker-shadow.png │ ├── leaflet-src.js │ ├── leaflet.css │ └── leaflet.js └── package.json ├── moment-duration-format ├── .bower.json ├── LICENSE ├── README.md ├── bower.json ├── lib │ └── moment-duration-format.js └── package.json ├── moment-timezone ├── .bower.json ├── LICENSE ├── README.md ├── bower.json ├── builds │ ├── moment-timezone-with-data-10-year-range.js │ ├── moment-timezone-with-data-10-year-range.min.js │ ├── moment-timezone-with-data-1970-2030.js │ ├── moment-timezone-with-data-1970-2030.min.js │ ├── moment-timezone-with-data-2012-2022.js │ ├── moment-timezone-with-data-2012-2022.min.js │ ├── moment-timezone-with-data.js │ ├── moment-timezone-with-data.min.js │ └── moment-timezone.min.js ├── changelog.md ├── composer.json ├── data │ ├── meta │ │ └── latest.json │ ├── packed │ │ └── latest.json │ └── unpacked │ │ └── latest.json ├── index.d.ts ├── moment-timezone-utils.d.ts ├── moment-timezone-utils.js ├── moment-timezone.js ├── package-lock.json ├── scripts │ └── compare-versions.js └── typing-tests │ ├── moment-tests.ts │ ├── moment-timezone-tests.ts │ ├── moment-timezone-utils-tests.ts │ └── tsconfig.json ├── moment ├── .bower.json ├── CHANGELOG.md ├── FAQ.md ├── LICENSE ├── README.md ├── bower.json ├── dist │ ├── locale │ │ ├── af.js │ │ ├── ar-dz.js │ │ ├── ar-kw.js │ │ ├── ar-ly.js │ │ ├── ar-ma.js │ │ ├── ar-sa.js │ │ ├── ar-tn.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── be.js │ │ ├── bg.js │ │ ├── bm.js │ │ ├── bn-bd.js │ │ ├── bn.js │ │ ├── bo.js │ │ ├── br.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cv.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-at.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── dv.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en-ie.js │ │ ├── en-il.js │ │ ├── en-in.js │ │ ├── en-nz.js │ │ ├── en-sg.js │ │ ├── eo.js │ │ ├── es-do.js │ │ ├── es-mx.js │ │ ├── es-us.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fil.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr-ch.js │ │ ├── fr.js │ │ ├── fy.js │ │ ├── ga.js │ │ ├── gd.js │ │ ├── gl.js │ │ ├── gom-deva.js │ │ ├── gom-latn.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── hy-am.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it-ch.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── jv.js │ │ ├── ka.js │ │ ├── kk.js │ │ ├── km.js │ │ ├── kn.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── ky.js │ │ ├── lb.js │ │ ├── lo.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── me.js │ │ ├── mi.js │ │ ├── mk.js │ │ ├── ml.js │ │ ├── mn.js │ │ ├── mr.js │ │ ├── ms-my.js │ │ ├── ms.js │ │ ├── mt.js │ │ ├── my.js │ │ ├── nb.js │ │ ├── ne.js │ │ ├── nl-be.js │ │ ├── nl.js │ │ ├── nn.js │ │ ├── oc-lnc.js │ │ ├── pa-in.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sd.js │ │ ├── se.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-cyrl.js │ │ ├── sr.js │ │ ├── ss.js │ │ ├── sv.js │ │ ├── sw.js │ │ ├── ta.js │ │ ├── te.js │ │ ├── tet.js │ │ ├── tg.js │ │ ├── th.js │ │ ├── tk.js │ │ ├── tl-ph.js │ │ ├── tlh.js │ │ ├── tr.js │ │ ├── tzl.js │ │ ├── tzm-latn.js │ │ ├── tzm.js │ │ ├── ug-cn.js │ │ ├── uk.js │ │ ├── ur.js │ │ ├── uz-latn.js │ │ ├── uz.js │ │ ├── vi.js │ │ ├── x-pseudo.js │ │ ├── yo.js │ │ ├── zh-cn.js │ │ ├── zh-hk.js │ │ ├── zh-mo.js │ │ └── zh-tw.js │ └── moment.js ├── locale │ ├── af.js │ ├── ar-dz.js │ ├── ar-kw.js │ ├── ar-ly.js │ ├── ar-ma.js │ ├── ar-sa.js │ ├── ar-tn.js │ ├── ar.js │ ├── az.js │ ├── be.js │ ├── bg.js │ ├── bm.js │ ├── bn-bd.js │ ├── bn.js │ ├── bo.js │ ├── br.js │ ├── bs.js │ ├── ca.js │ ├── cs.js │ ├── cv.js │ ├── cy.js │ ├── da.js │ ├── de-at.js │ ├── de-ch.js │ ├── de.js │ ├── dv.js │ ├── el.js │ ├── en-au.js │ ├── en-ca.js │ ├── en-gb.js │ ├── en-ie.js │ ├── en-il.js │ ├── en-in.js │ ├── en-nz.js │ ├── en-sg.js │ ├── eo.js │ ├── es-do.js │ ├── es-mx.js │ ├── es-us.js │ ├── es.js │ ├── et.js │ ├── eu.js │ ├── fa.js │ ├── fi.js │ ├── fil.js │ ├── fo.js │ ├── fr-ca.js │ ├── fr-ch.js │ ├── fr.js │ ├── fy.js │ ├── ga.js │ ├── gd.js │ ├── gl.js │ ├── gom-deva.js │ ├── gom-latn.js │ ├── gu.js │ ├── he.js │ ├── hi.js │ ├── hr.js │ ├── hu.js │ ├── hy-am.js │ ├── id.js │ ├── is.js │ ├── it-ch.js │ ├── it.js │ ├── ja.js │ ├── jv.js │ ├── ka.js │ ├── kk.js │ ├── km.js │ ├── kn.js │ ├── ko.js │ ├── ku.js │ ├── ky.js │ ├── lb.js │ ├── lo.js │ ├── lt.js │ ├── lv.js │ ├── me.js │ ├── mi.js │ ├── mk.js │ ├── ml.js │ ├── mn.js │ ├── mr.js │ ├── ms-my.js │ ├── ms.js │ ├── mt.js │ ├── my.js │ ├── nb.js │ ├── ne.js │ ├── nl-be.js │ ├── nl.js │ ├── nn.js │ ├── oc-lnc.js │ ├── pa-in.js │ ├── pl.js │ ├── pt-br.js │ ├── pt.js │ ├── ro.js │ ├── ru.js │ ├── sd.js │ ├── se.js │ ├── si.js │ ├── sk.js │ ├── sl.js │ ├── sq.js │ ├── sr-cyrl.js │ ├── sr.js │ ├── ss.js │ ├── sv.js │ ├── sw.js │ ├── ta.js │ ├── te.js │ ├── tet.js │ ├── tg.js │ ├── th.js │ ├── tk.js │ ├── tl-ph.js │ ├── tlh.js │ ├── tr.js │ ├── tzl.js │ ├── tzm-latn.js │ ├── tzm.js │ ├── ug-cn.js │ ├── uk.js │ ├── ur.js │ ├── uz-latn.js │ ├── uz.js │ ├── vi.js │ ├── x-pseudo.js │ ├── yo.js │ ├── zh-cn.js │ ├── zh-hk.js │ ├── zh-mo.js │ └── zh-tw.js ├── min │ ├── locales.js │ ├── locales.min.js │ ├── locales.min.js.map │ ├── moment-with-locales.js │ ├── moment-with-locales.min.js │ ├── moment-with-locales.min.js.map │ ├── moment.min.js │ └── moment.min.js.map ├── moment.d.ts ├── moment.js ├── package-lock.json ├── src │ ├── lib │ │ ├── create │ │ │ ├── check-overflow.js │ │ │ ├── date-from-array.js │ │ │ ├── from-anything.js │ │ │ ├── from-array.js │ │ │ ├── from-object.js │ │ │ ├── from-string-and-array.js │ │ │ ├── from-string-and-format.js │ │ │ ├── from-string.js │ │ │ ├── local.js │ │ │ ├── parsing-flags.js │ │ │ ├── utc.js │ │ │ └── valid.js │ │ ├── duration │ │ │ ├── abs.js │ │ │ ├── add-subtract.js │ │ │ ├── as.js │ │ │ ├── bubble.js │ │ │ ├── clone.js │ │ │ ├── constructor.js │ │ │ ├── create.js │ │ │ ├── duration.js │ │ │ ├── get.js │ │ │ ├── humanize.js │ │ │ ├── iso-string.js │ │ │ ├── prototype.js │ │ │ └── valid.js │ │ ├── format │ │ │ └── format.js │ │ ├── locale │ │ │ ├── base-config.js │ │ │ ├── calendar.js │ │ │ ├── constructor.js │ │ │ ├── en.js │ │ │ ├── formats.js │ │ │ ├── invalid.js │ │ │ ├── lists.js │ │ │ ├── locale.js │ │ │ ├── locales.js │ │ │ ├── ordinal.js │ │ │ ├── pre-post-format.js │ │ │ ├── prototype.js │ │ │ ├── relative.js │ │ │ └── set.js │ │ ├── moment │ │ │ ├── add-subtract.js │ │ │ ├── calendar.js │ │ │ ├── clone.js │ │ │ ├── compare.js │ │ │ ├── constructor.js │ │ │ ├── creation-data.js │ │ │ ├── diff.js │ │ │ ├── format.js │ │ │ ├── from.js │ │ │ ├── get-set.js │ │ │ ├── locale.js │ │ │ ├── min-max.js │ │ │ ├── moment.js │ │ │ ├── now.js │ │ │ ├── prototype.js │ │ │ ├── start-end-of.js │ │ │ ├── to-type.js │ │ │ ├── to.js │ │ │ └── valid.js │ │ ├── parse │ │ │ ├── regex.js │ │ │ └── token.js │ │ ├── units │ │ │ ├── aliases.js │ │ │ ├── constants.js │ │ │ ├── day-of-month.js │ │ │ ├── day-of-week.js │ │ │ ├── day-of-year.js │ │ │ ├── era.js │ │ │ ├── hour.js │ │ │ ├── millisecond.js │ │ │ ├── minute.js │ │ │ ├── month.js │ │ │ ├── offset.js │ │ │ ├── priorities.js │ │ │ ├── quarter.js │ │ │ ├── second.js │ │ │ ├── timestamp.js │ │ │ ├── timezone.js │ │ │ ├── units.js │ │ │ ├── week-calendar-utils.js │ │ │ ├── week-year.js │ │ │ ├── week.js │ │ │ └── year.js │ │ └── utils │ │ │ ├── abs-ceil.js │ │ │ ├── abs-floor.js │ │ │ ├── abs-round.js │ │ │ ├── compare-arrays.js │ │ │ ├── defaults.js │ │ │ ├── deprecate.js │ │ │ ├── extend.js │ │ │ ├── has-own-prop.js │ │ │ ├── hooks.js │ │ │ ├── index-of.js │ │ │ ├── is-array.js │ │ │ ├── is-calendar-spec.js │ │ │ ├── is-date.js │ │ │ ├── is-function.js │ │ │ ├── is-leap-year.js │ │ │ ├── is-moment-input.js │ │ │ ├── is-number.js │ │ │ ├── is-object-empty.js │ │ │ ├── is-object.js │ │ │ ├── is-string.js │ │ │ ├── is-undefined.js │ │ │ ├── keys.js │ │ │ ├── map.js │ │ │ ├── mod.js │ │ │ ├── some.js │ │ │ ├── to-int.js │ │ │ └── zero-fill.js │ ├── locale │ │ ├── af.js │ │ ├── ar-dz.js │ │ ├── ar-kw.js │ │ ├── ar-ly.js │ │ ├── ar-ma.js │ │ ├── ar-sa.js │ │ ├── ar-tn.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── be.js │ │ ├── bg.js │ │ ├── bm.js │ │ ├── bn-bd.js │ │ ├── bn.js │ │ ├── bo.js │ │ ├── br.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cv.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-at.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── dv.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en-ie.js │ │ ├── en-il.js │ │ ├── en-in.js │ │ ├── en-nz.js │ │ ├── en-sg.js │ │ ├── eo.js │ │ ├── es-do.js │ │ ├── es-mx.js │ │ ├── es-us.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fil.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr-ch.js │ │ ├── fr.js │ │ ├── fy.js │ │ ├── ga.js │ │ ├── gd.js │ │ ├── gl.js │ │ ├── gom-deva.js │ │ ├── gom-latn.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── hy-am.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it-ch.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── jv.js │ │ ├── ka.js │ │ ├── kk.js │ │ ├── km.js │ │ ├── kn.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── ky.js │ │ ├── lb.js │ │ ├── lo.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── me.js │ │ ├── mi.js │ │ ├── mk.js │ │ ├── ml.js │ │ ├── mn.js │ │ ├── mr.js │ │ ├── ms-my.js │ │ ├── ms.js │ │ ├── mt.js │ │ ├── my.js │ │ ├── nb.js │ │ ├── ne.js │ │ ├── nl-be.js │ │ ├── nl.js │ │ ├── nn.js │ │ ├── oc-lnc.js │ │ ├── pa-in.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sd.js │ │ ├── se.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-cyrl.js │ │ ├── sr.js │ │ ├── ss.js │ │ ├── sv.js │ │ ├── sw.js │ │ ├── ta.js │ │ ├── te.js │ │ ├── tet.js │ │ ├── tg.js │ │ ├── th.js │ │ ├── tk.js │ │ ├── tl-ph.js │ │ ├── tlh.js │ │ ├── tr.js │ │ ├── tzl.js │ │ ├── tzm-latn.js │ │ ├── tzm.js │ │ ├── ug-cn.js │ │ ├── uk.js │ │ ├── ur.js │ │ ├── uz-latn.js │ │ ├── uz.js │ │ ├── vi.js │ │ ├── x-pseudo.js │ │ ├── yo.js │ │ ├── zh-cn.js │ │ ├── zh-hk.js │ │ ├── zh-mo.js │ │ └── zh-tw.js │ └── moment.js ├── templates │ ├── default.js │ ├── empty.js │ ├── locale-header.js │ └── test-header.js ├── ts3.1-typing-tests │ ├── moment-tests.ts │ └── tsconfig.json └── ts3.1-typings │ └── moment.d.ts ├── pace ├── .bower.json ├── .gitignore ├── LICENSE ├── README.md ├── pace-theme-default.css ├── pace-theme-default.min.css ├── pace.js ├── pace.min.js ├── package-lock.json ├── package.json ├── templates │ ├── pace-theme-barber-shop.tmpl.css │ ├── pace-theme-big-counter.tmpl.css │ ├── pace-theme-bounce.tmpl.css │ ├── pace-theme-center-atom.tmpl.css │ ├── pace-theme-center-circle.tmpl.css │ ├── pace-theme-center-radar.tmpl.css │ ├── pace-theme-center-simple.tmpl.css │ ├── pace-theme-corner-indicator.tmpl.css │ ├── pace-theme-fill-left.tmpl.css │ ├── pace-theme-flash.tmpl.css │ ├── pace-theme-flat-top.tmpl.css │ ├── pace-theme-loading-bar.tmpl.css │ ├── pace-theme-mac-osx.tmpl.css │ ├── pace-theme-material.tmpl.css │ └── pace-theme-minimal.tmpl.css └── themes │ ├── black │ ├── pace-theme-barber-shop.css │ ├── pace-theme-big-counter.css │ ├── pace-theme-bounce.css │ ├── pace-theme-center-atom.css │ ├── pace-theme-center-circle.css │ ├── pace-theme-center-radar.css │ ├── pace-theme-center-simple.css │ ├── pace-theme-corner-indicator.css │ ├── pace-theme-fill-left.css │ ├── pace-theme-flash.css │ ├── pace-theme-flat-top.css │ ├── pace-theme-loading-bar.css │ ├── pace-theme-mac-osx.css │ ├── pace-theme-material.css │ └── pace-theme-minimal.css │ ├── blue │ ├── pace-theme-barber-shop.css │ ├── pace-theme-big-counter.css │ ├── pace-theme-bounce.css │ ├── pace-theme-center-atom.css │ ├── pace-theme-center-circle.css │ ├── pace-theme-center-radar.css │ ├── pace-theme-center-simple.css │ ├── pace-theme-corner-indicator.css │ ├── pace-theme-fill-left.css │ ├── pace-theme-flash.css │ ├── pace-theme-flat-top.css │ ├── pace-theme-loading-bar.css │ ├── pace-theme-mac-osx.css │ ├── pace-theme-material.css │ └── pace-theme-minimal.css │ ├── green │ ├── pace-theme-barber-shop.css │ ├── pace-theme-big-counter.css │ ├── pace-theme-bounce.css │ ├── pace-theme-center-atom.css │ ├── pace-theme-center-circle.css │ ├── pace-theme-center-radar.css │ ├── pace-theme-center-simple.css │ ├── pace-theme-corner-indicator.css │ ├── pace-theme-fill-left.css │ ├── pace-theme-flash.css │ ├── pace-theme-flat-top.css │ ├── pace-theme-loading-bar.css │ ├── pace-theme-mac-osx.css │ ├── pace-theme-material.css │ └── pace-theme-minimal.css │ ├── orange │ ├── pace-theme-barber-shop.css │ ├── pace-theme-big-counter.css │ ├── pace-theme-bounce.css │ ├── pace-theme-center-atom.css │ ├── pace-theme-center-circle.css │ ├── pace-theme-center-radar.css │ ├── pace-theme-center-simple.css │ ├── pace-theme-corner-indicator.css │ ├── pace-theme-fill-left.css │ ├── pace-theme-flash.css │ ├── pace-theme-flat-top.css │ ├── pace-theme-loading-bar.css │ ├── pace-theme-mac-osx.css │ ├── pace-theme-material.css │ └── pace-theme-minimal.css │ ├── pink │ ├── pace-theme-barber-shop.css │ ├── pace-theme-big-counter.css │ ├── pace-theme-bounce.css │ ├── pace-theme-center-atom.css │ ├── pace-theme-center-circle.css │ ├── pace-theme-center-radar.css │ ├── pace-theme-center-simple.css │ ├── pace-theme-corner-indicator.css │ ├── pace-theme-fill-left.css │ ├── pace-theme-flash.css │ ├── pace-theme-flat-top.css │ ├── pace-theme-loading-bar.css │ ├── pace-theme-mac-osx.css │ ├── pace-theme-material.css │ └── pace-theme-minimal.css │ ├── purple │ ├── pace-theme-barber-shop.css │ ├── pace-theme-big-counter.css │ ├── pace-theme-bounce.css │ ├── pace-theme-center-atom.css │ ├── pace-theme-center-circle.css │ ├── pace-theme-center-radar.css │ ├── pace-theme-center-simple.css │ ├── pace-theme-corner-indicator.css │ ├── pace-theme-fill-left.css │ ├── pace-theme-flash.css │ ├── pace-theme-flat-top.css │ ├── pace-theme-loading-bar.css │ ├── pace-theme-mac-osx.css │ ├── pace-theme-material.css │ └── pace-theme-minimal.css │ ├── red │ ├── pace-theme-barber-shop.css │ ├── pace-theme-big-counter.css │ ├── pace-theme-bounce.css │ ├── pace-theme-center-atom.css │ ├── pace-theme-center-circle.css │ ├── pace-theme-center-radar.css │ ├── pace-theme-center-simple.css │ ├── pace-theme-corner-indicator.css │ ├── pace-theme-fill-left.css │ ├── pace-theme-flash.css │ ├── pace-theme-flat-top.css │ ├── pace-theme-loading-bar.css │ ├── pace-theme-mac-osx.css │ ├── pace-theme-material.css │ └── pace-theme-minimal.css │ ├── silver │ ├── pace-theme-barber-shop.css │ ├── pace-theme-big-counter.css │ ├── pace-theme-bounce.css │ ├── pace-theme-center-atom.css │ ├── pace-theme-center-circle.css │ ├── pace-theme-center-radar.css │ ├── pace-theme-center-simple.css │ ├── pace-theme-corner-indicator.css │ ├── pace-theme-fill-left.css │ ├── pace-theme-flash.css │ ├── pace-theme-flat-top.css │ ├── pace-theme-loading-bar.css │ ├── pace-theme-mac-osx.css │ ├── pace-theme-material.css │ └── pace-theme-minimal.css │ ├── white │ ├── pace-theme-barber-shop.css │ ├── pace-theme-big-counter.css │ ├── pace-theme-bounce.css │ ├── pace-theme-center-atom.css │ ├── pace-theme-center-circle.css │ ├── pace-theme-center-radar.css │ ├── pace-theme-center-simple.css │ ├── pace-theme-corner-indicator.css │ ├── pace-theme-fill-left.css │ ├── pace-theme-flash.css │ ├── pace-theme-flat-top.css │ ├── pace-theme-loading-bar.css │ ├── pace-theme-mac-osx.css │ ├── pace-theme-material.css │ └── pace-theme-minimal.css │ └── yellow │ ├── pace-theme-barber-shop.css │ ├── pace-theme-big-counter.css │ ├── pace-theme-bounce.css │ ├── pace-theme-center-atom.css │ ├── pace-theme-center-circle.css │ ├── pace-theme-center-radar.css │ ├── pace-theme-center-simple.css │ ├── pace-theme-corner-indicator.css │ ├── pace-theme-fill-left.css │ ├── pace-theme-flash.css │ ├── pace-theme-flat-top.css │ ├── pace-theme-loading-bar.css │ ├── pace-theme-mac-osx.css │ ├── pace-theme-material.css │ └── pace-theme-minimal.css ├── regression-js ├── .bower.json ├── .eslintrc.yaml ├── .gitignore ├── .npmignore ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── build │ └── regression.min.js ├── index.js ├── package.json ├── src │ └── regression.js └── tests │ └── regression.js └── tablesorter ├── .bower.json ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .jscsrc ├── .mailmap ├── AUTHORS ├── addons └── pager │ ├── icons │ ├── first.png │ ├── last.png │ ├── loading.gif │ ├── next.png │ └── prev.png │ ├── jquery.tablesorter.pager.css │ └── jquery.tablesorter.pager.js ├── bower.json ├── composer.json ├── css ├── bootstrap.less ├── dragtable.mod.css ├── filter.formatter.css ├── high-specificity │ └── theme.blue.specific.css ├── highlights.css ├── images │ ├── black-asc.gif │ ├── black-desc.gif │ ├── black-unsorted.gif │ ├── bootstrap-black-unsorted.png │ ├── bootstrap-white-unsorted.png │ ├── dragtable-handle.png │ ├── dragtable-handle.svg │ ├── dropbox-asc-hovered.png │ ├── dropbox-asc.png │ ├── dropbox-desc-hovered.png │ ├── dropbox-desc.png │ ├── green-asc.gif │ ├── green-desc.gif │ ├── green-header.gif │ ├── green-unsorted.gif │ ├── ice-asc.gif │ ├── ice-desc.gif │ ├── ice-unsorted.gif │ ├── metro-black-asc.png │ ├── metro-black-desc.png │ ├── metro-loading.gif │ ├── metro-unsorted.png │ ├── metro-white-asc.png │ ├── metro-white-desc.png │ ├── white-asc.gif │ ├── white-desc.gif │ └── white-unsorted.gif ├── metro.less ├── psd │ ├── green-asc.psd │ ├── green-desc.psd │ ├── green-unsorted.psd │ └── metro-style.psd ├── theme.black-ice.css ├── theme.blue.css ├── theme.bootstrap.css ├── theme.bootstrap_2.css ├── theme.bootstrap_3.css ├── theme.bootstrap_4.css ├── theme.dark.css ├── theme.default.css ├── theme.dropbox.css ├── theme.green.css ├── theme.grey.css ├── theme.ice.css ├── theme.jui.css ├── theme.less ├── theme.materialize.css ├── theme.metro-dark.css ├── theme.scss └── widget.grouping.css ├── dist ├── css │ ├── dragtable.mod.min.css │ ├── filter.formatter.min.css │ ├── highlights.min.css │ ├── images │ │ ├── black-asc.gif │ │ ├── black-desc.gif │ │ ├── black-unsorted.gif │ │ ├── bootstrap-black-unsorted.png │ │ ├── bootstrap-white-unsorted.png │ │ ├── dragtable-handle.png │ │ ├── dragtable-handle.svg │ │ ├── dropbox-asc-hovered.png │ │ ├── dropbox-asc.png │ │ ├── dropbox-desc-hovered.png │ │ ├── dropbox-desc.png │ │ ├── first.png │ │ ├── green-asc.gif │ │ ├── green-desc.gif │ │ ├── green-header.gif │ │ ├── green-unsorted.gif │ │ ├── ice-asc.gif │ │ ├── ice-desc.gif │ │ ├── ice-unsorted.gif │ │ ├── last.png │ │ ├── loading.gif │ │ ├── metro-black-asc.png │ │ ├── metro-black-desc.png │ │ ├── metro-loading.gif │ │ ├── metro-unsorted.png │ │ ├── metro-white-asc.png │ │ ├── metro-white-desc.png │ │ ├── next.png │ │ ├── prev.png │ │ ├── white-asc.gif │ │ ├── white-desc.gif │ │ └── white-unsorted.gif │ ├── jquery.tablesorter.pager.min.css │ ├── less │ │ ├── bootstrap.less │ │ ├── metro.less │ │ └── theme.less │ ├── scss │ │ └── theme.scss │ ├── theme.blackice.min.css │ ├── theme.blue.css │ ├── theme.blue.min.css │ ├── theme.bootstrap.min.css │ ├── theme.bootstrap_2.min.css │ ├── theme.bootstrap_3.min.css │ ├── theme.bootstrap_4.min.css │ ├── theme.dark.min.css │ ├── theme.default.min.css │ ├── theme.dropbox.min.css │ ├── theme.green.min.css │ ├── theme.grey.min.css │ ├── theme.ice.min.css │ ├── theme.jui.min.css │ ├── theme.materialize.min.css │ ├── theme.metro-dark.min.css │ └── widget.grouping.min.css └── js │ ├── extras │ ├── jquery.dragtable.mod.min.js │ ├── jquery.metadata.min.js │ ├── jquery.tablesorter.pager.min.js │ └── semver-mod.min.js │ ├── jquery.tablesorter.combined.js │ ├── jquery.tablesorter.combined.min.js │ ├── jquery.tablesorter.js │ ├── jquery.tablesorter.min.js │ ├── jquery.tablesorter.widgets.js │ ├── jquery.tablesorter.widgets.min.js │ ├── parsers │ ├── parser-date-extract.min.js │ ├── parser-date-iso8601.min.js │ ├── parser-date-month.min.js │ ├── parser-date-range.min.js │ ├── parser-date-two-digit-year.min.js │ ├── parser-date-weekday.min.js │ ├── parser-date.min.js │ ├── parser-duration.min.js │ ├── parser-feet-inch-fraction.min.js │ ├── parser-file-type.min.js │ ├── parser-globalize.min.js │ ├── parser-huge-numbers.min.js │ ├── parser-ignore-articles.min.js │ ├── parser-image.min.js │ ├── parser-input-select.min.js │ ├── parser-leading-zeros.min.js │ ├── parser-metric.min.js │ ├── parser-named-numbers.min.js │ ├── parser-network.min.js │ └── parser-roman.min.js │ └── widgets │ ├── widget-alignChar.min.js │ ├── widget-build-table.min.js │ ├── widget-chart.min.js │ ├── widget-columnSelector.min.js │ ├── widget-columns.min.js │ ├── widget-cssStickyHeaders.min.js │ ├── widget-currentSort.min.js │ ├── widget-editable.min.js │ ├── widget-filter-formatter-html5.min.js │ ├── widget-filter-formatter-jui.min.js │ ├── widget-filter-formatter-select2.min.js │ ├── widget-filter-type-insideRange.min.js │ ├── widget-filter.min.js │ ├── widget-formatter.min.js │ ├── widget-grouping.min.js │ ├── widget-headerTitles.min.js │ ├── widget-lazyload.min.js │ ├── widget-mark.min.js │ ├── widget-math.min.js │ ├── widget-output.min.js │ ├── widget-pager.min.js │ ├── widget-print.min.js │ ├── widget-reflow.min.js │ ├── widget-repeatheaders.min.js │ ├── widget-resizable.min.js │ ├── widget-saveSort.min.js │ ├── widget-scroller.min.js │ ├── widget-sort2Hash.min.js │ ├── widget-sortTbodies.min.js │ ├── widget-staticRow.min.js │ ├── widget-stickyHeaders.min.js │ ├── widget-storage.min.js │ ├── widget-toggle.min.js │ ├── widget-uitheme.min.js │ ├── widget-vertical-group.min.js │ └── widget-view.min.js ├── example.json └── js ├── extras ├── jquery.dragtable.mod.js ├── jquery.metadata.js ├── semver-mod.js └── semver.js ├── jquery.tablesorter.combined.js ├── jquery.tablesorter.js ├── jquery.tablesorter.widgets.js ├── parsers ├── parser-date-extract.js ├── parser-date-iso8601.js ├── parser-date-month.js ├── parser-date-range.js ├── parser-date-two-digit-year.js ├── parser-date-weekday.js ├── parser-date.js ├── parser-duration.js ├── parser-feet-inch-fraction.js ├── parser-file-type.js ├── parser-globalize.js ├── parser-huge-numbers.js ├── parser-ignore-articles.js ├── parser-image.js ├── parser-input-select.js ├── parser-leading-zeros.js ├── parser-metric.js ├── parser-named-numbers.js ├── parser-network.js └── parser-roman.js └── widgets ├── widget-alignChar.js ├── widget-build-table.js ├── widget-chart.js ├── widget-columnSelector.js ├── widget-columns.js ├── widget-cssStickyHeaders.js ├── widget-currentSort.js ├── widget-editable.js ├── widget-filter-formatter-html5.js ├── widget-filter-formatter-jui.js ├── widget-filter-formatter-select2.js ├── widget-filter-type-insideRange.js ├── widget-filter.js ├── widget-formatter.js ├── widget-grouping.js ├── widget-headerTitles.js ├── widget-lazyload.js ├── widget-mark.js ├── widget-math.js ├── widget-output.js ├── widget-pager.js ├── widget-print.js ├── widget-reflow.js ├── widget-repeatheaders.js ├── widget-resizable.js ├── widget-saveSort.js ├── widget-scroller.js ├── widget-sort2Hash.js ├── widget-sortTbodies.js ├── widget-staticRow.js ├── widget-stickyHeaders.js ├── widget-storage.js ├── widget-toggle.js ├── widget-uitheme.js ├── widget-vertical-group.js └── widget-view.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "web/vendor" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/.htaccess.dist -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/README.md -------------------------------------------------------------------------------- /app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/app/AppKernel.php -------------------------------------------------------------------------------- /app/Resources/views/analytics.html.twig: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/Resources/views/base.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/app/Resources/views/base.html.twig -------------------------------------------------------------------------------- /app/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/app/autoload.php -------------------------------------------------------------------------------- /app/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/app/config/config.yml -------------------------------------------------------------------------------- /app/config/config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/app/config/config_dev.yml -------------------------------------------------------------------------------- /app/config/config_prod.yml: -------------------------------------------------------------------------------- 1 | imports: 2 | - { resource: config.yml } 3 | -------------------------------------------------------------------------------- /app/config/config_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/app/config/config_test.yml -------------------------------------------------------------------------------- /app/config/config_test_empty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/app/config/config_test_empty.yml -------------------------------------------------------------------------------- /app/config/default_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/app/config/default_config.yml -------------------------------------------------------------------------------- /app/config/expert_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/app/config/expert_config.yml -------------------------------------------------------------------------------- /app/config/languages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/app/config/languages.yml -------------------------------------------------------------------------------- /app/config/queue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/app/config/queue.yml -------------------------------------------------------------------------------- /app/config/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/app/config/security.yml -------------------------------------------------------------------------------- /app/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/app/config/services.yml -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/bin/console -------------------------------------------------------------------------------- /bin/deploy_rsa.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/bin/deploy_rsa.enc -------------------------------------------------------------------------------- /bin/travis_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/bin/travis_build.sh -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/bower.json -------------------------------------------------------------------------------- /call/perl/Garmin/FIT.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/call/perl/Garmin/FIT.pm -------------------------------------------------------------------------------- /call/perl/fittorunalyze.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/call/perl/fittorunalyze.pl -------------------------------------------------------------------------------- /call/perl/test.pl: -------------------------------------------------------------------------------- 1 | #! /usr/bin/perl 2 | 3 | print "success"; 4 | -------------------------------------------------------------------------------- /call/perl/ttbincnv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/call/perl/ttbincnv -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/composer.lock -------------------------------------------------------------------------------- /dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/dashboard.php -------------------------------------------------------------------------------- /data/backup-tool/backup/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/data/backup-tool/backup/.htaccess -------------------------------------------------------------------------------- /data/backup-tool/import/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/data/backup-tool/import/.htaccess -------------------------------------------------------------------------------- /data/config_overwrite.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/import/activity/failed/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/poster/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/srtm/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/timezone.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/data/timezone.sqlite -------------------------------------------------------------------------------- /data/views/notifications/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/gulpfile.js -------------------------------------------------------------------------------- /inc/class.DataBrowser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/class.DataBrowser.php -------------------------------------------------------------------------------- /inc/class.DataBrowserLinker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/class.DataBrowserLinker.php -------------------------------------------------------------------------------- /inc/class.DataBrowserShared.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/class.DataBrowserShared.php -------------------------------------------------------------------------------- /inc/class.Frontend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/class.Frontend.php -------------------------------------------------------------------------------- /inc/class.FrontendShared.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/class.FrontendShared.php -------------------------------------------------------------------------------- /inc/class.FrontendSharedList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/class.FrontendSharedList.php -------------------------------------------------------------------------------- /inc/class.Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/class.Helper.php -------------------------------------------------------------------------------- /inc/core/Activity/Distance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Activity/Distance.php -------------------------------------------------------------------------------- /inc/core/Activity/Duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Activity/Duration.php -------------------------------------------------------------------------------- /inc/core/Activity/Elevation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Activity/Elevation.php -------------------------------------------------------------------------------- /inc/core/Activity/Energy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Activity/Energy.php -------------------------------------------------------------------------------- /inc/core/Activity/HeartRate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Activity/HeartRate.php -------------------------------------------------------------------------------- /inc/core/Activity/LapIntensity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Activity/LapIntensity.php -------------------------------------------------------------------------------- /inc/core/Activity/Pace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Activity/Pace.php -------------------------------------------------------------------------------- /inc/core/Activity/PersonalBest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Activity/PersonalBest.php -------------------------------------------------------------------------------- /inc/core/Activity/PoolLength.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Activity/PoolLength.php -------------------------------------------------------------------------------- /inc/core/Activity/StrideLength.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Activity/StrideLength.php -------------------------------------------------------------------------------- /inc/core/Activity/Temperature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Activity/Temperature.php -------------------------------------------------------------------------------- /inc/core/Activity/Weight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Activity/Weight.php -------------------------------------------------------------------------------- /inc/core/Athlete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Athlete.php -------------------------------------------------------------------------------- /inc/core/Calculation/JD/Shape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Calculation/JD/Shape.php -------------------------------------------------------------------------------- /inc/core/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Configuration.php -------------------------------------------------------------------------------- /inc/core/Configuration/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Configuration/Form.php -------------------------------------------------------------------------------- /inc/core/Configuration/Handle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Configuration/Handle.php -------------------------------------------------------------------------------- /inc/core/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Context.php -------------------------------------------------------------------------------- /inc/core/Data/Cadence/General.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Data/Cadence/General.php -------------------------------------------------------------------------------- /inc/core/Data/Cadence/Running.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Data/Cadence/Running.php -------------------------------------------------------------------------------- /inc/core/Data/Cadence/Unit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Data/Cadence/Unit.php -------------------------------------------------------------------------------- /inc/core/Data/Laps/Calculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Data/Laps/Calculator.php -------------------------------------------------------------------------------- /inc/core/Data/Laps/Lap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Data/Laps/Lap.php -------------------------------------------------------------------------------- /inc/core/Data/Laps/Laps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Data/Laps/Laps.php -------------------------------------------------------------------------------- /inc/core/Data/RPE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Data/RPE.php -------------------------------------------------------------------------------- /inc/core/Data/Stroketype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Data/Stroketype.php -------------------------------------------------------------------------------- /inc/core/Data/Weather.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Data/Weather.php -------------------------------------------------------------------------------- /inc/core/Data/Weather/Humidity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Data/Weather/Humidity.php -------------------------------------------------------------------------------- /inc/core/Data/Weather/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Data/Weather/Location.php -------------------------------------------------------------------------------- /inc/core/Data/Weather/Pressure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Data/Weather/Pressure.php -------------------------------------------------------------------------------- /inc/core/Data/Weather/Sources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Data/Weather/Sources.php -------------------------------------------------------------------------------- /inc/core/Dataset/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Configuration.php -------------------------------------------------------------------------------- /inc/core/Dataset/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Context.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Cadence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Cadence.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Daytime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Daytime.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Distance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Distance.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Duration.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Energy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Energy.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Gradient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Gradient.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Humidity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Humidity.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/OpenTab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/OpenTab.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Pace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Pace.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Power.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Power.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/RPE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/RPE.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Route.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Setting.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Splits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Splits.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Sport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Sport.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Swolf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Swolf.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Tags.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Title.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Tools.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Trimp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Trimp.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Type.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Weather.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Weather.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/Wind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/Wind.php -------------------------------------------------------------------------------- /inc/core/Dataset/Keys/WithGoal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Keys/WithGoal.php -------------------------------------------------------------------------------- /inc/core/Dataset/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/Query.php -------------------------------------------------------------------------------- /inc/core/Dataset/SummaryMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Dataset/SummaryMode.php -------------------------------------------------------------------------------- /inc/core/Export/File/Fitlog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Export/File/Fitlog.php -------------------------------------------------------------------------------- /inc/core/Export/File/Gpx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Export/File/Gpx.php -------------------------------------------------------------------------------- /inc/core/Export/File/Kml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Export/File/Kml.php -------------------------------------------------------------------------------- /inc/core/Export/File/Tcx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Export/File/Tcx.php -------------------------------------------------------------------------------- /inc/core/Export/File/Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Export/File/Types.php -------------------------------------------------------------------------------- /inc/core/Export/Share/Facebook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Export/Share/Facebook.php -------------------------------------------------------------------------------- /inc/core/Export/Share/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Export/Share/Html.php -------------------------------------------------------------------------------- /inc/core/Export/Share/IFrame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Export/Share/IFrame.php -------------------------------------------------------------------------------- /inc/core/Export/Share/Twitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Export/Share/Twitter.php -------------------------------------------------------------------------------- /inc/core/Export/Share/Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Export/Share/Types.php -------------------------------------------------------------------------------- /inc/core/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Language.php -------------------------------------------------------------------------------- /inc/core/Metrics/Energy/Energy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Metrics/Energy/Energy.php -------------------------------------------------------------------------------- /inc/core/Metrics/Power/Power.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Metrics/Power/Power.php -------------------------------------------------------------------------------- /inc/core/Metrics/Velocity/Pace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Metrics/Velocity/Pace.php -------------------------------------------------------------------------------- /inc/core/Metrics/Weight/Weight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Metrics/Weight/Weight.php -------------------------------------------------------------------------------- /inc/core/Model/Activity/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Model/Activity/Entity.php -------------------------------------------------------------------------------- /inc/core/Model/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Model/Entity.php -------------------------------------------------------------------------------- /inc/core/Model/EntityWithID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Model/EntityWithID.php -------------------------------------------------------------------------------- /inc/core/Model/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Model/Factory.php -------------------------------------------------------------------------------- /inc/core/Model/HRV/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Model/HRV/Entity.php -------------------------------------------------------------------------------- /inc/core/Model/Loop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Model/Loop.php -------------------------------------------------------------------------------- /inc/core/Model/Loopable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Model/Loopable.php -------------------------------------------------------------------------------- /inc/core/Model/Route/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Model/Route/Entity.php -------------------------------------------------------------------------------- /inc/core/Model/Route/Loop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Model/Route/Loop.php -------------------------------------------------------------------------------- /inc/core/Model/Sport/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Model/Sport/Entity.php -------------------------------------------------------------------------------- /inc/core/Model/StringObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Model/StringObject.php -------------------------------------------------------------------------------- /inc/core/Model/Swimdata/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Model/Swimdata/Entity.php -------------------------------------------------------------------------------- /inc/core/Model/Swimdata/Loop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Model/Swimdata/Loop.php -------------------------------------------------------------------------------- /inc/core/Model/Tag/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Model/Tag/Entity.php -------------------------------------------------------------------------------- /inc/core/Model/Trackdata/Loop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Model/Trackdata/Loop.php -------------------------------------------------------------------------------- /inc/core/Model/Trackdata/Pause.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Model/Trackdata/Pause.php -------------------------------------------------------------------------------- /inc/core/Model/Type/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Model/Type/Entity.php -------------------------------------------------------------------------------- /inc/core/Parameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Parameter.php -------------------------------------------------------------------------------- /inc/core/Parameter/Boolean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Parameter/Boolean.php -------------------------------------------------------------------------------- /inc/core/Parameter/Integer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Parameter/Integer.php -------------------------------------------------------------------------------- /inc/core/Parameter/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Parameter/Select.php -------------------------------------------------------------------------------- /inc/core/Parameter/SelectFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Parameter/SelectFile.php -------------------------------------------------------------------------------- /inc/core/Parameter/SelectRow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Parameter/SelectRow.php -------------------------------------------------------------------------------- /inc/core/Parameter/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Parameter/Set.php -------------------------------------------------------------------------------- /inc/core/Parameter/Textline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Parameter/Textline.php -------------------------------------------------------------------------------- /inc/core/Profile/Sport/Cycling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Profile/Sport/Cycling.php -------------------------------------------------------------------------------- /inc/core/Profile/Sport/Generic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Profile/Sport/Generic.php -------------------------------------------------------------------------------- /inc/core/Profile/Sport/Hiking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Profile/Sport/Hiking.php -------------------------------------------------------------------------------- /inc/core/Profile/Sport/Rowing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Profile/Sport/Rowing.php -------------------------------------------------------------------------------- /inc/core/Profile/Sport/Running.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Profile/Sport/Running.php -------------------------------------------------------------------------------- /inc/core/Timezone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Timezone.php -------------------------------------------------------------------------------- /inc/core/Util/File/GZipReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Util/File/GZipReader.php -------------------------------------------------------------------------------- /inc/core/Util/File/GZipWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Util/File/GZipWriter.php -------------------------------------------------------------------------------- /inc/core/Util/LocalTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Util/LocalTime.php -------------------------------------------------------------------------------- /inc/core/Util/ServerParams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Util/ServerParams.php -------------------------------------------------------------------------------- /inc/core/Util/StringReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Util/StringReader.php -------------------------------------------------------------------------------- /inc/core/Util/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/Util/Time.php -------------------------------------------------------------------------------- /inc/core/View/Activity/Box/RPE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Activity/Box/RPE.php -------------------------------------------------------------------------------- /inc/core/View/Activity/Box/Thb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Activity/Box/Thb.php -------------------------------------------------------------------------------- /inc/core/View/Activity/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Activity/Context.php -------------------------------------------------------------------------------- /inc/core/View/Activity/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Activity/Feed.php -------------------------------------------------------------------------------- /inc/core/View/Activity/Linker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Activity/Linker.php -------------------------------------------------------------------------------- /inc/core/View/Dataset/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Dataset/Table.php -------------------------------------------------------------------------------- /inc/core/View/Icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Icon.php -------------------------------------------------------------------------------- /inc/core/View/Icon/SportIcon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Icon/SportIcon.php -------------------------------------------------------------------------------- /inc/core/View/Icon/WeatherIcon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Icon/WeatherIcon.php -------------------------------------------------------------------------------- /inc/core/View/Icon/WindIcon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Icon/WindIcon.php -------------------------------------------------------------------------------- /inc/core/View/Leaflet/Activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Leaflet/Activity.php -------------------------------------------------------------------------------- /inc/core/View/Leaflet/Map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Leaflet/Map.php -------------------------------------------------------------------------------- /inc/core/View/Leaflet/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Leaflet/Route.php -------------------------------------------------------------------------------- /inc/core/View/Plot/Series.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Plot/Series.php -------------------------------------------------------------------------------- /inc/core/View/RpeColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/RpeColor.php -------------------------------------------------------------------------------- /inc/core/View/Splits/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Splits/Table.php -------------------------------------------------------------------------------- /inc/core/View/Stresscolor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Stresscolor.php -------------------------------------------------------------------------------- /inc/core/View/Tooltip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Tooltip.php -------------------------------------------------------------------------------- /inc/core/View/Window/Laps/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/core/View/Window/Laps/Form.php -------------------------------------------------------------------------------- /inc/data/class.Splits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/data/class.Splits.php -------------------------------------------------------------------------------- /inc/data/class.Sport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/data/class.Sport.php -------------------------------------------------------------------------------- /inc/data/class.SportFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/data/class.SportFactory.php -------------------------------------------------------------------------------- /inc/draw/class.Plot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/draw/class.Plot.php -------------------------------------------------------------------------------- /inc/draw/class.PlotSumData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/draw/class.PlotSumData.php -------------------------------------------------------------------------------- /inc/draw/class.PlotWeekSumData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/draw/class.PlotWeekSumData.php -------------------------------------------------------------------------------- /inc/html/class.Ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/html/class.Ajax.php -------------------------------------------------------------------------------- /inc/html/class.BoxedValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/html/class.BoxedValue.php -------------------------------------------------------------------------------- /inc/html/class.HTML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/html/class.HTML.php -------------------------------------------------------------------------------- /inc/html/class.HtmlTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/html/class.HtmlTag.php -------------------------------------------------------------------------------- /inc/html/class.Icon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/html/class.Icon.php -------------------------------------------------------------------------------- /inc/html/class.ProgressBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/html/class.ProgressBar.php -------------------------------------------------------------------------------- /inc/install/MySQLEvents.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/install/MySQLEvents.sql -------------------------------------------------------------------------------- /inc/install/structure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/install/structure.sql -------------------------------------------------------------------------------- /inc/plugin/class.Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/plugin/class.Plugin.php -------------------------------------------------------------------------------- /inc/plugin/class.PluginFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/plugin/class.PluginFactory.php -------------------------------------------------------------------------------- /inc/plugin/class.PluginPanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/plugin/class.PluginPanel.php -------------------------------------------------------------------------------- /inc/plugin/class.PluginStat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/plugin/class.PluginStat.php -------------------------------------------------------------------------------- /inc/plugin/class.PluginType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/plugin/class.PluginType.php -------------------------------------------------------------------------------- /inc/system/class.Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/system/class.Cache.php -------------------------------------------------------------------------------- /inc/system/class.DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/system/class.DB.php -------------------------------------------------------------------------------- /inc/system/class.Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/system/class.Request.php -------------------------------------------------------------------------------- /inc/system/class.SharedLinker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/system/class.SharedLinker.php -------------------------------------------------------------------------------- /inc/system/class.System.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/system/class.System.php -------------------------------------------------------------------------------- /inc/system/define.chmod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/system/define.chmod.php -------------------------------------------------------------------------------- /inc/system/define.consts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/system/define.consts.php -------------------------------------------------------------------------------- /inc/tpl/tpl.DataBrowser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/tpl/tpl.DataBrowser.php -------------------------------------------------------------------------------- /inc/tpl/tpl.Frontend.footer.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /inc/tpl/tpl.Frontend.header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/inc/tpl/tpl.Frontend.header.php -------------------------------------------------------------------------------- /lib/bootstrap-tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/bootstrap-tooltip.js -------------------------------------------------------------------------------- /lib/fineuploader-3.5.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/fineuploader-3.5.0.min.js -------------------------------------------------------------------------------- /lib/flot-0.8.3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/flot-0.8.3/LICENSE.txt -------------------------------------------------------------------------------- /lib/flot-0.8.3/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/flot-0.8.3/base64.js -------------------------------------------------------------------------------- /lib/flot-0.8.3/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/flot-0.8.3/excanvas.min.js -------------------------------------------------------------------------------- /lib/flot-0.8.3/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/flot-0.8.3/jquery.flot.js -------------------------------------------------------------------------------- /lib/flot-0.8.3/jquery.flot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/flot-0.8.3/jquery.flot.min.js -------------------------------------------------------------------------------- /lib/flot-0.8.3/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/flot-0.8.3/jquery.flot.pie.js -------------------------------------------------------------------------------- /lib/flot-0.8.3/jquery.flot.text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/flot-0.8.3/jquery.flot.text.js -------------------------------------------------------------------------------- /lib/flot-0.8.3/jquery.flot.time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/flot-0.8.3/jquery.flot.time.js -------------------------------------------------------------------------------- /lib/geohash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/geohash.js -------------------------------------------------------------------------------- /lib/jquery.chosen.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/jquery.chosen.min.js -------------------------------------------------------------------------------- /lib/jquery.datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/jquery.datepicker.js -------------------------------------------------------------------------------- /lib/jquery.form.include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/jquery.form.include.php -------------------------------------------------------------------------------- /lib/jquery.metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/jquery.metadata.js -------------------------------------------------------------------------------- /lib/leaflet/runalyze.leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/leaflet/runalyze.leaflet.js -------------------------------------------------------------------------------- /lib/less/chosen.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/chosen.less -------------------------------------------------------------------------------- /lib/less/runalyze-barchart.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-barchart.less -------------------------------------------------------------------------------- /lib/less/runalyze-blocklist.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-blocklist.less -------------------------------------------------------------------------------- /lib/less/runalyze-boxedvalues.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-boxedvalues.less -------------------------------------------------------------------------------- /lib/less/runalyze-climbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-climbs.less -------------------------------------------------------------------------------- /lib/less/runalyze-colors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-colors.less -------------------------------------------------------------------------------- /lib/less/runalyze-config.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-config.less -------------------------------------------------------------------------------- /lib/less/runalyze-container.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-container.less -------------------------------------------------------------------------------- /lib/less/runalyze-content.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-content.less -------------------------------------------------------------------------------- /lib/less/runalyze-d3js.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-d3js.less -------------------------------------------------------------------------------- /lib/less/runalyze-datepicker.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-datepicker.less -------------------------------------------------------------------------------- /lib/less/runalyze-flot.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-flot.less -------------------------------------------------------------------------------- /lib/less/runalyze-formulars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-formulars.less -------------------------------------------------------------------------------- /lib/less/runalyze-headline.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-headline.less -------------------------------------------------------------------------------- /lib/less/runalyze-icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-icons.less -------------------------------------------------------------------------------- /lib/less/runalyze-installer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-installer.less -------------------------------------------------------------------------------- /lib/less/runalyze-leaflet.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-leaflet.less -------------------------------------------------------------------------------- /lib/less/runalyze-mixins.less: -------------------------------------------------------------------------------- 1 | @mixins: 0; 2 | -------------------------------------------------------------------------------- /lib/less/runalyze-mobile.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-mobile.less -------------------------------------------------------------------------------- /lib/less/runalyze-overlay.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-overlay.less -------------------------------------------------------------------------------- /lib/less/runalyze-pace.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-pace.less -------------------------------------------------------------------------------- /lib/less/runalyze-progressbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-progressbar.less -------------------------------------------------------------------------------- /lib/less/runalyze-shared.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-shared.less -------------------------------------------------------------------------------- /lib/less/runalyze-sprites.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-sprites.less -------------------------------------------------------------------------------- /lib/less/runalyze-style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-style.less -------------------------------------------------------------------------------- /lib/less/runalyze-table.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-table.less -------------------------------------------------------------------------------- /lib/less/runalyze-tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-tooltip.less -------------------------------------------------------------------------------- /lib/less/runalyze-training.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/less/runalyze-training.less -------------------------------------------------------------------------------- /lib/runalyze.lib.activity.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.activity.form.js -------------------------------------------------------------------------------- /lib/runalyze.lib.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.common.js -------------------------------------------------------------------------------- /lib/runalyze.lib.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.config.js -------------------------------------------------------------------------------- /lib/runalyze.lib.databrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.databrowser.js -------------------------------------------------------------------------------- /lib/runalyze.lib.feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.feature.js -------------------------------------------------------------------------------- /lib/runalyze.lib.formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.formatter.js -------------------------------------------------------------------------------- /lib/runalyze.lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.js -------------------------------------------------------------------------------- /lib/runalyze.lib.notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.notifications.js -------------------------------------------------------------------------------- /lib/runalyze.lib.options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.options.js -------------------------------------------------------------------------------- /lib/runalyze.lib.overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.overlay.js -------------------------------------------------------------------------------- /lib/runalyze.lib.panels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.panels.js -------------------------------------------------------------------------------- /lib/runalyze.lib.plot.events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.plot.events.js -------------------------------------------------------------------------------- /lib/runalyze.lib.plot.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.plot.flot.js -------------------------------------------------------------------------------- /lib/runalyze.lib.plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.plot.js -------------------------------------------------------------------------------- /lib/runalyze.lib.plot.options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.plot.options.js -------------------------------------------------------------------------------- /lib/runalyze.lib.plot.saver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.plot.saver.js -------------------------------------------------------------------------------- /lib/runalyze.lib.sport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.sport.js -------------------------------------------------------------------------------- /lib/runalyze.lib.statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.statistics.js -------------------------------------------------------------------------------- /lib/runalyze.lib.tablesorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.tablesorter.js -------------------------------------------------------------------------------- /lib/runalyze.lib.training.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/lib/runalyze.lib.training.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/package.json -------------------------------------------------------------------------------- /resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/resources.json -------------------------------------------------------------------------------- /src/CoreBundle/CoreBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/src/CoreBundle/CoreBundle.php -------------------------------------------------------------------------------- /src/CoreBundle/Entity/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/src/CoreBundle/Entity/Account.php -------------------------------------------------------------------------------- /src/CoreBundle/Entity/Conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/src/CoreBundle/Entity/Conf.php -------------------------------------------------------------------------------- /src/CoreBundle/Entity/Dataset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/src/CoreBundle/Entity/Dataset.php -------------------------------------------------------------------------------- /src/CoreBundle/Entity/Hrv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/src/CoreBundle/Entity/Hrv.php -------------------------------------------------------------------------------- /src/CoreBundle/Entity/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/src/CoreBundle/Entity/Plugin.php -------------------------------------------------------------------------------- /src/CoreBundle/Entity/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/src/CoreBundle/Entity/Route.php -------------------------------------------------------------------------------- /src/CoreBundle/Entity/Sport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/src/CoreBundle/Entity/Sport.php -------------------------------------------------------------------------------- /src/CoreBundle/Entity/Swimdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/src/CoreBundle/Entity/Swimdata.php -------------------------------------------------------------------------------- /src/CoreBundle/Entity/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/src/CoreBundle/Entity/Tag.php -------------------------------------------------------------------------------- /src/CoreBundle/Entity/Training.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/src/CoreBundle/Entity/Training.php -------------------------------------------------------------------------------- /src/CoreBundle/Entity/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/src/CoreBundle/Entity/Type.php -------------------------------------------------------------------------------- /src/CoreBundle/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/src/CoreBundle/Entity/User.php -------------------------------------------------------------------------------- /src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/src/functions.php -------------------------------------------------------------------------------- /tests/CoreBundle/DataFixtures/messages/test-message.yml: -------------------------------------------------------------------------------- 1 | text: foobar 2 | link: http://runalyze.com/ -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/config.xml -------------------------------------------------------------------------------- /tests/fake/FakeContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/fake/FakeContext.php -------------------------------------------------------------------------------- /tests/inc/HelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/inc/HelperTest.php -------------------------------------------------------------------------------- /tests/inc/core/AthleteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/inc/core/AthleteTest.php -------------------------------------------------------------------------------- /tests/inc/core/Model/LoopTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/inc/core/Model/LoopTest.php -------------------------------------------------------------------------------- /tests/inc/core/ParameterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/inc/core/ParameterTest.php -------------------------------------------------------------------------------- /tests/inc/core/Util/TimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/inc/core/Util/TimeTest.php -------------------------------------------------------------------------------- /tests/inc/data/SplitsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/inc/data/SplitsTest.php -------------------------------------------------------------------------------- /tests/scripts/createtestsdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/scripts/createtestsdb.sh -------------------------------------------------------------------------------- /tests/scripts/preparetests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/scripts/preparetests.sh -------------------------------------------------------------------------------- /tests/scripts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/scripts/runtests.sh -------------------------------------------------------------------------------- /tests/scripts/test_result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/scripts/test_result.txt -------------------------------------------------------------------------------- /tests/testfiles/backup/no-version.json: -------------------------------------------------------------------------------- 1 | {"TABLE":"does not matter"} 2 | 3 | -------------------------------------------------------------------------------- /tests/testfiles/backup/update-gz-files.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | for f in *.json 3 | do 4 | gzip -k -f $f 5 | done 6 | -------------------------------------------------------------------------------- /tests/testfiles/backup/wrong-version.json: -------------------------------------------------------------------------------- 1 | version=1.0-alpha 2 | 3 | {"TABLE":"does not matter"} 4 | 5 | -------------------------------------------------------------------------------- /tests/testfiles/csv/Epson.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/csv/Epson.csv -------------------------------------------------------------------------------- /tests/testfiles/csv/Umlaute.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/csv/Umlaute.csv -------------------------------------------------------------------------------- /tests/testfiles/csv/Wahoo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/csv/Wahoo.csv -------------------------------------------------------------------------------- /tests/testfiles/fit/Fenix-2.fit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/fit/Fenix-2.fit -------------------------------------------------------------------------------- /tests/testfiles/fit/Standard.fit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/fit/Standard.fit -------------------------------------------------------------------------------- /tests/testfiles/fit/moxy-float.fit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/fit/moxy-float.fit -------------------------------------------------------------------------------- /tests/testfiles/fit/moxy-fr735.fit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/fit/moxy-fr735.fit -------------------------------------------------------------------------------- /tests/testfiles/fit/time-jump.fit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/fit/time-jump.fit -------------------------------------------------------------------------------- /tests/testfiles/fit/with-power.fit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/fit/with-power.fit -------------------------------------------------------------------------------- /tests/testfiles/gpx/NavRun500.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/gpx/NavRun500.gpx -------------------------------------------------------------------------------- /tests/testfiles/gpx/Route-only.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/gpx/Route-only.gpx -------------------------------------------------------------------------------- /tests/testfiles/gpx/SpoQ-2.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/gpx/SpoQ-2.gpx -------------------------------------------------------------------------------- /tests/testfiles/gpx/SpoQ.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/gpx/SpoQ.gpx -------------------------------------------------------------------------------- /tests/testfiles/gpx/standard.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/gpx/standard.gpx -------------------------------------------------------------------------------- /tests/testfiles/hrm/12010401.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/hrm/12010401.gpx -------------------------------------------------------------------------------- /tests/testfiles/hrm/12010401.hrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/hrm/12010401.hrm -------------------------------------------------------------------------------- /tests/testfiles/hrm/12010601.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/hrm/12010601.gpx -------------------------------------------------------------------------------- /tests/testfiles/hrm/12010601.hrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/hrm/12010601.hrm -------------------------------------------------------------------------------- /tests/testfiles/hrm/12011601.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/hrm/12011601.gpx -------------------------------------------------------------------------------- /tests/testfiles/hrm/12011601.hrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/hrm/12011601.hrm -------------------------------------------------------------------------------- /tests/testfiles/hrm/12011801.hrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/hrm/12011801.hrm -------------------------------------------------------------------------------- /tests/testfiles/hrm/15031201.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/hrm/15031201.gpx -------------------------------------------------------------------------------- /tests/testfiles/hrm/15031201.hrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/hrm/15031201.hrm -------------------------------------------------------------------------------- /tests/testfiles/hrm/15031801.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/hrm/15031801.gpx -------------------------------------------------------------------------------- /tests/testfiles/hrm/15031801.hrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/hrm/15031801.hrm -------------------------------------------------------------------------------- /tests/testfiles/hrm/hrv.hrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/hrm/hrv.hrm -------------------------------------------------------------------------------- /tests/testfiles/kml/Route-only.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/kml/Route-only.kml -------------------------------------------------------------------------------- /tests/testfiles/kml/TomTom.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/kml/TomTom.kml -------------------------------------------------------------------------------- /tests/testfiles/pwx/intervals.pwx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/pwx/intervals.pwx -------------------------------------------------------------------------------- /tests/testfiles/pwx/with-dist.pwx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/pwx/with-dist.pwx -------------------------------------------------------------------------------- /tests/testfiles/pwx/with-power.pwx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/pwx/with-power.pwx -------------------------------------------------------------------------------- /tests/testfiles/slf/Standard.slf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/slf/Standard.slf -------------------------------------------------------------------------------- /tests/testfiles/tcx/Dakota.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/tcx/Dakota.tcx -------------------------------------------------------------------------------- /tests/testfiles/tcx/Multisport.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/tcx/Multisport.tcx -------------------------------------------------------------------------------- /tests/testfiles/tcx/Route-only.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/tcx/Route-only.tcx -------------------------------------------------------------------------------- /tests/testfiles/tcx/Runtastic.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/tcx/Runtastic.tcx -------------------------------------------------------------------------------- /tests/testfiles/tcx/Standard.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/tcx/Standard.tcx -------------------------------------------------------------------------------- /tests/testfiles/trk/with-pause.trk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/trk/with-pause.trk -------------------------------------------------------------------------------- /tests/testfiles/xml/Polar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/tests/testfiles/xml/Polar.xml -------------------------------------------------------------------------------- /var/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /var/poster/img/athlete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/var/poster/img/athlete.svg -------------------------------------------------------------------------------- /var/poster/img/runalyze.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/var/poster/img/runalyze.svg -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/beberlei/assert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/beberlei/assert/LICENSE -------------------------------------------------------------------------------- /vendor/bernard/bernard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/bernard/bernard/LICENSE -------------------------------------------------------------------------------- /vendor/bernard/bernard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/bernard/bernard/README.md -------------------------------------------------------------------------------- /vendor/bernard/normalt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/bernard/normalt/LICENSE -------------------------------------------------------------------------------- /vendor/bernard/normalt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/bernard/normalt/README.md -------------------------------------------------------------------------------- /vendor/bin/doctrine: -------------------------------------------------------------------------------- 1 | ../doctrine/orm/bin/doctrine -------------------------------------------------------------------------------- /vendor/bin/doctrine-dbal: -------------------------------------------------------------------------------- 1 | ../doctrine/dbal/bin/doctrine-dbal -------------------------------------------------------------------------------- /vendor/bin/doctrine-migrations: -------------------------------------------------------------------------------- 1 | ../doctrine/migrations/bin/doctrine-migrations -------------------------------------------------------------------------------- /vendor/bin/geotools: -------------------------------------------------------------------------------- 1 | ../league/geotools/bin/geotools -------------------------------------------------------------------------------- /vendor/bin/php-parse: -------------------------------------------------------------------------------- 1 | ../nikic/php-parser/bin/php-parse -------------------------------------------------------------------------------- /vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/phpunit -------------------------------------------------------------------------------- /vendor/bin/picofeed: -------------------------------------------------------------------------------- 1 | ../p3k/picofeed/picofeed -------------------------------------------------------------------------------- /vendor/cache/array-adapter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/cache/array-adapter/LICENSE -------------------------------------------------------------------------------- /vendor/cache/tag-interop/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor 3 | -------------------------------------------------------------------------------- /vendor/cache/tag-interop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/cache/tag-interop/LICENSE -------------------------------------------------------------------------------- /vendor/cache/tag-interop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/cache/tag-interop/README.md -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/composer/installed.php -------------------------------------------------------------------------------- /vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /vendor/doctrine/cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/cache/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/cache/README.md -------------------------------------------------------------------------------- /vendor/doctrine/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/common/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/common/README.md -------------------------------------------------------------------------------- /vendor/doctrine/dbal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/dbal/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/dbal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/dbal/README.md -------------------------------------------------------------------------------- /vendor/doctrine/dbal/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/dbal/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/inflector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/inflector/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/lexer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/lexer/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/lexer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/lexer/README.md -------------------------------------------------------------------------------- /vendor/doctrine/lexer/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/lexer/psalm.xml -------------------------------------------------------------------------------- /vendor/doctrine/migrations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/migrations/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/orm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/orm/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/orm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/orm/README.md -------------------------------------------------------------------------------- /vendor/doctrine/orm/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/orm/SECURITY.md -------------------------------------------------------------------------------- /vendor/doctrine/orm/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/orm/UPGRADE.md -------------------------------------------------------------------------------- /vendor/doctrine/orm/bin/doctrine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/orm/bin/doctrine -------------------------------------------------------------------------------- /vendor/doctrine/orm/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/orm/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/orm/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/orm/docs/README.md -------------------------------------------------------------------------------- /vendor/doctrine/reflection/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/doctrine/reflection/LICENSE -------------------------------------------------------------------------------- /vendor/fig/link-util/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/fig/link-util/LICENSE.md -------------------------------------------------------------------------------- /vendor/fig/link-util/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/fig/link-util/composer.json -------------------------------------------------------------------------------- /vendor/fig/link-util/src/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/fig/link-util/src/Link.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/guzzlehttp/guzzle/LICENSE -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/guzzlehttp/guzzle/README.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/guzzlehttp/promises/LICENSE -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/guzzlehttp/psr7/LICENSE -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/guzzlehttp/psr7/README.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/guzzlehttp/psr7/src/Uri.php -------------------------------------------------------------------------------- /vendor/jdorn/sql-formatter/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /vendor/laminas/laminas-zendframework-bridge/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | community_bridge: laminas-project 2 | -------------------------------------------------------------------------------- /vendor/league/geotools/.github/workflows/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.yml] 2 | indent_size = 2 -------------------------------------------------------------------------------- /vendor/league/geotools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/league/geotools/.gitignore -------------------------------------------------------------------------------- /vendor/league/geotools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/league/geotools/LICENSE -------------------------------------------------------------------------------- /vendor/league/geotools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/league/geotools/README.md -------------------------------------------------------------------------------- /vendor/liip/functional-test-bundle/.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: symfony 2 | -------------------------------------------------------------------------------- /vendor/liip/test-fixtures-bundle/.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: symfony 2 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/monolog/monolog/LICENSE -------------------------------------------------------------------------------- /vendor/monolog/monolog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/monolog/monolog/README.md -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/myclabs/deep-copy/LICENSE -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/myclabs/deep-copy/README.md -------------------------------------------------------------------------------- /vendor/nikic/php-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/nikic/php-parser/LICENSE -------------------------------------------------------------------------------- /vendor/nikic/php-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/nikic/php-parser/README.md -------------------------------------------------------------------------------- /vendor/nojacko/email-validator/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ -------------------------------------------------------------------------------- /vendor/p3k/picofeed/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/p3k/picofeed/LICENSE -------------------------------------------------------------------------------- /vendor/p3k/picofeed/picofeed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/p3k/picofeed/picofeed -------------------------------------------------------------------------------- /vendor/phar-io/manifest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/phar-io/manifest/LICENSE -------------------------------------------------------------------------------- /vendor/phar-io/manifest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/phar-io/manifest/README.md -------------------------------------------------------------------------------- /vendor/phar-io/version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/phar-io/version/LICENSE -------------------------------------------------------------------------------- /vendor/phar-io/version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/phar-io/version/README.md -------------------------------------------------------------------------------- /vendor/php-http/discovery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/php-http/discovery/LICENSE -------------------------------------------------------------------------------- /vendor/phpfastcache/phpfastcache/CNAME: -------------------------------------------------------------------------------- 1 | www.phpfastcache.com -------------------------------------------------------------------------------- /vendor/phpfastcache/phpfastcache/phpfastcache/3.0.0/index.html: -------------------------------------------------------------------------------- 1 | // nothing here -------------------------------------------------------------------------------- /vendor/phpfastcache/phpfastcache/phpfastcache/_extensions/predis-1.0/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.2-dev 2 | -------------------------------------------------------------------------------- /vendor/phpfastcache/phpfastcache/phpfastcache/index.html: -------------------------------------------------------------------------------- 1 | www.phpfastcache.com -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | /tools export-ignore 2 | 3 | *.php diff=php 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: sebastianbergmann 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/Crash.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Translation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Translation/Tests/fixtures/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Translation/Tests/fixtures/empty.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Translation/Tests/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Translation/Tests/fixtures/empty.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Translation/Tests/fixtures/empty.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Translation/Tests/fixtures/empty.xlf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Translation/Tests/fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Translation/Tests/fixtures/extractor/resource.format.engine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Translation/Tests/fixtures/extractor/this.is.a.template.format.engine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Translation/Tests/fixtures/malformed.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo" "bar" 3 | } -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Translation/Tests/fixtures/non-valid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Translation/Tests/fixtures/resourcebundle/corrupted/resources.dat: -------------------------------------------------------------------------------- 1 | XXX -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Translation/Tests/fixtures/resources.ini: -------------------------------------------------------------------------------- 1 | foo="bar" 2 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Translation/Tests/fixtures/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Validator/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Validator/Tests/Constraints/Fixtures/foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Validator/Tests/Mapping/Loader/empty-mapping.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Validator/Tests/Mapping/Loader/nonvalid-mapping.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/VarDumper/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/WebLink/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Workflow/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/symfony/src/Symfony/Component/Yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /vendor/symfony/translation-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/twig/extensions/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | vendor/ 3 | composer.lock 4 | 5 | -------------------------------------------------------------------------------- /vendor/twig/extensions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/twig/extensions/LICENSE -------------------------------------------------------------------------------- /vendor/twig/twig/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/twig/twig/.editorconfig -------------------------------------------------------------------------------- /vendor/twig/twig/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/twig/twig/.gitattributes -------------------------------------------------------------------------------- /vendor/twig/twig/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/twig/twig/.gitignore -------------------------------------------------------------------------------- /vendor/twig/twig/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/twig/twig/CHANGELOG -------------------------------------------------------------------------------- /vendor/twig/twig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/twig/twig/LICENSE -------------------------------------------------------------------------------- /vendor/twig/twig/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/twig/twig/README.rst -------------------------------------------------------------------------------- /vendor/twig/twig/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/twig/twig/composer.json -------------------------------------------------------------------------------- /vendor/twig/twig/src/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/twig/twig/src/Lexer.php -------------------------------------------------------------------------------- /vendor/twig/twig/src/Markup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/twig/twig/src/Markup.php -------------------------------------------------------------------------------- /vendor/twig/twig/src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/twig/twig/src/Parser.php -------------------------------------------------------------------------------- /vendor/twig/twig/src/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/twig/twig/src/Source.php -------------------------------------------------------------------------------- /vendor/twig/twig/src/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/vendor/twig/twig/src/Token.php -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/.htaccess -------------------------------------------------------------------------------- /web/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/app.php -------------------------------------------------------------------------------- /web/app_dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/app_dev.php -------------------------------------------------------------------------------- /web/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /web/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /web/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /web/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/apple-touch-icon.png -------------------------------------------------------------------------------- /web/assets/appmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/assets/appmanifest.json -------------------------------------------------------------------------------- /web/assets/images/damage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/assets/images/damage.png -------------------------------------------------------------------------------- /web/assets/images/runalyze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/assets/images/runalyze.png -------------------------------------------------------------------------------- /web/assets/js/scripts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/assets/js/scripts.min.js -------------------------------------------------------------------------------- /web/assets/v2.x/img/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/assets/v2.x/img/wait.gif -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/lib/embedded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/lib/embedded.css -------------------------------------------------------------------------------- /web/lib/embedded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/lib/embedded.js -------------------------------------------------------------------------------- /web/vendor/d3-collection/.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-workspace 2 | .DS_Store 3 | dist/ 4 | node_modules 5 | npm-debug.log 6 | -------------------------------------------------------------------------------- /web/vendor/d3-collection/.npmignore: -------------------------------------------------------------------------------- 1 | *.sublime-* 2 | dist/*.zip 3 | img/ 4 | test/ 5 | -------------------------------------------------------------------------------- /web/vendor/d3-selection/.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-workspace 2 | .DS_Store 3 | dist/ 4 | node_modules 5 | npm-debug.log 6 | -------------------------------------------------------------------------------- /web/vendor/d3-selection/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/d3-selection/LICENSE -------------------------------------------------------------------------------- /web/vendor/d3-selection/src/identity.js: -------------------------------------------------------------------------------- 1 | export default function(x) { 2 | return x; 3 | } 4 | -------------------------------------------------------------------------------- /web/vendor/d3-selection/src/selection/empty.js: -------------------------------------------------------------------------------- 1 | export default function() { 2 | return !this.node(); 3 | } 4 | -------------------------------------------------------------------------------- /web/vendor/d3-tip/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/d3-tip/.bower.json -------------------------------------------------------------------------------- /web/vendor/d3-tip/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/d3-tip/LICENSE -------------------------------------------------------------------------------- /web/vendor/d3-tip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/d3-tip/README.md -------------------------------------------------------------------------------- /web/vendor/d3-tip/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/d3-tip/bower.json -------------------------------------------------------------------------------- /web/vendor/d3-tip/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/d3-tip/circle.yml -------------------------------------------------------------------------------- /web/vendor/d3-tip/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/d3-tip/index.js -------------------------------------------------------------------------------- /web/vendor/d3-tip/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/d3-tip/package.json -------------------------------------------------------------------------------- /web/vendor/d3/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/d3/.bower.json -------------------------------------------------------------------------------- /web/vendor/d3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/d3/LICENSE -------------------------------------------------------------------------------- /web/vendor/d3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/d3/README.md -------------------------------------------------------------------------------- /web/vendor/d3/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/d3/bower.json -------------------------------------------------------------------------------- /web/vendor/d3/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/d3/d3.js -------------------------------------------------------------------------------- /web/vendor/d3/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/d3/d3.min.js -------------------------------------------------------------------------------- /web/vendor/jquery-timeago/.gitignore: -------------------------------------------------------------------------------- 1 | .bundle 2 | vendor/ruby 3 | public 4 | node_modules/ 5 | -------------------------------------------------------------------------------- /web/vendor/jquery-timeago/CNAME: -------------------------------------------------------------------------------- 1 | timeago.yarp.com 2 | -------------------------------------------------------------------------------- /web/vendor/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/jquery/.bower.json -------------------------------------------------------------------------------- /web/vendor/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /web/vendor/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/jquery/LICENSE.txt -------------------------------------------------------------------------------- /web/vendor/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/jquery/README.md -------------------------------------------------------------------------------- /web/vendor/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/jquery/bower.json -------------------------------------------------------------------------------- /web/vendor/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/jquery/src/ajax.js -------------------------------------------------------------------------------- /web/vendor/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/jquery/src/core.js -------------------------------------------------------------------------------- /web/vendor/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/jquery/src/css.js -------------------------------------------------------------------------------- /web/vendor/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/jquery/src/data.js -------------------------------------------------------------------------------- /web/vendor/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/jquery/src/event.js -------------------------------------------------------------------------------- /web/vendor/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/jquery/src/jquery.js -------------------------------------------------------------------------------- /web/vendor/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/jquery/src/offset.js -------------------------------------------------------------------------------- /web/vendor/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/jquery/src/queue.js -------------------------------------------------------------------------------- /web/vendor/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() { 2 | "use strict"; 3 | } ); 4 | -------------------------------------------------------------------------------- /web/vendor/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /web/vendor/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/jquery/src/wrap.js -------------------------------------------------------------------------------- /web/vendor/leaflet/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/leaflet/.bower.json -------------------------------------------------------------------------------- /web/vendor/leaflet/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/leaflet/CHANGELOG.md -------------------------------------------------------------------------------- /web/vendor/leaflet/Jakefile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/leaflet/Jakefile.js -------------------------------------------------------------------------------- /web/vendor/leaflet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/leaflet/LICENSE -------------------------------------------------------------------------------- /web/vendor/leaflet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/leaflet/README.md -------------------------------------------------------------------------------- /web/vendor/leaflet/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/leaflet/bower.json -------------------------------------------------------------------------------- /web/vendor/leaflet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/leaflet/package.json -------------------------------------------------------------------------------- /web/vendor/moment/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/.bower.json -------------------------------------------------------------------------------- /web/vendor/moment/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/CHANGELOG.md -------------------------------------------------------------------------------- /web/vendor/moment/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/FAQ.md -------------------------------------------------------------------------------- /web/vendor/moment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/LICENSE -------------------------------------------------------------------------------- /web/vendor/moment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/README.md -------------------------------------------------------------------------------- /web/vendor/moment/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/bower.json -------------------------------------------------------------------------------- /web/vendor/moment/locale/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/af.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/ar.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/az.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/be.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/bg.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/bm.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/bn.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/bo.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/br.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/bs.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/ca.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/cs.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/cv.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/cy.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/da.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/de.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/dv.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/el.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/eo.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/es.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/et.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/eu.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/fa.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/fi.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/fil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/fil.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/fo.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/fr.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/fy.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/ga.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/gd.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/gl.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/gu.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/he.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/hi.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/hr.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/hu.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/id.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/is.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/it.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/ja.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/jv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/jv.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/ka.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/kk.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/km.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/kn.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/ko.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/ku.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/ky.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/lb.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/lo.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/lt.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/lv.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/me.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/mi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/mi.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/mk.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/ml.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/mn.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/mr.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/ms.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/mt.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/my.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/nb.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/ne.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/nl.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/nn.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/pl.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/pt.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/ro.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/ru.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/sd.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/se.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/si.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/sk.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/sl.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/sq.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/sr.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/ss.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/sv.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/sw.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/ta.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/te.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/tet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/tet.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/tg.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/th.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/tk.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/tlh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/tlh.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/tr.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/tzl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/tzl.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/tzm.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/uk.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/ur.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/uz.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/vi.js -------------------------------------------------------------------------------- /web/vendor/moment/locale/yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/locale/yo.js -------------------------------------------------------------------------------- /web/vendor/moment/moment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/moment.d.ts -------------------------------------------------------------------------------- /web/vendor/moment/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/moment.js -------------------------------------------------------------------------------- /web/vendor/moment/src/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/moment/src/moment.js -------------------------------------------------------------------------------- /web/vendor/moment/templates/empty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/vendor/pace/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/pace/.bower.json -------------------------------------------------------------------------------- /web/vendor/pace/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/vendor/pace/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/pace/LICENSE -------------------------------------------------------------------------------- /web/vendor/pace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/pace/README.md -------------------------------------------------------------------------------- /web/vendor/pace/pace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/pace/pace.js -------------------------------------------------------------------------------- /web/vendor/pace/pace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/pace/pace.min.js -------------------------------------------------------------------------------- /web/vendor/pace/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/pace/package.json -------------------------------------------------------------------------------- /web/vendor/regression-js/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | thumbs.db 3 | *.log 4 | node_modules/ 5 | .idea -------------------------------------------------------------------------------- /web/vendor/regression-js/.npmignore: -------------------------------------------------------------------------------- 1 | .git* 2 | example/ 3 | .DS_Store -------------------------------------------------------------------------------- /web/vendor/regression-js/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/regression'); -------------------------------------------------------------------------------- /web/vendor/tablesorter/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/tablesorter/.jscsrc -------------------------------------------------------------------------------- /web/vendor/tablesorter/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/tablesorter/.mailmap -------------------------------------------------------------------------------- /web/vendor/tablesorter/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeproducer198/Runalyze/HEAD/web/vendor/tablesorter/AUTHORS --------------------------------------------------------------------------------