├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .stylelintrc ├── .travis.yml ├── .yo-rc.json ├── README.md ├── __tests__ ├── app.js ├── craftcms.js ├── craftcms3.js ├── prototyping.js └── wordpress.js ├── generators ├── app │ ├── config │ │ ├── _filesEnvironment.js │ │ ├── _filesProject.js │ │ ├── _filesProjectTpl.js │ │ ├── _foldersProject.js │ │ └── _foldersProjectTpl.js │ ├── helpers │ │ ├── files │ │ │ ├── _deleteFolderRecursive.js │ │ │ └── _downloadFiles.js │ │ ├── messages │ │ │ ├── _branding.js │ │ │ └── _logMessage.js │ │ └── prompts │ │ │ ├── _message.js │ │ │ └── _when.js │ ├── index.js │ ├── modules │ │ ├── _prompts.js │ │ ├── package │ │ │ ├── _base.js │ │ │ ├── _browserSync.js │ │ │ ├── _browserslist.js │ │ │ ├── _criticalCSS.js │ │ │ ├── _css.js │ │ │ ├── _dependencies.js │ │ │ ├── _devDependencies.js │ │ │ ├── _distPathsCraftCMS.js │ │ │ ├── _distPathsCraftCMS3.js │ │ │ ├── _distPathsPrototyping.js │ │ │ ├── _distPathsWordpress.js │ │ │ ├── _favicons.js │ │ │ ├── _inlineJS.js │ │ │ ├── _jquery.js │ │ │ ├── _minify.js │ │ │ ├── _modernizr.js │ │ │ ├── _project.js │ │ │ ├── _scripts.js │ │ │ ├── _srcPaths.js │ │ │ ├── _sytemFiles.js │ │ │ └── _vueJS.js │ │ ├── prompts │ │ │ ├── _author.js │ │ │ ├── _craftCMS.js │ │ │ ├── _craftCMS3.js │ │ │ ├── _project.js │ │ │ └── _wordpress.js │ │ └── writings │ │ │ ├── craftCMS │ │ │ └── index.js │ │ │ ├── craftCMS3 │ │ │ └── index.js │ │ │ ├── package │ │ │ └── index.js │ │ │ └── wordpress │ │ │ └── index.js │ └── templates │ │ ├── ___src │ │ ├── _craftCMS │ │ │ ├── .craft-cli.php │ │ │ ├── .env.php │ │ │ ├── db.php │ │ │ ├── example.env.php │ │ │ ├── general.php │ │ │ ├── imager │ │ │ │ └── imager.php │ │ │ ├── plugins │ │ │ │ ├── amforms │ │ │ │ │ ├── AmFormsPlugin.php │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── config.php │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── AmForms_ExportsController.php │ │ │ │ │ │ ├── AmForms_FieldsController.php │ │ │ │ │ │ ├── AmForms_FormsController.php │ │ │ │ │ │ ├── AmForms_NotesController.php │ │ │ │ │ │ ├── AmForms_SettingsController.php │ │ │ │ │ │ └── AmForms_SubmissionsController.php │ │ │ │ │ ├── elementactions │ │ │ │ │ │ └── AmForms_ExportElementAction.php │ │ │ │ │ ├── elementtypes │ │ │ │ │ │ ├── AmForms_FormElementType.php │ │ │ │ │ │ └── AmForms_SubmissionElementType.php │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ ├── AmForms_EmailFieldType.php │ │ │ │ │ │ ├── AmForms_FormFieldType.php │ │ │ │ │ │ ├── AmForms_HiddenFieldType.php │ │ │ │ │ │ └── AmForms_SubmissionsFieldType.php │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── m150723_112500_amForms_redirectUriToRelation.php │ │ │ │ │ │ ├── m150803_092200_amForms_exportCriteria.php │ │ │ │ │ │ ├── m150804_155300_amForms_exportName.php │ │ │ │ │ │ ├── m150811_122900_amForms_settingsAndSubmissionsUpdate.php │ │ │ │ │ │ ├── m150828_104500_amForms_exportOneSubmission.php │ │ │ │ │ │ ├── m150924_123000_amForms_addAssetsToNotification.php │ │ │ │ │ │ ├── m151009_122433_amforms_addGlobalTemplateSettings.php │ │ │ │ │ │ ├── m151012_115314_amforms_addAfterSubmitTextToForm.php │ │ │ │ │ │ ├── m151015_114827_amforms_addSendCopyToForm.php │ │ │ │ │ │ ├── m151222_111300_amforms_addDelimiterSetting.php │ │ │ │ │ │ ├── m160503_154000_amforms_displayTabTitles.php │ │ │ │ │ │ ├── m160509_142400_amforms_redirectUrl.php │ │ │ │ │ │ ├── m160816_160800_amforms_addMatrixExportSetting.php │ │ │ │ │ │ ├── m161005_122600_amforms_editFormSettings.php │ │ │ │ │ │ ├── m161017_095717_amforms_addConfirmationTemplate.php │ │ │ │ │ │ ├── m161017_100256_amforms_addConfirmationTemplateSettings.php │ │ │ │ │ │ ├── m161017_120325_amforms_addConfirmationEmailSubjectSettings.php │ │ │ │ │ │ └── m161017_123816_amforms_addConfirmationEmailSenderSettings.php │ │ │ │ │ ├── models │ │ │ │ │ │ ├── AmFormsModel.php │ │ │ │ │ │ ├── AmForms_ExportModel.php │ │ │ │ │ │ ├── AmForms_FormModel.php │ │ │ │ │ │ ├── AmForms_NoteModel.php │ │ │ │ │ │ ├── AmForms_SettingModel.php │ │ │ │ │ │ └── AmForms_SubmissionModel.php │ │ │ │ │ ├── records │ │ │ │ │ │ ├── AmForms_ExportRecord.php │ │ │ │ │ │ ├── AmForms_FormRecord.php │ │ │ │ │ │ ├── AmForms_NoteRecord.php │ │ │ │ │ │ ├── AmForms_SettingRecord.php │ │ │ │ │ │ └── AmForms_SubmissionRecord.php │ │ │ │ │ ├── releases.json │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── FormAttributes.css │ │ │ │ │ │ │ ├── datepicker.css │ │ │ │ │ │ │ └── timepicker.css │ │ │ │ │ │ ├── icon-mask.svg │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── AdminTable.js │ │ │ │ │ │ │ ├── FieldLayoutDesigner.js │ │ │ │ │ │ │ └── FormAttributes.js │ │ │ │ │ ├── services │ │ │ │ │ │ ├── AmFormsService.php │ │ │ │ │ │ ├── AmForms_AntispamService.php │ │ │ │ │ │ ├── AmForms_ExportsService.php │ │ │ │ │ │ ├── AmForms_FieldsService.php │ │ │ │ │ │ ├── AmForms_FormsService.php │ │ │ │ │ │ ├── AmForms_InstallService.php │ │ │ │ │ │ ├── AmForms_NotesService.php │ │ │ │ │ │ ├── AmForms_RecaptchaService.php │ │ │ │ │ │ ├── AmForms_SettingsService.php │ │ │ │ │ │ └── AmForms_SubmissionsService.php │ │ │ │ │ ├── tasks │ │ │ │ │ │ └── AmForms_ExportTask.php │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _display │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ ├── _antispam │ │ │ │ │ │ │ │ ├── honeypot.twig │ │ │ │ │ │ │ │ ├── origin.twig │ │ │ │ │ │ │ │ └── time.twig │ │ │ │ │ │ │ │ ├── _components │ │ │ │ │ │ │ │ └── fieldtypes │ │ │ │ │ │ │ │ │ ├── Assets │ │ │ │ │ │ │ │ │ └── input.twig │ │ │ │ │ │ │ │ │ ├── Hidden │ │ │ │ │ │ │ │ │ ├── input.twig │ │ │ │ │ │ │ │ │ └── settings.twig │ │ │ │ │ │ │ │ │ └── PlainText │ │ │ │ │ │ │ │ │ ├── input.twig │ │ │ │ │ │ │ │ │ └── settings.twig │ │ │ │ │ │ │ │ ├── _includes │ │ │ │ │ │ │ │ └── forms │ │ │ │ │ │ │ │ │ ├── checkbox.html │ │ │ │ │ │ │ │ │ ├── checkboxGroup.html │ │ │ │ │ │ │ │ │ ├── checkboxSelect.html │ │ │ │ │ │ │ │ │ ├── color.html │ │ │ │ │ │ │ │ │ ├── date.html │ │ │ │ │ │ │ │ │ ├── editableTable.html │ │ │ │ │ │ │ │ │ ├── elementSelect.html │ │ │ │ │ │ │ │ │ ├── errorList.html │ │ │ │ │ │ │ │ │ ├── field.html │ │ │ │ │ │ │ │ │ ├── file.html │ │ │ │ │ │ │ │ │ ├── hidden.html │ │ │ │ │ │ │ │ │ ├── lightswitch.html │ │ │ │ │ │ │ │ │ ├── multiselect.html │ │ │ │ │ │ │ │ │ ├── radio.html │ │ │ │ │ │ │ │ │ ├── radioGroup.html │ │ │ │ │ │ │ │ │ ├── select.html │ │ │ │ │ │ │ │ │ ├── text.html │ │ │ │ │ │ │ │ │ ├── textarea.html │ │ │ │ │ │ │ │ │ └── time.html │ │ │ │ │ │ │ │ ├── confirmation.twig │ │ │ │ │ │ │ │ ├── email.twig │ │ │ │ │ │ │ │ ├── errorList.twig │ │ │ │ │ │ │ │ ├── field.twig │ │ │ │ │ │ │ │ ├── form.twig │ │ │ │ │ │ │ │ ├── forms.twig │ │ │ │ │ │ │ │ ├── notification.twig │ │ │ │ │ │ │ │ ├── recaptcha.twig │ │ │ │ │ │ │ │ └── tab.twig │ │ │ │ │ │ ├── _fields │ │ │ │ │ │ │ └── submissions │ │ │ │ │ │ │ │ └── input.twig │ │ │ │ │ │ ├── _layouts │ │ │ │ │ │ │ ├── cp.twig │ │ │ │ │ │ │ └── settings.twig │ │ │ │ │ │ ├── _widgets │ │ │ │ │ │ │ └── recentsubmissions │ │ │ │ │ │ │ │ ├── body.twig │ │ │ │ │ │ │ │ └── settings.twig │ │ │ │ │ │ ├── exports │ │ │ │ │ │ │ ├── _edit.twig │ │ │ │ │ │ │ ├── _fields │ │ │ │ │ │ │ │ └── template.twig │ │ │ │ │ │ │ └── index.twig │ │ │ │ │ │ ├── fields │ │ │ │ │ │ │ ├── _edit.twig │ │ │ │ │ │ │ └── index.twig │ │ │ │ │ │ ├── forms │ │ │ │ │ │ │ ├── _edit.twig │ │ │ │ │ │ │ ├── _fields │ │ │ │ │ │ │ │ ├── attributes.twig │ │ │ │ │ │ │ │ ├── designer.twig │ │ │ │ │ │ │ │ ├── form.twig │ │ │ │ │ │ │ │ ├── notifications.twig │ │ │ │ │ │ │ │ ├── templates.twig │ │ │ │ │ │ │ │ └── usage.twig │ │ │ │ │ │ │ └── index.twig │ │ │ │ │ │ ├── index.twig │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ ├── antispam.twig │ │ │ │ │ │ │ ├── export.twig │ │ │ │ │ │ │ ├── general.twig │ │ │ │ │ │ │ ├── recaptcha.twig │ │ │ │ │ │ │ └── templates.twig │ │ │ │ │ │ └── submissions │ │ │ │ │ │ │ ├── _edit.twig │ │ │ │ │ │ │ ├── _notes.twig │ │ │ │ │ │ │ └── index.twig │ │ │ │ │ ├── translations │ │ │ │ │ │ └── nl.php │ │ │ │ │ ├── variables │ │ │ │ │ │ └── AmFormsVariable.php │ │ │ │ │ └── widgets │ │ │ │ │ │ └── AmForms_RecentSubmissionsWidget.php │ │ │ │ ├── amnav │ │ │ │ │ ├── AmNavPlugin.php │ │ │ │ │ ├── README.md │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── AmNavController.php │ │ │ │ │ │ └── AmNav_NodesController.php │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ ├── AmNav_NavigationFieldType.php │ │ │ │ │ │ └── AmNav_NavigationPositionFieldType.php │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── m150212_145000_AmNav_renamePagesToNodes.php │ │ │ │ │ │ ├── m150217_112800_AmNav_expandPageData.php │ │ │ │ │ │ ├── m150403_093000_AmNav_nodesWithElements.php │ │ │ │ │ │ └── m150512_105600_AmNav_addOptionalClass.php │ │ │ │ │ ├── models │ │ │ │ │ │ ├── AmNav_NavigationModel.php │ │ │ │ │ │ └── AmNav_NodeModel.php │ │ │ │ │ ├── records │ │ │ │ │ │ ├── AmNav_NavigationRecord.php │ │ │ │ │ │ └── AmNav_NodeRecord.php │ │ │ │ │ ├── releases.json │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── AmNav.css │ │ │ │ │ │ │ └── NavigationPosition.css │ │ │ │ │ │ ├── icon-mask.svg │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ └── blank.png │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── AmNav.js │ │ │ │ │ │ │ ├── AmNav.min.js │ │ │ │ │ │ │ ├── NavigationPosition.js │ │ │ │ │ │ │ └── NavigationPosition.min.js │ │ │ │ │ ├── services │ │ │ │ │ │ ├── AmNavService.php │ │ │ │ │ │ └── AmNav_NodeService.php │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _build.twig │ │ │ │ │ │ ├── _build │ │ │ │ │ │ │ ├── editor.twig │ │ │ │ │ │ │ └── parent.twig │ │ │ │ │ │ ├── _edit.twig │ │ │ │ │ │ ├── _includes │ │ │ │ │ │ │ └── node.twig │ │ │ │ │ │ ├── _index.twig │ │ │ │ │ │ ├── navigation │ │ │ │ │ │ │ └── input.twig │ │ │ │ │ │ ├── navigationposition │ │ │ │ │ │ │ ├── input.twig │ │ │ │ │ │ │ └── settings.twig │ │ │ │ │ │ └── settings.twig │ │ │ │ │ ├── translations │ │ │ │ │ │ └── nl.php │ │ │ │ │ └── variables │ │ │ │ │ │ └── AmNavVariable.php │ │ │ │ ├── cachebuster │ │ │ │ │ ├── CacheBusterPlugin.php │ │ │ │ │ ├── config.php │ │ │ │ │ ├── services │ │ │ │ │ │ └── CacheBusterService.php │ │ │ │ │ ├── twigextensions │ │ │ │ │ │ └── CacheBusterTwigExtension.php │ │ │ │ │ └── variables │ │ │ │ │ │ └── CacheBusterVariable.php │ │ │ │ ├── cookies │ │ │ │ │ ├── CookiesPlugin.php │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── releases.json │ │ │ │ │ ├── resources │ │ │ │ │ │ └── icon.svg │ │ │ │ │ ├── services │ │ │ │ │ │ └── Cookies_UtilsService.php │ │ │ │ │ ├── twigextensions │ │ │ │ │ │ └── CookiesTwigExtension.php │ │ │ │ │ └── variables │ │ │ │ │ │ └── CookiesVariable.php │ │ │ │ ├── cpcss │ │ │ │ │ ├── CpCssPlugin.php │ │ │ │ │ ├── migrations │ │ │ │ │ │ └── m140516_000000_cpCss_changeSettingsFieldName.php │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── blackboard.css │ │ │ │ │ │ │ └── codemirror.css │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── codemirror-css.js │ │ │ │ │ └── templates │ │ │ │ │ │ └── _settings.html │ │ │ │ ├── cpfieldlinks │ │ │ │ │ ├── CpFieldLinksPlugin.php │ │ │ │ │ └── resources │ │ │ │ │ │ ├── javascripts │ │ │ │ │ │ └── CpFieldLinks-f67305e6b68309713390.js │ │ │ │ │ │ ├── rev-manifest.json │ │ │ │ │ │ └── stylesheets │ │ │ │ │ │ └── CpFieldLinks-89aff73de7.css │ │ │ │ ├── focalpointfield │ │ │ │ │ ├── FocalPointFieldPlugin.php │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ └── FocalPointField_FocalPointFieldType.php │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── focalpoint.css │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── focalpoint.js │ │ │ │ │ │ │ └── jquery.waitforimages.min.js │ │ │ │ │ └── templates │ │ │ │ │ │ ├── input.twig │ │ │ │ │ │ └── settings.twig │ │ │ │ ├── fruitlinkit │ │ │ │ │ ├── FruitLinkItPlugin.php │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ └── FruitLinkItFieldType.php │ │ │ │ │ ├── migrations │ │ │ │ │ │ └── m160208_010101_FruitLinkIt_UpdateExistingLinkItFields.php │ │ │ │ │ ├── models │ │ │ │ │ │ ├── FruitLinkIt_LinkModel.php │ │ │ │ │ │ └── FruitLinkIt_LinkSettingsModel.php │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── linkit.css │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── FruitLinkIt.js │ │ │ │ │ ├── services │ │ │ │ │ │ └── FruitLinkItService.php │ │ │ │ │ └── templates │ │ │ │ │ │ └── _fieldtype │ │ │ │ │ │ ├── input.html │ │ │ │ │ │ └── settings.html │ │ │ │ ├── imager │ │ │ │ │ ├── ImagerPlugin.php │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── composer.lock │ │ │ │ │ ├── config.php │ │ │ │ │ ├── controllers │ │ │ │ │ │ └── ImagerController.php │ │ │ │ │ ├── elementactions │ │ │ │ │ │ └── Imager_ClearTransformsElementAction.php │ │ │ │ │ ├── models │ │ │ │ │ │ ├── Imager_ConfigModel.php │ │ │ │ │ │ ├── Imager_ImageModel.php │ │ │ │ │ │ └── Imager_ImagePathsModel.php │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── icon-mask.svg │ │ │ │ │ │ └── icon.svg │ │ │ │ │ ├── services │ │ │ │ │ │ ├── ImagerService.php │ │ │ │ │ │ ├── Imager_AwsService.php │ │ │ │ │ │ ├── Imager_ColorService.php │ │ │ │ │ │ └── Imager_GcsService.php │ │ │ │ │ ├── tasks │ │ │ │ │ │ ├── Imager_GifsicleTask.php │ │ │ │ │ │ ├── Imager_JpegoptimTask.php │ │ │ │ │ │ ├── Imager_JpegtranTask.php │ │ │ │ │ │ ├── Imager_MozjpegTask.php │ │ │ │ │ │ ├── Imager_OptipngTask.php │ │ │ │ │ │ ├── Imager_PngquantTask.php │ │ │ │ │ │ └── Imager_TinyPngTask.php │ │ │ │ │ ├── variables │ │ │ │ │ │ └── ImagerVariable.php │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── autoload.php │ │ │ │ │ │ ├── composer │ │ │ │ │ │ ├── ClassLoader.php │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── autoload_classmap.php │ │ │ │ │ │ ├── autoload_files.php │ │ │ │ │ │ ├── autoload_namespaces.php │ │ │ │ │ │ ├── autoload_psr4.php │ │ │ │ │ │ ├── autoload_real.php │ │ │ │ │ │ ├── autoload_static.php │ │ │ │ │ │ └── installed.json │ │ │ │ │ │ ├── ksubileau │ │ │ │ │ │ └── color-thief-php │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── ColorThief │ │ │ │ │ │ │ ├── CMap.php │ │ │ │ │ │ │ ├── ColorThief.php │ │ │ │ │ │ │ ├── Image │ │ │ │ │ │ │ ├── Adapter │ │ │ │ │ │ │ │ ├── GDImageAdapter.php │ │ │ │ │ │ │ │ ├── GmagickImageAdapter.php │ │ │ │ │ │ │ │ ├── IImageAdapter.php │ │ │ │ │ │ │ │ ├── ImageAdapter.php │ │ │ │ │ │ │ │ └── ImagickImageAdapter.php │ │ │ │ │ │ │ └── ImageLoader.php │ │ │ │ │ │ │ ├── PQueue.php │ │ │ │ │ │ │ └── VBox.php │ │ │ │ │ │ └── tinify │ │ │ │ │ │ └── tinify │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── Tinify.php │ │ │ │ │ │ ├── Tinify │ │ │ │ │ │ │ ├── Client.php │ │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ │ ├── Result.php │ │ │ │ │ │ │ ├── ResultMeta.php │ │ │ │ │ │ │ └── Source.php │ │ │ │ │ │ └── data │ │ │ │ │ │ │ └── cacert.pem │ │ │ │ │ │ ├── phpunit.xml │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── TinifyClientTest.php │ │ │ │ │ │ ├── TinifyResultMetaTest.php │ │ │ │ │ │ ├── TinifyResultTest.php │ │ │ │ │ │ ├── TinifySourceTest.php │ │ │ │ │ │ ├── TinifyTest.php │ │ │ │ │ │ ├── curl_mock.php │ │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── dummy.png │ │ │ │ │ │ └── voormedia.png │ │ │ │ │ │ ├── helper.php │ │ │ │ │ │ └── integration.php │ │ │ │ ├── instantanalytics │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── InstantAnalyticsPlugin.php │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── composer.lock │ │ │ │ │ ├── config.php │ │ │ │ │ ├── controllers │ │ │ │ │ │ └── InstantAnalyticsController.php │ │ │ │ │ ├── releases.json │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── InstantAnalytics_Style.css │ │ │ │ │ │ ├── icon-mask.svg │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ └── InstantAnalytics_Script.js │ │ │ │ │ │ └── screenshots │ │ │ │ │ │ │ ├── ia_screenshot01.png │ │ │ │ │ │ │ ├── ia_screenshot02.png │ │ │ │ │ │ │ ├── ia_screenshot03.png │ │ │ │ │ │ │ ├── ia_screenshot04.png │ │ │ │ │ │ │ └── ia_screenshot05.png │ │ │ │ │ ├── services │ │ │ │ │ │ └── InstantAnalyticsService.php │ │ │ │ │ ├── src │ │ │ │ │ │ └── IAnalytics.php │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── InstantAnalytics_Settings.twig │ │ │ │ │ │ └── welcome.twig │ │ │ │ │ ├── twigextensions │ │ │ │ │ │ └── InstantAnalyticsTwigExtension.php │ │ │ │ │ ├── variables │ │ │ │ │ │ └── InstantAnalyticsVariable.php │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── autoload.php │ │ │ │ │ │ ├── composer │ │ │ │ │ │ ├── ClassLoader.php │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── autoload_classmap.php │ │ │ │ │ │ ├── autoload_files.php │ │ │ │ │ │ ├── autoload_namespaces.php │ │ │ │ │ │ ├── autoload_psr4.php │ │ │ │ │ │ ├── autoload_real.php │ │ │ │ │ │ ├── autoload_static.php │ │ │ │ │ │ ├── installed.json │ │ │ │ │ │ └── installers │ │ │ │ │ │ │ ├── .editorconfig │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ ├── phpunit.xml.dist │ │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── Composer │ │ │ │ │ │ │ │ └── Installers │ │ │ │ │ │ │ │ │ ├── AglInstaller.php │ │ │ │ │ │ │ │ │ ├── AimeosInstaller.php │ │ │ │ │ │ │ │ │ ├── AnnotateCmsInstaller.php │ │ │ │ │ │ │ │ │ ├── AsgardInstaller.php │ │ │ │ │ │ │ │ │ ├── AttogramInstaller.php │ │ │ │ │ │ │ │ │ ├── BaseInstaller.php │ │ │ │ │ │ │ │ │ ├── BitrixInstaller.php │ │ │ │ │ │ │ │ │ ├── BonefishInstaller.php │ │ │ │ │ │ │ │ │ ├── CakePHPInstaller.php │ │ │ │ │ │ │ │ │ ├── ChefInstaller.php │ │ │ │ │ │ │ │ │ ├── ClanCatsFrameworkInstaller.php │ │ │ │ │ │ │ │ │ ├── CockpitInstaller.php │ │ │ │ │ │ │ │ │ ├── CodeIgniterInstaller.php │ │ │ │ │ │ │ │ │ ├── Concrete5Installer.php │ │ │ │ │ │ │ │ │ ├── CraftInstaller.php │ │ │ │ │ │ │ │ │ ├── CroogoInstaller.php │ │ │ │ │ │ │ │ │ ├── DecibelInstaller.php │ │ │ │ │ │ │ │ │ ├── DokuWikiInstaller.php │ │ │ │ │ │ │ │ │ ├── DolibarrInstaller.php │ │ │ │ │ │ │ │ │ ├── DrupalInstaller.php │ │ │ │ │ │ │ │ │ ├── ElggInstaller.php │ │ │ │ │ │ │ │ │ ├── ExpressionEngineInstaller.php │ │ │ │ │ │ │ │ │ ├── FuelInstaller.php │ │ │ │ │ │ │ │ │ ├── FuelphpInstaller.php │ │ │ │ │ │ │ │ │ ├── GravInstaller.php │ │ │ │ │ │ │ │ │ ├── HuradInstaller.php │ │ │ │ │ │ │ │ │ ├── ImageCMSInstaller.php │ │ │ │ │ │ │ │ │ ├── Installer.php │ │ │ │ │ │ │ │ │ ├── JoomlaInstaller.php │ │ │ │ │ │ │ │ │ ├── KirbyInstaller.php │ │ │ │ │ │ │ │ │ ├── KodiCMSInstaller.php │ │ │ │ │ │ │ │ │ ├── KohanaInstaller.php │ │ │ │ │ │ │ │ │ ├── LaravelInstaller.php │ │ │ │ │ │ │ │ │ ├── LithiumInstaller.php │ │ │ │ │ │ │ │ │ ├── MODULEWorkInstaller.php │ │ │ │ │ │ │ │ │ ├── MODXEvoInstaller.php │ │ │ │ │ │ │ │ │ ├── MagentoInstaller.php │ │ │ │ │ │ │ │ │ ├── MakoInstaller.php │ │ │ │ │ │ │ │ │ ├── MauticInstaller.php │ │ │ │ │ │ │ │ │ ├── MediaWikiInstaller.php │ │ │ │ │ │ │ │ │ ├── MicroweberInstaller.php │ │ │ │ │ │ │ │ │ ├── MoodleInstaller.php │ │ │ │ │ │ │ │ │ ├── OctoberInstaller.php │ │ │ │ │ │ │ │ │ ├── OxidInstaller.php │ │ │ │ │ │ │ │ │ ├── PPIInstaller.php │ │ │ │ │ │ │ │ │ ├── PhiftyInstaller.php │ │ │ │ │ │ │ │ │ ├── PhpBBInstaller.php │ │ │ │ │ │ │ │ │ ├── PimcoreInstaller.php │ │ │ │ │ │ │ │ │ ├── PiwikInstaller.php │ │ │ │ │ │ │ │ │ ├── PlentymarketsInstaller.php │ │ │ │ │ │ │ │ │ ├── Plugin.php │ │ │ │ │ │ │ │ │ ├── PrestashopInstaller.php │ │ │ │ │ │ │ │ │ ├── PuppetInstaller.php │ │ │ │ │ │ │ │ │ ├── RadPHPInstaller.php │ │ │ │ │ │ │ │ │ ├── ReIndexInstaller.php │ │ │ │ │ │ │ │ │ ├── RedaxoInstaller.php │ │ │ │ │ │ │ │ │ ├── RoundcubeInstaller.php │ │ │ │ │ │ │ │ │ ├── SMFInstaller.php │ │ │ │ │ │ │ │ │ ├── ShopwareInstaller.php │ │ │ │ │ │ │ │ │ ├── SilverStripeInstaller.php │ │ │ │ │ │ │ │ │ ├── Symfony1Installer.php │ │ │ │ │ │ │ │ │ ├── TYPO3CmsInstaller.php │ │ │ │ │ │ │ │ │ ├── TYPO3FlowInstaller.php │ │ │ │ │ │ │ │ │ ├── TheliaInstaller.php │ │ │ │ │ │ │ │ │ ├── TuskInstaller.php │ │ │ │ │ │ │ │ │ ├── VanillaInstaller.php │ │ │ │ │ │ │ │ │ ├── WHMCSInstaller.php │ │ │ │ │ │ │ │ │ ├── WolfCMSInstaller.php │ │ │ │ │ │ │ │ │ ├── WordPressInstaller.php │ │ │ │ │ │ │ │ │ ├── YawikInstaller.php │ │ │ │ │ │ │ │ │ ├── ZendInstaller.php │ │ │ │ │ │ │ │ │ └── ZikulaInstaller.php │ │ │ │ │ │ │ └── bootstrap.php │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── Composer │ │ │ │ │ │ │ └── Installers │ │ │ │ │ │ │ │ └── Test │ │ │ │ │ │ │ │ ├── AsgardInstallerTest.php │ │ │ │ │ │ │ │ ├── BitrixInstallerTest.php │ │ │ │ │ │ │ │ ├── CakePHPInstallerTest.php │ │ │ │ │ │ │ │ ├── CraftInstallerTest.php │ │ │ │ │ │ │ │ ├── DokuWikiInstallerTest.php │ │ │ │ │ │ │ │ ├── GravInstallerTest.php │ │ │ │ │ │ │ │ ├── InstallerTest.php │ │ │ │ │ │ │ │ ├── MediaWikiInstallerTest.php │ │ │ │ │ │ │ │ ├── OctoberInstallerTest.php │ │ │ │ │ │ │ │ ├── PimcoreInstallerTest.php │ │ │ │ │ │ │ │ ├── PiwikInstallerTest.php │ │ │ │ │ │ │ │ ├── TestCase.php │ │ │ │ │ │ │ │ └── YawikInstallerTest.php │ │ │ │ │ │ │ └── bootstrap.php │ │ │ │ │ │ ├── guzzlehttp │ │ │ │ │ │ ├── guzzle │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── UPGRADING.md │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── Client.php │ │ │ │ │ │ │ │ ├── ClientInterface.php │ │ │ │ │ │ │ │ ├── Cookie │ │ │ │ │ │ │ │ ├── CookieJar.php │ │ │ │ │ │ │ │ ├── CookieJarInterface.php │ │ │ │ │ │ │ │ ├── FileCookieJar.php │ │ │ │ │ │ │ │ ├── SessionCookieJar.php │ │ │ │ │ │ │ │ └── SetCookie.php │ │ │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ │ ├── BadResponseException.php │ │ │ │ │ │ │ │ ├── ClientException.php │ │ │ │ │ │ │ │ ├── ConnectException.php │ │ │ │ │ │ │ │ ├── GuzzleException.php │ │ │ │ │ │ │ │ ├── RequestException.php │ │ │ │ │ │ │ │ ├── SeekException.php │ │ │ │ │ │ │ │ ├── ServerException.php │ │ │ │ │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ │ │ │ │ └── TransferException.php │ │ │ │ │ │ │ │ ├── Handler │ │ │ │ │ │ │ │ ├── CurlFactory.php │ │ │ │ │ │ │ │ ├── CurlFactoryInterface.php │ │ │ │ │ │ │ │ ├── CurlHandler.php │ │ │ │ │ │ │ │ ├── CurlMultiHandler.php │ │ │ │ │ │ │ │ ├── EasyHandle.php │ │ │ │ │ │ │ │ ├── MockHandler.php │ │ │ │ │ │ │ │ ├── Proxy.php │ │ │ │ │ │ │ │ └── StreamHandler.php │ │ │ │ │ │ │ │ ├── HandlerStack.php │ │ │ │ │ │ │ │ ├── MessageFormatter.php │ │ │ │ │ │ │ │ ├── Middleware.php │ │ │ │ │ │ │ │ ├── Pool.php │ │ │ │ │ │ │ │ ├── PrepareBodyMiddleware.php │ │ │ │ │ │ │ │ ├── RedirectMiddleware.php │ │ │ │ │ │ │ │ ├── RequestOptions.php │ │ │ │ │ │ │ │ ├── RetryMiddleware.php │ │ │ │ │ │ │ │ ├── TransferStats.php │ │ │ │ │ │ │ │ ├── UriTemplate.php │ │ │ │ │ │ │ │ ├── functions.php │ │ │ │ │ │ │ │ └── functions_include.php │ │ │ │ │ │ ├── promises │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── AggregateException.php │ │ │ │ │ │ │ │ ├── CancellationException.php │ │ │ │ │ │ │ │ ├── Coroutine.php │ │ │ │ │ │ │ │ ├── EachPromise.php │ │ │ │ │ │ │ │ ├── FulfilledPromise.php │ │ │ │ │ │ │ │ ├── Promise.php │ │ │ │ │ │ │ │ ├── PromiseInterface.php │ │ │ │ │ │ │ │ ├── PromisorInterface.php │ │ │ │ │ │ │ │ ├── RejectedPromise.php │ │ │ │ │ │ │ │ ├── RejectionException.php │ │ │ │ │ │ │ │ ├── TaskQueue.php │ │ │ │ │ │ │ │ ├── TaskQueueInterface.php │ │ │ │ │ │ │ │ ├── functions.php │ │ │ │ │ │ │ │ └── functions_include.php │ │ │ │ │ │ └── psr7 │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── AppendStream.php │ │ │ │ │ │ │ ├── BufferStream.php │ │ │ │ │ │ │ ├── CachingStream.php │ │ │ │ │ │ │ ├── DroppingStream.php │ │ │ │ │ │ │ ├── FnStream.php │ │ │ │ │ │ │ ├── InflateStream.php │ │ │ │ │ │ │ ├── LazyOpenStream.php │ │ │ │ │ │ │ ├── LimitStream.php │ │ │ │ │ │ │ ├── MessageTrait.php │ │ │ │ │ │ │ ├── MultipartStream.php │ │ │ │ │ │ │ ├── NoSeekStream.php │ │ │ │ │ │ │ ├── PumpStream.php │ │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ │ ├── ServerRequest.php │ │ │ │ │ │ │ ├── Stream.php │ │ │ │ │ │ │ ├── StreamDecoratorTrait.php │ │ │ │ │ │ │ ├── StreamWrapper.php │ │ │ │ │ │ │ ├── UploadedFile.php │ │ │ │ │ │ │ ├── Uri.php │ │ │ │ │ │ │ ├── UriNormalizer.php │ │ │ │ │ │ │ ├── UriResolver.php │ │ │ │ │ │ │ ├── functions.php │ │ │ │ │ │ │ └── functions_include.php │ │ │ │ │ │ ├── jaybizzle │ │ │ │ │ │ └── crawler-detect │ │ │ │ │ │ │ ├── .coveralls.yml │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .styleci.yml │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ ├── phpunit.xml │ │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── CrawlerDetect.php │ │ │ │ │ │ │ └── Fixtures │ │ │ │ │ │ │ │ ├── AbstractProvider.php │ │ │ │ │ │ │ │ ├── Crawlers.php │ │ │ │ │ │ │ │ ├── Exclusions.php │ │ │ │ │ │ │ │ └── Headers.php │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── UATests.php │ │ │ │ │ │ │ ├── bootstrap.php │ │ │ │ │ │ │ ├── crawlers.txt │ │ │ │ │ │ │ └── devices.txt │ │ │ │ │ │ ├── psr │ │ │ │ │ │ └── http-message │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── MessageInterface.php │ │ │ │ │ │ │ ├── RequestInterface.php │ │ │ │ │ │ │ ├── ResponseInterface.php │ │ │ │ │ │ │ ├── ServerRequestInterface.php │ │ │ │ │ │ │ ├── StreamInterface.php │ │ │ │ │ │ │ ├── UploadedFileInterface.php │ │ │ │ │ │ │ └── UriInterface.php │ │ │ │ │ │ └── theiconic │ │ │ │ │ │ └── php-ga-measurement-protocol │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ ├── docs │ │ │ │ │ │ └── index.md │ │ │ │ │ │ ├── mkdocs.yml │ │ │ │ │ │ ├── phpunit.xml.dist │ │ │ │ │ │ ├── src │ │ │ │ │ │ ├── Analytics.php │ │ │ │ │ │ ├── AnalyticsResponse.php │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ ├── InvalidCompoundParameterException.php │ │ │ │ │ │ │ ├── InvalidIndexException.php │ │ │ │ │ │ │ ├── InvalidNameException.php │ │ │ │ │ │ │ └── InvalidPayloadDataException.php │ │ │ │ │ │ ├── Network │ │ │ │ │ │ │ ├── HttpClient.php │ │ │ │ │ │ │ └── PrepareUrl.php │ │ │ │ │ │ ├── Parameters │ │ │ │ │ │ │ ├── AppTracking │ │ │ │ │ │ │ │ ├── ApplicationId.php │ │ │ │ │ │ │ │ ├── ApplicationInstallerId.php │ │ │ │ │ │ │ │ ├── ApplicationName.php │ │ │ │ │ │ │ │ └── ApplicationVersion.php │ │ │ │ │ │ │ ├── CompoundParameter.php │ │ │ │ │ │ │ ├── CompoundParameterCollection.php │ │ │ │ │ │ │ ├── CompoundParameterCollectionInterface.php │ │ │ │ │ │ │ ├── CompoundParameterInterface.php │ │ │ │ │ │ │ ├── ContentExperiments │ │ │ │ │ │ │ │ ├── ExperimentId.php │ │ │ │ │ │ │ │ └── ExperimentVariant.php │ │ │ │ │ │ │ ├── ContentGrouping │ │ │ │ │ │ │ │ └── ContentGroup.php │ │ │ │ │ │ │ ├── ContentInformation │ │ │ │ │ │ │ │ ├── DocumentHostName.php │ │ │ │ │ │ │ │ ├── DocumentLocationUrl.php │ │ │ │ │ │ │ │ ├── DocumentPath.php │ │ │ │ │ │ │ │ ├── DocumentTitle.php │ │ │ │ │ │ │ │ ├── LinkId.php │ │ │ │ │ │ │ │ └── ScreenName.php │ │ │ │ │ │ │ ├── CustomDimensionsMetrics │ │ │ │ │ │ │ │ ├── CustomDimension.php │ │ │ │ │ │ │ │ └── CustomMetric.php │ │ │ │ │ │ │ ├── Ecommerce │ │ │ │ │ │ │ │ ├── CurrencyCode.php │ │ │ │ │ │ │ │ ├── ItemCategory.php │ │ │ │ │ │ │ │ ├── ItemCode.php │ │ │ │ │ │ │ │ ├── ItemName.php │ │ │ │ │ │ │ │ ├── ItemPrice.php │ │ │ │ │ │ │ │ └── ItemQuantity.php │ │ │ │ │ │ │ ├── EnhancedEcommerce │ │ │ │ │ │ │ │ ├── Affiliation.php │ │ │ │ │ │ │ │ ├── CheckoutStep.php │ │ │ │ │ │ │ │ ├── CheckoutStepOption.php │ │ │ │ │ │ │ │ ├── CouponCode.php │ │ │ │ │ │ │ │ ├── Product.php │ │ │ │ │ │ │ │ ├── ProductAction.php │ │ │ │ │ │ │ │ ├── ProductActionList.php │ │ │ │ │ │ │ │ ├── ProductCollection.php │ │ │ │ │ │ │ │ ├── ProductImpression.php │ │ │ │ │ │ │ │ ├── ProductImpressionCollection.php │ │ │ │ │ │ │ │ ├── ProductImpressionListName.php │ │ │ │ │ │ │ │ ├── Promotion.php │ │ │ │ │ │ │ │ ├── PromotionAction.php │ │ │ │ │ │ │ │ ├── PromotionCollection.php │ │ │ │ │ │ │ │ ├── Revenue.php │ │ │ │ │ │ │ │ ├── Shipping.php │ │ │ │ │ │ │ │ ├── Tax.php │ │ │ │ │ │ │ │ └── TransactionId.php │ │ │ │ │ │ │ ├── Event │ │ │ │ │ │ │ │ ├── EventAction.php │ │ │ │ │ │ │ │ ├── EventCategory.php │ │ │ │ │ │ │ │ ├── EventLabel.php │ │ │ │ │ │ │ │ └── EventValue.php │ │ │ │ │ │ │ ├── Exceptions │ │ │ │ │ │ │ │ ├── ExceptionDescription.php │ │ │ │ │ │ │ │ └── IsExceptionFatal.php │ │ │ │ │ │ │ ├── General │ │ │ │ │ │ │ │ ├── AnonymizeIp.php │ │ │ │ │ │ │ │ ├── CacheBuster.php │ │ │ │ │ │ │ │ ├── DataSource.php │ │ │ │ │ │ │ │ ├── ProtocolVersion.php │ │ │ │ │ │ │ │ ├── QueueTime.php │ │ │ │ │ │ │ │ └── TrackingId.php │ │ │ │ │ │ │ ├── Hit │ │ │ │ │ │ │ │ ├── HitType.php │ │ │ │ │ │ │ │ └── NonInteractionHit.php │ │ │ │ │ │ │ ├── Session │ │ │ │ │ │ │ │ ├── GeographicalOverride.php │ │ │ │ │ │ │ │ ├── IpOverride.php │ │ │ │ │ │ │ │ ├── SessionControl.php │ │ │ │ │ │ │ │ └── UserAgentOverride.php │ │ │ │ │ │ │ ├── SingleParameter.php │ │ │ │ │ │ │ ├── SingleParameterInterface.php │ │ │ │ │ │ │ ├── SocialInteractions │ │ │ │ │ │ │ │ ├── SocialAction.php │ │ │ │ │ │ │ │ ├── SocialActionTarget.php │ │ │ │ │ │ │ │ └── SocialNetwork.php │ │ │ │ │ │ │ ├── SystemInfo │ │ │ │ │ │ │ │ ├── DocumentEncoding.php │ │ │ │ │ │ │ │ ├── FlashVersion.php │ │ │ │ │ │ │ │ ├── JavaEnabled.php │ │ │ │ │ │ │ │ ├── ScreenColors.php │ │ │ │ │ │ │ │ ├── ScreenResolution.php │ │ │ │ │ │ │ │ ├── UserLanguage.php │ │ │ │ │ │ │ │ └── ViewportSize.php │ │ │ │ │ │ │ ├── Timing │ │ │ │ │ │ │ │ ├── ContentLoadTime.php │ │ │ │ │ │ │ │ ├── DnsTime.php │ │ │ │ │ │ │ │ ├── DomInteractiveTime.php │ │ │ │ │ │ │ │ ├── PageDownloadTime.php │ │ │ │ │ │ │ │ ├── PageLoadTime.php │ │ │ │ │ │ │ │ ├── RedirectResponseTime.php │ │ │ │ │ │ │ │ ├── ServerResponseTime.php │ │ │ │ │ │ │ │ ├── TcpConnectTime.php │ │ │ │ │ │ │ │ ├── UserTimingCategory.php │ │ │ │ │ │ │ │ ├── UserTimingLabel.php │ │ │ │ │ │ │ │ ├── UserTimingTime.php │ │ │ │ │ │ │ │ └── UserTimingVariableName.php │ │ │ │ │ │ │ ├── TrafficSources │ │ │ │ │ │ │ │ ├── CampaignContent.php │ │ │ │ │ │ │ │ ├── CampaignId.php │ │ │ │ │ │ │ │ ├── CampaignKeyword.php │ │ │ │ │ │ │ │ ├── CampaignMedium.php │ │ │ │ │ │ │ │ ├── CampaignName.php │ │ │ │ │ │ │ │ ├── CampaignSource.php │ │ │ │ │ │ │ │ ├── DocumentReferrer.php │ │ │ │ │ │ │ │ ├── GoogleAdwordsId.php │ │ │ │ │ │ │ │ └── GoogleDisplayAdsId.php │ │ │ │ │ │ │ └── User │ │ │ │ │ │ │ │ ├── ClientId.php │ │ │ │ │ │ │ │ └── UserId.php │ │ │ │ │ │ └── Traits │ │ │ │ │ │ │ └── Indexable.php │ │ │ │ │ │ └── tests │ │ │ │ │ │ ├── TheIconic │ │ │ │ │ │ └── Tracking │ │ │ │ │ │ │ └── GoogleAnalytics │ │ │ │ │ │ │ ├── AnalyticsGetTest.php │ │ │ │ │ │ │ ├── AnalyticsResponseTest.php │ │ │ │ │ │ │ ├── AnalyticsTest.php │ │ │ │ │ │ │ ├── Network │ │ │ │ │ │ │ ├── HttpClientTest.php │ │ │ │ │ │ │ └── PrepareUrlTest.php │ │ │ │ │ │ │ └── Parameters │ │ │ │ │ │ │ ├── CompoundParameterCollectionTest.php │ │ │ │ │ │ │ ├── CompoundParameterTest.php │ │ │ │ │ │ │ └── SingleParameterTest.php │ │ │ │ │ │ └── support │ │ │ │ │ │ ├── classes │ │ │ │ │ │ ├── CompoundParameterTestCollection.php │ │ │ │ │ │ ├── CompoundTestParameter.php │ │ │ │ │ │ ├── InvalidCompoundParameterTestCollection.php │ │ │ │ │ │ ├── InvalidSingleTestParameter.php │ │ │ │ │ │ ├── SingleTestParameter.php │ │ │ │ │ │ └── SingleTestParameterIndexed.php │ │ │ │ │ │ └── scripts │ │ │ │ │ │ └── bootstrap.php │ │ │ │ ├── kint │ │ │ │ │ ├── KintPlugin.php │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── composer.lock │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ └── screenshots │ │ │ │ │ │ │ └── screenshot.png │ │ │ │ │ ├── services │ │ │ │ │ │ └── KintService.php │ │ │ │ │ ├── templates │ │ │ │ │ │ └── settings.html │ │ │ │ │ ├── twigextensions │ │ │ │ │ │ └── KintTwigExtension.php │ │ │ │ │ ├── variables │ │ │ │ │ │ └── KintVariable.php │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── autoload.php │ │ │ │ │ │ ├── composer │ │ │ │ │ │ ├── ClassLoader.php │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── autoload_classmap.php │ │ │ │ │ │ ├── autoload_files.php │ │ │ │ │ │ ├── autoload_namespaces.php │ │ │ │ │ │ ├── autoload_psr4.php │ │ │ │ │ │ ├── autoload_real.php │ │ │ │ │ │ └── installed.json │ │ │ │ │ │ └── raveren │ │ │ │ │ │ └── kint │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Kint.class.php │ │ │ │ │ │ ├── LICENCE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ ├── config.default.php │ │ │ │ │ │ ├── config.php │ │ │ │ │ │ ├── decorators │ │ │ │ │ │ ├── plain.php │ │ │ │ │ │ └── rich.php │ │ │ │ │ │ ├── examples │ │ │ │ │ │ └── overview.php │ │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── kintObject.class.php │ │ │ │ │ │ ├── kintParser.class.php │ │ │ │ │ │ └── kintVariableData.class.php │ │ │ │ │ │ ├── parsers │ │ │ │ │ │ ├── custom │ │ │ │ │ │ │ ├── classmethods.php │ │ │ │ │ │ │ ├── classstatics.php │ │ │ │ │ │ │ ├── color.php │ │ │ │ │ │ │ ├── fspath.php │ │ │ │ │ │ │ ├── json.php │ │ │ │ │ │ │ ├── microtime.php │ │ │ │ │ │ │ ├── objectiterateable.php │ │ │ │ │ │ │ ├── splobjectstorage.php │ │ │ │ │ │ │ ├── timestamp.php │ │ │ │ │ │ │ └── xml.php │ │ │ │ │ │ └── objects │ │ │ │ │ │ │ ├── closure.php │ │ │ │ │ │ │ ├── smarty.php │ │ │ │ │ │ │ └── splfileinfo.php │ │ │ │ │ │ └── view │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── base.less │ │ │ │ │ │ ├── compiled │ │ │ │ │ │ ├── aante-light.css │ │ │ │ │ │ ├── kint.js │ │ │ │ │ │ ├── original.css │ │ │ │ │ │ ├── solarized-dark.css │ │ │ │ │ │ └── solarized.css │ │ │ │ │ │ └── themes │ │ │ │ │ │ ├── aante-light.less │ │ │ │ │ │ ├── original.less │ │ │ │ │ │ ├── solarized-dark.less │ │ │ │ │ │ └── solarized.less │ │ │ │ ├── minify │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── MinifyPlugin.php │ │ │ │ │ ├── README.md │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── composer.lock │ │ │ │ │ ├── releases.json │ │ │ │ │ ├── resources │ │ │ │ │ │ └── icon.svg │ │ │ │ │ ├── services │ │ │ │ │ │ └── MinifyService.php │ │ │ │ │ ├── twigextensions │ │ │ │ │ │ ├── MinifyTwigExtension.php │ │ │ │ │ │ ├── Minify_Node.php │ │ │ │ │ │ └── Minify_TokenParser.php │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── autoload.php │ │ │ │ │ │ ├── composer │ │ │ │ │ │ ├── ClassLoader.php │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── autoload_classmap.php │ │ │ │ │ │ ├── autoload_namespaces.php │ │ │ │ │ │ ├── autoload_psr4.php │ │ │ │ │ │ ├── autoload_real.php │ │ │ │ │ │ ├── autoload_static.php │ │ │ │ │ │ ├── installed.json │ │ │ │ │ │ └── installers │ │ │ │ │ │ │ ├── .editorconfig │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ ├── phpunit.xml.dist │ │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── Composer │ │ │ │ │ │ │ │ └── Installers │ │ │ │ │ │ │ │ │ ├── AglInstaller.php │ │ │ │ │ │ │ │ │ ├── AimeosInstaller.php │ │ │ │ │ │ │ │ │ ├── AnnotateCmsInstaller.php │ │ │ │ │ │ │ │ │ ├── AsgardInstaller.php │ │ │ │ │ │ │ │ │ ├── AttogramInstaller.php │ │ │ │ │ │ │ │ │ ├── BaseInstaller.php │ │ │ │ │ │ │ │ │ ├── BitrixInstaller.php │ │ │ │ │ │ │ │ │ ├── BonefishInstaller.php │ │ │ │ │ │ │ │ │ ├── CakePHPInstaller.php │ │ │ │ │ │ │ │ │ ├── ChefInstaller.php │ │ │ │ │ │ │ │ │ ├── ClanCatsFrameworkInstaller.php │ │ │ │ │ │ │ │ │ ├── CockpitInstaller.php │ │ │ │ │ │ │ │ │ ├── CodeIgniterInstaller.php │ │ │ │ │ │ │ │ │ ├── Concrete5Installer.php │ │ │ │ │ │ │ │ │ ├── CraftInstaller.php │ │ │ │ │ │ │ │ │ ├── CroogoInstaller.php │ │ │ │ │ │ │ │ │ ├── DecibelInstaller.php │ │ │ │ │ │ │ │ │ ├── DokuWikiInstaller.php │ │ │ │ │ │ │ │ │ ├── DolibarrInstaller.php │ │ │ │ │ │ │ │ │ ├── DrupalInstaller.php │ │ │ │ │ │ │ │ │ ├── ElggInstaller.php │ │ │ │ │ │ │ │ │ ├── ExpressionEngineInstaller.php │ │ │ │ │ │ │ │ │ ├── FuelInstaller.php │ │ │ │ │ │ │ │ │ ├── FuelphpInstaller.php │ │ │ │ │ │ │ │ │ ├── GravInstaller.php │ │ │ │ │ │ │ │ │ ├── HuradInstaller.php │ │ │ │ │ │ │ │ │ ├── ImageCMSInstaller.php │ │ │ │ │ │ │ │ │ ├── Installer.php │ │ │ │ │ │ │ │ │ ├── JoomlaInstaller.php │ │ │ │ │ │ │ │ │ ├── KirbyInstaller.php │ │ │ │ │ │ │ │ │ ├── KodiCMSInstaller.php │ │ │ │ │ │ │ │ │ ├── KohanaInstaller.php │ │ │ │ │ │ │ │ │ ├── LaravelInstaller.php │ │ │ │ │ │ │ │ │ ├── LithiumInstaller.php │ │ │ │ │ │ │ │ │ ├── MODULEWorkInstaller.php │ │ │ │ │ │ │ │ │ ├── MODXEvoInstaller.php │ │ │ │ │ │ │ │ │ ├── MagentoInstaller.php │ │ │ │ │ │ │ │ │ ├── MakoInstaller.php │ │ │ │ │ │ │ │ │ ├── MauticInstaller.php │ │ │ │ │ │ │ │ │ ├── MediaWikiInstaller.php │ │ │ │ │ │ │ │ │ ├── MicroweberInstaller.php │ │ │ │ │ │ │ │ │ ├── MoodleInstaller.php │ │ │ │ │ │ │ │ │ ├── OctoberInstaller.php │ │ │ │ │ │ │ │ │ ├── OxidInstaller.php │ │ │ │ │ │ │ │ │ ├── PPIInstaller.php │ │ │ │ │ │ │ │ │ ├── PhiftyInstaller.php │ │ │ │ │ │ │ │ │ ├── PhpBBInstaller.php │ │ │ │ │ │ │ │ │ ├── PimcoreInstaller.php │ │ │ │ │ │ │ │ │ ├── PiwikInstaller.php │ │ │ │ │ │ │ │ │ ├── PlentymarketsInstaller.php │ │ │ │ │ │ │ │ │ ├── Plugin.php │ │ │ │ │ │ │ │ │ ├── PrestashopInstaller.php │ │ │ │ │ │ │ │ │ ├── PuppetInstaller.php │ │ │ │ │ │ │ │ │ ├── RadPHPInstaller.php │ │ │ │ │ │ │ │ │ ├── ReIndexInstaller.php │ │ │ │ │ │ │ │ │ ├── RedaxoInstaller.php │ │ │ │ │ │ │ │ │ ├── RoundcubeInstaller.php │ │ │ │ │ │ │ │ │ ├── SMFInstaller.php │ │ │ │ │ │ │ │ │ ├── ShopwareInstaller.php │ │ │ │ │ │ │ │ │ ├── SilverStripeInstaller.php │ │ │ │ │ │ │ │ │ ├── Symfony1Installer.php │ │ │ │ │ │ │ │ │ ├── TYPO3CmsInstaller.php │ │ │ │ │ │ │ │ │ ├── TYPO3FlowInstaller.php │ │ │ │ │ │ │ │ │ ├── TheliaInstaller.php │ │ │ │ │ │ │ │ │ ├── TuskInstaller.php │ │ │ │ │ │ │ │ │ ├── VanillaInstaller.php │ │ │ │ │ │ │ │ │ ├── WHMCSInstaller.php │ │ │ │ │ │ │ │ │ ├── WolfCMSInstaller.php │ │ │ │ │ │ │ │ │ ├── WordPressInstaller.php │ │ │ │ │ │ │ │ │ ├── YawikInstaller.php │ │ │ │ │ │ │ │ │ ├── ZendInstaller.php │ │ │ │ │ │ │ │ │ └── ZikulaInstaller.php │ │ │ │ │ │ │ └── bootstrap.php │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── Composer │ │ │ │ │ │ │ └── Installers │ │ │ │ │ │ │ │ └── Test │ │ │ │ │ │ │ │ ├── AsgardInstallerTest.php │ │ │ │ │ │ │ │ ├── BitrixInstallerTest.php │ │ │ │ │ │ │ │ ├── CakePHPInstallerTest.php │ │ │ │ │ │ │ │ ├── CraftInstallerTest.php │ │ │ │ │ │ │ │ ├── DokuWikiInstallerTest.php │ │ │ │ │ │ │ │ ├── GravInstallerTest.php │ │ │ │ │ │ │ │ ├── InstallerTest.php │ │ │ │ │ │ │ │ ├── MediaWikiInstallerTest.php │ │ │ │ │ │ │ │ ├── OctoberInstallerTest.php │ │ │ │ │ │ │ │ ├── PimcoreInstallerTest.php │ │ │ │ │ │ │ │ ├── PiwikInstallerTest.php │ │ │ │ │ │ │ │ ├── TestCase.php │ │ │ │ │ │ │ │ └── YawikInstallerTest.php │ │ │ │ │ │ │ └── bootstrap.php │ │ │ │ │ │ └── mrclay │ │ │ │ │ │ ├── jsmin-php │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ └── minify │ │ │ │ │ │ │ └── actual │ │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ └── minify │ │ │ │ │ │ ├── .htaccess │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ │ ├── HISTORY.txt │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── MIN.txt │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── UPGRADING.txt │ │ │ │ │ │ ├── bootstrap.php │ │ │ │ │ │ ├── builder │ │ │ │ │ │ ├── .htaccess │ │ │ │ │ │ ├── _index.js │ │ │ │ │ │ ├── bm.js │ │ │ │ │ │ ├── bm2.js │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ ├── jquery-1.6.3.min.js │ │ │ │ │ │ ├── ocCheck.php │ │ │ │ │ │ ├── rewriteTest.js │ │ │ │ │ │ └── test.php │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ ├── config-test.php │ │ │ │ │ │ ├── config.php │ │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── AlternateFileLayouts.wiki.md │ │ │ │ │ │ ├── BuilderApp.wiki.md │ │ │ │ │ │ ├── CommonProblems.wiki.md │ │ │ │ │ │ ├── ComponentClasses.wiki.md │ │ │ │ │ │ ├── CookBook.wiki.md │ │ │ │ │ │ ├── CustomServer.wiki.md │ │ │ │ │ │ ├── CustomSource.wiki.md │ │ │ │ │ │ ├── Debugging.wiki.md │ │ │ │ │ │ ├── FAQ.wiki.md │ │ │ │ │ │ ├── MinApp.wiki.md │ │ │ │ │ │ ├── TestingMinify.wiki.md │ │ │ │ │ │ ├── UriRewriting.wiki.md │ │ │ │ │ │ ├── UserGuide.wiki.md │ │ │ │ │ │ └── old │ │ │ │ │ │ │ ├── History.wiki.md │ │ │ │ │ │ │ ├── HowItWorks.wiki.md │ │ │ │ │ │ │ ├── HttpCaching.wiki.md │ │ │ │ │ │ │ ├── ProjectGoals.wiki.md │ │ │ │ │ │ │ ├── Security.wiki.md │ │ │ │ │ │ │ └── VersionTwo.wiki.md │ │ │ │ │ │ ├── groupsConfig.php │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── DooDigestAuth.php │ │ │ │ │ │ ├── HTTP │ │ │ │ │ │ │ ├── ConditionalGet.php │ │ │ │ │ │ │ └── Encoder.php │ │ │ │ │ │ ├── Minify.php │ │ │ │ │ │ ├── Minify │ │ │ │ │ │ │ ├── Build.php │ │ │ │ │ │ │ ├── CSS.php │ │ │ │ │ │ │ ├── CSS │ │ │ │ │ │ │ │ ├── Compressor.php │ │ │ │ │ │ │ │ └── UriRewriter.php │ │ │ │ │ │ │ ├── CSSmin.php │ │ │ │ │ │ │ ├── Cache │ │ │ │ │ │ │ │ ├── APC.php │ │ │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ │ │ ├── Memcache.php │ │ │ │ │ │ │ │ ├── Null.php │ │ │ │ │ │ │ │ ├── WinCache.php │ │ │ │ │ │ │ │ ├── XCache.php │ │ │ │ │ │ │ │ └── ZendPlatform.php │ │ │ │ │ │ │ ├── CacheInterface.php │ │ │ │ │ │ │ ├── ClosureCompiler.php │ │ │ │ │ │ │ ├── CommentPreserver.php │ │ │ │ │ │ │ ├── Controller │ │ │ │ │ │ │ │ ├── Base.php │ │ │ │ │ │ │ │ ├── Files.php │ │ │ │ │ │ │ │ ├── Groups.php │ │ │ │ │ │ │ │ ├── MinApp.php │ │ │ │ │ │ │ │ └── Page.php │ │ │ │ │ │ │ ├── ControllerInterface.php │ │ │ │ │ │ │ ├── DebugDetector.php │ │ │ │ │ │ │ ├── Env.php │ │ │ │ │ │ │ ├── HTML.php │ │ │ │ │ │ │ ├── HTML │ │ │ │ │ │ │ │ └── Helper.php │ │ │ │ │ │ │ ├── ImportProcessor.php │ │ │ │ │ │ │ ├── JS │ │ │ │ │ │ │ │ └── ClosureCompiler.php │ │ │ │ │ │ │ ├── LessCssSource.php │ │ │ │ │ │ │ ├── Lines.php │ │ │ │ │ │ │ ├── Loader.php │ │ │ │ │ │ │ ├── Logger.php │ │ │ │ │ │ │ ├── Packer.php │ │ │ │ │ │ │ ├── ServeConfiguration.php │ │ │ │ │ │ │ ├── Source.php │ │ │ │ │ │ │ ├── Source │ │ │ │ │ │ │ │ ├── Factory.php │ │ │ │ │ │ │ │ └── FactoryException.php │ │ │ │ │ │ │ ├── SourceInterface.php │ │ │ │ │ │ │ ├── SourceSet.php │ │ │ │ │ │ │ └── YUICompressor.php │ │ │ │ │ │ └── MrClay │ │ │ │ │ │ │ ├── Cli.php │ │ │ │ │ │ │ └── Cli │ │ │ │ │ │ │ └── Arg.php │ │ │ │ │ │ ├── min │ │ │ │ │ │ ├── .htaccess │ │ │ │ │ │ ├── builder │ │ │ │ │ │ │ ├── .htaccess │ │ │ │ │ │ │ ├── _index.js │ │ │ │ │ │ │ ├── bm.js │ │ │ │ │ │ │ ├── bm2.js │ │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ │ ├── jquery-1.6.3.min.js │ │ │ │ │ │ │ ├── ocCheck.php │ │ │ │ │ │ │ ├── rewriteTest.js │ │ │ │ │ │ │ └── test.php │ │ │ │ │ │ ├── config-test.php │ │ │ │ │ │ ├── config.php │ │ │ │ │ │ ├── groupsConfig.php │ │ │ │ │ │ ├── index.php │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── CSSmin.php │ │ │ │ │ │ │ ├── DooDigestAuth.php │ │ │ │ │ │ │ ├── FirePHP.php │ │ │ │ │ │ │ ├── HTTP │ │ │ │ │ │ │ │ ├── ConditionalGet.php │ │ │ │ │ │ │ │ └── Encoder.php │ │ │ │ │ │ │ ├── JSMin.php │ │ │ │ │ │ │ ├── JSMinPlus.php │ │ │ │ │ │ │ ├── Minify.php │ │ │ │ │ │ │ ├── Minify │ │ │ │ │ │ │ │ ├── Build.php │ │ │ │ │ │ │ │ ├── CSS.php │ │ │ │ │ │ │ │ ├── CSS │ │ │ │ │ │ │ │ │ ├── Compressor.php │ │ │ │ │ │ │ │ │ └── UriRewriter.php │ │ │ │ │ │ │ │ ├── CSSmin.php │ │ │ │ │ │ │ │ ├── Cache │ │ │ │ │ │ │ │ │ ├── APC.php │ │ │ │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ │ │ │ ├── Memcache.php │ │ │ │ │ │ │ │ │ ├── WinCache.php │ │ │ │ │ │ │ │ │ ├── XCache.php │ │ │ │ │ │ │ │ │ └── ZendPlatform.php │ │ │ │ │ │ │ │ ├── ClosureCompiler.php │ │ │ │ │ │ │ │ ├── CommentPreserver.php │ │ │ │ │ │ │ │ ├── Controller │ │ │ │ │ │ │ │ │ ├── Base.php │ │ │ │ │ │ │ │ │ ├── Files.php │ │ │ │ │ │ │ │ │ ├── Groups.php │ │ │ │ │ │ │ │ │ ├── MinApp.php │ │ │ │ │ │ │ │ │ ├── Page.php │ │ │ │ │ │ │ │ │ └── Version1.php │ │ │ │ │ │ │ │ ├── DebugDetector.php │ │ │ │ │ │ │ │ ├── HTML.php │ │ │ │ │ │ │ │ ├── HTML │ │ │ │ │ │ │ │ │ └── Helper.php │ │ │ │ │ │ │ │ ├── ImportProcessor.php │ │ │ │ │ │ │ │ ├── JS │ │ │ │ │ │ │ │ │ └── ClosureCompiler.php │ │ │ │ │ │ │ │ ├── Lines.php │ │ │ │ │ │ │ │ ├── Loader.php │ │ │ │ │ │ │ │ ├── Logger.php │ │ │ │ │ │ │ │ ├── Packer.php │ │ │ │ │ │ │ │ ├── Source.php │ │ │ │ │ │ │ │ ├── YUI │ │ │ │ │ │ │ │ │ ├── CssCompressor.java │ │ │ │ │ │ │ │ │ └── CssCompressor.php │ │ │ │ │ │ │ │ └── YUICompressor.php │ │ │ │ │ │ │ └── MrClay │ │ │ │ │ │ │ │ ├── Cli.php │ │ │ │ │ │ │ │ └── Cli │ │ │ │ │ │ │ │ └── Arg.php │ │ │ │ │ │ ├── quick-test.css │ │ │ │ │ │ ├── quick-test.js │ │ │ │ │ │ ├── server-info.php │ │ │ │ │ │ └── utils.php │ │ │ │ │ │ ├── quick-test.css │ │ │ │ │ │ ├── quick-test.js │ │ │ │ │ │ ├── quick-test.less │ │ │ │ │ │ ├── quick-testinc.less │ │ │ │ │ │ ├── server-info.php │ │ │ │ │ │ └── utils.php │ │ │ │ ├── neo │ │ │ │ │ ├── NeoPlugin.php │ │ │ │ │ ├── config.php │ │ │ │ │ ├── controllers │ │ │ │ │ │ └── NeoController.php │ │ │ │ │ ├── elementtypes │ │ │ │ │ │ └── Neo_BlockElementType.php │ │ │ │ │ ├── enums │ │ │ │ │ │ └── Neo_ElementType.php │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ └── NeoFieldType.php │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── m160428_202308_Neo_UpdateBlockLevels.php │ │ │ │ │ │ ├── m160515_005002_Neo_UpdateBlockStructure.php │ │ │ │ │ │ ├── m160605_191540_Neo_UpdateBlockStructureLocales.php │ │ │ │ │ │ └── m161029_230849_Neo_AddMaxChildBlocksSetting.php │ │ │ │ │ ├── models │ │ │ │ │ │ ├── Neo_BlockModel.php │ │ │ │ │ │ ├── Neo_BlockTypeModel.php │ │ │ │ │ │ ├── Neo_CriteriaModel.php │ │ │ │ │ │ ├── Neo_GroupModel.php │ │ │ │ │ │ └── Neo_SettingsModel.php │ │ │ │ │ ├── records │ │ │ │ │ │ ├── Neo_BlockRecord.php │ │ │ │ │ │ ├── Neo_BlockStructureRecord.php │ │ │ │ │ │ ├── Neo_BlockTypeRecord.php │ │ │ │ │ │ └── Neo_GroupRecord.php │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── converter.js │ │ │ │ │ │ ├── converter.js.map │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── main.js.map │ │ │ │ │ │ ├── polyfill.js │ │ │ │ │ │ └── polyfill.js.map │ │ │ │ │ ├── services │ │ │ │ │ │ ├── NeoService.php │ │ │ │ │ │ ├── Neo_ReasonsService.php │ │ │ │ │ │ └── Neo_RelabelService.php │ │ │ │ │ ├── tasks │ │ │ │ │ │ └── Neo_GetSearchKeywordsTask.php │ │ │ │ │ ├── templates │ │ │ │ │ │ └── _fieldtype │ │ │ │ │ │ │ ├── input.twig │ │ │ │ │ │ │ └── settings.twig │ │ │ │ │ ├── translations │ │ │ │ │ │ └── de.php │ │ │ │ │ ├── twigextensions │ │ │ │ │ │ └── NeoTwigExtension.php │ │ │ │ │ └── variables │ │ │ │ │ │ └── NeoVariable.php │ │ │ │ ├── placid │ │ │ │ │ ├── PlacidPlugin.php │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── PlacidController.php │ │ │ │ │ │ ├── Placid_RequestsController.php │ │ │ │ │ │ └── Placid_TokenController.php │ │ │ │ │ ├── events │ │ │ │ │ │ ├── PlacidAfterRequestEvent.php │ │ │ │ │ │ └── PlacidBeforeRequestEvent.php │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── m140806_211847_placid_CreateTokensTable.php │ │ │ │ │ │ ├── m140806_212644_placid_AddForeignKeyToRequestsTable.php │ │ │ │ │ │ ├── m140906_081222_placid_AddCacheIdToRequests.php │ │ │ │ │ │ ├── m150529_104654_placid_AddOAuthTable.php │ │ │ │ │ │ ├── m150530_153009_placid_AddHeadersColumn.php │ │ │ │ │ │ ├── m150831_182759_placid_AddCacheToRequest.php │ │ │ │ │ │ └── m160428_093518_placid_AddSettingToAuthTokens.php │ │ │ │ │ ├── models │ │ │ │ │ │ ├── Placid_OAuthModel.php │ │ │ │ │ │ ├── Placid_RequestsModel.php │ │ │ │ │ │ ├── Placid_ResponseModel.php │ │ │ │ │ │ └── Placid_TokenModel.php │ │ │ │ │ ├── records │ │ │ │ │ │ ├── Placid_OAuthRecord.php │ │ │ │ │ │ ├── Placid_RequestsRecord.php │ │ │ │ │ │ └── Placid_TokenRecord.php │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── icon-mask.svg │ │ │ │ │ │ └── icon.svg │ │ │ │ │ ├── services │ │ │ │ │ │ ├── PlacidService.php │ │ │ │ │ │ ├── Placid_CacheService.php │ │ │ │ │ │ ├── Placid_OAuthService.php │ │ │ │ │ │ ├── Placid_RequestsService.php │ │ │ │ │ │ └── Placid_TokenService.php │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _layout.html │ │ │ │ │ │ ├── _widgets │ │ │ │ │ │ │ └── request │ │ │ │ │ │ │ │ ├── body.html │ │ │ │ │ │ │ │ └── settings.html │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── edit.twig │ │ │ │ │ │ │ └── index.twig │ │ │ │ │ │ ├── oauth │ │ │ │ │ │ │ ├── index.twig │ │ │ │ │ │ │ └── providers-table.twig │ │ │ │ │ │ ├── requests │ │ │ │ │ │ │ ├── _fields.twig │ │ │ │ │ │ │ ├── edit.twig │ │ │ │ │ │ │ └── index.twig │ │ │ │ │ │ └── settings.html │ │ │ │ │ ├── variables │ │ │ │ │ │ ├── PlacidVariable.php │ │ │ │ │ │ └── Placid_ResponseVariable.php │ │ │ │ │ └── widgets │ │ │ │ │ │ └── Placid_RequestWidget.php │ │ │ │ ├── preparsefield │ │ │ │ │ ├── PreparseFieldPlugin.php │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ └── PreparseField_PreparseFieldType.php │ │ │ │ │ ├── resources │ │ │ │ │ │ └── icon.svg │ │ │ │ │ ├── services │ │ │ │ │ │ └── PreparseFieldService.php │ │ │ │ │ └── templates │ │ │ │ │ │ ├── field.html │ │ │ │ │ │ └── settings.html │ │ │ │ ├── readme.txt │ │ │ │ ├── redactorremoveformat │ │ │ │ │ ├── RedactorRemoveformatPlugin.php │ │ │ │ │ └── resources │ │ │ │ │ │ ├── icon-mask.svg │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ └── removeformat.js │ │ │ │ ├── retour │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── RetourPlugin.php │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── config.php │ │ │ │ │ ├── controllers │ │ │ │ │ │ └── RetourController.php │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ └── RetourFieldType.php │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── m160426_020311_retour_FixIndexes.php │ │ │ │ │ │ ├── m160427_000000_retour_addHandledStats.php │ │ │ │ │ │ ├── m160514_000000_retour_convertToElementId.php │ │ │ │ │ │ └── m160704_000000_retour_addReferrerStats.php │ │ │ │ │ ├── models │ │ │ │ │ │ ├── Retour_RedirectsFieldModel.php │ │ │ │ │ │ ├── Retour_RedirectsModel.php │ │ │ │ │ │ └── Retour_StatsModel.php │ │ │ │ │ ├── records │ │ │ │ │ │ ├── Retour_RedirectsRecord.php │ │ │ │ │ │ ├── Retour_StaticRedirectsRecord.php │ │ │ │ │ │ └── Retour_StatsRecord.php │ │ │ │ │ ├── releases.json │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── cancel.png │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── Retour.css │ │ │ │ │ │ │ ├── RetourTables.css │ │ │ │ │ │ │ ├── datatables.min.css │ │ │ │ │ │ │ ├── fields │ │ │ │ │ │ │ │ └── RetourFieldType.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ │ │ │ ├── sort_both.png │ │ │ │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ │ └── RetourWidget.css │ │ │ │ │ │ ├── icon-mask.svg │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── Retour.js │ │ │ │ │ │ │ ├── datatables.min.js │ │ │ │ │ │ │ ├── fields │ │ │ │ │ │ │ │ └── RetourFieldType.js │ │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ │ └── RetourWidget.js │ │ │ │ │ │ └── screenshots │ │ │ │ │ │ │ ├── retour01.png │ │ │ │ │ │ │ ├── retour02.png │ │ │ │ │ │ │ └── retour03.png │ │ │ │ │ ├── services │ │ │ │ │ │ └── RetourService.php │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _edit.twig │ │ │ │ │ │ ├── fields │ │ │ │ │ │ │ ├── RetourFieldType.twig │ │ │ │ │ │ │ └── RetourFieldType_Settings.twig │ │ │ │ │ │ ├── index.twig │ │ │ │ │ │ ├── redirects.twig │ │ │ │ │ │ ├── settings.twig │ │ │ │ │ │ ├── statistics.twig │ │ │ │ │ │ ├── welcome.twig │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ ├── RetourWidget_Body.twig │ │ │ │ │ │ │ └── RetourWidget_Settings.twig │ │ │ │ │ ├── translations │ │ │ │ │ │ └── en.php │ │ │ │ │ ├── variables │ │ │ │ │ │ └── RetourVariable.php │ │ │ │ │ └── widgets │ │ │ │ │ │ └── RetourWidget.php │ │ │ │ ├── seomatic │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── DOCS.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── SeomaticPlugin.php │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── composer.lock │ │ │ │ │ ├── config.php │ │ │ │ │ ├── controllers │ │ │ │ │ │ └── SeomaticController.php │ │ │ │ │ ├── elementtypes │ │ │ │ │ │ └── Seomatic_MetaElementType.php │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ └── Seomatic_MetaFieldType.php │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── m151225_000000_seomatic_addHumansField.php │ │ │ │ │ │ ├── m151226_000000_seomatic_addTwitterFacebookFields.php │ │ │ │ │ │ ├── m160101_000000_seomatic_addRobotsFields.php │ │ │ │ │ │ ├── m160111_000000_seomatic_addTitleFields.php │ │ │ │ │ │ ├── m160122_000000_seomatic_addTypeFields.php │ │ │ │ │ │ ├── m160123_000000_seomatic_addOpeningHours.php │ │ │ │ │ │ ├── m160202_000000_seomatic_addSocialHandles.php │ │ │ │ │ │ ├── m160204_000000_seomatic_addGoogleAnalytics.php │ │ │ │ │ │ ├── m160205_000000_seomatic_addResturantMenu.php │ │ │ │ │ │ ├── m160206_000000_seomatic_addGoogleAnalyticsPlugins.php │ │ │ │ │ │ ├── m160206_000000_seomatic_addGoogleAnalyticsSendPageView.php │ │ │ │ │ │ ├── m160209_000000_seomatic_alterDescriptionsColumns.php │ │ │ │ │ │ ├── m160209_000001_seomatic_addRobotsTxt.php │ │ │ │ │ │ ├── m160227_000000_seomatic_addFacebookAppId.php │ │ │ │ │ │ ├── m160416_000000_seomatic_addContactPoints.php │ │ │ │ │ │ ├── m160509_000000_seomatic_addSiteLinksBing.php │ │ │ │ │ │ ├── m160707_000000_seomatic_addGoogleTagManager.php │ │ │ │ │ │ ├── m160715_000000_seomatic_addSeoImageTransforms.php │ │ │ │ │ │ ├── m160723_000000_seomatic_addSeoMainEntityOfPage.php │ │ │ │ │ │ ├── m160724_000000_seomatic_addSeoMainEntityCategory.php │ │ │ │ │ │ ├── m160811_000000_seomatic_addVimeo.php │ │ │ │ │ │ ├── m160904_000000_seomatic_addTwitterFacebookImages.php │ │ │ │ │ │ ├── m161220_000000_seomatic_addPriceRange.php │ │ │ │ │ │ ├── m170212_000000_seomatic_addGoogleAnalyticsAnonymizeIp.php │ │ │ │ │ │ └── m170212_000000_seomatic_addWikipedia.php │ │ │ │ │ ├── models │ │ │ │ │ │ ├── Seomatic_CreatorModel.php │ │ │ │ │ │ ├── Seomatic_IdentityModel.php │ │ │ │ │ │ ├── Seomatic_MetaFieldModel.php │ │ │ │ │ │ ├── Seomatic_MetaModel.php │ │ │ │ │ │ ├── Seomatic_SettingsModel.php │ │ │ │ │ │ ├── Seomatic_SiteMetaModel.php │ │ │ │ │ │ └── Seomatic_SocialModel.php │ │ │ │ │ ├── records │ │ │ │ │ │ ├── Seomatic_MetaRecord.php │ │ │ │ │ │ └── Seomatic_SettingsRecord.php │ │ │ │ │ ├── releases.json │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-tokenfield.css │ │ │ │ │ │ │ ├── css-reset.css │ │ │ │ │ │ │ ├── field.css │ │ │ │ │ │ │ ├── prism.min.css │ │ │ │ │ │ │ ├── seo-metrics-style.css │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ ├── icon-mask.svg │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── humanstxt-isolated-blank.gif │ │ │ │ │ │ │ ├── missing_image.png │ │ │ │ │ │ │ ├── no_image_set.png │ │ │ │ │ │ │ ├── seo_meta.svg │ │ │ │ │ │ │ ├── seo_site.svg │ │ │ │ │ │ │ ├── seometrics_badge.png │ │ │ │ │ │ │ ├── site_creator.svg │ │ │ │ │ │ │ ├── site_identity.svg │ │ │ │ │ │ │ └── social_media.svg │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── bootstrap-tokenfield.min.js │ │ │ │ │ │ │ ├── creator.js │ │ │ │ │ │ │ ├── field.js │ │ │ │ │ │ │ ├── field_settings.js │ │ │ │ │ │ │ ├── identity.js │ │ │ │ │ │ │ ├── jquery-2.2.4.min.js │ │ │ │ │ │ │ ├── jquery-2.2.4.min.map │ │ │ │ │ │ │ ├── jquery.bpopup.min.js │ │ │ │ │ │ │ ├── main_entity_type_list.js │ │ │ │ │ │ │ ├── meta.js │ │ │ │ │ │ │ ├── metalist.js │ │ │ │ │ │ │ ├── prism.min.js │ │ │ │ │ │ │ ├── seomatic.js │ │ │ │ │ │ │ ├── site.js │ │ │ │ │ │ │ └── type_list.js │ │ │ │ │ │ └── screenshots │ │ │ │ │ │ │ ├── seomatic01.png │ │ │ │ │ │ │ ├── seomatic02.png │ │ │ │ │ │ │ ├── seomatic03.png │ │ │ │ │ │ │ ├── seomatic04.png │ │ │ │ │ │ │ ├── seomatic05.png │ │ │ │ │ │ │ ├── seomatic06.png │ │ │ │ │ │ │ ├── seomatic07.png │ │ │ │ │ │ │ └── seomatic08.png │ │ │ │ │ ├── services │ │ │ │ │ │ └── SeomaticService.php │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _error.twig │ │ │ │ │ │ ├── _facebookDisplayPreview.twig │ │ │ │ │ │ ├── _googleAnalytics.twig │ │ │ │ │ │ ├── _googleDisplayPreview.twig │ │ │ │ │ │ ├── _googleTagManager.twig │ │ │ │ │ │ ├── _humans.twig │ │ │ │ │ │ ├── _humansDefault.twig │ │ │ │ │ │ ├── _humansPreview.twig │ │ │ │ │ │ ├── _preview_display_modal.twig │ │ │ │ │ │ ├── _preview_humans_modal.twig │ │ │ │ │ │ ├── _preview_robots_modal.twig │ │ │ │ │ │ ├── _preview_tags_modal.twig │ │ │ │ │ │ ├── _robots.twig │ │ │ │ │ │ ├── _robotsDefault.twig │ │ │ │ │ │ ├── _robotsPreview.twig │ │ │ │ │ │ ├── _seo_meta.twig │ │ │ │ │ │ ├── _seo_metaPreview.twig │ │ │ │ │ │ ├── _seo_metrics.twig │ │ │ │ │ │ ├── _seo_metrics_floater.twig │ │ │ │ │ │ ├── _seomatic_tabs.twig │ │ │ │ │ │ ├── _twitterCardDisplayPreview.twig │ │ │ │ │ │ ├── creator │ │ │ │ │ │ │ └── _edit.twig │ │ │ │ │ │ ├── field.twig │ │ │ │ │ │ ├── field_settings.twig │ │ │ │ │ │ ├── identity │ │ │ │ │ │ │ └── _edit.twig │ │ │ │ │ │ ├── index.twig │ │ │ │ │ │ ├── json-ld │ │ │ │ │ │ │ ├── _json-ld.twig │ │ │ │ │ │ │ └── _json-ld_core.twig │ │ │ │ │ │ ├── meta │ │ │ │ │ │ │ ├── _edit.twig │ │ │ │ │ │ │ ├── _main.twig │ │ │ │ │ │ │ ├── _sidebar.twig │ │ │ │ │ │ │ └── index.twig │ │ │ │ │ │ ├── seometrics.twig │ │ │ │ │ │ ├── settings.twig │ │ │ │ │ │ ├── site │ │ │ │ │ │ │ └── _edit.twig │ │ │ │ │ │ ├── social │ │ │ │ │ │ │ └── _edit.twig │ │ │ │ │ │ └── welcome.twig │ │ │ │ │ ├── translations │ │ │ │ │ │ ├── fr.php │ │ │ │ │ │ └── nl.php │ │ │ │ │ ├── twigextensions │ │ │ │ │ │ └── SeomaticTwigExtension.php │ │ │ │ │ ├── variables │ │ │ │ │ │ └── SeomaticVariable.php │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── autoload.php │ │ │ │ │ │ ├── composer │ │ │ │ │ │ ├── ClassLoader.php │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── autoload_classmap.php │ │ │ │ │ │ ├── autoload_namespaces.php │ │ │ │ │ │ ├── autoload_psr4.php │ │ │ │ │ │ ├── autoload_real.php │ │ │ │ │ │ ├── autoload_static.php │ │ │ │ │ │ └── installed.json │ │ │ │ │ │ ├── crodas │ │ │ │ │ │ ├── languagedetector │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ │ ├── classify.php │ │ │ │ │ │ │ │ ├── datafile.json │ │ │ │ │ │ │ │ ├── datafile.php │ │ │ │ │ │ │ │ ├── datafile.ses │ │ │ │ │ │ │ │ ├── learn.php │ │ │ │ │ │ │ │ └── samples │ │ │ │ │ │ │ │ │ ├── albanian │ │ │ │ │ │ │ │ │ ├── arabic │ │ │ │ │ │ │ │ │ ├── catalan │ │ │ │ │ │ │ │ │ ├── danish │ │ │ │ │ │ │ │ │ ├── dutch │ │ │ │ │ │ │ │ │ ├── english │ │ │ │ │ │ │ │ │ ├── esperanto │ │ │ │ │ │ │ │ │ ├── estonian │ │ │ │ │ │ │ │ │ ├── euskara │ │ │ │ │ │ │ │ │ ├── finnish │ │ │ │ │ │ │ │ │ ├── french │ │ │ │ │ │ │ │ │ ├── german │ │ │ │ │ │ │ │ │ ├── guarani │ │ │ │ │ │ │ │ │ ├── hebrew │ │ │ │ │ │ │ │ │ ├── irish │ │ │ │ │ │ │ │ │ ├── italian │ │ │ │ │ │ │ │ │ ├── ladino │ │ │ │ │ │ │ │ │ ├── latin │ │ │ │ │ │ │ │ │ ├── norwegian │ │ │ │ │ │ │ │ │ ├── portuguese │ │ │ │ │ │ │ │ │ ├── romanian │ │ │ │ │ │ │ │ │ ├── spanish │ │ │ │ │ │ │ │ │ ├── swedish │ │ │ │ │ │ │ │ │ └── welsh │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── LanguageDetector │ │ │ │ │ │ │ │ │ ├── AbstractFormat.php │ │ │ │ │ │ │ │ │ ├── Config.php │ │ │ │ │ │ │ │ │ ├── Detect.php │ │ │ │ │ │ │ │ │ ├── Distance │ │ │ │ │ │ │ │ │ └── OutOfPlace.php │ │ │ │ │ │ │ │ │ ├── DistanceInterface.php │ │ │ │ │ │ │ │ │ ├── Format │ │ │ │ │ │ │ │ │ ├── AbstractFileFormat.php │ │ │ │ │ │ │ │ │ ├── JSON.php │ │ │ │ │ │ │ │ │ ├── PHP.php │ │ │ │ │ │ │ │ │ └── SES.php │ │ │ │ │ │ │ │ │ ├── Learn.php │ │ │ │ │ │ │ │ │ ├── NGramParser.php │ │ │ │ │ │ │ │ │ ├── Sort │ │ │ │ │ │ │ │ │ ├── PageRank.php │ │ │ │ │ │ │ │ │ ├── SortInterface.php │ │ │ │ │ │ │ │ │ └── Sum.php │ │ │ │ │ │ │ │ │ └── autoload.php │ │ │ │ │ │ │ ├── phpunit.xml │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ ├── AssertTest.php │ │ │ │ │ │ │ │ ├── assert │ │ │ │ │ │ │ │ ├── arabic │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ └── 2.txt │ │ │ │ │ │ │ │ ├── catalan │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ ├── 3.txt │ │ │ │ │ │ │ │ │ ├── 4.txt │ │ │ │ │ │ │ │ │ └── 5.txt │ │ │ │ │ │ │ │ ├── dutch │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ └── 2.txt │ │ │ │ │ │ │ │ ├── english │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ ├── 3.txt │ │ │ │ │ │ │ │ │ ├── 4.txt │ │ │ │ │ │ │ │ │ ├── 5.txt │ │ │ │ │ │ │ │ │ ├── 6.txt │ │ │ │ │ │ │ │ │ └── 7.txt │ │ │ │ │ │ │ │ ├── esperanto │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ └── 3.txt │ │ │ │ │ │ │ │ ├── euskara │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ └── 2.txt │ │ │ │ │ │ │ │ ├── finnish │ │ │ │ │ │ │ │ │ └── 1.txt │ │ │ │ │ │ │ │ ├── french │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ ├── 3.txt │ │ │ │ │ │ │ │ │ └── 4.txt │ │ │ │ │ │ │ │ ├── german │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ ├── 3.txt │ │ │ │ │ │ │ │ │ ├── 4.txt │ │ │ │ │ │ │ │ │ ├── 5.txt │ │ │ │ │ │ │ │ │ ├── 6.txt │ │ │ │ │ │ │ │ │ └── 7.txt │ │ │ │ │ │ │ │ ├── hebrew │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ └── 2.txt │ │ │ │ │ │ │ │ ├── italian │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ └── 3.txt │ │ │ │ │ │ │ │ ├── ladino │ │ │ │ │ │ │ │ │ └── 1.txt │ │ │ │ │ │ │ │ ├── latin │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ ├── 3.txt │ │ │ │ │ │ │ │ │ └── 4.txt │ │ │ │ │ │ │ │ ├── portuguese │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ ├── 3.txt │ │ │ │ │ │ │ │ │ └── 4.txt │ │ │ │ │ │ │ │ └── spanish │ │ │ │ │ │ │ │ │ ├── 1.txt │ │ │ │ │ │ │ │ │ ├── 2.txt │ │ │ │ │ │ │ │ │ └── 3.txt │ │ │ │ │ │ │ │ └── bootstrap.php │ │ │ │ │ │ └── text-rank │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── TextRank │ │ │ │ │ │ │ │ ├── Config.php │ │ │ │ │ │ │ │ ├── DefaultEvents.php │ │ │ │ │ │ │ │ ├── POS │ │ │ │ │ │ │ │ └── English │ │ │ │ │ │ │ │ │ ├── Tagger.php │ │ │ │ │ │ │ │ │ ├── generate.php │ │ │ │ │ │ │ │ │ ├── lexicon.php │ │ │ │ │ │ │ │ │ └── lexicon.txt │ │ │ │ │ │ │ │ ├── Stopword.php │ │ │ │ │ │ │ │ ├── Stopword │ │ │ │ │ │ │ │ ├── Stopword.php │ │ │ │ │ │ │ │ ├── czech-stopwords.txt │ │ │ │ │ │ │ │ ├── danish-stopwords.txt │ │ │ │ │ │ │ │ ├── dutch-stopwords.txt │ │ │ │ │ │ │ │ ├── english-stopwords.txt │ │ │ │ │ │ │ │ ├── finnish-stopwords.txt │ │ │ │ │ │ │ │ ├── french-stopwords.txt │ │ │ │ │ │ │ │ ├── generate.php │ │ │ │ │ │ │ │ ├── german-stopwords.txt │ │ │ │ │ │ │ │ ├── hungarian-stopwords.txt │ │ │ │ │ │ │ │ ├── italian-stopwords.txt │ │ │ │ │ │ │ │ ├── norwegian-stopwords.txt │ │ │ │ │ │ │ │ ├── polish-stopwords.txt │ │ │ │ │ │ │ │ ├── portuguese-stopwords.txt │ │ │ │ │ │ │ │ ├── russian-stopwords.txt │ │ │ │ │ │ │ │ ├── spanish-stopwords.txt │ │ │ │ │ │ │ │ ├── swedish-stopwords.txt │ │ │ │ │ │ │ │ └── turkish-stopwords.txt │ │ │ │ │ │ │ │ ├── Summary.php │ │ │ │ │ │ │ │ ├── SummaryPageRank.php │ │ │ │ │ │ │ │ ├── TextRank.php │ │ │ │ │ │ │ │ └── language-profile.php │ │ │ │ │ │ │ ├── phpunit.xml │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── QuickTest.php │ │ │ │ │ │ │ ├── bootstrap.php │ │ │ │ │ │ │ └── fixtures │ │ │ │ │ │ │ ├── english1.expected │ │ │ │ │ │ │ ├── english1.summary │ │ │ │ │ │ │ ├── english1.txt │ │ │ │ │ │ │ ├── italian.expected │ │ │ │ │ │ │ ├── italian.summary │ │ │ │ │ │ │ ├── italian.txt │ │ │ │ │ │ │ ├── spanish1.expected │ │ │ │ │ │ │ ├── spanish1.summary │ │ │ │ │ │ │ └── spanish1.txt │ │ │ │ │ │ ├── davechild │ │ │ │ │ │ └── textstatistics │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ │ ├── phpunit.xml.dist │ │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ └── DaveChild │ │ │ │ │ │ │ │ └── TextStatistics │ │ │ │ │ │ │ │ ├── Maths.php │ │ │ │ │ │ │ │ ├── Pluralise.php │ │ │ │ │ │ │ │ ├── Resource.php │ │ │ │ │ │ │ │ ├── Syllables.php │ │ │ │ │ │ │ │ ├── Text.php │ │ │ │ │ │ │ │ ├── TextStatistics.php │ │ │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ │ ├── DaleChallWordList.php │ │ │ │ │ │ │ │ ├── Homographs.txt │ │ │ │ │ │ │ │ └── SpacheWordList.php │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── TextStatisticsCMULexTest.php │ │ │ │ │ │ │ ├── TextStatisticsKiplingIfTest.php │ │ │ │ │ │ │ ├── TextStatisticsMaths.php │ │ │ │ │ │ │ ├── TextStatisticsMelvilleMobyDickTest.php │ │ │ │ │ │ │ ├── TextStatisticsPluralise.php │ │ │ │ │ │ │ └── TextStatisticsTest.php │ │ │ │ │ │ └── sunra │ │ │ │ │ │ └── php-simple-html-dom-parser │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── Src │ │ │ │ │ │ └── Sunra │ │ │ │ │ │ │ └── PhpSimple │ │ │ │ │ │ │ ├── HtmlDomParser.php │ │ │ │ │ │ │ └── simplehtmldom_1_5 │ │ │ │ │ │ │ ├── change_log.txt │ │ │ │ │ │ │ └── simple_html_dom.php │ │ │ │ │ │ └── composer.json │ │ │ │ ├── sidebarenhancer │ │ │ │ │ ├── SidebarEnhancerPlugin.php │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ ├── sidebarEnhancer_script.js │ │ │ │ │ │ └── sidebarEnhancer_style.css │ │ │ │ │ ├── services │ │ │ │ │ │ └── SidebarEnhancerService.php │ │ │ │ │ └── templates │ │ │ │ │ │ └── SidebarEnhancer_Settings.twig │ │ │ │ ├── sitemap │ │ │ │ │ ├── SitemapPlugin.php │ │ │ │ │ ├── controllers │ │ │ │ │ │ └── Sitemap_SitemapController.php │ │ │ │ │ ├── library │ │ │ │ │ │ ├── Sitemap_ChangeFrequency.php │ │ │ │ │ │ └── Sitemap_Priority.php │ │ │ │ │ ├── models │ │ │ │ │ │ ├── Sitemap_AlternateUrlModel.php │ │ │ │ │ │ ├── Sitemap_BaseModel.php │ │ │ │ │ │ └── Sitemap_UrlModel.php │ │ │ │ │ ├── services │ │ │ │ │ │ └── SitemapService.php │ │ │ │ │ └── templates │ │ │ │ │ │ └── _settings.html │ │ │ │ ├── supertable │ │ │ │ │ ├── SuperTablePlugin.php │ │ │ │ │ ├── elementtypes │ │ │ │ │ │ └── SuperTable_BlockElementType.php │ │ │ │ │ ├── fieldtypes │ │ │ │ │ │ ├── SuperTableFieldType.php │ │ │ │ │ │ └── SuperTable_LabelFieldType.php │ │ │ │ │ ├── integrations │ │ │ │ │ │ └── feedme │ │ │ │ │ │ │ └── fields │ │ │ │ │ │ │ └── SuperTableFeedMeFieldType.php │ │ │ │ │ ├── migrations │ │ │ │ │ │ └── m150901_144609_superTable_fixForContentTables.php │ │ │ │ │ ├── models │ │ │ │ │ │ ├── SuperTable_BlockModel.php │ │ │ │ │ │ ├── SuperTable_BlockTypeModel.php │ │ │ │ │ │ └── SuperTable_SettingsModel.php │ │ │ │ │ ├── records │ │ │ │ │ │ ├── SuperTable_BlockRecord.php │ │ │ │ │ │ └── SuperTable_BlockTypeRecord.php │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── SuperTableConfigurator.css │ │ │ │ │ │ │ └── SuperTableInput.css │ │ │ │ │ │ ├── icon.svg │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── MatrixConfiguratorAlt.js │ │ │ │ │ │ │ ├── MatrixInputAlt.js │ │ │ │ │ │ │ ├── SuperTableConfigurator.js │ │ │ │ │ │ │ └── SuperTableInput.js │ │ │ │ │ ├── services │ │ │ │ │ │ ├── SuperTableService.php │ │ │ │ │ │ └── SuperTable_MatrixService.php │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── _integrations │ │ │ │ │ │ │ └── feedme │ │ │ │ │ │ │ │ └── fields │ │ │ │ │ │ │ │ └── supertable.html │ │ │ │ │ │ ├── field.html │ │ │ │ │ │ ├── fields.html │ │ │ │ │ │ ├── label │ │ │ │ │ │ │ ├── input.html │ │ │ │ │ │ │ └── settings.html │ │ │ │ │ │ ├── rowInput-matrix.html │ │ │ │ │ │ ├── rowInput.html │ │ │ │ │ │ ├── settings.html │ │ │ │ │ │ └── tableInput.html │ │ │ │ │ └── variables │ │ │ │ │ │ └── SuperTableVariable.php │ │ │ │ ├── taskmanager │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .scrutinizer.yml │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── TaskManagerPlugin.php │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── config.php │ │ │ │ │ ├── consolecommands │ │ │ │ │ │ └── TaskManagerCommand.php │ │ │ │ │ ├── controllers │ │ │ │ │ │ └── TaskManagerController.php │ │ │ │ │ ├── elementactions │ │ │ │ │ │ ├── TaskManager_DeleteElementAction.php │ │ │ │ │ │ └── TaskManager_RestartElementAction.php │ │ │ │ │ ├── elementtypes │ │ │ │ │ │ └── TaskManagerElementType.php │ │ │ │ │ ├── models │ │ │ │ │ │ └── TaskManagerModel.php │ │ │ │ │ ├── phpunit.xml.dist │ │ │ │ │ ├── templates │ │ │ │ │ │ └── index.twig │ │ │ │ │ ├── tests │ │ │ │ │ │ └── TaskManager_ModelTest.php │ │ │ │ │ └── translations │ │ │ │ │ │ └── nl.php │ │ │ │ └── thearchitect │ │ │ │ │ ├── TheArchitectPlugin.php │ │ │ │ │ ├── config.php │ │ │ │ │ ├── controllers │ │ │ │ │ ├── TheArchitectController.php │ │ │ │ │ └── TheArchitect_ApiController.php │ │ │ │ │ ├── resources │ │ │ │ │ ├── css │ │ │ │ │ │ └── thearchitect.css │ │ │ │ │ ├── icon-mask.svg │ │ │ │ │ ├── icon.svg │ │ │ │ │ └── js │ │ │ │ │ │ ├── clipboard.min.js │ │ │ │ │ │ ├── diff.min.js │ │ │ │ │ │ └── thearchitect.js │ │ │ │ │ ├── services │ │ │ │ │ └── TheArchitectService.php │ │ │ │ │ ├── templates │ │ │ │ │ ├── _itemTable.twig │ │ │ │ │ ├── blueprint.twig │ │ │ │ │ ├── convert.twig │ │ │ │ │ ├── files.twig │ │ │ │ │ ├── index.twig │ │ │ │ │ ├── migrations.twig │ │ │ │ │ └── output.twig │ │ │ │ │ └── variables │ │ │ │ │ └── TheArchitectVariable.php │ │ │ ├── public │ │ │ │ ├── index.php │ │ │ │ └── uploads │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── downloads │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── readme.md │ │ │ │ │ ├── graphics │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── readme.md │ │ │ │ │ ├── images │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── readme.md │ │ │ │ │ ├── readme.md │ │ │ │ │ └── users │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── readme.md │ │ │ ├── redactor │ │ │ │ └── custom.json │ │ │ └── translations │ │ │ │ └── de.php │ │ ├── _craftCMS3 │ │ │ ├── .env.php │ │ │ ├── craft │ │ │ ├── db.php │ │ │ ├── example.env.php │ │ │ ├── general.php │ │ │ ├── imager │ │ │ │ └── imager.php │ │ │ ├── plugins │ │ │ │ └── craft3-plugins.sh │ │ │ ├── redactor │ │ │ │ └── custom.json │ │ │ ├── volumes.php │ │ │ └── web │ │ │ │ ├── index.php │ │ │ │ └── uploads │ │ │ │ ├── .gitignore │ │ │ │ ├── downloads │ │ │ │ ├── .gitignore │ │ │ │ └── readme.md │ │ │ │ ├── graphics │ │ │ │ ├── .gitignore │ │ │ │ └── readme.md │ │ │ │ ├── images │ │ │ │ ├── .gitignore │ │ │ │ └── readme.md │ │ │ │ ├── readme.md │ │ │ │ └── users │ │ │ │ ├── .gitignore │ │ │ │ └── readme.md │ │ ├── _data │ │ │ ├── _favicon.sketch │ │ │ └── global.json │ │ ├── _imports │ │ │ ├── CLEAN_INSTALL_DB.sql │ │ │ ├── _contentBuilder.css.html │ │ │ ├── _contentBuilderMatrix.json.html │ │ │ ├── _contentBuilderMatrixColors.md.html │ │ │ ├── _contentBuilderNeo.json.html │ │ │ ├── _importAll.json.html │ │ │ └── userdata.md │ │ ├── _system │ │ │ ├── .htaccess │ │ │ ├── humans.txt │ │ │ └── robots.txt │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── _______settings │ │ │ │ │ ├── _settings.borderradius.scss │ │ │ │ │ ├── _settings.boxshadows.scss │ │ │ │ │ ├── _settings.breakpoints.scss │ │ │ │ │ ├── _settings.colors.scss │ │ │ │ │ ├── _settings.easings.scss │ │ │ │ │ ├── _settings.fontfamilies.scss │ │ │ │ │ ├── _settings.fonts.scss │ │ │ │ │ ├── _settings.fontsizes.scss │ │ │ │ │ ├── _settings.grid.scss │ │ │ │ │ └── readme.md │ │ │ │ ├── ______tools │ │ │ │ │ ├── _tools.function.borderradius.scss │ │ │ │ │ ├── _tools.function.boxshadow.scss │ │ │ │ │ ├── _tools.function.calc-em.scss │ │ │ │ │ ├── _tools.function.calc-rem.scss │ │ │ │ │ ├── _tools.function.color.scss │ │ │ │ │ ├── _tools.function.ease.scss │ │ │ │ │ ├── _tools.function.fontfamily.scss │ │ │ │ │ ├── _tools.function.pow.scss │ │ │ │ │ ├── _tools.function.space.scss │ │ │ │ │ ├── _tools.mixin.center.scss │ │ │ │ │ ├── _tools.mixin.clearfix.scss │ │ │ │ │ ├── _tools.mixin.elementquerries.scss │ │ │ │ │ ├── _tools.mixin.filter.scss │ │ │ │ │ ├── _tools.mixin.fluid.scss │ │ │ │ │ ├── _tools.mixin.fontsize.scss │ │ │ │ │ ├── _tools.mixin.grid.scss │ │ │ │ │ ├── _tools.mixin.offset.scss │ │ │ │ │ ├── _tools.mixin.pull.scss │ │ │ │ │ ├── _tools.mixin.push.scss │ │ │ │ │ ├── _tools.mixin.vertical-align.scss │ │ │ │ │ ├── _tools.mixin.vertical-horizontal-align.scss │ │ │ │ │ ├── _tools.mixin.visually-hidden.scss │ │ │ │ │ └── readme.md │ │ │ │ ├── _____generic │ │ │ │ │ ├── _generic.box-sizing.scss │ │ │ │ │ ├── _generic.reset.scss │ │ │ │ │ ├── _generic.shared.scss │ │ │ │ │ └── readme.md │ │ │ │ ├── ____elements │ │ │ │ │ ├── _elements.headings.scss │ │ │ │ │ ├── _elements.images.scss │ │ │ │ │ ├── _elements.links.scss │ │ │ │ │ ├── _elements.lists.scss │ │ │ │ │ ├── _elements.page.scss │ │ │ │ │ ├── _elements.quotes.scss │ │ │ │ │ ├── _elements.tables.scss │ │ │ │ │ └── readme.md │ │ │ │ ├── ___objects │ │ │ │ │ ├── _objects.box.scss │ │ │ │ │ ├── _objects.col.scss │ │ │ │ │ ├── _objects.crop.scss │ │ │ │ │ ├── _objects.flag.scss │ │ │ │ │ ├── _objects.gridOverlay.scss │ │ │ │ │ ├── _objects.list-bare.scss │ │ │ │ │ ├── _objects.list-inline.scss │ │ │ │ │ ├── _objects.media.scss │ │ │ │ │ ├── _objects.pack.scss │ │ │ │ │ ├── _objects.ratio.scss │ │ │ │ │ ├── _objects.row.scss │ │ │ │ │ ├── _objects.section.scss │ │ │ │ │ ├── _objects.table.scss │ │ │ │ │ ├── _objects.wrapper.scss │ │ │ │ │ └── readme.md │ │ │ │ ├── __modules │ │ │ │ │ ├── _module.pagination.scss │ │ │ │ │ ├── _module.paginationSimple.scss │ │ │ │ │ └── readme.md │ │ │ │ ├── _elements.scss │ │ │ │ ├── _generic.scss │ │ │ │ ├── _modules.scss │ │ │ │ ├── _objects.scss │ │ │ │ ├── _settings.scss │ │ │ │ ├── _tools.scss │ │ │ │ ├── _trumps.scss │ │ │ │ ├── _trumps │ │ │ │ │ ├── _trumps.animation.scroll-down.scss │ │ │ │ │ ├── _trumps.editLink.scss │ │ │ │ │ ├── _trumps.lazyload.scss │ │ │ │ │ ├── _trumps.overflowtouch.scss │ │ │ │ │ ├── _trumps.waypointElement.scss │ │ │ │ │ └── readme.md │ │ │ │ ├── _vendors.scss │ │ │ │ ├── app.scss │ │ │ │ ├── readme.md │ │ │ │ └── vendors │ │ │ │ │ ├── flickity │ │ │ │ │ └── _flickity.scss │ │ │ │ │ └── readme.md │ │ │ ├── fonts │ │ │ │ └── readme.md │ │ │ ├── images │ │ │ │ ├── bitmap │ │ │ │ │ ├── _dummy │ │ │ │ │ │ ├── image_01.jpg │ │ │ │ │ │ ├── image_02.jpg │ │ │ │ │ │ ├── image_03.jpg │ │ │ │ │ │ ├── image_04.jpg │ │ │ │ │ │ ├── placeholder_10_16.png │ │ │ │ │ │ ├── placeholder_10_16_hires.jpg │ │ │ │ │ │ ├── placeholder_10_16_lowres.jpg │ │ │ │ │ │ ├── placeholder_16_10.png │ │ │ │ │ │ ├── placeholder_16_10_hires.jpg │ │ │ │ │ │ └── placeholder_16_10_lowres.jpg │ │ │ │ │ ├── favicons │ │ │ │ │ │ └── _favicon.png │ │ │ │ │ └── vendor │ │ │ │ │ │ └── photoswipe │ │ │ │ │ │ └── default-skin.png │ │ │ │ ├── readme.md │ │ │ │ └── svg │ │ │ │ │ ├── single │ │ │ │ │ ├── default-skin.svg │ │ │ │ │ ├── iconAccordion.svg │ │ │ │ │ ├── iconArrowLeft.svg │ │ │ │ │ ├── iconArrowRight.svg │ │ │ │ │ ├── iconSample.svg │ │ │ │ │ ├── inline │ │ │ │ │ │ ├── iconArrowLeft.svg.html │ │ │ │ │ │ ├── iconArrowRight.svg.html │ │ │ │ │ │ └── iconSample.svg.html │ │ │ │ │ ├── readme.md │ │ │ │ │ └── social │ │ │ │ │ │ ├── ___social-icons.sketch │ │ │ │ │ │ ├── airbnb.svg │ │ │ │ │ │ ├── amazon.svg │ │ │ │ │ │ ├── amex.svg │ │ │ │ │ │ ├── android.svg │ │ │ │ │ │ ├── angellist.svg │ │ │ │ │ │ ├── apple.svg │ │ │ │ │ │ ├── appstore.svg │ │ │ │ │ │ ├── behance.svg │ │ │ │ │ │ ├── bing.svg │ │ │ │ │ │ ├── blackberry.svg │ │ │ │ │ │ ├── blogger.svg │ │ │ │ │ │ ├── delicious.svg │ │ │ │ │ │ ├── deviantart.svg │ │ │ │ │ │ ├── digg.svg │ │ │ │ │ │ ├── dribbble.svg │ │ │ │ │ │ ├── dropbox.svg │ │ │ │ │ │ ├── ebay.svg │ │ │ │ │ │ ├── edge.svg │ │ │ │ │ │ ├── evernote.svg │ │ │ │ │ │ ├── facebook.svg │ │ │ │ │ │ ├── fb-messenger.svg │ │ │ │ │ │ ├── firefox.svg │ │ │ │ │ │ ├── flickr.svg │ │ │ │ │ │ ├── forrst.svg │ │ │ │ │ │ ├── github.svg │ │ │ │ │ │ ├── gmail.svg │ │ │ │ │ │ ├── google-drive.svg │ │ │ │ │ │ ├── google-inbox.svg │ │ │ │ │ │ ├── google-plus.svg │ │ │ │ │ │ ├── google.svg │ │ │ │ │ │ ├── html5.svg │ │ │ │ │ │ ├── icloud.svg │ │ │ │ │ │ ├── instagram.svg │ │ │ │ │ │ ├── ios.svg │ │ │ │ │ │ ├── lastfm.svg │ │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ │ ├── mastercard.svg │ │ │ │ │ │ ├── medium.svg │ │ │ │ │ │ ├── myspace.svg │ │ │ │ │ │ ├── opera.svg │ │ │ │ │ │ ├── osx.svg │ │ │ │ │ │ ├── outlook.svg │ │ │ │ │ │ ├── paypal.svg │ │ │ │ │ │ ├── pencilcase.svg │ │ │ │ │ │ ├── periscope.svg │ │ │ │ │ │ ├── picasa.svg │ │ │ │ │ │ ├── pinterest.svg │ │ │ │ │ │ ├── play.svg │ │ │ │ │ │ ├── producthunt.svg │ │ │ │ │ │ ├── reddit.svg │ │ │ │ │ │ ├── rss.svg │ │ │ │ │ │ ├── safari.svg │ │ │ │ │ │ ├── skype.svg │ │ │ │ │ │ ├── slack.svg │ │ │ │ │ │ ├── snapchat.svg │ │ │ │ │ │ ├── soundcloud.svg │ │ │ │ │ │ ├── spotify.svg │ │ │ │ │ │ ├── stackoverflow.svg │ │ │ │ │ │ ├── stumbleupon.svg │ │ │ │ │ │ ├── tumblr.svg │ │ │ │ │ │ ├── twitter.svg │ │ │ │ │ │ ├── uber.svg │ │ │ │ │ │ ├── viber.svg │ │ │ │ │ │ ├── vimeo.svg │ │ │ │ │ │ ├── vine.svg │ │ │ │ │ │ ├── visa.svg │ │ │ │ │ │ ├── wechat.svg │ │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ │ ├── windows-8.svg │ │ │ │ │ │ ├── windows.svg │ │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ │ ├── yahoo.svg │ │ │ │ │ │ ├── yelp.svg │ │ │ │ │ │ └── youtube.svg │ │ │ │ │ └── sprite │ │ │ │ │ ├── iconSample.svg │ │ │ │ │ └── readme.md │ │ │ └── js │ │ │ │ ├── _examples │ │ │ │ ├── layer.js │ │ │ │ ├── scrollMagic.js │ │ │ │ ├── slick.js │ │ │ │ └── waypoints.gsap.js │ │ │ │ ├── app.js │ │ │ │ ├── lib │ │ │ │ ├── cookies.js │ │ │ │ ├── goToUrl.js │ │ │ │ └── setListener.js │ │ │ │ ├── scripts │ │ │ │ ├── bodyclass.js │ │ │ │ ├── example.js │ │ │ │ ├── fontfaceobserver.js │ │ │ │ ├── lazyloading.js │ │ │ │ ├── pagetransition.js │ │ │ │ ├── photoswipe.js │ │ │ │ ├── preloader.js │ │ │ │ ├── smoothScroll.js │ │ │ │ └── waypoints.anime.js │ │ │ │ ├── vendor │ │ │ │ └── waypoints.js │ │ │ │ └── vue │ │ │ │ ├── _helloworld.vue │ │ │ │ └── vueExample.js │ │ ├── gulp │ │ │ ├── lib │ │ │ │ ├── errorHandler.js │ │ │ │ ├── imagesCopy.js │ │ │ │ ├── imagesMinify.js │ │ │ │ ├── jsBundle.js │ │ │ │ ├── jsBundleVar.js │ │ │ │ ├── postCssConfig.js │ │ │ │ └── postCssNano.js │ │ │ └── tasks │ │ │ │ ├── browserSync.js │ │ │ │ ├── build.js │ │ │ │ ├── clean.js │ │ │ │ ├── crititcal.js │ │ │ │ ├── default.js │ │ │ │ ├── favicon.js │ │ │ │ ├── fontsCopy.js │ │ │ │ ├── imagesCopy.js │ │ │ │ ├── imagesMinifiy.js │ │ │ │ ├── imagesSVG.js │ │ │ │ ├── imagesSVGCopy.js │ │ │ │ ├── imagesSVGSprite.js │ │ │ │ ├── init.js │ │ │ │ ├── inlineJS.js │ │ │ │ ├── jsCompile.js │ │ │ │ ├── jsMinify.js │ │ │ │ ├── jsModernizr.js │ │ │ │ ├── sass.js │ │ │ │ ├── sassMinify.js │ │ │ │ ├── systemFiles.js │ │ │ │ ├── templates.js │ │ │ │ ├── watch.js │ │ │ │ └── watchJS.js │ │ ├── scripts │ │ │ ├── module.js │ │ │ └── module │ │ │ │ ├── _main.js │ │ │ │ ├── _style.scss │ │ │ │ └── _template.html │ │ └── templates │ │ │ ├── craftcms │ │ │ ├── 404.html │ │ │ ├── _amforms │ │ │ │ └── _contact.html │ │ │ ├── _contentBuilders │ │ │ │ ├── _contentBuilderMatrix.html │ │ │ │ ├── _contentBuilderModules.html │ │ │ │ └── _contentBuilderNeo.html │ │ │ ├── _layouts │ │ │ │ └── _master.html │ │ │ ├── _partials │ │ │ │ ├── _footer │ │ │ │ │ └── _scripts.html │ │ │ │ ├── _global │ │ │ │ │ ├── _checkJS.html │ │ │ │ │ └── _photoswipe.html │ │ │ │ └── _header │ │ │ │ │ ├── _favicons.html │ │ │ │ │ ├── _meta.html │ │ │ │ │ ├── _scripts.html │ │ │ │ │ ├── _seo.html │ │ │ │ │ ├── _siteHeaderLinks--single.html │ │ │ │ │ └── _siteHeaderLinks.html │ │ │ ├── _settings │ │ │ │ ├── _dynamicFields │ │ │ │ │ ├── _bgImagePositions.html │ │ │ │ │ ├── _columns.html │ │ │ │ │ ├── _headlineTags.html │ │ │ │ │ ├── _headlineVisualSizes.html │ │ │ │ │ ├── _textAligns.html │ │ │ │ │ └── _textPostions.html │ │ │ │ └── _preparseFields │ │ │ │ │ ├── _dominantColor.html │ │ │ │ │ ├── _imagerPreviewScreenshot.html │ │ │ │ │ ├── _imagerScreenshots.html │ │ │ │ │ └── _imagerSocialImage.html │ │ │ ├── categories │ │ │ │ └── news │ │ │ │ │ └── _entry.html │ │ │ ├── channels │ │ │ │ └── news │ │ │ │ │ ├── _entry.html │ │ │ │ │ └── index.html │ │ │ ├── cheatsheet.html │ │ │ ├── index.html │ │ │ ├── modules.html │ │ │ └── structures │ │ │ │ └── pages │ │ │ │ ├── _entry.html │ │ │ │ └── _types │ │ │ │ ├── default.html │ │ │ │ └── home.html │ │ │ ├── globals │ │ │ └── twig │ │ │ │ ├── _macros │ │ │ │ ├── _macro-amNav.html │ │ │ │ ├── _macro-bgImage.html │ │ │ │ ├── _macro-image.html │ │ │ │ ├── _macro-isActive.html │ │ │ │ ├── _macro-niceTime.html │ │ │ │ ├── _macro-pagination.html │ │ │ │ ├── _macro-paginationSimple.html │ │ │ │ ├── _macro-postNav.html │ │ │ │ ├── _macro-resImage.html │ │ │ │ ├── _macro-socialLinks.html │ │ │ │ ├── _macro-srcset.html │ │ │ │ └── _macro-svgSprite.html │ │ │ │ ├── _modules │ │ │ │ ├── _accordion │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _appContent │ │ │ │ │ ├── _main.js │ │ │ │ │ └── _style.scss │ │ │ │ ├── _appFooter │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _appHeader │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _appWrapper │ │ │ │ │ ├── _main.js │ │ │ │ │ └── _style.scss │ │ │ │ ├── _button │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _buttonGroup │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _caption │ │ │ │ │ ├── _main.js │ │ │ │ │ └── _style.scss │ │ │ │ ├── _checkbox │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _contentSection │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _contentToggle │ │ │ │ │ ├── _main.js │ │ │ │ │ └── _style.scss │ │ │ │ ├── _cookiebar │ │ │ │ │ ├── _main.js │ │ │ │ │ └── _style.scss │ │ │ │ ├── _definitionList │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _embed │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _figure │ │ │ │ │ ├── _main.js │ │ │ │ │ └── _style.scss │ │ │ │ ├── _headline │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _imageCover │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _imageGallery │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _imageGrid │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _imageSingle │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _imageSlider │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _input │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _navCategories │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _pageTitle │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _quote │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _radio │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _richText │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _richTextMarginals │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _separator │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _svgSprite │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ ├── _twoColumns │ │ │ │ │ ├── _main.js │ │ │ │ │ ├── _style.scss │ │ │ │ │ └── _template.html │ │ │ │ └── readme.txt │ │ │ │ └── _templates │ │ │ │ └── _twoColsHeader │ │ │ │ ├── _main.js │ │ │ │ ├── _style.scss │ │ │ │ └── _template.html │ │ │ ├── prototyping │ │ │ ├── _layouts │ │ │ │ └── _master.html │ │ │ ├── _partials │ │ │ │ ├── _footer │ │ │ │ │ └── _scripts.html │ │ │ │ ├── _global │ │ │ │ │ ├── _checkJS.html │ │ │ │ │ └── _photoswipe.html │ │ │ │ └── _header │ │ │ │ │ ├── _favicons.html │ │ │ │ │ ├── _meta.html │ │ │ │ │ └── _scripts.html │ │ │ └── index.html │ │ │ └── wordpress │ │ │ ├── .gitignore │ │ │ ├── 404.php │ │ │ ├── README.md │ │ │ ├── _functions │ │ │ ├── acfOptions.php │ │ │ ├── addRssLink.php │ │ │ ├── cf7CustomLoader.php │ │ │ ├── html5Support.php │ │ │ ├── imagesSizes.php │ │ │ ├── removeAddjQuery.php │ │ │ ├── removeAdminBar.php │ │ │ ├── removeWPGenerator.php │ │ │ ├── thumbnailSupport.php │ │ │ ├── titleTagSupport.php │ │ │ └── translation.php │ │ │ ├── _modules │ │ │ ├── _button │ │ │ │ ├── _button.script.js │ │ │ │ ├── _button.style.scss │ │ │ │ └── _button.template.php │ │ │ ├── _checkbox │ │ │ │ ├── _checkbox.script.js │ │ │ │ ├── _checkbox.style.scss │ │ │ │ └── _checkbox.template.php │ │ │ ├── _input │ │ │ │ ├── _input.script.js │ │ │ │ ├── _input.style.scss │ │ │ │ └── _input.template.php │ │ │ ├── _radio │ │ │ │ ├── _radio.script.js │ │ │ │ ├── _radio.style.scss │ │ │ │ └── _radio.template.php │ │ │ ├── _svgSprite │ │ │ │ ├── _svgSprite.script.js │ │ │ │ ├── _svgSprite.style.scss │ │ │ │ └── _svgSprite.template.php │ │ │ └── readme.txt │ │ │ ├── _partials │ │ │ ├── _footer │ │ │ │ └── _scripts.php │ │ │ ├── _global │ │ │ │ ├── _checkJS.php │ │ │ │ └── _photoswipe.php │ │ │ └── _header │ │ │ │ ├── _favicons.php │ │ │ │ ├── _meta.php │ │ │ │ └── _scripts.php │ │ │ ├── acf-json │ │ │ └── index.php │ │ │ ├── footer.php │ │ │ ├── functions.php │ │ │ ├── header.php │ │ │ ├── index.php │ │ │ ├── page.php │ │ │ ├── page_example.php │ │ │ ├── screenshot.png │ │ │ ├── single.php │ │ │ └── style.css │ │ ├── _gitignore │ │ ├── _gulpfile.babel.js │ │ ├── _labels.json │ │ ├── _package.json │ │ ├── _readme.md │ │ ├── babelrc │ │ ├── editorconfig │ │ ├── eslintignore │ │ ├── eslintrc │ │ ├── jshintrc │ │ ├── stylelintignore │ │ └── stylelintrc └── module │ ├── config │ └── _filesModuleTpl.js │ ├── helpers │ ├── messages │ │ ├── _branding.js │ │ └── _logMessage.js │ └── prompts │ │ ├── _message.js │ │ └── _when.js │ ├── index.js │ ├── modules │ ├── _prompts.js │ ├── package │ │ ├── _base.js │ │ ├── _browserSync.js │ │ ├── _browserslist.js │ │ ├── _criticalCSS.js │ │ ├── _css.js │ │ ├── _dependencies.js │ │ ├── _devDependencies.js │ │ ├── _distPathsCraftCMS.js │ │ ├── _distPathsCraftCMS3.js │ │ ├── _distPathsPrototyping.js │ │ ├── _distPathsWordpress.js │ │ ├── _favicons.js │ │ ├── _inlineJS.js │ │ ├── _jquery.js │ │ ├── _minify.js │ │ ├── _modernizr.js │ │ ├── _project.js │ │ ├── _scripts.js │ │ ├── _srcPaths.js │ │ ├── _sytemFiles.js │ │ └── _vueJS.js │ └── prompts │ │ └── _module.js │ └── templates │ └── ___src │ └── example │ ├── _main.js │ ├── _style.scss │ └── _template.html ├── jestSetup.js └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | generators/app/templates 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | temp/ 3 | .DS_Store 4 | .idea/ -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/.jshintrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/__tests__/app.js -------------------------------------------------------------------------------- /__tests__/craftcms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/__tests__/craftcms.js -------------------------------------------------------------------------------- /__tests__/craftcms3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/__tests__/craftcms3.js -------------------------------------------------------------------------------- /__tests__/prototyping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/__tests__/prototyping.js -------------------------------------------------------------------------------- /__tests__/wordpress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/__tests__/wordpress.js -------------------------------------------------------------------------------- /generators/app/config/_filesEnvironment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/config/_filesEnvironment.js -------------------------------------------------------------------------------- /generators/app/config/_filesProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/config/_filesProject.js -------------------------------------------------------------------------------- /generators/app/config/_filesProjectTpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/config/_filesProjectTpl.js -------------------------------------------------------------------------------- /generators/app/config/_foldersProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/config/_foldersProject.js -------------------------------------------------------------------------------- /generators/app/config/_foldersProjectTpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/config/_foldersProjectTpl.js -------------------------------------------------------------------------------- /generators/app/helpers/files/_deleteFolderRecursive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/helpers/files/_deleteFolderRecursive.js -------------------------------------------------------------------------------- /generators/app/helpers/files/_downloadFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/helpers/files/_downloadFiles.js -------------------------------------------------------------------------------- /generators/app/helpers/messages/_branding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/helpers/messages/_branding.js -------------------------------------------------------------------------------- /generators/app/helpers/messages/_logMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/helpers/messages/_logMessage.js -------------------------------------------------------------------------------- /generators/app/helpers/prompts/_message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/helpers/prompts/_message.js -------------------------------------------------------------------------------- /generators/app/helpers/prompts/_when.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/helpers/prompts/_when.js -------------------------------------------------------------------------------- /generators/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/index.js -------------------------------------------------------------------------------- /generators/app/modules/_prompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/_prompts.js -------------------------------------------------------------------------------- /generators/app/modules/package/_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_base.js -------------------------------------------------------------------------------- /generators/app/modules/package/_browserSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_browserSync.js -------------------------------------------------------------------------------- /generators/app/modules/package/_browserslist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_browserslist.js -------------------------------------------------------------------------------- /generators/app/modules/package/_criticalCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_criticalCSS.js -------------------------------------------------------------------------------- /generators/app/modules/package/_css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_css.js -------------------------------------------------------------------------------- /generators/app/modules/package/_dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_dependencies.js -------------------------------------------------------------------------------- /generators/app/modules/package/_devDependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_devDependencies.js -------------------------------------------------------------------------------- /generators/app/modules/package/_distPathsCraftCMS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_distPathsCraftCMS.js -------------------------------------------------------------------------------- /generators/app/modules/package/_distPathsCraftCMS3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_distPathsCraftCMS3.js -------------------------------------------------------------------------------- /generators/app/modules/package/_distPathsPrototyping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_distPathsPrototyping.js -------------------------------------------------------------------------------- /generators/app/modules/package/_distPathsWordpress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_distPathsWordpress.js -------------------------------------------------------------------------------- /generators/app/modules/package/_favicons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_favicons.js -------------------------------------------------------------------------------- /generators/app/modules/package/_inlineJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_inlineJS.js -------------------------------------------------------------------------------- /generators/app/modules/package/_jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_jquery.js -------------------------------------------------------------------------------- /generators/app/modules/package/_minify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_minify.js -------------------------------------------------------------------------------- /generators/app/modules/package/_modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_modernizr.js -------------------------------------------------------------------------------- /generators/app/modules/package/_project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_project.js -------------------------------------------------------------------------------- /generators/app/modules/package/_scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_scripts.js -------------------------------------------------------------------------------- /generators/app/modules/package/_srcPaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_srcPaths.js -------------------------------------------------------------------------------- /generators/app/modules/package/_sytemFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_sytemFiles.js -------------------------------------------------------------------------------- /generators/app/modules/package/_vueJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/package/_vueJS.js -------------------------------------------------------------------------------- /generators/app/modules/prompts/_author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/prompts/_author.js -------------------------------------------------------------------------------- /generators/app/modules/prompts/_craftCMS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/prompts/_craftCMS.js -------------------------------------------------------------------------------- /generators/app/modules/prompts/_craftCMS3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/prompts/_craftCMS3.js -------------------------------------------------------------------------------- /generators/app/modules/prompts/_project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/prompts/_project.js -------------------------------------------------------------------------------- /generators/app/modules/prompts/_wordpress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/prompts/_wordpress.js -------------------------------------------------------------------------------- /generators/app/modules/writings/craftCMS/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/writings/craftCMS/index.js -------------------------------------------------------------------------------- /generators/app/modules/writings/craftCMS3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/writings/craftCMS3/index.js -------------------------------------------------------------------------------- /generators/app/modules/writings/package/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/writings/package/index.js -------------------------------------------------------------------------------- /generators/app/modules/writings/wordpress/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/modules/writings/wordpress/index.js -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/.craft-cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/.craft-cli.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/.env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/.env.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/db.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/example.env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/example.env.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/general.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/imager/imager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/imager/imager.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/AmFormsPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amforms/AmFormsPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amforms/LICENSE.txt -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amforms/README.md -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amforms/composer.json -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amforms/config.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/models/AmFormsModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amforms/models/AmFormsModel.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amforms/releases.json -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/resources/icon-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amforms/resources/icon-mask.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amforms/resources/icon.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/resources/js/AdminTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amforms/resources/js/AdminTable.js -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/services/AmFormsService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amforms/services/AmFormsService.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/templates/_display/templates/confirmation.twig: -------------------------------------------------------------------------------- 1 | {% include 'email.twig' %} 2 | -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/templates/_display/templates/notification.twig: -------------------------------------------------------------------------------- 1 | {% include 'email.twig' %} 2 | -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/templates/_layouts/cp.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amforms/templates/_layouts/cp.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/templates/fields/_edit.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amforms/templates/fields/_edit.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/templates/fields/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amforms/templates/fields/index.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/templates/forms/_edit.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amforms/templates/forms/_edit.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/templates/forms/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amforms/templates/forms/index.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/templates/index.twig: -------------------------------------------------------------------------------- 1 | {% redirect 'amforms/submissions' %} 2 | -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/templates/submissions/index.twig: -------------------------------------------------------------------------------- 1 | {% extends 'amforms/_layouts/cp' %} 2 | 3 | {% set title = 'Submissions'|t %} 4 | -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amforms/translations/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amforms/translations/nl.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/AmNavPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/AmNavPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/README.md -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/composer.json -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/models/AmNav_NodeModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/models/AmNav_NodeModel.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/records/AmNav_NodeRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/records/AmNav_NodeRecord.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/releases.json -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/resources/css/AmNav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/resources/css/AmNav.css -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/resources/icon-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/resources/icon-mask.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/resources/icon.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/resources/img/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/resources/img/blank.png -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/resources/js/AmNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/resources/js/AmNav.js -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/resources/js/AmNav.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/resources/js/AmNav.min.js -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/services/AmNavService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/services/AmNavService.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/templates/_build.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/templates/_build.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/templates/_build/editor.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/templates/_build/editor.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/templates/_build/parent.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/templates/_build/parent.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/templates/_edit.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/templates/_edit.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/templates/_includes/node.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/templates/_includes/node.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/templates/_index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/templates/_index.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/templates/settings.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/templates/settings.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/translations/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/translations/nl.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/amnav/variables/AmNavVariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/amnav/variables/AmNavVariable.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/cachebuster/CacheBusterPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/cachebuster/CacheBusterPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/cachebuster/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/cachebuster/config.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/cookies/CookiesPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/cookies/CookiesPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/cookies/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/cookies/LICENSE.txt -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/cookies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/cookies/README.md -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/cookies/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/cookies/releases.json -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/cookies/resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/cookies/resources/icon.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/cpcss/CpCssPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/cpcss/CpCssPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/cpcss/resources/css/blackboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/cpcss/resources/css/blackboard.css -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/cpcss/resources/css/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/cpcss/resources/css/codemirror.css -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/cpcss/resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/cpcss/resources/icon.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/cpcss/templates/_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/cpcss/templates/_settings.html -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/cpfieldlinks/CpFieldLinksPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/cpfieldlinks/CpFieldLinksPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/focalpointfield/resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/focalpointfield/resources/icon.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/fruitlinkit/FruitLinkItPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/fruitlinkit/FruitLinkItPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/imager/ImagerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/imager/ImagerPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/imager/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/imager/composer.json -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/imager/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/imager/composer.lock -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/imager/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/imager/config.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/imager/models/Imager_ImageModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/imager/models/Imager_ImageModel.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/imager/resources/icon-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/imager/resources/icon-mask.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/imager/resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/imager/resources/icon.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/imager/services/ImagerService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/imager/services/ImagerService.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/imager/tasks/Imager_MozjpegTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/imager/tasks/Imager_MozjpegTask.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/imager/tasks/Imager_OptipngTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/imager/tasks/Imager_OptipngTask.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/imager/tasks/Imager_TinyPngTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/imager/tasks/Imager_TinyPngTask.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/imager/variables/ImagerVariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/imager/variables/ImagerVariable.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/imager/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/imager/vendor/autoload.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/imager/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/imager/vendor/composer/LICENSE -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/imager/vendor/tinify/tinify/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/imager/vendor/tinify/tinify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/imager/vendor/tinify/tinify/LICENSE -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/imager/vendor/tinify/tinify/test/examples/dummy.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/instantanalytics/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/instantanalytics/.gitignore -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/instantanalytics/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/instantanalytics/CHANGELOG.md -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/instantanalytics/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/instantanalytics/LICENSE.txt -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/instantanalytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/instantanalytics/README.md -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/instantanalytics/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/instantanalytics/composer.json -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/instantanalytics/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/instantanalytics/composer.lock -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/instantanalytics/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/instantanalytics/config.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/instantanalytics/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/instantanalytics/releases.json -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/instantanalytics/resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/instantanalytics/resources/icon.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/instantanalytics/src/IAnalytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/instantanalytics/src/IAnalytics.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/instantanalytics/vendor/composer/installers/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | .idea/ 4 | -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/instantanalytics/vendor/theiconic/php-ga-measurement-protocol/mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: THE ICONIC Google Analytics Measurement Protocol library 2 | -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/kint/KintPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/kint/KintPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/kint/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/kint/composer.json -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/kint/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/kint/composer.lock -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/kint/resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/kint/resources/icon.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/kint/services/KintService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/kint/services/KintService.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/kint/templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/kint/templates/settings.html -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/kint/variables/KintVariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/kint/variables/KintVariable.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/kint/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/kint/vendor/autoload.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/kint/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/kint/vendor/composer/LICENSE -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/kint/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/kint/vendor/composer/installed.json -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/kint/vendor/raveren/kint/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /.idea 3 | -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/kint/vendor/raveren/kint/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/kint/vendor/raveren/kint/LICENCE -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/kint/vendor/raveren/kint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/kint/vendor/raveren/kint/README.md -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/kint/vendor/raveren/kint/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/kint/vendor/raveren/kint/config.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/minify/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/minify/CHANGELOG.md -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/minify/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/minify/LICENSE.txt -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/minify/MinifyPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/minify/MinifyPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/minify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/minify/README.md -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/minify/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/minify/composer.json -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/minify/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/minify/composer.lock -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/minify/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/minify/releases.json -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/minify/resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/minify/resources/icon.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/minify/services/MinifyService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/minify/services/MinifyService.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/minify/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/minify/vendor/autoload.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/minify/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/minify/vendor/composer/LICENSE -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/minify/vendor/composer/installers/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | .idea/ 4 | -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/minify/vendor/mrclay/jsmin-php/tests/Resources/minify/actual/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/minify/vendor/mrclay/minify/MIN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/minify/vendor/mrclay/minify/MIN.txt -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/minify/vendor/mrclay/minify/builder/rewriteTest.js: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/minify/vendor/mrclay/minify/min/builder/rewriteTest.js: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/NeoPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/NeoPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/config.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/controllers/NeoController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/controllers/NeoController.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/enums/Neo_ElementType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/enums/Neo_ElementType.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/fieldtypes/NeoFieldType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/fieldtypes/NeoFieldType.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/models/Neo_BlockModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/models/Neo_BlockModel.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/models/Neo_BlockTypeModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/models/Neo_BlockTypeModel.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/models/Neo_CriteriaModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/models/Neo_CriteriaModel.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/models/Neo_GroupModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/models/Neo_GroupModel.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/models/Neo_SettingsModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/models/Neo_SettingsModel.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/records/Neo_BlockRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/records/Neo_BlockRecord.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/records/Neo_GroupRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/records/Neo_GroupRecord.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/resources/converter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/resources/converter.js -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/resources/converter.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/resources/converter.js.map -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/resources/icon.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/resources/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/resources/main.js -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/resources/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/resources/main.js.map -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/resources/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/resources/polyfill.js -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/resources/polyfill.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/resources/polyfill.js.map -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/services/NeoService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/services/NeoService.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/translations/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/translations/de.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/neo/variables/NeoVariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/neo/variables/NeoVariable.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/placid/PlacidPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/placid/PlacidPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/placid/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/placid/manifest.json -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/placid/resources/icon-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/placid/resources/icon-mask.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/placid/resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/placid/resources/icon.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/placid/templates/_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/placid/templates/_layout.html -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/placid/templates/_widgets/request/body.html: -------------------------------------------------------------------------------- 1 | {{ body|raw }} -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/placid/templates/auth/edit.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/placid/templates/auth/edit.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/placid/templates/auth/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/placid/templates/auth/index.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/placid/templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/placid/templates/settings.html -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/preparsefield/resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/preparsefield/resources/icon.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/readme.txt -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/CHANGELOG.md -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/LICENSE.txt -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/README.md -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/RetourPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/RetourPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/composer.json -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/config.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/releases.json -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/resources/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/resources/cancel.png -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/resources/css/Retour.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/resources/css/Retour.css -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/resources/icon-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/resources/icon-mask.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/resources/icon.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/resources/js/Retour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/resources/js/Retour.js -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/templates/_edit.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/templates/_edit.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/templates/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/templates/index.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/templates/redirects.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/templates/redirects.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/templates/settings.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/templates/settings.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/templates/statistics.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/templates/statistics.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/templates/welcome.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/templates/welcome.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/translations/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/translations/en.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/retour/widgets/RetourWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/retour/widgets/RetourWidget.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/CHANGELOG.md -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/DOCS.md -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/LICENSE.txt -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/README.md -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/SeomaticPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/SeomaticPlugin.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/composer.json -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/composer.lock -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/config.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/releases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/releases.json -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/resources/css/field.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/resources/css/field.css -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/resources/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/resources/css/style.css -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/resources/icon-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/resources/icon-mask.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/resources/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/resources/icon.svg -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/resources/js/creator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/resources/js/creator.js -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/resources/js/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/resources/js/field.js -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/resources/js/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/resources/js/meta.js -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/resources/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/resources/js/site.js -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/templates/_error.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/templates/_error.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/templates/_humans.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/templates/_humans.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/templates/_humansPreview.twig: -------------------------------------------------------------------------------- 1 | {{ craft.seomatic.renderHumansTemplate() | raw }} -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/templates/_robots.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/templates/_robots.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/templates/_robotsPreview.twig: -------------------------------------------------------------------------------- 1 | {{ craft.seomatic.renderRobotsTemplate() | raw }} -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/templates/field.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/templates/field.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/templates/index.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/templates/index.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/templates/settings.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/templates/settings.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/templates/welcome.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/templates/welcome.twig -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/translations/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/translations/fr.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/translations/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/translations/nl.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/vendor/autoload.php -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/_craftCMS/plugins/seomatic/vendor/composer/LICENSE -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/vendor/crodas/languagedetector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /generators/app/templates/___src/_craftCMS/plugins/seomatic/vendor/crodas/languagedetector/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /generators/app/templates/___src/templates/wordpress/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/templates/wordpress/footer.php -------------------------------------------------------------------------------- /generators/app/templates/___src/templates/wordpress/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/templates/wordpress/functions.php -------------------------------------------------------------------------------- /generators/app/templates/___src/templates/wordpress/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/templates/wordpress/header.php -------------------------------------------------------------------------------- /generators/app/templates/___src/templates/wordpress/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/templates/wordpress/index.php -------------------------------------------------------------------------------- /generators/app/templates/___src/templates/wordpress/page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/templates/wordpress/page.php -------------------------------------------------------------------------------- /generators/app/templates/___src/templates/wordpress/page_example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/templates/wordpress/page_example.php -------------------------------------------------------------------------------- /generators/app/templates/___src/templates/wordpress/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/templates/wordpress/screenshot.png -------------------------------------------------------------------------------- /generators/app/templates/___src/templates/wordpress/single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/templates/wordpress/single.php -------------------------------------------------------------------------------- /generators/app/templates/___src/templates/wordpress/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/___src/templates/wordpress/style.css -------------------------------------------------------------------------------- /generators/app/templates/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/_gitignore -------------------------------------------------------------------------------- /generators/app/templates/_gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/_gulpfile.babel.js -------------------------------------------------------------------------------- /generators/app/templates/_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/_labels.json -------------------------------------------------------------------------------- /generators/app/templates/_package.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | 5 | 6 | -------------------------------------------------------------------------------- /generators/app/templates/_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/_readme.md -------------------------------------------------------------------------------- /generators/app/templates/babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"] 3 | } -------------------------------------------------------------------------------- /generators/app/templates/editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/editorconfig -------------------------------------------------------------------------------- /generators/app/templates/eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /generators/app/templates/eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/eslintrc -------------------------------------------------------------------------------- /generators/app/templates/jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/jshintrc -------------------------------------------------------------------------------- /generators/app/templates/stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/stylelintignore -------------------------------------------------------------------------------- /generators/app/templates/stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/app/templates/stylelintrc -------------------------------------------------------------------------------- /generators/module/config/_filesModuleTpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/config/_filesModuleTpl.js -------------------------------------------------------------------------------- /generators/module/helpers/messages/_branding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/helpers/messages/_branding.js -------------------------------------------------------------------------------- /generators/module/helpers/messages/_logMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/helpers/messages/_logMessage.js -------------------------------------------------------------------------------- /generators/module/helpers/prompts/_message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/helpers/prompts/_message.js -------------------------------------------------------------------------------- /generators/module/helpers/prompts/_when.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/helpers/prompts/_when.js -------------------------------------------------------------------------------- /generators/module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/index.js -------------------------------------------------------------------------------- /generators/module/modules/_prompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/_prompts.js -------------------------------------------------------------------------------- /generators/module/modules/package/_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_base.js -------------------------------------------------------------------------------- /generators/module/modules/package/_browserSync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_browserSync.js -------------------------------------------------------------------------------- /generators/module/modules/package/_browserslist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_browserslist.js -------------------------------------------------------------------------------- /generators/module/modules/package/_criticalCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_criticalCSS.js -------------------------------------------------------------------------------- /generators/module/modules/package/_css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_css.js -------------------------------------------------------------------------------- /generators/module/modules/package/_dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_dependencies.js -------------------------------------------------------------------------------- /generators/module/modules/package/_devDependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_devDependencies.js -------------------------------------------------------------------------------- /generators/module/modules/package/_distPathsCraftCMS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_distPathsCraftCMS.js -------------------------------------------------------------------------------- /generators/module/modules/package/_distPathsCraftCMS3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_distPathsCraftCMS3.js -------------------------------------------------------------------------------- /generators/module/modules/package/_distPathsPrototyping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_distPathsPrototyping.js -------------------------------------------------------------------------------- /generators/module/modules/package/_distPathsWordpress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_distPathsWordpress.js -------------------------------------------------------------------------------- /generators/module/modules/package/_favicons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_favicons.js -------------------------------------------------------------------------------- /generators/module/modules/package/_inlineJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_inlineJS.js -------------------------------------------------------------------------------- /generators/module/modules/package/_jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_jquery.js -------------------------------------------------------------------------------- /generators/module/modules/package/_minify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_minify.js -------------------------------------------------------------------------------- /generators/module/modules/package/_modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_modernizr.js -------------------------------------------------------------------------------- /generators/module/modules/package/_project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_project.js -------------------------------------------------------------------------------- /generators/module/modules/package/_scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_scripts.js -------------------------------------------------------------------------------- /generators/module/modules/package/_srcPaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_srcPaths.js -------------------------------------------------------------------------------- /generators/module/modules/package/_sytemFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_sytemFiles.js -------------------------------------------------------------------------------- /generators/module/modules/package/_vueJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/package/_vueJS.js -------------------------------------------------------------------------------- /generators/module/modules/prompts/_module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/modules/prompts/_module.js -------------------------------------------------------------------------------- /generators/module/templates/___src/example/_main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/templates/___src/example/_main.js -------------------------------------------------------------------------------- /generators/module/templates/___src/example/_style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/templates/___src/example/_style.scss -------------------------------------------------------------------------------- /generators/module/templates/___src/example/_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/generators/module/templates/___src/example/_template.html -------------------------------------------------------------------------------- /jestSetup.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable */ 2 | jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhellmann/generator-dhBoilerplate/HEAD/package.json --------------------------------------------------------------------------------