├── backend ├── public │ ├── favicon.ico │ └── robots.txt ├── resources │ ├── sass │ │ └── app.scss │ └── js │ │ └── app.js ├── vendor │ ├── bin │ │ ├── psysh │ │ ├── carbon │ │ ├── phpunit │ │ ├── php-parse │ │ ├── commonmark │ │ └── var-dump-server │ ├── hamcrest │ │ └── hamcrest-php │ │ │ ├── .gitignore │ │ │ ├── .coveralls.yml │ │ │ ├── generator │ │ │ └── parts │ │ │ │ ├── functions_footer.txt │ │ │ │ ├── functions_imports.txt │ │ │ │ ├── matchers_footer.txt │ │ │ │ ├── matchers_imports.txt │ │ │ │ ├── matchers_header.txt │ │ │ │ └── file_header.txt │ │ │ ├── tests │ │ │ ├── Hamcrest │ │ │ │ └── Core │ │ │ │ │ └── SampleSubClass.php │ │ │ └── bootstrap.php │ │ │ ├── hamcrest │ │ │ └── Hamcrest │ │ │ │ └── AssertionError.php │ │ │ └── .gush.yml │ ├── sebastian │ │ ├── version │ │ │ ├── .gitignore │ │ │ └── .gitattributes │ │ ├── type │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .gitattributes │ │ │ ├── .idea │ │ │ │ ├── misc.xml │ │ │ │ ├── vcs.xml │ │ │ │ └── modules.xml │ │ │ └── phive.xml │ │ ├── diff │ │ │ ├── tests │ │ │ │ └── fixtures │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── out │ │ │ │ │ ├── .editorconfig │ │ │ │ │ └── .gitignore │ │ │ │ │ ├── UnifiedDiffAssertTraitIntegrationTest │ │ │ │ │ ├── 1_a.txt │ │ │ │ │ ├── 1_b.txt │ │ │ │ │ ├── 2_b.txt │ │ │ │ │ └── 2_a.txt │ │ │ │ │ └── patch.txt │ │ │ └── .gitignore │ │ ├── exporter │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ └── .gitignore │ │ ├── environment │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ └── .gitignore │ │ ├── recursion-context │ │ │ └── .gitignore │ │ ├── code-unit-reverse-lookup │ │ │ ├── .gitignore │ │ │ └── ChangeLog.md │ │ ├── comparator │ │ │ └── .gitignore │ │ ├── object-reflector │ │ │ └── .gitignore │ │ ├── global-state │ │ │ └── .gitignore │ │ ├── resource-operations │ │ │ └── .gitignore │ │ └── object-enumerator │ │ │ └── .gitignore │ ├── phpunit │ │ ├── php-timer │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ └── .gitignore │ │ ├── php-token-stream │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ ├── .gitignore │ │ │ └── tests │ │ │ │ └── _fixture │ │ │ │ ├── issue19.php │ │ │ │ ├── classInNamespace.php │ │ │ │ ├── classUsesNamespacedFunction.php │ │ │ │ ├── issue30.php │ │ │ │ ├── classInScopedNamespace.php │ │ │ │ ├── source2.php │ │ │ │ ├── class_with_method_named_empty.php │ │ │ │ ├── classExtendsNamespacedClass.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ │ └── closure.php │ │ ├── php-file-iterator │ │ │ ├── .gitattributes │ │ │ └── .gitignore │ │ ├── php-text-template │ │ │ ├── .gitattributes │ │ │ └── .gitignore │ │ ├── php-code-coverage │ │ │ ├── .github │ │ │ │ ├── FUNDING.yml │ │ │ │ └── CONTRIBUTING.md │ │ │ ├── src │ │ │ │ └── Report │ │ │ │ │ └── Html │ │ │ │ │ └── Renderer │ │ │ │ │ └── Template │ │ │ │ │ ├── css │ │ │ │ │ ├── custom.css │ │ │ │ │ └── octicons.css │ │ │ │ │ └── icons │ │ │ │ │ └── file-directory.svg │ │ │ ├── tests │ │ │ │ ├── _files │ │ │ │ │ ├── Crash.php │ │ │ │ │ ├── CoveredFunction.php │ │ │ │ │ ├── source_without_ignore.php │ │ │ │ │ ├── ignored-lines-text.txt │ │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ │ └── CoverageFunctionTest.php │ │ │ │ └── bootstrap.php │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ └── phive.xml │ │ └── phpunit │ │ │ └── src │ │ │ └── Framework │ │ │ └── MockObject │ │ │ └── Generator │ │ │ ├── deprecation.tpl │ │ │ ├── wsdl_method.tpl │ │ │ ├── trait_class.tpl │ │ │ ├── mocked_class.tpl │ │ │ ├── wsdl_class.tpl │ │ │ └── mocked_static_method.tpl │ ├── facade │ │ ├── flare-client-php │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ └── src │ │ │ │ ├── Time │ │ │ │ ├── Time.php │ │ │ │ └── SystemTime.php │ │ │ │ ├── Context │ │ │ │ ├── ContextInterface.php │ │ │ │ └── ContextDetectorInterface.php │ │ │ │ ├── Contracts │ │ │ │ └── ProvidesFlareContext.php │ │ │ │ ├── Truncation │ │ │ │ └── TruncationStrategy.php │ │ │ │ └── Enums │ │ │ │ └── GroupingTypes.php │ │ ├── ignition │ │ │ ├── resources │ │ │ │ └── .gitignore │ │ │ └── src │ │ │ │ ├── Exceptions │ │ │ │ └── UnableToShareErrorException.php │ │ │ │ └── Context │ │ │ │ └── LaravelConsoleContext.php │ │ └── ignition-contracts │ │ │ ├── .styleci.yml │ │ │ ├── docs │ │ │ └── screenshot.png │ │ │ ├── CHANGELOG.md │ │ │ └── src │ │ │ ├── ProvidesSolution.php │ │ │ └── Solution.php │ ├── namshi │ │ └── jose │ │ │ ├── .gitignore │ │ │ ├── .coveralls.yml │ │ │ ├── tests │ │ │ ├── public.es256.key │ │ │ ├── bootstrap.php │ │ │ ├── public.es384.key │ │ │ ├── private.es256.key │ │ │ ├── public-ne.key │ │ │ └── public.es512.key │ │ │ └── src │ │ │ └── Namshi │ │ │ └── JOSE │ │ │ └── Signer │ │ │ ├── OpenSSL │ │ │ ├── HS256.php │ │ │ ├── HS384.php │ │ │ └── HS512.php │ │ │ └── SecLib │ │ │ └── RSA.php │ ├── psr │ │ ├── event-dispatcher │ │ │ └── .gitignore │ │ ├── container │ │ │ ├── .gitignore │ │ │ └── README.md │ │ ├── log │ │ │ └── Psr │ │ │ │ └── Log │ │ │ │ └── InvalidArgumentException.php │ │ └── simple-cache │ │ │ └── src │ │ │ └── CacheException.php │ ├── scrivo │ │ └── highlight.php │ │ │ ├── .github │ │ │ └── FUNDING.yml │ │ │ ├── test │ │ │ ├── detect │ │ │ │ ├── xml │ │ │ │ │ ├── js.txt │ │ │ │ │ └── groovy-julia.txt │ │ │ │ ├── excel │ │ │ │ │ └── default.txt │ │ │ │ ├── ruby │ │ │ │ │ ├── double-colon.txt │ │ │ │ │ └── default.txt │ │ │ │ ├── plaintext │ │ │ │ │ └── default.txt │ │ │ │ ├── dust │ │ │ │ │ └── default.txt │ │ │ │ ├── clojure-repl │ │ │ │ │ └── default.txt │ │ │ │ ├── vbscript-html │ │ │ │ │ └── default.txt │ │ │ │ ├── handlebars │ │ │ │ │ └── default.txt │ │ │ │ ├── kotlin │ │ │ │ │ └── default.txt │ │ │ │ ├── javascript │ │ │ │ │ └── short-plain.txt │ │ │ │ ├── csp │ │ │ │ │ └── default.txt │ │ │ │ ├── accesslog │ │ │ │ │ └── default.txt │ │ │ │ ├── ini │ │ │ │ │ └── default.txt │ │ │ │ ├── shell │ │ │ │ │ └── default.txt │ │ │ │ ├── lsl │ │ │ │ │ └── default.txt │ │ │ │ ├── properties │ │ │ │ │ └── default.txt │ │ │ │ ├── ceylon │ │ │ │ │ └── default.txt │ │ │ │ ├── makefile │ │ │ │ │ └── default.txt │ │ │ │ ├── go │ │ │ │ │ └── default.txt │ │ │ │ └── golo │ │ │ │ │ └── default.txt │ │ │ ├── markup │ │ │ │ ├── actionscript │ │ │ │ │ ├── method-call.txt │ │ │ │ │ └── method-call.expect.txt │ │ │ │ ├── clojure-repl │ │ │ │ │ ├── prompt.txt │ │ │ │ │ └── prompt.expect.txt │ │ │ │ ├── handlebars │ │ │ │ │ ├── partial-call.txt │ │ │ │ │ ├── simple-expression.txt │ │ │ │ │ ├── triple-mustache.txt │ │ │ │ │ ├── block.txt │ │ │ │ │ ├── sub-expressions.txt │ │ │ │ │ ├── raw-block.txt │ │ │ │ │ ├── block-with-param.txt │ │ │ │ │ ├── comments.txt │ │ │ │ │ ├── simple-expression.expect.txt │ │ │ │ │ ├── triple-mustache.expect.txt │ │ │ │ │ ├── partial-call.expect.txt │ │ │ │ │ ├── sub-expressions.expect.txt │ │ │ │ │ ├── block-expression-variants-in-param.txt │ │ │ │ │ ├── built-ins.txt │ │ │ │ │ ├── block-expression-variants-as-path-segment.txt │ │ │ │ │ ├── block.expect.txt │ │ │ │ │ └── block-with-param.expect.txt │ │ │ │ ├── javascript │ │ │ │ │ ├── method-call.txt │ │ │ │ │ ├── shebang.txt │ │ │ │ │ ├── template-strings.txt │ │ │ │ │ ├── method-call.expect.txt │ │ │ │ │ ├── default-parameters.txt │ │ │ │ │ ├── object-attr.txt │ │ │ │ │ ├── arrow-function.txt │ │ │ │ │ ├── shebang.expect.txt │ │ │ │ │ ├── jsx-fragment.txt │ │ │ │ │ ├── template-strings.expect.txt │ │ │ │ │ ├── class.txt │ │ │ │ │ └── default-parameters.expect.txt │ │ │ │ ├── scheme │ │ │ │ │ ├── lambda.txt │ │ │ │ │ ├── quoted.txt │ │ │ │ │ ├── quoted.expect.txt │ │ │ │ │ └── lambda.expect.txt │ │ │ │ ├── shell │ │ │ │ │ ├── plain-prompt.txt │ │ │ │ │ └── plain-prompt.expect.txt │ │ │ │ ├── clojure │ │ │ │ │ ├── symbols-numbers.txt │ │ │ │ │ └── symbols-numbers.expect.txt │ │ │ │ ├── sql │ │ │ │ │ ├── keywords.txt │ │ │ │ │ ├── numeric-types.txt │ │ │ │ │ ├── set-operator.txt │ │ │ │ │ ├── string-types.txt │ │ │ │ │ ├── values-statement.txt │ │ │ │ │ ├── tablesample.txt │ │ │ │ │ ├── keywords.expect.txt │ │ │ │ │ ├── lateral-view.txt │ │ │ │ │ └── string-types.expect.txt │ │ │ │ ├── ebnf │ │ │ │ │ ├── underscore-production.txt │ │ │ │ │ ├── underscore-production.expect.txt │ │ │ │ │ └── terminators.txt │ │ │ │ ├── excel │ │ │ │ │ ├── comments.txt │ │ │ │ │ └── comments.expect.txt │ │ │ │ ├── pony │ │ │ │ │ ├── lambda.txt │ │ │ │ │ ├── prime.txt │ │ │ │ │ ├── creator.txt │ │ │ │ │ ├── triple-quote.txt │ │ │ │ │ ├── lambda.expect.txt │ │ │ │ │ ├── triple-quote.expect.txt │ │ │ │ │ ├── prime.expect.txt │ │ │ │ │ ├── method.txt │ │ │ │ │ ├── creator.expect.txt │ │ │ │ │ ├── objects.txt │ │ │ │ │ ├── match.txt │ │ │ │ │ └── iterface-trait.txt │ │ │ │ ├── haskell │ │ │ │ │ ├── nested-comments.txt │ │ │ │ │ ├── infix.txt │ │ │ │ │ ├── nested-comments.expect.txt │ │ │ │ │ └── infix.expect.txt │ │ │ │ ├── python │ │ │ │ │ ├── function-header.txt │ │ │ │ │ ├── matrix-multiplication.txt │ │ │ │ │ ├── function-header-comments.txt │ │ │ │ │ ├── f-strings.txt │ │ │ │ │ └── function-header.expect.txt │ │ │ │ ├── rust │ │ │ │ │ ├── variables.txt │ │ │ │ │ ├── comments.txt │ │ │ │ │ ├── types.txt │ │ │ │ │ ├── traits.txt │ │ │ │ │ ├── comments.expect.txt │ │ │ │ │ ├── strings.txt │ │ │ │ │ ├── variables.expect.txt │ │ │ │ │ └── numbers.txt │ │ │ │ ├── twig │ │ │ │ │ ├── filter_with_underscore.txt │ │ │ │ │ ├── filter_with_underscore.expect.txt │ │ │ │ │ └── template_tags.txt │ │ │ │ ├── css │ │ │ │ │ ├── pseudo-selector.txt │ │ │ │ │ └── pseudo-selector.expect.txt │ │ │ │ ├── ini │ │ │ │ │ ├── variable.txt │ │ │ │ │ ├── tables.txt │ │ │ │ │ ├── comments.txt │ │ │ │ │ ├── variable.expect.txt │ │ │ │ │ ├── array.txt │ │ │ │ │ └── tables.expect.txt │ │ │ │ ├── tap │ │ │ │ │ ├── without-numbers.txt │ │ │ │ │ ├── basic.txt │ │ │ │ │ └── without-numbers.expect.txt │ │ │ │ ├── cpp │ │ │ │ │ ├── primitive-types.txt │ │ │ │ │ ├── pointers-returns.txt │ │ │ │ │ ├── expression-keywords.txt │ │ │ │ │ ├── function-params.txt │ │ │ │ │ ├── function-title.txt │ │ │ │ │ └── primitive-types.expect.txt │ │ │ │ ├── fsharp │ │ │ │ │ ├── bang-keywords.txt │ │ │ │ │ └── bang-keywords.expect.txt │ │ │ │ ├── ruby │ │ │ │ │ ├── gemfile.txt │ │ │ │ │ ├── regexes.txt │ │ │ │ │ ├── gemfile.expect.txt │ │ │ │ │ └── heredoc.txt │ │ │ │ ├── subunit │ │ │ │ │ ├── subunit-errorline.txt │ │ │ │ │ ├── subunit-skipline.txt │ │ │ │ │ ├── subunit-xfailline.txt │ │ │ │ │ ├── subunit-uxsuccessline.txt │ │ │ │ │ ├── subunit-tagline.txt │ │ │ │ │ ├── subunit-timeline.txt │ │ │ │ │ ├── subunit-failureline.txt │ │ │ │ │ ├── subunit-errorline.expect.txt │ │ │ │ │ ├── subunit-progressline.txt │ │ │ │ │ ├── subunit-skipline.expect.txt │ │ │ │ │ ├── subunit-xfailline.expect.txt │ │ │ │ │ ├── subunit-uxsuccessline.expect.txt │ │ │ │ │ ├── subunit-successline.txt │ │ │ │ │ └── subunit-failureline.expect.txt │ │ │ │ ├── swift │ │ │ │ │ ├── multiline-string.txt │ │ │ │ │ ├── multiline-string.expect.txt │ │ │ │ │ └── functions.txt │ │ │ │ ├── elixir │ │ │ │ │ ├── strings.txt │ │ │ │ │ ├── function-title.txt │ │ │ │ │ └── strings.expect.txt │ │ │ │ ├── ceylon │ │ │ │ │ ├── nested-comments.txt │ │ │ │ │ └── nested-comments.expect.txt │ │ │ │ ├── dos │ │ │ │ │ ├── comments.txt │ │ │ │ │ └── comments.expect.txt │ │ │ │ ├── cs │ │ │ │ │ ├── floats.txt │ │ │ │ │ ├── dotted-namespace.txt │ │ │ │ │ ├── dotted-namespace.expect.txt │ │ │ │ │ └── string-interpolation.txt │ │ │ │ ├── crystal │ │ │ │ │ ├── toplevel-keywords.txt │ │ │ │ │ ├── defs.txt │ │ │ │ │ ├── macro.txt │ │ │ │ │ ├── regexes.txt │ │ │ │ │ └── operators.txt │ │ │ │ ├── go │ │ │ │ │ ├── numbers.txt │ │ │ │ │ ├── strings.txt │ │ │ │ │ ├── functions.txt │ │ │ │ │ └── numbers.expect.txt │ │ │ │ ├── yaml │ │ │ │ │ ├── numbers.txt │ │ │ │ │ ├── tag.txt │ │ │ │ │ └── string.txt │ │ │ │ ├── bash │ │ │ │ │ ├── escaped-quote.txt │ │ │ │ │ ├── no-numbers.txt │ │ │ │ │ ├── escaped-quote.expect.txt │ │ │ │ │ └── no-numbers.expect.txt │ │ │ │ ├── dart │ │ │ │ │ ├── string-interpolation.txt │ │ │ │ │ └── comment-markdown.txt │ │ │ │ ├── typescript │ │ │ │ │ ├── nested-templates.txt │ │ │ │ │ ├── class.txt │ │ │ │ │ ├── declares.txt │ │ │ │ │ └── functions.txt │ │ │ │ ├── aspectj │ │ │ │ │ ├── intertype-constructor.txt │ │ │ │ │ └── intertype-method.txt │ │ │ │ ├── xml │ │ │ │ │ ├── space-attributes.txt │ │ │ │ │ └── unquoted-attributes.txt │ │ │ │ ├── vim │ │ │ │ │ └── strings-comments.txt │ │ │ │ ├── markdown │ │ │ │ │ ├── list.txt │ │ │ │ │ ├── code.txt │ │ │ │ │ └── code.expect.txt │ │ │ │ ├── stata │ │ │ │ │ └── built_ins.txt │ │ │ │ ├── delphi │ │ │ │ │ └── compiler-directive.txt │ │ │ │ ├── verilog │ │ │ │ │ └── numbers.txt │ │ │ │ ├── less │ │ │ │ │ └── selectors.txt │ │ │ │ ├── lisp │ │ │ │ │ ├── mec.txt │ │ │ │ │ └── mec.expect.txt │ │ │ │ ├── coffeescript │ │ │ │ │ └── division.txt │ │ │ │ ├── ldif │ │ │ │ │ └── ldapmodify.txt │ │ │ │ ├── scala │ │ │ │ │ └── case-classes.txt │ │ │ │ ├── kotlin │ │ │ │ │ ├── string.txt │ │ │ │ │ └── class.txt │ │ │ │ ├── x86asm │ │ │ │ │ └── labels-directives.txt │ │ │ │ ├── http │ │ │ │ │ └── default.txt │ │ │ │ ├── protobuf │ │ │ │ │ └── message-message.txt │ │ │ │ ├── cos │ │ │ │ │ ├── embedded.txt │ │ │ │ │ └── basic.txt │ │ │ │ ├── php │ │ │ │ │ └── heredoc.txt │ │ │ │ ├── gauss │ │ │ │ │ ├── function_refs.txt │ │ │ │ │ ├── keywords.txt │ │ │ │ │ └── function_defs.txt │ │ │ │ ├── properties │ │ │ │ │ └── syntax.txt │ │ │ │ ├── objectivec │ │ │ │ │ └── string-literals.txt │ │ │ │ ├── java │ │ │ │ │ ├── gh1031.txt │ │ │ │ │ └── titles.txt │ │ │ │ ├── lasso │ │ │ │ │ └── delimiters.txt │ │ │ │ ├── fortran │ │ │ │ │ └── numbers.txt │ │ │ │ ├── golo │ │ │ │ │ └── default.txt │ │ │ │ └── xquery │ │ │ │ │ └── function_body.txt │ │ │ └── special │ │ │ │ ├── tabreplace.txt │ │ │ │ ├── languagealias.txt │ │ │ │ ├── sublanguages.txt │ │ │ │ ├── line-endings.crlf.txt │ │ │ │ ├── languagealias.expect.txt │ │ │ │ └── tabreplace.expect.txt │ │ │ ├── Highlight │ │ │ └── languages │ │ │ │ ├── plaintext.json │ │ │ │ └── vbscript-html.json │ │ │ ├── .gitattributes │ │ │ ├── demo │ │ │ └── .htaccess │ │ │ ├── tools │ │ │ └── .htaccess │ │ │ ├── styles │ │ │ ├── pojoaque.jpg │ │ │ ├── school-book.png │ │ │ ├── brown-papersq.png │ │ │ └── darkula.css │ │ │ ├── .gitignore │ │ │ ├── .editorconfig │ │ │ └── .travis │ │ │ └── hasGitChanges.sh │ ├── swiftmailer │ │ └── swiftmailer │ │ │ ├── tests │ │ │ ├── _samples │ │ │ │ ├── files │ │ │ │ │ ├── data.txt │ │ │ │ │ ├── textfile.zip │ │ │ │ │ └── swiftmailer.png │ │ │ │ └── smime │ │ │ │ │ └── CA.srl │ │ │ └── StreamCollector.php │ │ │ ├── .gitignore │ │ │ ├── doc │ │ │ └── index.rst │ │ │ ├── .gitattributes │ │ │ └── lib │ │ │ └── dependency_maps │ │ │ └── message_deps.php │ ├── brick │ │ └── math │ │ │ └── .github │ │ │ └── FUNDING.yml │ ├── lcobucci │ │ └── jwt │ │ │ ├── .gitignore │ │ │ ├── test │ │ │ └── functional │ │ │ │ └── ecdsa │ │ │ │ ├── public1.key │ │ │ │ ├── public2.key │ │ │ │ ├── public3.key │ │ │ │ └── private.key │ │ │ └── .travis.yml │ ├── phpdocumentor │ │ ├── reflection-common │ │ │ └── phpstan.neon │ │ └── type-resolver │ │ │ ├── phpstan.neon │ │ │ └── phive.xml │ ├── symfony │ │ ├── service-contracts │ │ │ ├── .gitignore │ │ │ └── CHANGELOG.md │ │ ├── deprecation-contracts │ │ │ ├── .gitignore │ │ │ └── CHANGELOG.md │ │ ├── translation-contracts │ │ │ ├── .gitignore │ │ │ └── CHANGELOG.md │ │ ├── event-dispatcher-contracts │ │ │ ├── .gitignore │ │ │ └── CHANGELOG.md │ │ ├── polyfill-php80 │ │ │ └── Resources │ │ │ │ └── stubs │ │ │ │ ├── ValueError.php │ │ │ │ └── Stringable.php │ │ ├── console │ │ │ └── Resources │ │ │ │ └── bin │ │ │ │ └── hiddeninput.exe │ │ ├── polyfill-iconv │ │ │ └── Resources │ │ │ │ └── charset │ │ │ │ ├── from.big5.php │ │ │ │ ├── from.cp037.php │ │ │ │ ├── from.cp1006.php │ │ │ │ ├── from.cp1026.php │ │ │ │ ├── from.cp424.php │ │ │ │ ├── from.cp437.php │ │ │ │ ├── from.cp500.php │ │ │ │ ├── from.cp737.php │ │ │ │ ├── from.cp775.php │ │ │ │ ├── from.cp850.php │ │ │ │ ├── from.cp852.php │ │ │ │ ├── from.cp855.php │ │ │ │ ├── from.cp856.php │ │ │ │ ├── from.cp857.php │ │ │ │ ├── from.cp860.php │ │ │ │ ├── from.cp861.php │ │ │ │ ├── from.cp862.php │ │ │ │ ├── from.cp863.php │ │ │ │ ├── from.cp864.php │ │ │ │ ├── from.cp865.php │ │ │ │ ├── from.cp866.php │ │ │ │ ├── from.cp869.php │ │ │ │ ├── from.cp874.php │ │ │ │ ├── from.cp875.php │ │ │ │ ├── from.cp932.php │ │ │ │ ├── from.cp936.php │ │ │ │ ├── from.cp949.php │ │ │ │ ├── from.cp950.php │ │ │ │ ├── from.koi8-r.php │ │ │ │ ├── from.koi8-u.php │ │ │ │ ├── from.iso-8859-1.php │ │ │ │ ├── from.iso-8859-10.php │ │ │ │ ├── from.iso-8859-11.php │ │ │ │ ├── from.iso-8859-13.php │ │ │ │ ├── from.iso-8859-14.php │ │ │ │ ├── from.iso-8859-15.php │ │ │ │ ├── from.iso-8859-16.php │ │ │ │ ├── from.iso-8859-2.php │ │ │ │ ├── from.iso-8859-3.php │ │ │ │ ├── from.iso-8859-4.php │ │ │ │ ├── from.iso-8859-5.php │ │ │ │ ├── from.iso-8859-6.php │ │ │ │ ├── from.iso-8859-7.php │ │ │ │ ├── from.iso-8859-8.php │ │ │ │ ├── from.iso-8859-9.php │ │ │ │ ├── from.windows-1250.php │ │ │ │ ├── from.windows-1251.php │ │ │ │ ├── from.windows-1252.php │ │ │ │ ├── from.windows-1253.php │ │ │ │ ├── from.windows-1254.php │ │ │ │ ├── from.windows-1255.php │ │ │ │ ├── from.windows-1256.php │ │ │ │ ├── from.windows-1257.php │ │ │ │ └── from.windows-1258.php │ │ └── string │ │ │ └── .gitattributes │ ├── laravel │ │ └── framework │ │ │ └── src │ │ │ └── Illuminate │ │ │ ├── Mail │ │ │ └── resources │ │ │ │ └── views │ │ │ │ ├── text │ │ │ │ ├── footer.blade.php │ │ │ │ ├── panel.blade.php │ │ │ │ ├── subcopy.blade.php │ │ │ │ ├── table.blade.php │ │ │ │ ├── button.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ └── layout.blade.php │ │ │ │ └── html │ │ │ │ ├── table.blade.php │ │ │ │ └── subcopy.blade.php │ │ │ ├── Foundation │ │ │ ├── Console │ │ │ │ └── stubs │ │ │ │ │ ├── observer.plain.stub │ │ │ │ │ ├── exception.stub │ │ │ │ │ ├── model.stub │ │ │ │ │ ├── model.pivot.stub │ │ │ │ │ └── markdown.stub │ │ │ └── Exceptions │ │ │ │ └── views │ │ │ │ ├── 404.blade.php │ │ │ │ ├── 401.blade.php │ │ │ │ ├── 419.blade.php │ │ │ │ ├── 500.blade.php │ │ │ │ ├── 429.blade.php │ │ │ │ ├── 403.blade.php │ │ │ │ └── 503.blade.php │ │ │ ├── Contracts │ │ │ ├── Queue │ │ │ │ └── ShouldQueue.php │ │ │ ├── Database │ │ │ │ └── Events │ │ │ │ │ └── MigrationEvent.php │ │ │ ├── Validation │ │ │ │ └── ImplicitRule.php │ │ │ ├── Auth │ │ │ │ └── Middleware │ │ │ │ │ └── AuthenticatesRequests.php │ │ │ ├── Broadcasting │ │ │ │ └── ShouldBroadcastNow.php │ │ │ ├── Cache │ │ │ │ └── LockTimeoutException.php │ │ │ ├── Redis │ │ │ │ └── LimiterTimeoutException.php │ │ │ ├── Filesystem │ │ │ │ ├── FileExistsException.php │ │ │ │ └── FileNotFoundException.php │ │ │ ├── Encryption │ │ │ │ ├── DecryptException.php │ │ │ │ └── EncryptException.php │ │ │ └── Support │ │ │ │ ├── Arrayable.php │ │ │ │ ├── Htmlable.php │ │ │ │ └── Renderable.php │ │ │ ├── Cache │ │ │ └── Events │ │ │ │ ├── CacheMissed.php │ │ │ │ └── KeyForgotten.php │ │ │ ├── Database │ │ │ ├── Events │ │ │ │ ├── MigrationEnded.php │ │ │ │ ├── MigrationStarted.php │ │ │ │ ├── TransactionBeginning.php │ │ │ │ ├── TransactionCommitted.php │ │ │ │ ├── TransactionRolledBack.php │ │ │ │ ├── MigrationsEnded.php │ │ │ │ └── MigrationsStarted.php │ │ │ ├── Eloquent │ │ │ │ └── MassAssignmentException.php │ │ │ └── ConfigurationUrlParser.php │ │ │ ├── Notifications │ │ │ └── Notifiable.php │ │ │ ├── Support │ │ │ └── Carbon.php │ │ │ ├── Http │ │ │ ├── Client │ │ │ │ └── ConnectionException.php │ │ │ └── File.php │ │ │ ├── Redis │ │ │ └── Connections │ │ │ │ ├── PhpRedisClusterConnection.php │ │ │ │ └── PredisClusterConnection.php │ │ │ ├── Session │ │ │ └── TokenMismatchException.php │ │ │ ├── Queue │ │ │ ├── ManuallyFailedException.php │ │ │ └── MaxAttemptsExceededException.php │ │ │ ├── Broadcasting │ │ │ └── BroadcastException.php │ │ │ ├── Validation │ │ │ └── UnauthorizedException.php │ │ │ ├── Routing │ │ │ └── Console │ │ │ │ └── stubs │ │ │ │ └── controller.plain.stub │ │ │ └── Container │ │ │ └── EntryNotFoundException.php │ ├── doctrine │ │ ├── instantiator │ │ │ ├── docs │ │ │ │ └── en │ │ │ │ │ └── sidebar.rst │ │ │ ├── phpbench.json │ │ │ ├── .github │ │ │ │ └── FUNDING.yml │ │ │ └── src │ │ │ │ └── Doctrine │ │ │ │ └── Instantiator │ │ │ │ └── Exception │ │ │ │ └── ExceptionInterface.php │ │ └── inflector │ │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Inflector │ │ │ ├── WordInflector.php │ │ │ └── NoopWordInflector.php │ ├── phar-io │ │ ├── manifest │ │ │ ├── .gitignore │ │ │ ├── tests │ │ │ │ └── _fixture │ │ │ │ │ └── test.phar │ │ │ ├── src │ │ │ │ └── exceptions │ │ │ │ │ ├── ManifestLoaderException.php │ │ │ │ │ ├── ManifestDocumentException.php │ │ │ │ │ ├── ManifestElementException.php │ │ │ │ │ └── ManifestDocumentMapperException.php │ │ │ └── phive.xml │ │ └── version │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ └── exceptions │ │ │ │ ├── InvalidVersionException.php │ │ │ │ └── InvalidPreReleaseSuffixException.php │ │ │ └── phive.xml │ ├── filp │ │ └── whoops │ │ │ └── src │ │ │ └── Whoops │ │ │ └── Resources │ │ │ └── views │ │ │ ├── header_outer.html.php │ │ │ ├── panel_details.html.php │ │ │ ├── panel_details_outer.html.php │ │ │ ├── panel_left.html.php │ │ │ ├── panel_left_outer.html.php │ │ │ └── frames_container.html.php │ ├── mockery │ │ └── mockery │ │ │ └── docs │ │ │ ├── README.md │ │ │ ├── mockery │ │ │ ├── map.rst.inc │ │ │ └── index.rst │ │ │ └── getting_started │ │ │ ├── map.rst.inc │ │ │ └── index.rst │ ├── theseer │ │ └── tokenizer │ │ │ ├── tests │ │ │ └── _files │ │ │ │ └── empty.xml │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ ├── Exception.php │ │ │ ├── NamespaceUriException.php │ │ │ └── TokenCollectionException.php │ │ │ └── phive.xml │ ├── voku │ │ └── portable-ascii │ │ │ └── build │ │ │ └── composer.json │ ├── nesbot │ │ └── carbon │ │ │ ├── bin │ │ │ └── carbon.bat │ │ │ ├── .github │ │ │ └── FUNDING.yml │ │ │ └── .multi-tester.yml │ ├── league │ │ └── flysystem │ │ │ └── src │ │ │ ├── FilesystemException.php │ │ │ ├── Exception.php │ │ │ ├── Adapter │ │ │ ├── SynologyFtp.php │ │ │ └── Polyfill │ │ │ │ └── StreamedTrait.php │ │ │ ├── InvalidRootException.php │ │ │ ├── ConnectionErrorException.php │ │ │ ├── ConnectionRuntimeException.php │ │ │ ├── RootViolationException.php │ │ │ ├── Plugin │ │ │ └── PluginNotFoundException.php │ │ │ └── FilesystemNotFoundException.php │ ├── myclabs │ │ └── deep-copy │ │ │ ├── doc │ │ │ ├── clone.png │ │ │ ├── graph.png │ │ │ ├── deep-clone.png │ │ │ └── deep-copy.png │ │ │ └── src │ │ │ └── DeepCopy │ │ │ ├── Exception │ │ │ ├── CloneException.php │ │ │ └── PropertyException.php │ │ │ ├── TypeFilter │ │ │ ├── Spl │ │ │ │ └── SplDoublyLinkedList.php │ │ │ └── TypeFilter.php │ │ │ └── Matcher │ │ │ └── Matcher.php │ ├── ramsey │ │ └── collection │ │ │ └── phpstan-tests.neon │ ├── vlucas │ │ └── phpdotenv │ │ │ └── src │ │ │ └── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── ValidationException.php │ │ │ ├── InvalidFileException.php │ │ │ └── InvalidPathException.php │ ├── fzaninotto │ │ └── faker │ │ │ └── src │ │ │ └── Faker │ │ │ └── Provider │ │ │ ├── de_AT │ │ │ └── Text.php │ │ │ ├── fr_CH │ │ │ └── Text.php │ │ │ ├── it_CH │ │ │ └── Text.php │ │ │ ├── fr_CA │ │ │ └── Company.php │ │ │ ├── en_NG │ │ │ └── Internet.php │ │ │ └── th_TH │ │ │ └── Internet.php │ ├── nikic │ │ └── php-parser │ │ │ └── lib │ │ │ └── PhpParser │ │ │ ├── ConstExprEvaluationException.php │ │ │ ├── Node │ │ │ ├── Scalar.php │ │ │ ├── Expr.php │ │ │ ├── Stmt.php │ │ │ └── Expr │ │ │ │ └── Cast │ │ │ │ ├── Int_.php │ │ │ │ ├── Array_.php │ │ │ │ ├── Bool_.php │ │ │ │ ├── Unset_.php │ │ │ │ ├── Object_.php │ │ │ │ └── String_.php │ │ │ ├── Comment │ │ │ └── Doc.php │ │ │ └── Builder.php │ ├── guzzlehttp │ │ ├── guzzle │ │ │ └── src │ │ │ │ ├── Exception │ │ │ │ ├── TooManyRedirectsException.php │ │ │ │ ├── TransferException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── ClientException.php │ │ │ │ └── ServerException.php │ │ │ │ └── functions_include.php │ │ ├── psr7 │ │ │ └── src │ │ │ │ └── functions_include.php │ │ └── promises │ │ │ ├── src │ │ │ ├── functions_include.php │ │ │ └── CancellationException.php │ │ │ └── Makefile │ ├── autoload.php │ ├── nunomaduro │ │ └── collision │ │ │ └── .github │ │ │ └── FUNDING.yml │ ├── webmozart │ │ └── assert │ │ │ └── .editorconfig │ └── egulias │ │ └── email-validator │ │ └── EmailValidator │ │ ├── Exception │ │ ├── DotAtEnd.php │ │ ├── CRNoLF.php │ │ ├── NoLocalPart.php │ │ ├── CRLFAtTheEnd.php │ │ ├── ConsecutiveAt.php │ │ ├── DotAtStart.php │ │ ├── ExpectingAT.php │ │ ├── NoDomainPart.php │ │ ├── ConsecutiveDot.php │ │ ├── ExpectingATEXT.php │ │ ├── ExpectingCTEXT.php │ │ ├── ExpectingDTEXT.php │ │ ├── ExpectingQPair.php │ │ ├── AtextAfterCFWS.php │ │ ├── CRLFX2.php │ │ ├── DomainHyphened.php │ │ ├── CharNotAllowed.php │ │ ├── UnopenedComment.php │ │ ├── CommaInDomain.php │ │ ├── UnclosedComment.php │ │ ├── UnclosedQuotedString.php │ │ ├── NoDNSRecord.php │ │ └── ExpectingDomainLiteralClose.php │ │ └── Warning │ │ ├── TLD.php │ │ └── Comment.php ├── storage │ ├── logs │ │ └── .gitignore │ ├── app │ │ ├── public │ │ │ └── .gitignore │ │ └── .gitignore │ └── framework │ │ ├── sessions │ │ └── .gitignore │ │ ├── testing │ │ └── .gitignore │ │ ├── views │ │ └── .gitignore │ │ ├── cache │ │ ├── data │ │ │ └── .gitignore │ │ └── .gitignore │ │ └── .gitignore ├── bootstrap │ └── cache │ │ └── .gitignore ├── database │ └── .gitignore ├── .DS_Store └── tests │ └── TestCase.php ├── frontend ├── src │ ├── assets │ │ └── .gitkeep │ ├── app │ │ ├── app.component.scss │ │ └── components │ │ │ ├── signin │ │ │ └── signin.component.scss │ │ │ ├── signup │ │ │ └── signup.component.scss │ │ │ └── user-profile │ │ │ └── user-profile.component.scss │ ├── environments │ │ └── environment.prod.ts │ ├── styles.scss │ └── favicon.ico └── .vscode │ └── extensions.json └── .DS_Store /backend/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /frontend/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/bin/psysh: -------------------------------------------------------------------------------- 1 | ../psy/psysh/bin/psysh -------------------------------------------------------------------------------- /backend/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/vendor/bin/carbon: -------------------------------------------------------------------------------- 1 | ../nesbot/carbon/bin/carbon -------------------------------------------------------------------------------- /backend/vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/phpunit -------------------------------------------------------------------------------- /backend/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /backend/resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /backend/vendor/hamcrest/hamcrest-php/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /frontend/src/app/components/signin/signin.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/app/components/signup/signup.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | *.sqlite-journal 3 | -------------------------------------------------------------------------------- /backend/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/vendor/bin/php-parse: -------------------------------------------------------------------------------- 1 | ../nikic/php-parser/bin/php-parse -------------------------------------------------------------------------------- /backend/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /backend/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/vendor/bin/commonmark: -------------------------------------------------------------------------------- 1 | ../league/commonmark/bin/commonmark -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-timer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /frontend/src/app/components/user-profile/user-profile.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/vendor/hamcrest/hamcrest-php/.coveralls.yml: -------------------------------------------------------------------------------- 1 | src_dir: hamcrest 2 | -------------------------------------------------------------------------------- /backend/vendor/hamcrest/hamcrest-php/generator/parts/functions_footer.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-token-stream/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/type/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: s_bergmann 2 | -------------------------------------------------------------------------------- /backend/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /backend/vendor/facade/flare-client-php/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: spatie 2 | -------------------------------------------------------------------------------- /backend/vendor/hamcrest/hamcrest-php/generator/parts/functions_imports.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/hamcrest/hamcrest-php/generator/parts/matchers_footer.txt: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /backend/vendor/namshi/jose/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | composer.lock 3 | vendor 4 | -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-file-iterator/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-text-template/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-timer/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: s_bergmann 2 | -------------------------------------------------------------------------------- /backend/vendor/psr/event-dispatcher/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: allejo 2 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/diff/tests/fixtures/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/diff/tests/fixtures/out/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/exporter/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: s_bergmann 2 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/type/.gitattributes: -------------------------------------------------------------------------------- 1 | /tools export-ignore 2 | 3 | -------------------------------------------------------------------------------- /backend/vendor/swiftmailer/swiftmailer/tests/_samples/files/data.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/brick/math/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | tidelift: "packagist/brick/math" 2 | -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-token-stream/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: s_bergmann 2 | -------------------------------------------------------------------------------- /backend/vendor/bin/var-dump-server: -------------------------------------------------------------------------------- 1 | ../symfony/var-dumper/Resources/bin/var-dump-server -------------------------------------------------------------------------------- /backend/vendor/lcobucci/jwt/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /phpunit.xml 3 | /composer.lock 4 | -------------------------------------------------------------------------------- /backend/vendor/psr/container/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | composer.phar 3 | /vendor/ 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/detect/xml/js.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/environment/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: sebastianbergmann 2 | -------------------------------------------------------------------------------- /backend/vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/.DS_Store -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-code-coverage/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: sebastianbergmann 2 | -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-code-coverage/tests/_files/Crash.php: -------------------------------------------------------------------------------- 1 | 2 | => 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/handlebars/partial-call.txt: -------------------------------------------------------------------------------- 1 | {{> partial}} 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/handlebars/simple-expression.txt: -------------------------------------------------------------------------------- 1 | {{abc}} 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/handlebars/triple-mustache.txt: -------------------------------------------------------------------------------- 1 | {{{raw}}} 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/javascript/method-call.txt: -------------------------------------------------------------------------------- 1 | x.continue(0); 2 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/1_a.txt: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /backend/vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/1_b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/hamcrest/hamcrest-php/generator/parts/matchers_imports.txt: -------------------------------------------------------------------------------- 1 | 2 | namespace Hamcrest; -------------------------------------------------------------------------------- /backend/vendor/phpdocumentor/reflection-common/phpstan.neon: -------------------------------------------------------------------------------- 1 | parameters: 2 | level: max 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/scheme/lambda.txt: -------------------------------------------------------------------------------- 1 | (lambda (x y z) (+ y z)) 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/shell/plain-prompt.txt: -------------------------------------------------------------------------------- 1 | > foo 2 | > /bin/sh 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/special/tabreplace.txt: -------------------------------------------------------------------------------- 1 | for x in [1, 2, 3]: 2 | count(x) -------------------------------------------------------------------------------- /backend/vendor/sebastian/recursion-context/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | -------------------------------------------------------------------------------- /backend/vendor/symfony/service-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /backend/vendor/symfony/deprecation-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /backend/vendor/symfony/translation-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /backend/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/.DS_Store -------------------------------------------------------------------------------- /backend/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /backend/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /backend/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /backend/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | /tools export-ignore 2 | 3 | *.php diff=php 4 | -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-token-stream/tests/_fixture/issue19.php: -------------------------------------------------------------------------------- 1 | (foo + bar).string()} -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/scheme/quoted.txt: -------------------------------------------------------------------------------- 1 | (scheme 'a '(a quoted (list)) `(quoted)) 2 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/object-reflector/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /backend/vendor/facade/ignition/resources/.gitignore: -------------------------------------------------------------------------------- 1 | compiled/* 2 | !compiled/index.html 3 | !compiled/ignition.js 4 | -------------------------------------------------------------------------------- /backend/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/button.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }}: {{ $url }} 2 | -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-text-template/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /composer.phar 3 | /.idea 4 | /vendor 5 | 6 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/Highlight/languages/plaintext.json: -------------------------------------------------------------------------------- 1 | { 2 | "disableAutodetect": true 3 | } 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/haskell/nested-comments.txt: -------------------------------------------------------------------------------- 1 | {- this is a {- nested -} comment -} 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/javascript/shebang.txt: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var a = 1; 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/python/function-header.txt: -------------------------------------------------------------------------------- 1 | def f(x: int) -> None: 2 | pass 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/rust/variables.txt: -------------------------------------------------------------------------------- 1 | let foo; 2 | let mut bar; 3 | let _foo_bar; 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/twig/filter_with_underscore.txt: -------------------------------------------------------------------------------- 1 | {{ "string with spaces"|url_encode }} -------------------------------------------------------------------------------- /backend/vendor/sebastian/exporter/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs 5 | /.php_cs.cache 6 | -------------------------------------------------------------------------------- /backend/vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/header.blade.php: -------------------------------------------------------------------------------- 1 | [{{ $slot }}]({{ $url }}) 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/detect/ruby/double-colon.txt: -------------------------------------------------------------------------------- 1 | def f(a = self.attr) 2 | A::B.new(a) 3 | end 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/css/pseudo-selector.txt: -------------------------------------------------------------------------------- 1 | li:not(.red){} 2 | li:not(.red):not(.green){} 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/haskell/infix.txt: -------------------------------------------------------------------------------- 1 | infix 3 `foo` 2 | infixl 6 `bar` 3 | infixr 9 `baz` 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/ini/variable.txt: -------------------------------------------------------------------------------- 1 | memory_limit = ${PHP_MEMORY_LIMIT} 2 | key = $VAR1 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/javascript/template-strings.txt: -------------------------------------------------------------------------------- 1 | `string ${foo + `str${undefined}ing`}`; 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/pony/prime.txt: -------------------------------------------------------------------------------- 1 | new create(name': String) => 2 | name = name' + 'a' 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/tap/without-numbers.txt: -------------------------------------------------------------------------------- 1 | 1..6 2 | not ok 3 | ok 4 | not ok 5 | ok 6 | ok 7 | -------------------------------------------------------------------------------- /frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/frontend/src/favicon.ico -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-code-coverage/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 0); 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/cpp/primitive-types.txt: -------------------------------------------------------------------------------- 1 | const uint64_t MAX_INT_64; 2 | 3 | struct position_tag; 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/fsharp/bang-keywords.txt: -------------------------------------------------------------------------------- 1 | let! (result2 : byte[]) = stream.AsyncRead(bufferSize) 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/handlebars/raw-block.txt: -------------------------------------------------------------------------------- 1 | {{{{#raw}}}} {{verbatim}} content {{{{/raw}}}} {{var}} 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/javascript/method-call.expect.txt: -------------------------------------------------------------------------------- 1 | x.continue(0); 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/ruby/gemfile.txt: -------------------------------------------------------------------------------- 1 | gem "gem_name1", ">= 4.1" 2 | 3 | gem "gem_name2", "~> 4.1" 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/subunit/subunit-errorline.txt: -------------------------------------------------------------------------------- 1 | error: test simplename 2 | error: test simple name 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/swift/multiline-string.txt: -------------------------------------------------------------------------------- 1 | var string = """ 2 | var a = not actually code 3 | """ -------------------------------------------------------------------------------- /backend/vendor/sebastian/diff/tests/fixtures/out/.gitignore: -------------------------------------------------------------------------------- 1 | # reset all ignore rules to create sandbox for integration test 2 | !/** -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php: -------------------------------------------------------------------------------- 1 | 2 | _env = env 3 | _name = name -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/special/languagealias.txt: -------------------------------------------------------------------------------- 1 | var x = '

this should not be highlighted as HTML'; -------------------------------------------------------------------------------- /backend/vendor/filp/whoops/src/Whoops/Resources/views/header_outer.html.php: -------------------------------------------------------------------------------- 1 |

2 | render($header) ?> 3 |
4 | -------------------------------------------------------------------------------- /backend/vendor/mockery/mockery/docs/README.md: -------------------------------------------------------------------------------- 1 | mockery-docs 2 | ============ 3 | 4 | Document for the PHP Mockery framework on readthedocs.org -------------------------------------------------------------------------------- /backend/vendor/phar-io/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /src/autoload.php 5 | /tools 6 | /vendor 7 | 8 | -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-code-coverage/tests/_files/source_without_ignore.php: -------------------------------------------------------------------------------- 1 | rem not_a_comment 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/handlebars/block-with-param.txt: -------------------------------------------------------------------------------- 1 | {{#blockHelper param1 param2}}block content{{/blockHelper}} 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/javascript/default-parameters.txt: -------------------------------------------------------------------------------- 1 | function visibleTodoFilter(state = 'watch', action) {} 2 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/diff/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs.cache 5 | /.phpunit.result.cache 6 | /from.txt.orig -------------------------------------------------------------------------------- /backend/vendor/theseer/tokenizer/tests/_files/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-token-stream/tests/_fixture/classInNamespace.php: -------------------------------------------------------------------------------- 1 | = m::R 5 | -------------------------------------------------------------------------------- /backend/vendor/voku/portable-ascii/build/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require-dev": { 3 | "voku/php-readme-helper": "~0.4" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /backend/vendor/filp/whoops/src/Whoops/Resources/views/panel_details.html.php: -------------------------------------------------------------------------------- 1 | render($frame_code) ?> 2 | render($env_details) ?> -------------------------------------------------------------------------------- /backend/vendor/nesbot/carbon/bin/carbon.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | setlocal DISABLEDELAYEDEXPANSION 3 | SET BIN_TARGET=%~dp0/carbon 4 | php "%BIN_TARGET%" %* 5 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/crystal/toplevel-keywords.txt: -------------------------------------------------------------------------------- 1 | class Foo; end 2 | struct Bar; end 3 | 4 | annotation JSON::Field; end 5 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/go/numbers.txt: -------------------------------------------------------------------------------- 1 | float_var := 1.0e10 2 | complex_var := 1.2e5+2.3i 3 | hex_int := 0xcf3e4028ac084aea 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/yaml/numbers.txt: -------------------------------------------------------------------------------- 1 | key: 1234 2 | not_hex: 999fff 3 | hex: 0x999fff 4 | numkey999: 1234 5 | exp: -2.3e-5 6 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/global-state/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs 3 | /.php_cs.cache 4 | /.phpunit.result.cache 5 | /composer.lock 6 | /vendor 7 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/resource-operations/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /build/FunctionSignatureMap.php 4 | /composer.lock 5 | /vendor 6 | -------------------------------------------------------------------------------- /backend/vendor/facade/ignition-contracts/.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel 2 | 3 | disabled: 4 | - single_class_element_per_statement 5 | - self_accessor 6 | -------------------------------------------------------------------------------- /backend/vendor/league/flysystem/src/FilesystemException.php: -------------------------------------------------------------------------------- 1 | text.txt 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/cs/dotted-namespace.txt: -------------------------------------------------------------------------------- 1 | namespace Dotted.Namespace 2 | { 3 | class MyClass 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/dart/string-interpolation.txt: -------------------------------------------------------------------------------- 1 | '1234$identifier $true'; 2 | // comment 3 | '1234${1234 + true + 'foo'}'; 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/ebnf/underscore-production.expect.txt: -------------------------------------------------------------------------------- 1 | a_production = nonterminal ; 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/pony/triple-quote.txt: -------------------------------------------------------------------------------- 1 | """ 2 | A triple quoted string 3 | * Goes several lines 4 | * Keeps formatting 5 | """ -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/subunit/subunit-skipline.txt: -------------------------------------------------------------------------------- 1 | skip test simplename 2 | skip: test simple name 3 | skip test simple name 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/subunit/subunit-xfailline.txt: -------------------------------------------------------------------------------- 1 | xfail test simplename 2 | xfail: test simple name 3 | xfail test simple name 4 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | /composer.phar 5 | /.php_cs.cache 6 | /.phpunit.result.cache 7 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/handlebars/comments.txt: -------------------------------------------------------------------------------- 1 | {{!-- a comment {{expression}} --}} {{expression}} 2 | 3 | {{! a simple comment }} 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/typescript/nested-templates.txt: -------------------------------------------------------------------------------- 1 | let foo = true; 2 | `hello ${foo ? `Mr ${name}` : 'there'}`; 3 | foo = false; 4 | -------------------------------------------------------------------------------- /backend/vendor/doctrine/instantiator/phpbench.json: -------------------------------------------------------------------------------- 1 | { 2 | "bootstrap": "vendor/autoload.php", 3 | "path": "tests/DoctrineTest/InstantiatorPerformance" 4 | } 5 | -------------------------------------------------------------------------------- /backend/vendor/myclabs/deep-copy/doc/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/myclabs/deep-copy/doc/clone.png -------------------------------------------------------------------------------- /backend/vendor/myclabs/deep-copy/doc/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/myclabs/deep-copy/doc/graph.png -------------------------------------------------------------------------------- /backend/vendor/ramsey/collection/phpstan-tests.neon: -------------------------------------------------------------------------------- 1 | parameters: 2 | checkGenericClassInNonGenericObjectType: false 3 | checkMissingIterableValueType: false 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.crlf.* eol=crlf 4 | 5 | styles/* linguist-vendored 6 | test/**/*.txt linguist-vendored 7 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/aspectj/intertype-constructor.txt: -------------------------------------------------------------------------------- 1 | public MyClass.new() throws Exception{ 2 | // intertype constructor body 3 | } 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/cpp/pointers-returns.txt: -------------------------------------------------------------------------------- 1 | // These will all work: 2 | char** foo_bar(); 3 | char ** foo_bar(); 4 | char **foo_bar(); 5 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/xml/space-attributes.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/yaml/tag.txt: -------------------------------------------------------------------------------- 1 | key: !!builtintagname test 2 | key: !localtagname test 3 | key: "!notatag" 4 | key: '!!notatageither' 5 | -------------------------------------------------------------------------------- /backend/storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | schedule-* 4 | compiled.php 5 | services.json 6 | events.scanned.php 7 | routes.scanned.php 8 | down 9 | -------------------------------------------------------------------------------- /backend/vendor/laravel/framework/src/Illuminate/Mail/resources/views/html/table.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{ Illuminate\Mail\Markdown::parse($slot) }} 3 |
4 | -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-token-stream/tests/_fixture/classUsesNamespacedFunction.php: -------------------------------------------------------------------------------- 1 | let! (result2 : byte[]) = stream.AsyncRead(bufferSize) 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/handlebars/simple-expression.expect.txt: -------------------------------------------------------------------------------- 1 | {{abc}} 2 | 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/handlebars/triple-mustache.expect.txt: -------------------------------------------------------------------------------- 1 | {{{raw}}} 2 | 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/vim/strings-comments.txt: -------------------------------------------------------------------------------- 1 | " comment 2 | let one = "string" " comment 3 | let two = "crazy 4 | \ string with a \" quote" 5 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/special/sublanguages.txt: -------------------------------------------------------------------------------- 1 | */ ?> 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/tools/.htaccess: -------------------------------------------------------------------------------- 1 | order deny,allow 2 | deny from all 3 | allow from 192.168.1.1/24 4 | allow from 10.0.0.0/8 5 | allow from 127.0.0.1 6 | -------------------------------------------------------------------------------- /backend/vendor/filp/whoops/src/Whoops/Resources/views/panel_details_outer.html.php: -------------------------------------------------------------------------------- 1 |
2 | render($panel_details) ?> 3 |
-------------------------------------------------------------------------------- /backend/vendor/myclabs/deep-copy/doc/deep-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/myclabs/deep-copy/doc/deep-clone.png -------------------------------------------------------------------------------- /backend/vendor/myclabs/deep-copy/doc/deep-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/myclabs/deep-copy/doc/deep-copy.png -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-code-coverage/.gitignore: -------------------------------------------------------------------------------- 1 | /tests/_files/tmp 2 | /vendor 3 | /composer.lock 4 | /.idea 5 | /.php_cs 6 | /.php_cs.cache 7 | /.phpunit.result.cache 8 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/detect/dust/default.txt: -------------------------------------------------------------------------------- 1 |

Hours

2 | 3 | 8 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/ebnf/terminators.txt: -------------------------------------------------------------------------------- 1 | full-stop = "." . 2 | semicolon = ";" ; 3 | end-test = "end" ; (* ending production to test semicolon *) 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/handlebars/partial-call.expect.txt: -------------------------------------------------------------------------------- 1 | {{> partial}} 2 | 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/subunit/subunit-uxsuccessline.txt: -------------------------------------------------------------------------------- 1 | uxsuccess test simplename 2 | uxsuccess: test simple name 3 | uxsuccess test simple name 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/yaml/string.txt: -------------------------------------------------------------------------------- 1 | key: value 2 | key: 'some value' 3 | key: "some value" 4 | key: | 5 | multi-string 6 | value 7 | key: true 8 | -------------------------------------------------------------------------------- /backend/vendor/theseer/tokenizer/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /src/autoload.php 5 | /tools 6 | /vendor 7 | /build 8 | /.phpunit.result.cache 9 | -------------------------------------------------------------------------------- /backend/vendor/theseer/tokenizer/src/Exception.php: -------------------------------------------------------------------------------- 1 | (defn f [x y] 2 | #_=> (+ x y)) 3 | #'user/f 4 | user=> (f 5 7) 5 | 12 6 | user=> nil 7 | nil 8 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/detect/vbscript-html/default.txt: -------------------------------------------------------------------------------- 1 | 2 | <% 3 | If i < 10 Then 4 | response.write("Good morning!") 5 | End If 6 | %> 7 | 8 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/markdown/list.txt: -------------------------------------------------------------------------------- 1 | - this is a list 2 | - this is another 3 | - nested list 4 | - another nested 5 | * nested alternative 6 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/scheme/quoted.expect.txt: -------------------------------------------------------------------------------- 1 | (scheme 'a '(a quoted (list)) `(quoted)) 2 | -------------------------------------------------------------------------------- /backend/vendor/fzaninotto/faker/src/Faker/Provider/fr_CH/Text.php: -------------------------------------------------------------------------------- 1 | {} 4 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/object-enumerator/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | composer.lock 3 | composer.phar 4 | vendor/ 5 | cache.properties 6 | build/LICENSE 7 | build/README.md 8 | build/*.tgz 9 | -------------------------------------------------------------------------------- /backend/vendor/doctrine/instantiator/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: phpdoctrine 2 | tidelift: packagist/doctrine%2Finstantiator 3 | custom: https://www.doctrine-project.org/sponsorship.html 4 | -------------------------------------------------------------------------------- /backend/vendor/facade/flare-client-php/src/Time/Time.php: -------------------------------------------------------------------------------- 1 | render($header_outer); 3 | $tpl->render($frames_description); 4 | $tpl->render($frames_container); 5 | -------------------------------------------------------------------------------- /backend/vendor/fzaninotto/faker/src/Faker/Provider/fr_CA/Company.php: -------------------------------------------------------------------------------- 1 | {- this is a {- nested -} comment -} 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/pony/lambda.expect.txt: -------------------------------------------------------------------------------- 1 | {(foo: I32)(bar): String => (foo + bar).string()} 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/ruby/regexes.txt: -------------------------------------------------------------------------------- 1 | str =~ /^(?:foo)$/ 2 | str =~ %r{foo|bar|buz$} 3 | str =~ %r!foo|bar$! 4 | str =~ %r[foo|bar$] 5 | str =~ %r(\(foo|bar\)$) 6 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/stata/built_ins.txt: -------------------------------------------------------------------------------- 1 | local b1 = ln(`or') 2 | generate logit1 = log( pgty1 / ( 1 - pgty1)) 3 | generate logit2 = log( pgty2 / ( 1 - pgty2)) 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/subunit/subunit-tagline.txt: -------------------------------------------------------------------------------- 1 | tags: fuzz unit beta functional 2 | tags: -functional basic -beta 3 | tags: -unit 4 | tags: unit 5 | tags: ddd 6 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/subunit/subunit-timeline.txt: -------------------------------------------------------------------------------- 1 | time: 2016-03-13 18:12:37.231080Z 2 | time: 1917-10-25 09:05:37.231080Z 3 | time: 1984-03-24 07:02:09.231080Z 4 | -------------------------------------------------------------------------------- /backend/vendor/facade/ignition-contracts/docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/facade/ignition-contracts/docs/screenshot.png -------------------------------------------------------------------------------- /backend/vendor/hamcrest/hamcrest-php/tests/Hamcrest/Core/SampleSubClass.php: -------------------------------------------------------------------------------- 1 | {{helper (subExpression 1 2)}} 2 | 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/javascript/object-attr.txt: -------------------------------------------------------------------------------- 1 | { 2 | key: value, // with comment 3 | key2: value, 4 | 'key-3': value, 5 | key4: false ? undefined : true 6 | } 7 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/pony/triple-quote.expect.txt: -------------------------------------------------------------------------------- 1 | """ 2 | A triple quoted string 3 | * Goes several lines 4 | * Keeps formatting 5 | """ -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/verilog/numbers.txt: -------------------------------------------------------------------------------- 1 | a = 'hff; 2 | A = 'HFF; 3 | b = 8'h33; 4 | B = 8'H33; 5 | c = 12; 6 | d = 'o755; 7 | e = 8'b1001_0001; 8 | f = 8'b1111zzzx; 9 | -------------------------------------------------------------------------------- /backend/vendor/symfony/console/Resources/bin/hiddeninput.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/console/Resources/bin/hiddeninput.exe -------------------------------------------------------------------------------- /backend/vendor/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php: -------------------------------------------------------------------------------- 1 | "> 2 | render($panel_left) ?> 3 | -------------------------------------------------------------------------------- /backend/vendor/phar-io/manifest/src/exceptions/ManifestLoaderException.php: -------------------------------------------------------------------------------- 1 | #bar {} 4 | #bar {} 5 | &#bar {} 6 | &:hover {} 7 | height: ~"@{height}px"; 8 | } 9 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/subunit/subunit-errorline.expect.txt: -------------------------------------------------------------------------------- 1 | error: test simplename 2 | error: test simple name 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/subunit/subunit-progressline.txt: -------------------------------------------------------------------------------- 1 | progress: +5 2 | progress: +12 3 | progress: 29 4 | progress: -3 5 | progress: -91 6 | progress: push 7 | progress: pop 8 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/swift/multiline-string.expect.txt: -------------------------------------------------------------------------------- 1 | var string = """ 2 | var a = not actually code 3 | """ -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/twig/filter_with_underscore.expect.txt: -------------------------------------------------------------------------------- 1 | {{ "string with spaces"|url_encode }} 2 | -------------------------------------------------------------------------------- /backend/vendor/theseer/tokenizer/src/TokenCollectionException.php: -------------------------------------------------------------------------------- 1 | /* 2 | /* 3 | Ceylon has nested comments. 4 | */ 5 | */ 6 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/coffeescript/division.txt: -------------------------------------------------------------------------------- 1 | # Divisions 2 | x = 6/foo/i 3 | x = 6 /foo 4 | x = 6 / foo 5 | x = 6 /foo * 2/gm 6 | x = f /foo 7 | x = f / foo / gm 8 | x = f /foo * 2/6 9 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/go/strings.txt: -------------------------------------------------------------------------------- 1 | func main() { 2 | str := "Hello, 世界\nHello \"world\"\nHello 'world'" 3 | char := 'a' 4 | char2 := '"' 5 | char3 := '\\' 6 | char3 := '\'' 7 | } 8 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/javascript/arrow-function.txt: -------------------------------------------------------------------------------- 1 | var f = x => x; 2 | f(x => x + (y=2, z=undefined, ...rest) => y); 3 | () => null; 4 | const FC = props =>

functional component

; 5 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/ldif/ldapmodify.txt: -------------------------------------------------------------------------------- 1 | dn: uid=user.0,ou=People,dc=example,dc=com 2 | changeType: modify 3 | add: cn 4 | cn: Morris Day 5 | - 6 | add: mobile 7 | mobile: (408) 555-7844 8 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/scala/case-classes.txt: -------------------------------------------------------------------------------- 1 | abstract class Vertical extends CaseJeu 2 | case class Haut(name: String) extends Vertical 3 | case class Bas(name: String) extends Vertical 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/swift/functions.txt: -------------------------------------------------------------------------------- 1 | protocol Protocol { 2 | func f1() 3 | func f2() 4 | } 5 | 6 | class MyClass { 7 | func f() { 8 | return true 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /backend/vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp037.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp037.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp1006.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp1006.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp1026.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp1026.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp424.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp424.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp437.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp437.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp500.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp737.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp737.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp775.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp775.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp850.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp850.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp852.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp852.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp855.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp855.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp856.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp856.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp857.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp857.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp860.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp860.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp861.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp861.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp862.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp862.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp863.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp863.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp864.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp864.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp865.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp865.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp866.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp866.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp869.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp869.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp874.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp874.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp875.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp875.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp932.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp932.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp936.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp936.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp949.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp949.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp950.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.cp950.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.koi8-r.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.koi8-r.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.koi8-u.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.koi8-u.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/crystal/defs.txt: -------------------------------------------------------------------------------- 1 | def foo 2 | end 3 | 4 | def *(other) 5 | end 6 | 7 | def **(other) 8 | end 9 | 10 | def =~(other) 11 | end 12 | 13 | def !~(other) 14 | end 15 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/javascript/shebang.expect.txt: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var a = 1; 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/kotlin/string.txt: -------------------------------------------------------------------------------- 1 | "astring" 2 | expression 3 | "a ${ "string" } ${'c'} b" 4 | "a ${ "string $var ${subs}" } b" 5 | """ ${ 6 | ${subst} 7 | } """ 8 | """f="true"""" 9 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/pony/prime.expect.txt: -------------------------------------------------------------------------------- 1 | new create(name': String) => 2 | name = name' + 'a' -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/shell/plain-prompt.expect.txt: -------------------------------------------------------------------------------- 1 | > foo 2 | > /bin/sh 3 | -------------------------------------------------------------------------------- /backend/vendor/laravel/framework/src/Illuminate/Database/Events/TransactionBeginning.php: -------------------------------------------------------------------------------- 1 | 2 | {{!-- only show if author exists --}} 3 | {{#if author}} 4 |

{{firstName}} {{lastName}}

5 | {{/if}} 6 | 7 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/clojure-repl/prompt.expect.txt: -------------------------------------------------------------------------------- 1 | user=> 2 | => 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/x86asm/labels-directives.txt: -------------------------------------------------------------------------------- 1 | .cfi_startproc 2 | _ZN3lib13is_whitespace17h28afa23272bf056bE: 3 | .align 16, 0x90 4 | ja .Lfunc_end0 5 | .Lfunc_end0: 6 | ret 7 | -------------------------------------------------------------------------------- /backend/vendor/swiftmailer/swiftmailer/tests/_samples/files/swiftmailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/swiftmailer/swiftmailer/tests/_samples/files/swiftmailer.png -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-1.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-10.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-11.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-11.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-13.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-13.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-14.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-14.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-15.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-15.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-16.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-16.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-2.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-3.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-4.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-5.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-6.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-7.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-8.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-9.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1250.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1250.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1251.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1251.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1252.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1252.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1253.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1253.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1254.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1254.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1255.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1255.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1256.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1256.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1257.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1257.php -------------------------------------------------------------------------------- /backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1258.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/laravel-angular-jwt-auth/HEAD/backend/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1258.php -------------------------------------------------------------------------------- /backend/vendor/autoload.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /backend/vendor/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php: -------------------------------------------------------------------------------- 1 | 2 | bar + "baz" 3 | 4 | new create(hunger: I32) => 5 | _hunger = hunger 6 | 7 | be feed(food: I32) => 8 | _hunger = _hunger - food -------------------------------------------------------------------------------- /backend/vendor/symfony/service-contracts/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | The changelog is maintained for all Symfony contracts at the following URL: 5 | https://github.com/symfony/contracts/blob/master/CHANGELOG.md 6 | -------------------------------------------------------------------------------- /backend/vendor/guzzlehttp/psr7/src/functions_include.php: -------------------------------------------------------------------------------- 1 | /* rust has 2 | /* nested /* block */ */ 3 | */ comments 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/special/languagealias.expect.txt: -------------------------------------------------------------------------------- 1 | var x = '<p>this should <b>not</b> be highlighted as <em>HTML</em>'; -------------------------------------------------------------------------------- /backend/vendor/sebastian/type/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /backend/vendor/symfony/deprecation-contracts/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | The changelog is maintained for all Symfony contracts at the following URL: 5 | https://github.com/symfony/contracts/blob/master/CHANGELOG.md 6 | -------------------------------------------------------------------------------- /backend/vendor/symfony/translation-contracts/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | The changelog is maintained for all Symfony contracts at the following URL: 5 | https://github.com/symfony/contracts/blob/master/CHANGELOG.md 6 | -------------------------------------------------------------------------------- /backend/tests/TestCase.php: -------------------------------------------------------------------------------- 1 | new create(env: Env, name: String) => 2 | _env = env 3 | _name = name -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/protobuf/message-message.txt: -------------------------------------------------------------------------------- 1 | message Container { 2 | message Message { 3 | required int64 id = 1; 4 | } 5 | repeated Message messages = 1; 6 | optional int32 number = 2; 7 | } 8 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/scheme/lambda.expect.txt: -------------------------------------------------------------------------------- 1 | (lambda (x y z) (+ y z)) 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/sql/tablesample.txt: -------------------------------------------------------------------------------- 1 | SELECT * FROM orders TABLESAMPLE (500 ROWS); 2 | 3 | SELECT * FROM customers TABLESAMPLE (25 PERCENT); 4 | 5 | SELECT * FROM employees TABLESAMPLE (BUCKET 2 OUT OF 10); 6 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/tap/basic.txt: -------------------------------------------------------------------------------- 1 | 1..4 2 | ok 1 - Input file opened 3 | not ok 2 - First line of the input valid 4 | ok 3 - Read the rest of the file 5 | not ok 4 - Summarized correctly # TODO Not written yet 6 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/type/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /backend/vendor/symfony/event-dispatcher-contracts/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | The changelog is maintained for all Symfony contracts at the following URL: 5 | https://github.com/symfony/contracts/blob/master/CHANGELOG.md 6 | -------------------------------------------------------------------------------- /backend/vendor/symfony/string/.gitattributes: -------------------------------------------------------------------------------- 1 | /Resources/bin/update-data.php export-ignore 2 | /Resources/WcswidthDataGenerator.php export-ignore 3 | /Tests export-ignore 4 | /phpunit.xml.dist export-ignore 5 | /.gitignore export-ignore 6 | -------------------------------------------------------------------------------- /backend/vendor/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | 2) 5 | &js 6 | -------------------------------------------------------------------------------- /backend/vendor/swiftmailer/swiftmailer/doc/index.rst: -------------------------------------------------------------------------------- 1 | Swiftmailer 2 | =========== 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | 7 | introduction 8 | messages 9 | headers 10 | sending 11 | plugins 12 | japanese 13 | -------------------------------------------------------------------------------- /backend/vendor/filp/whoops/src/Whoops/Resources/views/frames_container.html.php: -------------------------------------------------------------------------------- 1 |
2 | render($frame_list) ?> 3 |
-------------------------------------------------------------------------------- /backend/vendor/guzzlehttp/promises/src/functions_include.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /backend/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/mocked_class.tpl: -------------------------------------------------------------------------------- 1 | declare(strict_types=1); 2 | 3 | {prologue}{class_declaration} 4 | { 5 | use \PHPUnit\Framework\MockObject\Api;{method}{clone} 6 | {mocked_methods}}{epilogue} 7 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/detect/kotlin/default.txt: -------------------------------------------------------------------------------- 1 | import kotlin.lang.test 2 | 3 | trait A { 4 | fun x() 5 | } 6 | 7 | fun xxx() : Int { 8 | return 888 9 | } 10 | 11 | public fun main(args : Array) { 12 | } 13 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/aspectj/intertype-method.txt: -------------------------------------------------------------------------------- 1 | public void MyClass.doSomething() throws Exception{ 2 | // intertype method body 3 | } 4 | public void A.doSomething(int param1){ 5 | // intertype method body 6 | } 7 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/pony/objects.txt: -------------------------------------------------------------------------------- 1 | primitive I32 is SignedInteger 2 | 3 | actor Main 4 | 5 | class ref List[A: A] is Seq[A] ref 6 | 7 | object is Hashable 8 | 9 | object iso 10 | 11 | primitive Foo is Bar iso -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/python/matrix-multiplication.txt: -------------------------------------------------------------------------------- 1 | @meta 2 | class C: 3 | 4 | @decorator 5 | def f(self, H, V, beta, r): 6 | S = (H @ beta - r).T @ inv(H @ V @ H.T) @ (H @ beta - r) 7 | return S 8 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/rust/strings.txt: -------------------------------------------------------------------------------- 1 | 'a'; 2 | '\n'; 3 | '\x1A'; 4 | '\u12AS'; 5 | '\U1234ASDF'; 6 | b'a'; 7 | 8 | "hello"; 9 | b"hello"; 10 | 11 | r"hello"; 12 | r###"world"###; 13 | r##" "### 14 | "# "##; 15 | -------------------------------------------------------------------------------- /backend/vendor/facade/flare-client-php/src/Context/ContextDetectorInterface.php: -------------------------------------------------------------------------------- 1 | memory_limit = ${PHP_MEMORY_LIMIT} 2 | key = $VAR1 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/python/function-header-comments.txt: -------------------------------------------------------------------------------- 1 | def foo( 2 | bar, # commment 3 | ): 4 | pass 5 | 6 | 7 | class Foo(collections.namedtuple('Test'), ( 8 | 'name', # comment 9 | )): 10 | pass 11 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/rust/variables.expect.txt: -------------------------------------------------------------------------------- 1 | let foo; 2 | let mut bar; 3 | let _foo_bar; 4 | -------------------------------------------------------------------------------- /backend/vendor/facade/flare-client-php/src/Enums/GroupingTypes.php: -------------------------------------------------------------------------------- 1 | getMessage() ?: 'Forbidden')) 6 | -------------------------------------------------------------------------------- /backend/vendor/laravel/framework/src/Illuminate/Validation/UnauthorizedException.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /backend/vendor/psr/simple-cache/src/CacheException.php: -------------------------------------------------------------------------------- 1 | skip test simplename 2 | skip: test simple name 3 | skip test simple name 4 | -------------------------------------------------------------------------------- /backend/vendor/swiftmailer/swiftmailer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.crt -crlf 2 | *.key -crlf 3 | *.srl -crlf 4 | *.pub -crlf 5 | *.priv -crlf 6 | *.txt -crlf 7 | 8 | # ignore /notes in the git-generated distributed .zip archive 9 | /doc/notes export-ignore 10 | -------------------------------------------------------------------------------- /backend/vendor/laravel/framework/src/Illuminate/Contracts/Filesystem/FileExistsException.php: -------------------------------------------------------------------------------- 1 | # Escaped double-quote is not a string 2 | echo '"quoted"' | tr -d \" > text.txt 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/cpp/function-title.txt: -------------------------------------------------------------------------------- 1 | int main() { 2 | A a = new A(); 3 | int b = b * sum(1, 2); 4 | if (a->check1()) 5 | return 3; 6 | else if (a->check2()) 7 | return 4; 8 | return a->result(); 9 | } 10 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/handlebars/block-expression-variants-in-param.txt: -------------------------------------------------------------------------------- 1 | text {{#abc "lite]'ral}}segment" }}a{{/abc}} 2 | 3 | text {{#abc 'lite]"ral}}segment' }}a{{/abc}} 4 | 5 | text {{#abc [lite"'ral}}segment] }}a{{/abc}} 6 | 7 | text 8 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/handlebars/built-ins.txt: -------------------------------------------------------------------------------- 1 | {{#if test}}yes{{/if}} 2 | 3 | {{#unless test}}no{{/unless}} 4 | 5 | {{#with test}}abc{{/with}} 6 | 7 | {{#each test}}abc{{/each}} 8 | 9 | {{lookup abc}} 10 | 11 | {{log test}} 12 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/ini/array.txt: -------------------------------------------------------------------------------- 1 | 2 | moo=["foo"] 3 | 4 | KNOWN_PEERS = [ 5 | "finland.some-host.com:11625", 6 | "germany.some-host.com:11625", 7 | "hongkong.some-host.com:11625", 8 | 32, 9 | true 10 | ] 11 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/php/heredoc.txt: -------------------------------------------------------------------------------- 1 | echo <<bar[1]}. 3 | EOT; 4 | 5 | echo <<xfail test simplename 2 | xfail: test simple name 3 | xfail test simple name 4 | -------------------------------------------------------------------------------- /backend/vendor/swiftmailer/swiftmailer/tests/StreamCollector.php: -------------------------------------------------------------------------------- 1 | content .= $arg; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /backend/vendor/webmozart/assert/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset=utf-8 5 | end_of_line=lf 6 | trim_trailing_whitespace=true 7 | insert_final_newline=true 8 | indent_style=space 9 | indent_size=4 10 | 11 | [*.yml] 12 | indent_size=2 13 | -------------------------------------------------------------------------------- /backend/vendor/doctrine/inflector/lib/Doctrine/Inflector/WordInflector.php: -------------------------------------------------------------------------------- 1 | """test""" 2 | b = '''test''' 3 | c = "test" 4 | d = 'test' 5 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/gauss/function_refs.txt: -------------------------------------------------------------------------------- 1 | k = colsf(fin); 2 | nr = floor(minc(maxbytes/(k*8*3.5)|maxvec/(k+1))); 3 | call random_user_function_2(-10.0, "hey", /* blah */ x[0x2F]); 4 | ols("", csvReadM("test.csv")); 5 | if myfn(10) == 20; 6 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/javascript/jsx-fragment.txt: -------------------------------------------------------------------------------- 1 | class Columns extends React.Component { 2 | render() { 3 | return ( 4 | <> 5 | Hello 6 | World 7 | 8 | ); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/pony/match.txt: -------------------------------------------------------------------------------- 1 | match foo 2 | | true => "it's true" 3 | | "bar" => "it's bar" 4 | | let x: I32 if x > 3 => "it's greater than 3" 5 | | let x: I32 => "it's less than or equal to 3" 6 | else 7 | "I don't know what it is" 8 | end -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/special/tabreplace.expect.txt: -------------------------------------------------------------------------------- 1 | for x in [1, 2, 3]: 2 | count(x) -------------------------------------------------------------------------------- /backend/vendor/vlucas/phpdotenv/src/Exception/ValidationException.php: -------------------------------------------------------------------------------- 1 | add('Namshi\\JOSE\\Test', __DIR__); 5 | 6 | define('TEST_DIR', __DIR__); 7 | define('SSL_KEYS_PATH', 'file://'.TEST_DIR.DIRECTORY_SEPARATOR); 8 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/detect/javascript/short-plain.txt: -------------------------------------------------------------------------------- 1 | const cluster = require('cluster'); 2 | const numCPUs = require('os').cpus().length; 3 | 4 | if (cluster.isMaster) { 5 | for (var i = 0; i < numCPUs; i++) { 6 | cluster.fork(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/ruby/gemfile.expect.txt: -------------------------------------------------------------------------------- 1 | gem "gem_name1", ">= 4.1" 2 | 3 | gem "gem_name2", "~> 4.1" 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/rust/numbers.txt: -------------------------------------------------------------------------------- 1 | 123; 2 | 123usize; 3 | 123_usize; 4 | 0xff00; 5 | 0xff_u8; 6 | 0b1111111110010000; 7 | 0b1111_1111_1001_0000_i32; 8 | 0o764317; 9 | 0o764317_u16; 10 | 123.0; 11 | 0.1; 12 | 0.1f32; 13 | 12E+99_f64; 14 | -------------------------------------------------------------------------------- /backend/vendor/egulias/email-validator/EmailValidator/Exception/CRLFAtTheEnd.php: -------------------------------------------------------------------------------- 1 | getMessage() ?: 'Service Unavailable')) 6 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/ini/tables.expect.txt: -------------------------------------------------------------------------------- 1 | [table] 2 | [[array]] 3 | [dotted.table.name] 4 | [target.'cfg(unix)'] 5 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/kotlin/class.txt: -------------------------------------------------------------------------------- 1 | class A { 2 | } 3 | 4 | class B() 5 | 6 | class C() {} 7 | 8 | public class D 9 | 10 | class E1 11 | class E2 12 | class E3 13 | 14 | class F1 : A 15 | class F2 : A, B 16 | class F3 : A -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/pony/iterface-trait.txt: -------------------------------------------------------------------------------- 1 | interface Iterator[A: A] 2 | fun has_next(): Bool 3 | fun next(): T? 4 | 5 | trait UnitTest 6 | fun name(): String 7 | fun ref set_up(h: TestHelper) ? => 8 | None 9 | fun apply(h: TestHelper) ? -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/properties/syntax.txt: -------------------------------------------------------------------------------- 1 | # comment 2 | # comment 3 | ! comment 4 | ! comment 5 | key=val 6 | key = val 7 | key:val 8 | key : val 9 | key val 10 | key val 11 | key = val\ 12 | val 13 | key\ key\:\= val 14 | key 15 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/python/f-strings.txt: -------------------------------------------------------------------------------- 1 | f'{name}' 2 | f"{name + 5}" 3 | >>> f""" 4 | ... { 5 | ... name 6 | ... } 7 | ... """ 8 | rf"{name}" 9 | fr"{name}" 10 | f"{name + f'{name}'}" 11 | f"{{ }}" 12 | if"text"=="text": 13 | "good" 14 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/ruby/heredoc.txt: -------------------------------------------------------------------------------- 1 | def foo() 2 | msg = <<-HTML 3 |
4 |

#{bar}

5 |
6 | HTML 7 | end 8 | 9 | def baz() 10 | msg = <<~FOO 11 |
12 |

#{bar}

13 |
14 | FOO 15 | end -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/subunit/subunit-uxsuccessline.expect.txt: -------------------------------------------------------------------------------- 1 | uxsuccess test simplename 2 | uxsuccess: test simple name 3 | uxsuccess test simple name 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/xml/unquoted-attributes.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /backend/vendor/egulias/email-validator/EmailValidator/Exception/ConsecutiveDot.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ Illuminate\Mail\Markdown::parse($slot) }} 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /backend/vendor/lcobucci/jwt/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | php: 3 | - 5.6 4 | - 7.0 5 | - 7.1 6 | - 7.2 7 | - 7.3 8 | - nightly 9 | 10 | matrix: 11 | allow_failures: 12 | - php: nightly 13 | 14 | before_script: 15 | - composer install --prefer-dist -o 16 | -------------------------------------------------------------------------------- /backend/vendor/namshi/jose/tests/public.es384.key: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAE6f+XZsg2Tvn0EoEapQ+ylMYNtsm8CPf0 3 | cb8HI2EkfY9Bqpt3QMzwlM7mVsFRmaMZb8nOnRwmpmEnvA2U8ydS+dbnPv7bwYl+ 4 | q1qNeh8Wpjor3VO+RTt4ce0Pn25oGGWU 5 | -----END PUBLIC KEY----- 6 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/detect/csp/default.txt: -------------------------------------------------------------------------------- 1 | Content-Security-Policy: 2 | default-src 'self'; 3 | style-src 'self' css.example.com; 4 | img-src *.example.com; 5 | script-src 'unsafe-eval' 'self' js.example.com 'nonce-Nc3n83cnSAd3wc3Sasdfn939hc3' 6 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/bash/no-numbers.expect.txt: -------------------------------------------------------------------------------- 1 | # numbers aren't highlighted in bash as their semantics is 2 | # not strictly defined for command line parameters 3 | $ tail -10 access.log 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/dos/comments.expect.txt: -------------------------------------------------------------------------------- 1 | rem comment 2 | rem comment 3 | copy a.txt b.txt > rem not_a_comment 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/excel/comments.expect.txt: -------------------------------------------------------------------------------- 1 | =(N4 + N5)*0.055 + N("This is a comment.") 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/sql/keywords.expect.txt: -------------------------------------------------------------------------------- 1 | select * from t where t.select is null; 2 | -------------------------------------------------------------------------------- /backend/vendor/egulias/email-validator/EmailValidator/Exception/AtextAfterCFWS.php: -------------------------------------------------------------------------------- 1 | ", 7 | "subLanguage": "vbscript" 8 | } 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/detect/accesslog/default.txt: -------------------------------------------------------------------------------- 1 | 20.164.151.111 - - [20/Aug/2015:22:20:18 -0400] "GET /mywebpage/index.php HTTP/1.1" 403 772 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.220 Safari/535.1" 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/detect/ini/default.txt: -------------------------------------------------------------------------------- 1 | ; boilerplate 2 | [package] 3 | name = "some_name" 4 | authors = ["Author"] 5 | description = "This is \ 6 | a description" 7 | 8 | [[lib]] 9 | name = ${NAME} 10 | default = True 11 | auto = no 12 | counter = 1_000 13 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/gauss/keywords.txt: -------------------------------------------------------------------------------- 1 | for i(start, stop, bar(5)); 2 | if (i-1 % 5 == 0 .and some_flag); 3 | elseif i % 2 .eqv 0; 4 | external string _olsrnam; 5 | external proc indices2,indexcat; 6 | myPlot.axes.and.for.if.endif.text = "hey"; 7 | local f:proc; 8 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/go/numbers.expect.txt: -------------------------------------------------------------------------------- 1 | float_var := 1.0e10 2 | complex_var := 1.2e5+2.3i 3 | hex_int := 0xcf3e4028ac084aea 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/objectivec/string-literals.txt: -------------------------------------------------------------------------------- 1 | const char *str = "Regular \"quoted\" string\n"; 2 | NSString *nsstr = @"Obj-C \"quoted\" string\n"; 3 | char c = 'c'; 4 | char c2 = '"'; 5 | char c3 = '\''; 6 | char c4 = '\n'; 7 | int multibyte_char = 'abcd'; 8 | -------------------------------------------------------------------------------- /backend/vendor/vlucas/phpdotenv/src/Exception/InvalidFileException.php: -------------------------------------------------------------------------------- 1 | namespace Dotted.Namespace 2 | { 3 | class MyClass 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/handlebars/block-expression-variants-as-path-segment.txt: -------------------------------------------------------------------------------- 1 | text {{#abc abcd.[lite"'ral}}segment] }}a{{/abc}} 2 | 3 | text {{#abc abcd."lite]'ral}}segment" }}a{{/abc}} 4 | 5 | text {{#abc abcd.'lite]"ral}}segment' }}a{{/abc}} 6 | 7 | text 8 | 9 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/javascript/template-strings.expect.txt: -------------------------------------------------------------------------------- 1 | `string ${foo + `str${undefined}ing`}`; 2 | -------------------------------------------------------------------------------- /backend/vendor/egulias/email-validator/EmailValidator/Exception/CharNotAllowed.php: -------------------------------------------------------------------------------- 1 | done!' 10 | All 11 | done! 12 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/cs/string-interpolation.txt: -------------------------------------------------------------------------------- 1 | var istr = $"{{Hello}},\n{$"\"{nested}\"" + @" and " + $@"""{nested}""" /*comments*/ }"; 2 | var ivstr = $@"{{Hello}}, 3 | { 4 | $"\"{nested}\"" + @" 5 | and 6 | " + $@" 7 | ""{nested}"" 8 | " 9 | /*comments*/ }"; 10 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/diff/tests/fixtures/patch.txt: -------------------------------------------------------------------------------- 1 | diff --git a/Foo.php b/Foo.php 2 | index abcdefg..abcdefh 100644 3 | --- a/Foo.php 4 | +++ b/Foo.php 5 | @@ -20,4 +20,5 @@ class Foo 6 | const ONE = 1; 7 | const TWO = 2; 8 | + const THREE = 3; 9 | const FOUR = 4; 10 | -------------------------------------------------------------------------------- /backend/vendor/egulias/email-validator/EmailValidator/Exception/CommaInDomain.php: -------------------------------------------------------------------------------- 1 | const uint64_t MAX_INT_64; 2 | 3 | struct position_tag; 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/gauss/function_defs.txt: -------------------------------------------------------------------------------- 1 | proc (1) = foo(if, endif, 10); 2 | proc foo; 3 | proc (1) = calc(local__row, fin, ...); 4 | fn /* inline */ twopi=pi*2; 5 | fn _n_pi(n /* inline comment */) = pi*n; 6 | keyword add(str, struct plotControl myPlot); 7 | keyword sub; 8 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/handlebars/block.expect.txt: -------------------------------------------------------------------------------- 1 | {{#block}}block content{{/block}} 2 | 3 | -------------------------------------------------------------------------------- /backend/vendor/egulias/email-validator/EmailValidator/Exception/NoDNSRecord.php: -------------------------------------------------------------------------------- 1 | cmrDataProcessors; 3 | } 4 | 5 | public class DefaultDataDaoImpl { 6 | private List cmrDataProcessors; 7 | } 8 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/javascript/class.txt: -------------------------------------------------------------------------------- 1 | class Car extends Vehicle { 2 | constructor(speed, cost) { 3 | super(speed); 4 | 5 | var c = Symbol('cost'); 6 | this[c] = cost; 7 | 8 | this.intro = `This is a car runs at 9 | ${speed}.`; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/lisp/mec.expect.txt: -------------------------------------------------------------------------------- 1 | ; MEC: Multiple Escape Characters. See https://github.com/highlightjs/highlight.js/issues/615 2 | (|spaces and 3 | newlines| x) 4 | (x '|quoted|) 5 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/sql/lateral-view.txt: -------------------------------------------------------------------------------- 1 | SELECT 2 | master_child.col1 AS master_id, 3 | child_table.child_id 4 | FROM VALUES 5 | ( 1 , ARRAY(1,2,3)), 6 | (2, ARRAY(4,5,6)) AS master_child 7 | LATERAL VIEW EXPLODE(master_child.col2) child_table AS child_id; 8 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/typescript/class.txt: -------------------------------------------------------------------------------- 1 | class Car extends Vehicle { 2 | constructor(speed, cost) { 3 | super(speed); 4 | 5 | var c = Symbol('cost'); 6 | this[c] = cost; 7 | 8 | this.intro = `This is a car runs at 9 | ${speed}.`; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/typescript/declares.txt: -------------------------------------------------------------------------------- 1 | export declare class CommandHandler extends EventEmitter { 2 | 3 | constructor(config: CommandHandlerConfig); 4 | /** 5 | * Install the handler onto Discord.js 6 | * @param client - Client to handle 7 | */ 8 | } 9 | -------------------------------------------------------------------------------- /backend/vendor/phar-io/version/phive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/detect/properties/default.txt: -------------------------------------------------------------------------------- 1 | # .properties 2 | ! Exclamation mark = comments, too 3 | 4 | key1 = value1 5 | key2 : value2 6 | key3 value3 7 | key\ spaces multiline\ 8 | value4 9 | empty_key 10 | ! Key can contain escaped chars 11 | \:\= = value5 12 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/clojure/symbols-numbers.expect.txt: -------------------------------------------------------------------------------- 1 | (def +x [(a 1) +2 -3.0 y-5]) 2 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/javascript/default-parameters.expect.txt: -------------------------------------------------------------------------------- 1 | function visibleTodoFilter(state = 'watch', action) {} 2 | -------------------------------------------------------------------------------- /backend/vendor/egulias/email-validator/EmailValidator/Warning/TLD.php: -------------------------------------------------------------------------------- 1 | message = "RFC5321, TLD"; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /backend/vendor/phpunit/php-code-coverage/tests/_files/CoverageNoneTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/detect/ceylon/default.txt: -------------------------------------------------------------------------------- 1 | shared void run() { 2 | print("Hello, `` process.arguments.first else "World" ``!"); 3 | } 4 | class Counter(count=0) { 5 | variable Integer count; 6 | shared Integer currentValue => count; 7 | shared void increment() => count++; 8 | } 9 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/detect/makefile/default.txt: -------------------------------------------------------------------------------- 1 | # Makefile 2 | 3 | BUILDDIR = _build 4 | EXTRAS ?= $(BUILDDIR)/extras 5 | 6 | .PHONY: main clean 7 | 8 | main: 9 | @echo "Building main facility..." 10 | build_main $(BUILDDIR) 11 | 12 | clean: 13 | rm -rf $(BUILDDIR)/* 14 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/cos/basic.txt: -------------------------------------------------------------------------------- 1 | SET test = 1 2 | set ^global = 2 3 | Write "Current date """, $ztimestamp, """, result: ", test + ^global = 3 4 | if (^global = 2) { 5 | do ##class(Cinema.Utils).AddShow("test") // line comment 6 | } 7 | d:(^global = 2) ..thisClassMethod(1, 2, "test") 8 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/lasso/delimiters.txt: -------------------------------------------------------------------------------- 1 |
2 | [local(y::decimal = .57721)] 3 | [noprocess] [until] [/noprocess] 4 | [no_square_brackets] skip subsequent [square brackets] 5 | 6 | 7 |
8 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/markdown/code.expect.txt: -------------------------------------------------------------------------------- 1 | var code = true; 2 | 3 | 4 | ```javascript 5 | var code = true; 6 | ``` 7 | 8 | Inline `code`, and `more code`. 9 | -------------------------------------------------------------------------------- /backend/vendor/swiftmailer/swiftmailer/lib/dependency_maps/message_deps.php: -------------------------------------------------------------------------------- 1 | register('message.message') 5 | ->asNewInstanceOf('Swift_Message') 6 | 7 | ->register('message.mimepart') 8 | ->asNewInstanceOf('Swift_MimePart') 9 | ; 10 | -------------------------------------------------------------------------------- /backend/vendor/laravel/framework/src/Illuminate/Database/ConfigurationUrlParser.php: -------------------------------------------------------------------------------- 1 | f(int val) { 3 | new Type(); 4 | if (val) { 5 | return getType(); 6 | } else if (!val) { 7 | throw getError(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/python/function-header.expect.txt: -------------------------------------------------------------------------------- 1 | def f(x: int) -> None: 2 | pass 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/tap/without-numbers.expect.txt: -------------------------------------------------------------------------------- 1 | 1..6 2 | not ok 3 | ok 4 | not ok 5 | ok 6 | ok 7 | -------------------------------------------------------------------------------- /backend/vendor/hamcrest/hamcrest-php/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/wsdl_class.tpl: -------------------------------------------------------------------------------- 1 | declare(strict_types=1); 2 | 3 | {namespace}class {class_name} extends \SoapClient 4 | { 5 | public function __construct($wsdl, array $options) 6 | { 7 | parent::__construct('{wsdl}', $options); 8 | } 9 | {methods}} 10 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/crystal/operators.txt: -------------------------------------------------------------------------------- 1 | + 2 | - 3 | * 4 | % 5 | & 6 | | 7 | ^ 8 | ** 9 | << 10 | >> 11 | == 12 | != 13 | < 14 | <= 15 | > 16 | >= 17 | <=> 18 | === 19 | // 20 | //= 21 | &+ 22 | &- 23 | &* 24 | &** 25 | &+= 26 | &-= 27 | &*= 28 | ! 29 | ~ 30 | [] 31 | []? 32 | []= 33 | / 34 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/css/pseudo-selector.expect.txt: -------------------------------------------------------------------------------- 1 | li:not(.red){} 2 | li:not(.red):not(.green){} 3 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/haskell/infix.expect.txt: -------------------------------------------------------------------------------- 1 | infix 3 `foo` 2 | infixl 6 `bar` 3 | infixr 9 `baz` 4 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/subunit/subunit-successline.txt: -------------------------------------------------------------------------------- 1 | success test simplename1 2 | success: test simplename2 3 | successful test simplename3 4 | successful: test simplename4 5 | success test simple name1 6 | success: test simple name2 7 | successful test simple name3 8 | successful: test simple name4 9 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/twig/template_tags.txt: -------------------------------------------------------------------------------- 1 | {% if posts|length %} 2 | {% for article in articles %} 3 | <div> 4 | {{ article.title|upper() }} 5 | 6 | {# outputs 'WELCOME' #} 7 | </div> 8 | {% endfor %} 9 | {% endif %} 10 | 11 | {% set user = json_encode(user) %} 12 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/2_a.txt: -------------------------------------------------------------------------------- 1 | a 2 | a 3 | a 4 | a 5 | a 6 | a 7 | a 8 | a 9 | a 10 | a 11 | a 12 | a 13 | a 14 | a 15 | a 16 | a 17 | a 18 | a 19 | a 20 | a 21 | a 22 | a 23 | a 24 | a 25 | a 26 | a 27 | a 28 | a 29 | a 30 | a 31 | a 32 | a 33 | a 34 | a 35 | a -------------------------------------------------------------------------------- /backend/vendor/laravel/framework/src/Illuminate/Container/EntryNotFoundException.php: -------------------------------------------------------------------------------- 1 | '']) 7 | Button Text 8 | @endcomponent 9 | 10 | Thanks,
11 | {{ config('app.name') }} 12 | @endcomponent 13 | -------------------------------------------------------------------------------- /backend/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Int_.php: -------------------------------------------------------------------------------- 1 | DynamicObject() 4 | 5 | struct human = { name } 6 | 7 | @annotated 8 | function main = |args| { 9 | let a = 1 10 | var b = 2 11 | 12 | println("hello") 13 | 14 | let john = human("John Doe") 15 | } 16 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/sql/string-types.expect.txt: -------------------------------------------------------------------------------- 1 | SELECT '\'; 2 | 3 | SELECT "\"; 4 | 5 | SELECT `\`; 6 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/type/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /backend/vendor/facade/ignition-contracts/src/Solution.php: -------------------------------------------------------------------------------- 1 | DynamicObject() 4 | 5 | struct human = { name } 6 | 7 | @annotated 8 | function main = |args| { 9 | let a = 1 10 | var b = 2 11 | 12 | println("hello") 13 | 14 | let john = human("John Doe") 15 | } 16 | -------------------------------------------------------------------------------- /backend/vendor/scrivo/highlight.php/test/markup/subunit/subunit-failureline.expect.txt: -------------------------------------------------------------------------------- 1 | failure: test simplename1 2 | failure test simplename1 3 | failure: test simple name1 4 | failure test simple name1 5 | -------------------------------------------------------------------------------- /backend/vendor/doctrine/inflector/lib/Doctrine/Inflector/NoopWordInflector.php: -------------------------------------------------------------------------------- 1 | message = "Comments found in this email"; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /backend/vendor/facade/flare-client-php/src/Time/SystemTime.php: -------------------------------------------------------------------------------- 1 | getTimestamp(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /backend/vendor/namshi/jose/src/Namshi/JOSE/Signer/SecLib/RSA.php: -------------------------------------------------------------------------------- 1 | encryptionAlgorithm = new CryptRSA(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /backend/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Object_.php: -------------------------------------------------------------------------------- 1 | {{#blockHelper param1 param2}}block content{{/blockHelper}} 2 | 3 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/code-unit-reverse-lookup/ChangeLog.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to `sebastianbergmann/code-unit-reverse-lookup` are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles. 4 | 5 | ## 1.0.0 - 2016-02-13 6 | 7 | ### Added 8 | 9 | * Initial release 10 | 11 | -------------------------------------------------------------------------------- /backend/vendor/sebastian/type/phive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /backend/vendor/theseer/tokenizer/phive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /backend/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/Matcher.php: -------------------------------------------------------------------------------- 1 | abc) 12 | --------------------------------------------------------------------------------