├── public ├── css │ ├── app.css │ └── style.css ├── favicon.ico ├── robots.txt ├── apple-icon.png ├── favicon copy.ico ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-96x96.png ├── img │ └── avatars │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ └── 8.jpg ├── ms-icon-70x70.png ├── ms-icon-144x144.png ├── ms-icon-150x150.png ├── ms-icon-310x310.png ├── android-icon-36x36.png ├── android-icon-48x48.png ├── android-icon-72x72.png ├── android-icon-96x96.png ├── apple-icon-114x114.png ├── apple-icon-120x120.png ├── apple-icon-144x144.png ├── apple-icon-152x152.png ├── apple-icon-180x180.png ├── apple-icon-57x57.png ├── apple-icon-60x60.png ├── apple-icon-72x72.png ├── apple-icon-76x76.png ├── android-icon-144x144.png ├── android-icon-192x192.png ├── apple-icon-precomposed.png └── mix-manifest.json ├── resources ├── js │ └── src │ │ └── assets │ │ ├── .gitkeep │ │ └── scss │ │ ├── _variables.scss │ │ └── _custom.scss └── sass │ └── app.scss ├── laradock ├── certbot │ └── letsencrypt │ │ ├── .gitkeep │ │ └── .well-known │ │ └── .gitkeep ├── logstash │ ├── pipeline │ │ └── .gitkeep │ └── config │ │ └── logstash.yml ├── jupyterhub │ ├── userlist │ └── start.sh ├── DOCUMENTATION │ ├── static │ │ ├── CNAME │ │ └── ads.txt │ └── themes │ │ └── hugo-material-docs │ │ ├── layouts │ │ ├── 404.html │ │ └── shortcodes │ │ │ ├── note.html │ │ │ └── warning.html │ │ ├── archetypes │ │ └── default.md │ │ └── static │ │ ├── fonts │ │ ├── icon.eot │ │ ├── icon.ttf │ │ └── icon.woff │ │ └── images │ │ ├── logo.png │ │ ├── favicon.ico │ │ ├── favicons │ │ ├── favicon.ico │ │ ├── apple-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── ms-icon-70x70.png │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ └── apple-icon-precomposed.png │ │ ├── laradock-full-logo.jpg │ │ └── photos │ │ ├── KiTTY │ │ ├── Window.png │ │ ├── Session.png │ │ ├── Terminal.png │ │ ├── Connection.png │ │ ├── ConnectionData.png │ │ ├── ConnectionSSH.png │ │ ├── TerminalShell.png │ │ ├── TerminalKeyboard.png │ │ ├── WindowAppearance.png │ │ └── ConnectionSSHAuth.png │ │ └── PHPStorm │ │ ├── RemoteHost.png │ │ ├── DebugRemoteOn.png │ │ └── Settings │ │ └── hosts.png ├── aws-eb-cli │ └── .gitignore ├── .zshrc ├── traefik │ ├── data │ │ └── .gitignore │ └── Dockerfile ├── nginx │ ├── sites │ │ └── .gitignore │ └── ssl │ │ └── .gitignore ├── php-worker │ └── supervisord.d │ │ └── .gitignore ├── laravel-horizon │ └── supervisord.d │ │ └── .gitignore ├── mysql │ └── docker-entrypoint-initdb.d │ │ └── .gitignore ├── caddy │ ├── caddy │ │ └── authlist.conf │ └── Dockerfile ├── couchdb │ └── Dockerfile ├── mariadb │ ├── docker-entrypoint-initdb.d │ │ └── .gitignore │ └── my.cnf ├── percona │ ├── docker-entrypoint-initdb.d │ │ └── .gitignore │ └── Dockerfile ├── php-fpm │ ├── phalcon.ini │ └── aerospike.ini ├── apache2 │ ├── vhost.conf │ └── sites │ │ └── .gitignore ├── grafana │ └── Dockerfile ├── graylog │ └── Dockerfile ├── jenkins │ └── tests │ │ ├── plugins │ │ ├── plugins.txt │ │ └── Dockerfile │ │ ├── upgrade-plugins │ │ └── Dockerfile │ │ └── install-plugins │ │ ├── Dockerfile │ │ └── update │ │ └── Dockerfile ├── workspace │ ├── composer.json │ ├── crontab │ │ └── laradock │ ├── aerospike.ini │ └── auth.json ├── thumbor │ └── Dockerfile ├── ide-webide │ └── Dockerfile ├── docker-registry │ └── Dockerfile ├── gitlab │ └── Dockerfile ├── portainer │ └── Dockerfile ├── sonarqube │ └── Dockerfile ├── manticore │ └── Dockerfile ├── mongo-webui │ └── Dockerfile ├── aerospike │ └── Dockerfile ├── redis-webui │ └── Dockerfile ├── redis-cluster │ └── Dockerfile ├── kibana │ └── Dockerfile ├── docker-web-ui │ └── Dockerfile ├── CONTRIBUTING.md ├── maildev │ └── Dockerfile ├── postgres │ ├── Dockerfile │ └── docker-entrypoint-initdb.d │ │ └── .gitignore ├── haproxy │ └── Dockerfile ├── selenium │ └── Dockerfile ├── elasticsearch │ └── Dockerfile ├── ide-codiad │ └── Dockerfile ├── .github │ ├── SUPPORT.md │ ├── home-page-images │ │ ├── join-us.png │ │ ├── laradock-logo.jpg │ │ └── documentation-button.png │ └── FUNDING.yml ├── .vscode │ └── settings.json ├── mailhog │ └── Dockerfile ├── memcached │ └── Dockerfile ├── minio │ └── Dockerfile ├── neo4j │ └── Dockerfile ├── docker-compose.sync.yml ├── mosquitto │ └── Dockerfile ├── postgres-postgis │ └── Dockerfile ├── CODE_OF_CONDUCT.md ├── cassandra │ └── Dockerfile ├── gearman │ └── Dockerfile ├── beanstalkd │ └── Dockerfile ├── rabbitmq │ └── Dockerfile ├── ide-theia │ └── Dockerfile ├── zookeeper │ └── Dockerfile ├── .editorconfig └── mongo │ └── Dockerfile ├── vendor ├── bin │ ├── psysh │ ├── carbon │ ├── phpunit │ ├── php-parse │ ├── commonmark │ └── var-dump-server ├── maatwebsite │ └── excel │ │ ├── src │ │ ├── Fakes │ │ │ └── fake_file │ │ ├── Concerns │ │ │ ├── ShouldAutoSize.php │ │ │ ├── WithHeadingRow.php │ │ │ ├── WithCalculatedFormulas.php │ │ │ ├── WithPreCalculateFormulas.php │ │ │ ├── WithStrictNullComparison.php │ │ │ ├── WithLimit.php │ │ │ ├── FromArray.php │ │ │ ├── WithTitle.php │ │ │ ├── ToArray.php │ │ │ ├── WithStartRow.php │ │ │ ├── WithCustomValueBinder.php │ │ │ ├── WithEvents.php │ │ │ ├── WithHeadings.php │ │ │ ├── WithValidation.php │ │ │ ├── WithBatchInserts.php │ │ │ ├── WithChunkReading.php │ │ │ └── WithMappedCells.php │ │ └── Exceptions │ │ │ └── LaravelExcelException.php │ │ └── CONTRIBUTING.md ├── prettus │ ├── laravel-validation │ │ ├── tests │ │ │ └── .gitkeep │ │ └── _config.yml │ └── l5-repository │ │ ├── _config.yml │ │ ├── .gitignore │ │ └── src │ │ ├── resources │ │ └── lang │ │ │ ├── cn │ │ │ └── criteria.php │ │ │ ├── zh_CN │ │ │ └── criteria.php │ │ │ ├── zh_TW │ │ │ └── criteria.php │ │ │ ├── en │ │ │ └── criteria.php │ │ │ ├── it │ │ │ └── criteria.php │ │ │ ├── pt │ │ │ └── criteria.php │ │ │ ├── ro │ │ │ └── criteria.php │ │ │ ├── pt-br │ │ │ └── criteria.php │ │ │ └── nl │ │ │ └── criteria.php │ │ └── Prettus │ │ └── Repository │ │ └── Generators │ │ └── Stubs │ │ └── bindings │ │ └── bindings.stub ├── sebastian │ ├── version │ │ ├── .gitignore │ │ └── .gitattributes │ ├── diff │ │ ├── tests │ │ │ └── fixtures │ │ │ │ ├── .editorconfig │ │ │ │ ├── out │ │ │ │ ├── .editorconfig │ │ │ │ └── .gitignore │ │ │ │ └── UnifiedDiffAssertTraitIntegrationTest │ │ │ │ ├── 1_a.txt │ │ │ │ ├── 1_b.txt │ │ │ │ └── 2_b.txt │ │ └── .gitignore │ ├── type │ │ ├── .gitattributes │ │ ├── .github │ │ │ └── FUNDING.yml │ │ └── .idea │ │ │ ├── misc.xml │ │ │ └── vcs.xml │ ├── exporter │ │ ├── .github │ │ │ └── FUNDING.yml │ │ └── .gitignore │ ├── environment │ │ ├── .github │ │ │ └── FUNDING.yml │ │ └── .gitignore │ ├── recursion-context │ │ └── .gitignore │ ├── code-unit-reverse-lookup │ │ └── .gitignore │ ├── comparator │ │ └── .gitignore │ ├── object-reflector │ │ └── .gitignore │ ├── global-state │ │ └── .gitignore │ ├── resource-operations │ │ └── .gitignore │ └── object-enumerator │ │ └── .gitignore ├── 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 │ │ ├── hamcrest │ │ └── Hamcrest │ │ │ └── AssertionError.php │ │ └── .gush.yml ├── phpunit │ ├── php-timer │ │ ├── .gitattributes │ │ ├── .github │ │ │ └── FUNDING.yml │ │ └── .gitignore │ ├── php-file-iterator │ │ ├── .gitattributes │ │ └── .gitignore │ ├── php-text-template │ │ ├── .gitattributes │ │ └── .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 │ ├── php-code-coverage │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── src │ │ │ └── Report │ │ │ │ └── Html │ │ │ │ └── Renderer │ │ │ │ └── Template │ │ │ │ └── css │ │ │ │ ├── custom.css │ │ │ │ └── octicons.css │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── Crash.php │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── source_without_ignore.php │ │ │ │ └── ignored-lines-text.txt │ │ │ └── bootstrap.php │ │ ├── .gitattributes │ │ ├── .gitignore │ │ └── phive.xml │ └── phpunit │ │ └── src │ │ └── Framework │ │ └── MockObject │ │ └── Generator │ │ ├── deprecation.tpl │ │ ├── wsdl_method.tpl │ │ ├── trait_class.tpl │ │ └── mocked_class.tpl ├── scrivo │ └── highlight.php │ │ ├── .github │ │ └── FUNDING.yml │ │ ├── test │ │ ├── detect │ │ │ ├── xml │ │ │ │ ├── js.txt │ │ │ │ └── groovy-julia.txt │ │ │ ├── excel │ │ │ │ └── default.txt │ │ │ ├── ruby │ │ │ │ └── double-colon.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 │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── scheme │ │ │ │ ├── lambda.txt │ │ │ │ ├── quoted.txt │ │ │ │ ├── quoted.expect.txt │ │ │ │ └── lambda.expect.txt │ │ │ ├── shell │ │ │ │ ├── plain-prompt.txt │ │ │ │ └── plain-prompt.expect.txt │ │ │ ├── clojure │ │ │ │ └── symbols-numbers.txt │ │ │ ├── ebnf │ │ │ │ ├── underscore-production.txt │ │ │ │ ├── underscore-production.expect.txt │ │ │ │ └── terminators.txt │ │ │ ├── sql │ │ │ │ ├── keywords.txt │ │ │ │ ├── numeric-types.txt │ │ │ │ ├── string-types.txt │ │ │ │ ├── set-operator.txt │ │ │ │ ├── values-statement.txt │ │ │ │ └── tablesample.txt │ │ │ ├── excel │ │ │ │ └── comments.txt │ │ │ ├── haskell │ │ │ │ ├── nested-comments.txt │ │ │ │ ├── infix.txt │ │ │ │ └── nested-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 │ │ │ ├── python │ │ │ │ ├── function-header.txt │ │ │ │ ├── function-header-comments.txt │ │ │ │ └── matrix-multiplication.txt │ │ │ ├── rust │ │ │ │ ├── variables.txt │ │ │ │ ├── comments.txt │ │ │ │ ├── types.txt │ │ │ │ ├── traits.txt │ │ │ │ ├── comments.expect.txt │ │ │ │ ├── strings.txt │ │ │ │ └── variables.expect.txt │ │ │ ├── twig │ │ │ │ ├── filter_with_underscore.txt │ │ │ │ └── filter_with_underscore.expect.txt │ │ │ ├── css │ │ │ │ └── pseudo-selector.txt │ │ │ ├── ini │ │ │ │ ├── variable.txt │ │ │ │ ├── tables.txt │ │ │ │ ├── comments.txt │ │ │ │ ├── variable.expect.txt │ │ │ │ └── array.txt │ │ │ ├── tap │ │ │ │ ├── without-numbers.txt │ │ │ │ └── basic.txt │ │ │ ├── ruby │ │ │ │ ├── gemfile.txt │ │ │ │ └── regexes.txt │ │ │ ├── cpp │ │ │ │ ├── primitive-types.txt │ │ │ │ ├── pointers-returns.txt │ │ │ │ ├── expression-keywords.txt │ │ │ │ ├── function-params.txt │ │ │ │ └── function-title.txt │ │ │ ├── elixir │ │ │ │ ├── strings.txt │ │ │ │ ├── function-title.txt │ │ │ │ └── strings.expect.txt │ │ │ ├── fsharp │ │ │ │ ├── bang-keywords.txt │ │ │ │ └── bang-keywords.expect.txt │ │ │ ├── subunit │ │ │ │ ├── subunit-errorline.txt │ │ │ │ ├── subunit-skipline.txt │ │ │ │ ├── subunit-xfailline.txt │ │ │ │ ├── subunit-uxsuccessline.txt │ │ │ │ ├── subunit-tagline.txt │ │ │ │ ├── subunit-timeline.txt │ │ │ │ ├── subunit-failureline.txt │ │ │ │ ├── subunit-progressline.txt │ │ │ │ ├── subunit-errorline.expect.txt │ │ │ │ ├── subunit-skipline.expect.txt │ │ │ │ └── subunit-xfailline.expect.txt │ │ │ ├── swift │ │ │ │ ├── multiline-string.txt │ │ │ │ ├── multiline-string.expect.txt │ │ │ │ └── functions.txt │ │ │ ├── ceylon │ │ │ │ ├── nested-comments.txt │ │ │ │ └── nested-comments.expect.txt │ │ │ ├── dos │ │ │ │ └── comments.txt │ │ │ ├── cs │ │ │ │ ├── floats.txt │ │ │ │ └── dotted-namespace.txt │ │ │ ├── go │ │ │ │ ├── numbers.txt │ │ │ │ ├── strings.txt │ │ │ │ └── functions.txt │ │ │ ├── bash │ │ │ │ ├── escaped-quote.txt │ │ │ │ ├── no-numbers.txt │ │ │ │ └── escaped-quote.expect.txt │ │ │ ├── crystal │ │ │ │ ├── toplevel-keywords.txt │ │ │ │ ├── defs.txt │ │ │ │ ├── macro.txt │ │ │ │ └── regexes.txt │ │ │ ├── dart │ │ │ │ ├── string-interpolation.txt │ │ │ │ └── comment-markdown.txt │ │ │ ├── yaml │ │ │ │ ├── numbers.txt │ │ │ │ ├── tag.txt │ │ │ │ └── string.txt │ │ │ ├── typescript │ │ │ │ └── nested-templates.txt │ │ │ ├── aspectj │ │ │ │ ├── intertype-constructor.txt │ │ │ │ └── intertype-method.txt │ │ │ ├── xml │ │ │ │ └── space-attributes.txt │ │ │ ├── vim │ │ │ │ └── strings-comments.txt │ │ │ ├── markdown │ │ │ │ ├── list.txt │ │ │ │ └── code.txt │ │ │ ├── stata │ │ │ │ └── built_ins.txt │ │ │ ├── verilog │ │ │ │ └── numbers.txt │ │ │ ├── delphi │ │ │ │ └── compiler-directive.txt │ │ │ ├── less │ │ │ │ └── selectors.txt │ │ │ ├── lisp │ │ │ │ └── mec.txt │ │ │ ├── coffeescript │ │ │ │ └── division.txt │ │ │ ├── scala │ │ │ │ └── case-classes.txt │ │ │ ├── ldif │ │ │ │ └── ldapmodify.txt │ │ │ ├── kotlin │ │ │ │ └── string.txt │ │ │ ├── x86asm │ │ │ │ └── labels-directives.txt │ │ │ ├── http │ │ │ │ └── default.txt │ │ │ ├── protobuf │ │ │ │ └── message-message.txt │ │ │ ├── cos │ │ │ │ └── embedded.txt │ │ │ ├── php │ │ │ │ └── heredoc.txt │ │ │ └── gauss │ │ │ │ └── function_refs.txt │ │ └── special │ │ │ ├── tabreplace.txt │ │ │ ├── languagealias.txt │ │ │ ├── sublanguages.txt │ │ │ ├── line-endings.crlf.txt │ │ │ └── languagealias.expect.txt │ │ ├── Highlight │ │ └── languages │ │ │ └── plaintext.json │ │ ├── .gitattributes │ │ ├── demo │ │ └── .htaccess │ │ ├── tools │ │ └── .htaccess │ │ ├── styles │ │ ├── pojoaque.jpg │ │ ├── school-book.png │ │ ├── brown-papersq.png │ │ └── darkula.css │ │ └── .gitignore ├── swiftmailer │ └── swiftmailer │ │ ├── tests │ │ ├── _samples │ │ │ ├── files │ │ │ │ ├── data.txt │ │ │ │ ├── textfile.zip │ │ │ │ └── swiftmailer.png │ │ │ └── smime │ │ │ │ └── CA.srl │ │ └── StreamCollector.php │ │ ├── .gitignore │ │ ├── doc │ │ └── index.rst │ │ └── .gitattributes ├── facade │ ├── flare-client-php │ │ ├── .github │ │ │ └── FUNDING.yml │ │ └── src │ │ │ ├── Time │ │ │ └── Time.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 ├── psr │ ├── event-dispatcher │ │ └── .gitignore │ ├── container │ │ └── .gitignore │ ├── log │ │ └── Psr │ │ │ └── Log │ │ │ └── InvalidArgumentException.php │ └── simple-cache │ │ └── src │ │ └── CacheException.php ├── brick │ └── math │ │ └── .github │ │ └── FUNDING.yml ├── maennchen │ └── zipstream-php │ │ ├── .github │ │ └── FUNDING.yml │ │ ├── .gitignore │ │ ├── test │ │ └── bootstrap.php │ │ └── src │ │ └── Exception.php ├── phpdocumentor │ ├── reflection-common │ │ └── phpstan.neon │ └── type-resolver │ │ ├── phpstan.neon │ │ └── phive.xml ├── symfony │ ├── deprecation-contracts │ │ ├── .gitignore │ │ └── CHANGELOG.md │ ├── service-contracts │ │ ├── .gitignore │ │ └── CHANGELOG.md │ ├── translation-contracts │ │ ├── .gitignore │ │ └── CHANGELOG.md │ ├── event-dispatcher-contracts │ │ ├── .gitignore │ │ └── CHANGELOG.md │ ├── polyfill-php80 │ │ └── Resources │ │ │ └── stubs │ │ │ ├── ValueError.php │ │ │ ├── UnhandledMatchError.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 │ │ │ │ ├── table.blade.php │ │ │ │ ├── subcopy.blade.php │ │ │ │ ├── button.blade.php │ │ │ │ └── header.blade.php │ │ │ │ └── html │ │ │ │ └── table.blade.php │ │ │ ├── Foundation │ │ │ ├── Console │ │ │ │ └── stubs │ │ │ │ │ ├── observer.plain.stub │ │ │ │ │ ├── exception.stub │ │ │ │ │ ├── model.stub │ │ │ │ │ └── model.pivot.stub │ │ │ └── Exceptions │ │ │ │ └── views │ │ │ │ ├── 404.blade.php │ │ │ │ ├── 401.blade.php │ │ │ │ ├── 419.blade.php │ │ │ │ ├── 500.blade.php │ │ │ │ ├── 429.blade.php │ │ │ │ └── 403.blade.php │ │ │ ├── Contracts │ │ │ ├── Queue │ │ │ │ └── ShouldQueue.php │ │ │ ├── Database │ │ │ │ └── Events │ │ │ │ │ └── MigrationEvent.php │ │ │ ├── Validation │ │ │ │ └── ImplicitRule.php │ │ │ ├── Auth │ │ │ │ └── Middleware │ │ │ │ │ └── AuthenticatesRequests.php │ │ │ ├── Broadcasting │ │ │ │ └── ShouldBroadcastNow.php │ │ │ ├── Cache │ │ │ │ └── LockTimeoutException.php │ │ │ ├── Filesystem │ │ │ │ ├── FileExistsException.php │ │ │ │ └── FileNotFoundException.php │ │ │ ├── Redis │ │ │ │ └── LimiterTimeoutException.php │ │ │ └── Encryption │ │ │ │ ├── DecryptException.php │ │ │ │ └── EncryptException.php │ │ │ ├── Cache │ │ │ └── Events │ │ │ │ ├── CacheMissed.php │ │ │ │ └── KeyForgotten.php │ │ │ ├── Database │ │ │ └── Events │ │ │ │ ├── MigrationEnded.php │ │ │ │ ├── MigrationStarted.php │ │ │ │ ├── TransactionBeginning.php │ │ │ │ ├── TransactionCommitted.php │ │ │ │ └── TransactionRolledBack.php │ │ │ ├── Notifications │ │ │ └── Notifiable.php │ │ │ ├── Support │ │ │ └── Carbon.php │ │ │ ├── Redis │ │ │ └── Connections │ │ │ │ └── PhpRedisClusterConnection.php │ │ │ ├── Session │ │ │ └── TokenMismatchException.php │ │ │ ├── Http │ │ │ ├── Client │ │ │ │ └── ConnectionException.php │ │ │ └── File.php │ │ │ ├── Broadcasting │ │ │ └── BroadcastException.php │ │ │ ├── Queue │ │ │ ├── ManuallyFailedException.php │ │ │ └── MaxAttemptsExceededException.php │ │ │ └── Validation │ │ │ └── UnauthorizedException.php │ └── ui │ │ └── src │ │ ├── Auth │ │ └── stubs │ │ │ └── routes.stub │ │ └── Presets │ │ └── bootstrap-stubs │ │ └── app.scss ├── doctrine │ ├── instantiator │ │ ├── docs │ │ │ └── en │ │ │ │ └── sidebar.rst │ │ ├── phpbench.json │ │ └── .github │ │ │ └── FUNDING.yml │ └── inflector │ │ └── lib │ │ └── Doctrine │ │ └── Inflector │ │ └── WordInflector.php ├── spatie │ └── laravel-permission │ │ ├── .github │ │ └── FUNDING.yml │ │ └── docs │ │ ├── basic-usage │ │ └── _index.md │ │ ├── advanced-usage │ │ ├── _index.md │ │ └── other.md │ │ ├── best-practices │ │ └── _index.md │ │ ├── sponsor-logo.png │ │ ├── images │ │ └── header.jpg │ │ ├── _index.md │ │ └── changelog.md ├── phar-io │ ├── manifest │ │ ├── .gitignore │ │ ├── tests │ │ │ └── _fixture │ │ │ │ └── test.phar │ │ ├── src │ │ │ └── exceptions │ │ │ │ ├── ManifestLoaderException.php │ │ │ │ ├── ManifestElementException.php │ │ │ │ ├── ManifestDocumentException.php │ │ │ │ └── ManifestDocumentMapperException.php │ │ └── phive.xml │ └── version │ │ ├── .gitignore │ │ └── src │ │ └── exceptions │ │ ├── InvalidVersionException.php │ │ └── InvalidPreReleaseSuffixException.php ├── 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 ├── theseer │ └── tokenizer │ │ ├── tests │ │ └── _files │ │ │ └── empty.xml │ │ ├── .gitignore │ │ └── src │ │ ├── Exception.php │ │ ├── NamespaceUriException.php │ │ └── TokenCollectionException.php ├── voku │ └── portable-ascii │ │ └── build │ │ └── composer.json ├── myclabs │ └── deep-copy │ │ ├── doc │ │ ├── clone.png │ │ ├── graph.png │ │ ├── deep-clone.png │ │ └── deep-copy.png │ │ └── src │ │ └── DeepCopy │ │ └── Exception │ │ ├── CloneException.php │ │ └── PropertyException.php ├── nesbot │ └── carbon │ │ ├── .github │ │ └── FUNDING.yml │ │ ├── bin │ │ └── carbon.bat │ │ └── .multi-tester.yml ├── league │ └── flysystem │ │ └── src │ │ ├── FilesystemException.php │ │ ├── Exception.php │ │ ├── Adapter │ │ ├── SynologyFtp.php │ │ └── Polyfill │ │ │ └── StreamedTrait.php │ │ ├── ConnectionErrorException.php │ │ ├── InvalidRootException.php │ │ ├── ConnectionRuntimeException.php │ │ └── RootViolationException.php ├── ramsey │ └── collection │ │ └── phpstan-tests.neon ├── vlucas │ └── phpdotenv │ │ └── src │ │ └── Exception │ │ ├── ExceptionInterface.php │ │ └── ValidationException.php ├── fzaninotto │ └── faker │ │ └── src │ │ └── Faker │ │ └── Provider │ │ ├── de_AT │ │ └── Text.php │ │ ├── fr_CH │ │ └── Text.php │ │ ├── it_CH │ │ └── Text.php │ │ └── fr_CA │ │ └── Company.php ├── phpoffice │ └── phpspreadsheet │ │ └── src │ │ └── PhpSpreadsheet │ │ ├── Exception.php │ │ └── Calculation │ │ └── locale │ │ └── en │ │ └── uk │ │ └── config ├── nikic │ └── php-parser │ │ └── lib │ │ └── PhpParser │ │ ├── ConstExprEvaluationException.php │ │ ├── Node │ │ ├── Scalar.php │ │ ├── Expr.php │ │ └── Stmt.php │ │ └── Comment │ │ └── Doc.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 ├── autoload.php ├── markbaker │ └── matrix │ │ └── phpstan.neon ├── nunomaduro │ └── collision │ │ └── .github │ │ └── FUNDING.yml ├── egulias │ └── email-validator │ │ └── src │ │ └── Exception │ │ ├── CRNoLF.php │ │ ├── DotAtEnd.php │ │ ├── CRLFAtTheEnd.php │ │ ├── DotAtStart.php │ │ ├── ExpectingAT.php │ │ ├── NoDomainPart.php │ │ ├── NoLocalPart.php │ │ ├── ConsecutiveAt.php │ │ ├── ConsecutiveDot.php │ │ ├── ExpectingATEXT.php │ │ ├── ExpectingCTEXT.php │ │ ├── ExpectingDTEXT.php │ │ └── ExpectingQPair.php └── webmozart │ └── assert │ └── .editorconfig ├── bootstrap └── cache │ └── .gitignore ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── cache │ ├── data │ │ └── .gitignore │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── database └── .gitignore ├── .gitignore ├── .DS_Store ├── img ├── Screenshot.png ├── qInlEsuLmF8.jpg ├── Screenshot 2.png ├── Screenshot (1).png ├── Screenshot (10).png ├── Screenshot (11).png ├── Screenshot (12).png ├── Screenshot (13).png ├── Screenshot (2).png ├── Screenshot (3).png ├── Screenshot (4).png ├── Screenshot (5).png ├── Screenshot (6).png ├── Screenshot (7).png ├── Screenshot (8).png └── Screenshot (9).png └── tests └── TestCase.php /public/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /laradock/certbot/letsencrypt/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /laradock/logstash/pipeline/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/bin/psysh: -------------------------------------------------------------------------------- 1 | ../psy/psysh/bin/psysh -------------------------------------------------------------------------------- /laradock/jupyterhub/userlist: -------------------------------------------------------------------------------- 1 | laradock 2 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/static/CNAME: -------------------------------------------------------------------------------- 1 | laradock.io -------------------------------------------------------------------------------- /laradock/aws-eb-cli/.gitignore: -------------------------------------------------------------------------------- 1 | ./ssh_keys 2 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vendor/bin/carbon: -------------------------------------------------------------------------------- 1 | ../nesbot/carbon/bin/carbon -------------------------------------------------------------------------------- /vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/phpunit -------------------------------------------------------------------------------- /vendor/maatwebsite/excel/src/Fakes/fake_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/prettus/laravel-validation/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | *.sqlite-journal 3 | -------------------------------------------------------------------------------- /laradock/.zshrc: -------------------------------------------------------------------------------- 1 | autoload -Uz compinit; compinit 2 | -------------------------------------------------------------------------------- /laradock/certbot/letsencrypt/.well-known/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /laradock/traefik/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vendor/bin/php-parse: -------------------------------------------------------------------------------- 1 | ../nikic/php-parser/bin/php-parse -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /laradock/nginx/sites/.gitignore: -------------------------------------------------------------------------------- 1 | *.conf 2 | !default.conf -------------------------------------------------------------------------------- /laradock/php-worker/supervisord.d/.gitignore: -------------------------------------------------------------------------------- 1 | *.conf 2 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vendor/bin/commonmark: -------------------------------------------------------------------------------- 1 | ../league/commonmark/bin/commonmark -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /laradock/laravel-horizon/supervisord.d/.gitignore: -------------------------------------------------------------------------------- 1 | *.conf 2 | -------------------------------------------------------------------------------- /laradock/mysql/docker-entrypoint-initdb.d/.gitignore: -------------------------------------------------------------------------------- 1 | *.sql 2 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/layouts/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /laradock/caddy/caddy/authlist.conf: -------------------------------------------------------------------------------- 1 | basicauth / laradock laradock 2 | -------------------------------------------------------------------------------- /laradock/couchdb/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM couchdb 2 | 3 | EXPOSE 5984 4 | -------------------------------------------------------------------------------- /laradock/mariadb/docker-entrypoint-initdb.d/.gitignore: -------------------------------------------------------------------------------- 1 | *.sql 2 | -------------------------------------------------------------------------------- /laradock/nginx/ssl/.gitignore: -------------------------------------------------------------------------------- 1 | *.crt 2 | *.csr 3 | *.key 4 | *.pem -------------------------------------------------------------------------------- /laradock/percona/docker-entrypoint-initdb.d/.gitignore: -------------------------------------------------------------------------------- 1 | *.sql 2 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.coveralls.yml: -------------------------------------------------------------------------------- 1 | src_dir: hamcrest 2 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/functions_footer.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/functions_imports.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: s_bergmann 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/prettus/l5-repository/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: allejo 2 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | -------------------------------------------------------------------------------- /vendor/sebastian/type/.gitattributes: -------------------------------------------------------------------------------- 1 | /tools export-ignore 2 | 3 | -------------------------------------------------------------------------------- /vendor/sebastian/type/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: s_bergmann 2 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/files/data.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /laradock/php-fpm/phalcon.ini: -------------------------------------------------------------------------------- 1 | extension=psr.so 2 | extension=phalcon.so -------------------------------------------------------------------------------- /resources/js/src/assets/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | // Variable overrides 2 | -------------------------------------------------------------------------------- /vendor/facade/flare-client-php/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: spatie 2 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/matchers_footer.txt: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /vendor/prettus/laravel-validation/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /vendor/psr/event-dispatcher/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/out/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: s_bergmann 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | laradock/.env 3 | laradock/env-example 4 | config/* 5 | -------------------------------------------------------------------------------- /laradock/apache2/vhost.conf: -------------------------------------------------------------------------------- 1 | Include /etc/apache2/sites-available/*.conf 2 | -------------------------------------------------------------------------------- /laradock/grafana/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM grafana/grafana:latest 2 | 3 | EXPOSE 3000 -------------------------------------------------------------------------------- /laradock/graylog/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM graylog/graylog:3.0 2 | 3 | EXPOSE 9000 4 | -------------------------------------------------------------------------------- /laradock/jenkins/tests/plugins/plugins.txt: -------------------------------------------------------------------------------- 1 | maven-plugin:2.7.1 2 | ant:1.3 3 | -------------------------------------------------------------------------------- /resources/js/src/assets/scss/_custom.scss: -------------------------------------------------------------------------------- 1 | // Here you can add other styles 2 | -------------------------------------------------------------------------------- /vendor/bin/var-dump-server: -------------------------------------------------------------------------------- 1 | ../symfony/var-dumper/Resources/bin/var-dump-server -------------------------------------------------------------------------------- /vendor/brick/math/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | tidelift: "packagist/brick/math" 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: s_bergmann 2 | -------------------------------------------------------------------------------- /vendor/prettus/l5-repository/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | composer.phar 3 | vendor/ -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/detect/xml/js.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: sebastianbergmann 2 | -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | --- -------------------------------------------------------------------------------- /laradock/workspace/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: zipstream 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: sebastianbergmann 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/Crash.php: -------------------------------------------------------------------------------- 1 | 2 | => 3 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/1_a.txt: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/1_b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/.DS_Store -------------------------------------------------------------------------------- /laradock/apache2/sites/.gitignore: -------------------------------------------------------------------------------- 1 | *.conf 2 | !default.conf 3 | !default.apache.conf 4 | -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-common/phpstan.neon: -------------------------------------------------------------------------------- 1 | parameters: 2 | level: max 3 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/handlebars/partial-call.txt: -------------------------------------------------------------------------------- 1 | {{> partial}} 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/handlebars/simple-expression.txt: -------------------------------------------------------------------------------- 1 | {{abc}} 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/handlebars/triple-mustache.txt: -------------------------------------------------------------------------------- 1 | {{{raw}}} 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/javascript/method-call.txt: -------------------------------------------------------------------------------- 1 | x.continue(0); 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/scheme/lambda.txt: -------------------------------------------------------------------------------- 1 | (lambda (x y z) (+ y z)) 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/shell/plain-prompt.txt: -------------------------------------------------------------------------------- 1 | > foo 2 | > /bin/sh 3 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/special/tabreplace.txt: -------------------------------------------------------------------------------- 1 | for x in [1, 2, 3]: 2 | count(x) -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/matchers_imports.txt: -------------------------------------------------------------------------------- 1 | 2 | namespace Hamcrest; -------------------------------------------------------------------------------- /vendor/symfony/deprecation-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/service-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /laradock/thumbor/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM apsl/thumbor 2 | 3 | CMD ["thumbor"] 4 | 5 | EXPOSE 8000 6 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | /tools export-ignore 2 | 3 | *.php diff=php 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/issue19.php: -------------------------------------------------------------------------------- 1 | " 4 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/Highlight/languages/plaintext.json: -------------------------------------------------------------------------------- 1 | { 2 | "disableAutodetect": true 3 | } 4 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/detect/excel/default.txt: -------------------------------------------------------------------------------- 1 | =IF(C10 <= 275.5, "Unprofitable", "Profitable") -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/excel/comments.txt: -------------------------------------------------------------------------------- 1 | =(N4 + N5)*0.055 + N("This is a comment.") 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/handlebars/sub-expressions.txt: -------------------------------------------------------------------------------- 1 | {{helper (subExpression 1 2)}} 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/haskell/nested-comments.txt: -------------------------------------------------------------------------------- 1 | {- this is a {- nested -} comment -} 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/javascript/shebang.txt: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var a = 1; 4 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/pony/lambda.txt: -------------------------------------------------------------------------------- 1 | {(foo: I32)(bar): String => (foo + bar).string()} -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/python/function-header.txt: -------------------------------------------------------------------------------- 1 | def f(x: int) -> None: 2 | pass 3 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/rust/variables.txt: -------------------------------------------------------------------------------- 1 | let foo; 2 | let mut bar; 3 | let _foo_bar; 4 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/twig/filter_with_underscore.txt: -------------------------------------------------------------------------------- 1 | {{ "string with spaces"|url_encode }} -------------------------------------------------------------------------------- /vendor/sebastian/object-reflector/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/spatie/laravel-permission/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://spatie.be/open-source/support-us 2 | -------------------------------------------------------------------------------- /img/Screenshot 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/img/Screenshot 2.png -------------------------------------------------------------------------------- /laradock/docker-registry/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM registry:2 2 | 3 | LABEL maintainer="ahkui " 4 | -------------------------------------------------------------------------------- /laradock/gitlab/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM gitlab/gitlab-ce:latest 2 | 3 | LABEL maintainer="ahkui " 4 | -------------------------------------------------------------------------------- /laradock/portainer/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM portainer/portainer 2 | 3 | LABEL maintainer="luciano@lucianojr.com.br" 4 | -------------------------------------------------------------------------------- /laradock/sonarqube/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM sonarqube:latest 2 | 3 | LABEL maintainer="xiagw " 4 | -------------------------------------------------------------------------------- /public/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/apple-icon.png -------------------------------------------------------------------------------- /vendor/facade/ignition/resources/.gitignore: -------------------------------------------------------------------------------- 1 | compiled/* 2 | !compiled/index.html 3 | !compiled/ignition.js 4 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/button.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }}: {{ $url }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/text/header.blade.php: -------------------------------------------------------------------------------- 1 | [{{ $slot }}]({{ $url }}) 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /composer.phar 3 | /.idea 4 | /vendor 5 | 6 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/detect/ruby/double-colon.txt: -------------------------------------------------------------------------------- 1 | def f(a = self.attr) 2 | A::B.new(a) 3 | end 4 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/css/pseudo-selector.txt: -------------------------------------------------------------------------------- 1 | li:not(.red){} 2 | li:not(.red):not(.green){} 3 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/haskell/infix.txt: -------------------------------------------------------------------------------- 1 | infix 3 `foo` 2 | infixl 6 `bar` 3 | infixr 9 `baz` 4 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/ini/variable.txt: -------------------------------------------------------------------------------- 1 | memory_limit = ${PHP_MEMORY_LIMIT} 2 | key = $VAR1 3 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/pony/prime.txt: -------------------------------------------------------------------------------- 1 | new create(name': String) => 2 | name = name' + 'a' 3 | -------------------------------------------------------------------------------- /vendor/sebastian/exporter/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs 5 | /.php_cs.cache 6 | -------------------------------------------------------------------------------- /vendor/spatie/laravel-permission/docs/basic-usage/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Basic Usage 3 | weight: 1 4 | --- 5 | -------------------------------------------------------------------------------- /img/Screenshot (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/img/Screenshot (1).png -------------------------------------------------------------------------------- /img/Screenshot (10).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/img/Screenshot (10).png -------------------------------------------------------------------------------- /img/Screenshot (11).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/img/Screenshot (11).png -------------------------------------------------------------------------------- /img/Screenshot (12).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/img/Screenshot (12).png -------------------------------------------------------------------------------- /img/Screenshot (13).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/img/Screenshot (13).png -------------------------------------------------------------------------------- /img/Screenshot (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/img/Screenshot (2).png -------------------------------------------------------------------------------- /img/Screenshot (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/img/Screenshot (3).png -------------------------------------------------------------------------------- /img/Screenshot (4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/img/Screenshot (4).png -------------------------------------------------------------------------------- /img/Screenshot (5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/img/Screenshot (5).png -------------------------------------------------------------------------------- /img/Screenshot (6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/img/Screenshot (6).png -------------------------------------------------------------------------------- /img/Screenshot (7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/img/Screenshot (7).png -------------------------------------------------------------------------------- /img/Screenshot (8).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/img/Screenshot (8).png -------------------------------------------------------------------------------- /img/Screenshot (9).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/img/Screenshot (9).png -------------------------------------------------------------------------------- /laradock/manticore/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM manticoresearch/manticore 2 | 3 | EXPOSE 9306 4 | EXPOSE 9308 5 | EXPOSE 9312 6 | -------------------------------------------------------------------------------- /laradock/mongo-webui/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mongoclient/mongoclient 2 | 3 | LABEL maintainer="ahkui " 4 | -------------------------------------------------------------------------------- /public/favicon copy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/favicon copy.ico -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/favicon-96x96.png -------------------------------------------------------------------------------- /public/img/avatars/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/img/avatars/1.jpg -------------------------------------------------------------------------------- /public/img/avatars/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/img/avatars/2.jpg -------------------------------------------------------------------------------- /public/img/avatars/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/img/avatars/3.jpg -------------------------------------------------------------------------------- /public/img/avatars/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/img/avatars/4.jpg -------------------------------------------------------------------------------- /public/img/avatars/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/img/avatars/5.jpg -------------------------------------------------------------------------------- /public/img/avatars/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/img/avatars/6.jpg -------------------------------------------------------------------------------- /public/img/avatars/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/img/avatars/7.jpg -------------------------------------------------------------------------------- /public/img/avatars/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/img/avatars/8.jpg -------------------------------------------------------------------------------- /public/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/ms-icon-70x70.png -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | " 4 | -------------------------------------------------------------------------------- /laradock/redis-webui/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM erikdubbelboer/phpredisadmin 2 | 3 | LABEL maintainer="ahkui " 4 | -------------------------------------------------------------------------------- /laradock/workspace/crontab/laradock: -------------------------------------------------------------------------------- 1 | * * * * * laradock /usr/bin/php /var/www/artisan schedule:run >> /dev/null 2>&1 2 | -------------------------------------------------------------------------------- /public/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/ms-icon-144x144.png -------------------------------------------------------------------------------- /public/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/ms-icon-150x150.png -------------------------------------------------------------------------------- /public/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/ms-icon-310x310.png -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/actionscript/method-call.expect.txt: -------------------------------------------------------------------------------- 1 | x.get(0); 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/handlebars/raw-block.txt: -------------------------------------------------------------------------------- 1 | {{{{#raw}}}} {{verbatim}} content {{{{/raw}}}} {{var}} 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/ruby/gemfile.txt: -------------------------------------------------------------------------------- 1 | gem "gem_name1", ">= 4.1" 2 | 3 | gem "gem_name2", "~> 4.1" 4 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/sql/set-operator.txt: -------------------------------------------------------------------------------- 1 | SELECT * FROM VALUES 1, 2 ,3 UNION ALL VALUES 1, 2, 3; 2 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/out/.gitignore: -------------------------------------------------------------------------------- 1 | # reset all ignore rules to create sandbox for integration test 2 | !/** -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php: -------------------------------------------------------------------------------- 1 | " 4 | -------------------------------------------------------------------------------- /public/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/android-icon-36x36.png -------------------------------------------------------------------------------- /public/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/android-icon-48x48.png -------------------------------------------------------------------------------- /public/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/android-icon-72x72.png -------------------------------------------------------------------------------- /public/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/android-icon-96x96.png -------------------------------------------------------------------------------- /public/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/apple-icon-114x114.png -------------------------------------------------------------------------------- /public/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/apple-icon-120x120.png -------------------------------------------------------------------------------- /public/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/apple-icon-144x144.png -------------------------------------------------------------------------------- /public/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/apple-icon-152x152.png -------------------------------------------------------------------------------- /public/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/apple-icon-180x180.png -------------------------------------------------------------------------------- /public/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/apple-icon-57x57.png -------------------------------------------------------------------------------- /public/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/apple-icon-60x60.png -------------------------------------------------------------------------------- /public/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/apple-icon-72x72.png -------------------------------------------------------------------------------- /public/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/apple-icon-76x76.png -------------------------------------------------------------------------------- /vendor/phar-io/manifest/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /src/autoload.php 4 | /tools 5 | /vendor 6 | 7 | /build 8 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/cpp/primitive-types.txt: -------------------------------------------------------------------------------- 1 | const uint64_t MAX_INT_64; 2 | 3 | struct position_tag; 4 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/elixir/strings.txt: -------------------------------------------------------------------------------- 1 | a = """test""" 2 | b = '''test''' 3 | c = "test" 4 | d = 'test' 5 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/fsharp/bang-keywords.txt: -------------------------------------------------------------------------------- 1 | let! (result2 : byte[]) = stream.AsyncRead(bufferSize) 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/javascript/method-call.expect.txt: -------------------------------------------------------------------------------- 1 | x.continue(0); 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/subunit/subunit-errorline.txt: -------------------------------------------------------------------------------- 1 | error: test simplename 2 | error: test simple name 3 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/swift/multiline-string.txt: -------------------------------------------------------------------------------- 1 | var string = """ 2 | var a = not actually code 3 | """ -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/special/languagealias.txt: -------------------------------------------------------------------------------- 1 | var x = '

this should not be highlighted as HTML'; -------------------------------------------------------------------------------- /laradock/kibana/Dockerfile: -------------------------------------------------------------------------------- 1 | ARG ELK_VERSION=7.5.1 2 | FROM docker.elastic.co/kibana/kibana:${ELK_VERSION} 3 | 4 | EXPOSE 5601 5 | -------------------------------------------------------------------------------- /public/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/android-icon-144x144.png -------------------------------------------------------------------------------- /public/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/android-icon-192x192.png -------------------------------------------------------------------------------- /vendor/filp/whoops/src/Whoops/Resources/views/header_outer.html.php: -------------------------------------------------------------------------------- 1 |

2 | render($header) ?> 3 |
4 | -------------------------------------------------------------------------------- /vendor/maennchen/zipstream-php/.gitignore: -------------------------------------------------------------------------------- 1 | clover.xml 2 | composer.lock 3 | coverage.clover 4 | .idea 5 | phpunit.xml 6 | vendor 7 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/README.md: -------------------------------------------------------------------------------- 1 | mockery-docs 2 | ============ 3 | 4 | Document for the PHP Mockery framework on readthedocs.org -------------------------------------------------------------------------------- /vendor/phar-io/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /src/autoload.php 5 | /tools 6 | /vendor 7 | 8 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/source_without_ignore.php: -------------------------------------------------------------------------------- 1 | rem not_a_comment 4 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/ini/tables.txt: -------------------------------------------------------------------------------- 1 | [table] 2 | [[array]] 3 | [dotted.table.name] 4 | [target.'cfg(unix)'] 5 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/javascript/default-parameters.txt: -------------------------------------------------------------------------------- 1 | function visibleTodoFilter(state = 'watch', action) {} 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/pony/creator.txt: -------------------------------------------------------------------------------- 1 | new create(env: Env, name: String) => 2 | _env = env 3 | _name = name -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/tests/_files/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /laradock/docker-web-ui/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM konradkleine/docker-registry-frontend:v2 2 | 3 | LABEL maintainer="ahkui " 4 | -------------------------------------------------------------------------------- /public/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/public/apple-icon-precomposed.png -------------------------------------------------------------------------------- /vendor/laravel/ui/src/Auth/stubs/routes.stub: -------------------------------------------------------------------------------- 1 | 2 | Auth::routes(); 3 | 4 | Route::get('/home', 'HomeController@index')->name('home'); 5 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/classInNamespace.php: -------------------------------------------------------------------------------- 1 | render($frame_code) ?> 2 | render($env_details) ?> -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Framework/MockObject/Generator/deprecation.tpl: -------------------------------------------------------------------------------- 1 | 2 | @trigger_error({deprecation}, E_USER_DEPRECATED); 3 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/rust/types.txt: -------------------------------------------------------------------------------- 1 | type A: Trait; 2 | type A; 3 | type A = B; 4 | type R = m::R 5 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs 3 | /.php_cs.cache 4 | /.phpunit.result.cache 5 | /composer.lock 6 | /vendor 7 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php: -------------------------------------------------------------------------------- 1 | " 4 | 5 | EXPOSE 80 25 6 | -------------------------------------------------------------------------------- /laradock/postgres/Dockerfile: -------------------------------------------------------------------------------- 1 | ARG POSTGRES_VERSION=alpine 2 | FROM postgres:${POSTGRES_VERSION} 3 | 4 | CMD ["postgres"] 5 | 6 | EXPOSE 5432 7 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/myclabs/deep-copy/doc/clone.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/myclabs/deep-copy/doc/graph.png -------------------------------------------------------------------------------- /vendor/nesbot/carbon/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | #github: kylekatarnls, briannesbitt 2 | open_collective: Carbon 3 | tidelift: packagist/nesbot/carbon 4 | -------------------------------------------------------------------------------- /vendor/nesbot/carbon/bin/carbon.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | setlocal DISABLEDELAYEDEXPANSION 3 | SET BIN_TARGET=%~dp0/carbon 4 | php "%BIN_TARGET%" %* 5 | -------------------------------------------------------------------------------- /vendor/prettus/l5-repository/src/resources/lang/cn/criteria.php: -------------------------------------------------------------------------------- 1 | '不接受的筛选字段 :field' 4 | ]; 5 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/bash/escaped-quote.txt: -------------------------------------------------------------------------------- 1 | # Escaped double-quote is not a string 2 | echo '"quoted"' | tr -d \" > text.txt 3 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/cs/dotted-namespace.txt: -------------------------------------------------------------------------------- 1 | namespace Dotted.Namespace 2 | { 3 | class MyClass 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/dart/string-interpolation.txt: -------------------------------------------------------------------------------- 1 | '1234$identifier $true'; 2 | // comment 3 | '1234${1234 + true + 'foo'}'; 4 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/ebnf/underscore-production.expect.txt: -------------------------------------------------------------------------------- 1 | a_production = nonterminal ; 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/pony/triple-quote.txt: -------------------------------------------------------------------------------- 1 | """ 2 | A triple quoted string 3 | * Goes several lines 4 | * Keeps formatting 5 | """ -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | /composer.phar 5 | /.php_cs.cache 6 | /.phpunit.result.cache 7 | -------------------------------------------------------------------------------- /vendor/sebastian/resource-operations/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /build/FunctionSignatureMap.php 4 | /composer.lock 5 | /vendor 6 | -------------------------------------------------------------------------------- /laradock/haproxy/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM dockercloud/haproxy:latest 2 | 3 | LABEL maintainer="ZeroC0D3 Team" 4 | 5 | EXPOSE 80 6 | -------------------------------------------------------------------------------- /laradock/selenium/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM selenium/standalone-chrome 2 | 3 | LABEL maintainer="Edmund Luong " 4 | 5 | EXPOSE 4444 6 | -------------------------------------------------------------------------------- /vendor/facade/ignition-contracts/.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: laravel 2 | 3 | disabled: 4 | - single_class_element_per_statement 5 | - self_accessor 6 | -------------------------------------------------------------------------------- /vendor/league/flysystem/src/FilesystemException.php: -------------------------------------------------------------------------------- 1 | '字段 :field 不支持搜索功能' 4 | ]; 5 | -------------------------------------------------------------------------------- /vendor/prettus/l5-repository/src/resources/lang/zh_TW/criteria.php: -------------------------------------------------------------------------------- 1 | '欄位 :field 不支援搜尋功能' 4 | ]; 5 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/handlebars/comments.txt: -------------------------------------------------------------------------------- 1 | {{!-- a comment {{expression}} --}} {{expression}} 2 | 3 | {{! a simple comment }} 4 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/typescript/nested-templates.txt: -------------------------------------------------------------------------------- 1 | let foo = true; 2 | `hello ${foo ? `Mr ${name}` : 'there'}`; 3 | foo = false; 4 | -------------------------------------------------------------------------------- /laradock/elasticsearch/Dockerfile: -------------------------------------------------------------------------------- 1 | ARG ELK_VERSION=7.5.1 2 | FROM docker.elastic.co/elasticsearch/elasticsearch:${ELK_VERSION} 3 | 4 | EXPOSE 9200 9300 5 | -------------------------------------------------------------------------------- /laradock/ide-codiad/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM linuxserver/codiad 2 | 3 | LABEL maintainer="ahkui " 4 | 5 | COPY config.php /defaults/config.php 6 | -------------------------------------------------------------------------------- /laradock/jenkins/tests/install-plugins/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM bats-jenkins 2 | 3 | RUN /usr/local/bin/install-plugins.sh maven-plugin:2.7.1 ant:1.3 mesos:0.13.0 4 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/myclabs/deep-copy/doc/deep-clone.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/myclabs/deep-copy/doc/deep-copy.png -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.crlf.* eol=crlf 4 | 5 | styles/* linguist-vendored 6 | test/**/*.txt linguist-vendored 7 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/aspectj/intertype-constructor.txt: -------------------------------------------------------------------------------- 1 | public MyClass.new() throws Exception{ 2 | // intertype constructor body 3 | } 4 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/xml/space-attributes.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/yaml/tag.txt: -------------------------------------------------------------------------------- 1 | key: !!builtintagname test 2 | key: !localtagname test 3 | key: "!notatag" 4 | key: '!!notatageither' 5 | -------------------------------------------------------------------------------- /laradock/.github/SUPPORT.md: -------------------------------------------------------------------------------- 1 | # Support Questions 2 | 3 | For help, please visit our official chatting room on [Gitter](https://gitter.im/Laradock/laradock). 4 | -------------------------------------------------------------------------------- /laradock/.github/home-page-images/join-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/.github/home-page-images/join-us.png -------------------------------------------------------------------------------- /laradock/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.associations": { 3 | "env-example": "dotenv", 4 | "Dockerfile-*": "dockerfile" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /laradock/mailhog/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mailhog/mailhog 2 | 3 | LABEL maintainer="Mahmoud Zalt " 4 | 5 | CMD ["Mailhog"] 6 | 7 | EXPOSE 1025 8025 8 | -------------------------------------------------------------------------------- /laradock/memcached/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM memcached:latest 2 | 3 | LABEL maintainer="Mahmoud Zalt " 4 | 5 | CMD ["memcached"] 6 | 7 | EXPOSE 11211 8 | -------------------------------------------------------------------------------- /laradock/minio/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM minio/minio 2 | 3 | LABEL maintainer="Thor Erik Lie " 4 | 5 | ENTRYPOINT ["minio", "server", "/export"] 6 | -------------------------------------------------------------------------------- /laradock/postgres/docker-entrypoint-initdb.d/.gitignore: -------------------------------------------------------------------------------- 1 | *.sh 2 | !init_gitlab_db.sh 3 | !init_jupyterhub_db.sh 4 | !init_sonarqube_db.sh 5 | !init_confluence_db.sh -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/phpbench.json: -------------------------------------------------------------------------------- 1 | { 2 | "bootstrap": "vendor/autoload.php", 3 | "path": "tests/DoctrineTest/InstantiatorPerformance" 4 | } 5 | -------------------------------------------------------------------------------- /vendor/maatwebsite/excel/src/Concerns/ShouldAutoSize.php: -------------------------------------------------------------------------------- 1 | app->bind($REPOSITORY$, $ELOQUENT$); 3 | $PLACEHOLDER$ -------------------------------------------------------------------------------- /vendor/ramsey/collection/phpstan-tests.neon: -------------------------------------------------------------------------------- 1 | parameters: 2 | checkGenericClassInNonGenericObjectType: false 3 | checkMissingIterableValueType: false 4 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/demo/.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 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/detect/plaintext/default.txt: -------------------------------------------------------------------------------- 1 | id | description 2 | ----+------------- 3 | 1 | one 4 | 2 | two 5 | 3 | three 6 | (3 rows) 7 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/special/sublanguages.txt: -------------------------------------------------------------------------------- 1 | */ ?> 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /laradock/jenkins/tests/install-plugins/update/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM bats-jenkins-install-plugins 2 | 3 | RUN /usr/local/bin/install-plugins.sh maven-plugin:2.13 ant:1.3 4 | -------------------------------------------------------------------------------- /laradock/neo4j/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM tpires/neo4j 2 | 3 | LABEL maintainer="Mahmoud Zalt " 4 | 5 | VOLUME /var/lib/neo4j/data 6 | 7 | EXPOSE 7474 1337 8 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/html/table.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{ Illuminate\Mail\Markdown::parse($slot) }} 3 |
4 | -------------------------------------------------------------------------------- /vendor/maatwebsite/excel/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Find the contributing guide at: https://docs.laravel-excel.com/3.1/getting-started/contributing 4 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/tests/_fixture/test.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/phar-io/manifest/tests/_fixture/test.phar -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/classUsesNamespacedFunction.php: -------------------------------------------------------------------------------- 1 | Hours 2 | 3 |
    4 | {#users} 5 |
  • {firstName}
  • {~n} 6 | {/users} 7 |
8 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/fsharp/bang-keywords.expect.txt: -------------------------------------------------------------------------------- 1 | let! (result2 : byte[]) = stream.AsyncRead(bufferSize) 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/handlebars/simple-expression.expect.txt: -------------------------------------------------------------------------------- 1 | {{abc}} 2 | 3 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/handlebars/triple-mustache.expect.txt: -------------------------------------------------------------------------------- 1 | {{{raw}}} 2 | 3 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | 2 | render($panel_details) ?> 3 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/styles/school-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/scrivo/highlight.php/styles/school-book.png -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/detect/clojure-repl/default.txt: -------------------------------------------------------------------------------- 1 | user=> (defn f [x y] 2 | #_=> (+ x y)) 3 | #'user/f 4 | user=> (f 5 7) 5 | 12 6 | user=> nil 7 | nil 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/ebnf/terminators.txt: -------------------------------------------------------------------------------- 1 | full-stop = "." . 2 | semicolon = ";" ; 3 | end-test = "end" ; (* ending production to test semicolon *) 4 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/handlebars/partial-call.expect.txt: -------------------------------------------------------------------------------- 1 | {{> partial}} 2 | 3 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/scheme/quoted.expect.txt: -------------------------------------------------------------------------------- 1 | (scheme 'a '(a quoted (list)) `(quoted)) 2 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/src/Exception.php: -------------------------------------------------------------------------------- 1 | " 4 | 5 | COPY mosquitto.conf /mosquitto/config/ 6 | -------------------------------------------------------------------------------- /laradock/postgres-postgis/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mdillon/postgis:latest 2 | 3 | LABEL maintainer="Mahmoud Zalt " 4 | 5 | CMD ["postgres"] 6 | 7 | EXPOSE 5432 8 | -------------------------------------------------------------------------------- /laradock/workspace/aerospike.ini: -------------------------------------------------------------------------------- 1 | extension=aerospike.so 2 | aerospike.udf.lua_system_path=/usr/local/aerospike/lua 3 | aerospike.udf.lua_user_path=/usr/local/aerospike/usr-lua -------------------------------------------------------------------------------- /vendor/facade/ignition-contracts/docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/facade/ignition-contracts/docs/screenshot.png -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/de_AT/Text.php: -------------------------------------------------------------------------------- 1 | 'Columns :field are not accepted in the research' 4 | ]; 5 | -------------------------------------------------------------------------------- /vendor/prettus/l5-repository/src/resources/lang/it/criteria.php: -------------------------------------------------------------------------------- 1 | 'I campi :field non sono accettati nella ricerca' 4 | ]; 5 | -------------------------------------------------------------------------------- /vendor/prettus/l5-repository/src/resources/lang/pt/criteria.php: -------------------------------------------------------------------------------- 1 | 'As colunas :field não são aceitas nessa consulta.' 4 | ]; 5 | -------------------------------------------------------------------------------- /vendor/prettus/l5-repository/src/resources/lang/ro/criteria.php: -------------------------------------------------------------------------------- 1 | 'Coloanele :field nu sunt acceptate în căutare.' 4 | ]; 5 | -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/InvalidArgumentException.php: -------------------------------------------------------------------------------- 1 | {} 4 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/spatie/laravel-permission/docs/sponsor-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/spatie/laravel-permission/docs/sponsor-logo.png -------------------------------------------------------------------------------- /vendor/symfony/console/Resources/bin/hiddeninput.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/console/Resources/bin/hiddeninput.exe -------------------------------------------------------------------------------- /laradock/jenkins/tests/plugins/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM bats-jenkins 2 | 3 | COPY plugins.txt /usr/share/jenkins/ref/ 4 | RUN /usr/local/bin/plugins.sh /usr/share/jenkins/ref/plugins.txt 5 | -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: phpdoctrine 2 | tidelift: packagist/doctrine%2Finstantiator 3 | custom: https://www.doctrine-project.org/sponsorship.html 4 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/fr_CH/Text.php: -------------------------------------------------------------------------------- 1 | 'As colunas :field não são aceitas nessa consulta.' 4 | ]; 5 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/cpp/expression-keywords.txt: -------------------------------------------------------------------------------- 1 | double x = exp(log(2)); // recognize built-ins 2 | return 0; // recognize keyword that started the expression 3 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/haskell/nested-comments.expect.txt: -------------------------------------------------------------------------------- 1 | {- this is a {- nested -} comment -} 2 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/markdown/code.txt: -------------------------------------------------------------------------------- 1 | var code = true; 2 | 3 | 4 | ```javascript 5 | var code = true; 6 | ``` 7 | 8 | Inline `code`, and `more code`. 9 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/pony/lambda.expect.txt: -------------------------------------------------------------------------------- 1 | {(foo: I32)(bar): String => (foo + bar).string()} 2 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/spatie/laravel-permission/docs/images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/spatie/laravel-permission/docs/images/header.jpg -------------------------------------------------------------------------------- /laradock/.github/home-page-images/documentation-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/.github/home-page-images/documentation-button.png -------------------------------------------------------------------------------- /laradock/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Laradock Code of Conduct 2 | 3 | We follow the [Contributor Covenant](https://www.contributor-covenant.org/version/1/4/code-of-conduct) Code of Conduct. 4 | -------------------------------------------------------------------------------- /laradock/logstash/config/logstash.yml: -------------------------------------------------------------------------------- 1 | http.host: "0.0.0.0" 2 | 3 | xpack.monitoring.enabled: false 4 | config.reload.automatic: true 5 | path.config: "/usr/share/logstash/pipeline" 6 | -------------------------------------------------------------------------------- /laradock/workspace/auth.json: -------------------------------------------------------------------------------- 1 | { 2 | "http-basic": { 3 | "repo.magento.com": { 4 | "username": "", 5 | "password": "" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/facade/flare-client-php/src/Time/Time.php: -------------------------------------------------------------------------------- 1 | render($header_outer); 3 | $tpl->render($frames_description); 4 | $tpl->render($frames_container); 5 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/fr_CA/Company.php: -------------------------------------------------------------------------------- 1 | 'Kolommen :field worden niet geaccepteerd in de zoekopdracht' 4 | ]; 5 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/handlebars/sub-expressions.expect.txt: -------------------------------------------------------------------------------- 1 | {{helper (subExpression 1 2)}} 2 | 3 | -------------------------------------------------------------------------------- /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 | """ -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /laradock/cassandra/Dockerfile: -------------------------------------------------------------------------------- 1 | ARG CASSANDRA_VERSION=latest 2 | FROM bitnami/cassandra:${CASSANDRA_VERSION} 3 | 4 | LABEL maintainer="Stefan Neuhaus " 5 | 6 | -------------------------------------------------------------------------------- /laradock/gearman/Dockerfile: -------------------------------------------------------------------------------- 1 | ARG GEARMAN_VERSION=latest 2 | FROM artefactual/gearmand:${GEARMAN_VERSION} 3 | 4 | LABEL maintainer="Stefan Neuhaus " 5 | 6 | -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/app.js": "/js/app.js", 3 | "/css/app.css": "/css/app.css", 4 | "/css/style.css": "/css/style.css", 5 | "/js/main.js": "/js/main.js" 6 | } 7 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php: -------------------------------------------------------------------------------- 1 | #bar {} 4 | #bar {} 5 | &#bar {} 6 | &:hover {} 7 | height: ~"@{height}px"; 8 | } 9 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/swift/multiline-string.expect.txt: -------------------------------------------------------------------------------- 1 | var string = """ 2 | var a = not actually code 3 | """ -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/twig/filter_with_underscore.expect.txt: -------------------------------------------------------------------------------- 1 | {{ "string with spaces"|url_encode }} 2 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp037.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp037.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp1006.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp1006.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp1026.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp1026.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp424.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp424.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp437.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp437.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp500.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp737.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp737.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp775.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp775.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp850.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp850.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp852.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp852.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp855.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp855.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp856.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp856.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp857.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp857.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp860.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp860.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp861.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp861.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp862.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp862.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp863.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp863.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp864.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp864.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp865.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp865.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp866.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp866.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp869.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp869.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp874.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp874.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp875.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp875.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp932.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp932.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp936.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp936.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp949.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp949.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.cp950.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.cp950.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.koi8-r.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.koi8-r.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.koi8-u.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.koi8-u.php -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/src/TokenCollectionException.php: -------------------------------------------------------------------------------- 1 | "> 2 | render($panel_left) ?> 3 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/ManifestLoaderException.php: -------------------------------------------------------------------------------- 1 | error: test simplename 2 | error: test simple name 3 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/special/line-endings.crlf.txt: -------------------------------------------------------------------------------- 1 | // FileComponent Class 2 | export class FileComponent { 3 | file = { name: 'logo.svg', size: 2120109, type: 'image/svg' }; 4 | } 5 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/UnifiedDiffAssertTraitIntegrationTest/2_b.txt: -------------------------------------------------------------------------------- 1 | a 2 | a 3 | a 4 | a 5 | a 6 | a 7 | a 8 | a 9 | a 10 | a 11 | b 12 | a 13 | a 14 | a 15 | a 16 | a 17 | a 18 | c -------------------------------------------------------------------------------- /laradock/beanstalkd/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM alpine 2 | LABEL maintainer="Mahmoud Zalt " 3 | 4 | RUN apk add --no-cache beanstalkd 5 | 6 | EXPOSE 11300 7 | ENTRYPOINT ["/usr/bin/beanstalkd"] 8 | -------------------------------------------------------------------------------- /vendor/facade/ignition-contracts/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | All notable changes to `ignition-contracts` will be documented in this file 4 | 5 | ## 1.0.0 - 2019-08-30 6 | 7 | - initial release 8 | -------------------------------------------------------------------------------- /vendor/guzzlehttp/guzzle/src/Exception/TransferException.php: -------------------------------------------------------------------------------- 1 | /* 2 | /* 3 | Ceylon has nested comments. 4 | */ 5 | */ 6 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/sql/values-statement.txt: -------------------------------------------------------------------------------- 1 | VALUES 1, 2 , 3; 2 | 3 | VALUES 4 | (1, 'Spock'), 5 | (2,'Kirk') , 6 | (3, 'McCoy'), 7 | (4,'Scotty'); 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/files/swiftmailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/swiftmailer/swiftmailer/tests/_samples/files/swiftmailer.png -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-1.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-10.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-11.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-11.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-13.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-13.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-14.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-14.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-15.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-15.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-16.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-16.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-2.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-3.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-4.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-5.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-6.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-7.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-8.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-9.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.iso-8859-9.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1250.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1250.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1251.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1251.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1252.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1252.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1253.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1253.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1254.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1254.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1255.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1255.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1256.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1256.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1257.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1257.php -------------------------------------------------------------------------------- /vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1258.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/vendor/symfony/polyfill-iconv/Resources/charset/from.windows-1258.php -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/fonts/icon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/fonts/icon.eot -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/fonts/icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/fonts/icon.ttf -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/fonts/icon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/fonts/icon.woff -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/logo.png -------------------------------------------------------------------------------- /laradock/jupyterhub/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Copyright (c) Jupyter Development Team. 3 | # Distributed under the terms of the Modified BSD License. 4 | 5 | set -e 6 | 7 | exec sh -c "env PATH=$PATH $*" 8 | -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // Fonts 2 | @import url('https://fonts.googleapis.com/css?family=Nunito'); 3 | 4 | // Variables 5 | @import 'variables'; 6 | 7 | // Bootstrap 8 | @import '~bootstrap/scss/bootstrap'; 9 | -------------------------------------------------------------------------------- /vendor/facade/flare-client-php/src/Context/ContextInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/javascript/shebang.expect.txt: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var a = 1; 4 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/shell/plain-prompt.expect.txt: -------------------------------------------------------------------------------- 1 | > foo 2 | > /bin/sh 3 | -------------------------------------------------------------------------------- /vendor/spatie/laravel-permission/docs/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: v3 3 | slogan: Associate users with roles and permissions 4 | githubUrl: https://github.com/spatie/laravel-permission 5 | branch: master 6 | --- 7 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php: -------------------------------------------------------------------------------- 1 | user=> 2 | => 3 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/pony/prime.expect.txt: -------------------------------------------------------------------------------- 1 | new create(name': String) => 2 | name = name' + 'a' -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/layouts/shortcodes/note.html: -------------------------------------------------------------------------------- 1 |
2 |

{{ .Get "title" }}

3 |

{{ printf "%s" .Inner | markdownify }}

4 |
-------------------------------------------------------------------------------- /vendor/facade/flare-client-php/src/Contracts/ProvidesFlareContext.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php: -------------------------------------------------------------------------------- 1 | 2 | {{!-- only show if author exists --}} 3 | {{#if author}} 4 |

{{firstName}} {{lastName}}

5 | {{/if}} 6 | 7 | -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/layouts/shortcodes/warning.html: -------------------------------------------------------------------------------- 1 |
2 |

{{ .Get "title" }}

3 |

{{ printf "%s" .Inner | markdownify }}

4 |
-------------------------------------------------------------------------------- /laradock/rabbitmq/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM rabbitmq:alpine 2 | 3 | LABEL maintainer="Mahmoud Zalt " 4 | 5 | RUN rabbitmq-plugins enable --offline rabbitmq_management 6 | 7 | EXPOSE 4369 5671 5672 15671 15672 25672 8 | -------------------------------------------------------------------------------- /laradock/traefik/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM traefik:v2.2 2 | 3 | LABEL maintainer="Luis Coutinho " 4 | 5 | WORKDIR /data 6 | 7 | RUN touch acme.json 8 | 9 | RUN chmod 600 acme.json 10 | 11 | VOLUME /data -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | 2 | bar + "baz" 3 | 4 | new create(hunger: I32) => 5 | _hunger = hunger 6 | 7 | be feed(food: I32) => 8 | _hunger = _hunger - food -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/rust/comments.expect.txt: -------------------------------------------------------------------------------- 1 | /* rust has 2 | /* nested /* block */ */ 3 | */ comments 4 | -------------------------------------------------------------------------------- /vendor/spatie/laravel-permission/docs/advanced-usage/other.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Other 3 | weight: 8 4 | --- 5 | 6 | Schema Diagram: 7 | 8 | You can find a schema diagram at https://drawsql.app/templates/laravel-permission 9 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /laradock/ide-theia/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM theiaide/theia 2 | 3 | LABEL maintainer="ahkui " 4 | 5 | USER root 6 | 7 | RUN echo 'fs.inotify.max_user_watches=524288' >> /etc/sysctl.conf 8 | 9 | USER theia 10 | -------------------------------------------------------------------------------- /laradock/zookeeper/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM zookeeper:latest 2 | 3 | LABEL maintainer="Hyduan " 4 | 5 | VOLUME /data 6 | VOLUME /datalog 7 | 8 | EXPOSE 2181 9 | 10 | CMD ["zkServer.sh", "start-foreground"] 11 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | lambda (x y z) (+ y z)) 2 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/special/languagealias.expect.txt: -------------------------------------------------------------------------------- 1 | var x = '<p>this should <b>not</b> be highlighted as <em>HTML</em>'; -------------------------------------------------------------------------------- /vendor/sebastian/type/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /laradock/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | insert_final_newline = true 6 | 7 | [*] 8 | charset = utf-8 9 | 10 | [{Dockerfile,docker-compose.yml}] 11 | indent_style = space 12 | indent_size = 2 13 | -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/favicon.ico -------------------------------------------------------------------------------- /vendor/facade/flare-client-php/src/Truncation/TruncationStrategy.php: -------------------------------------------------------------------------------- 1 | 2) 5 | &js 6 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/crystal/regexes.txt: -------------------------------------------------------------------------------- 1 | if /foo/ 2 | unless /foo/ 3 | case /foo/ 4 | select /foo/ 5 | when /foo/ 6 | while /foo/ 7 | until /foo/ 8 | +/foo/ 9 | 10 | # NG 11 | xif /foo/ 12 | ifx /foo/ 13 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/pony/creator.expect.txt: -------------------------------------------------------------------------------- 1 | new create(env: Env, name: String) => 2 | _env = env 3 | _name = name -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/sebastian/type/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/laradock-full-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/laradock-full-logo.jpg -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/Window.png -------------------------------------------------------------------------------- /vendor/filp/whoops/src/Whoops/Resources/views/frames_container.html.php: -------------------------------------------------------------------------------- 1 |
2 | render($frame_list) ?> 3 |
-------------------------------------------------------------------------------- /vendor/guzzlehttp/promises/src/functions_include.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/favicon-96x96.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/ms-icon-70x70.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/Session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/Session.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/Terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/Terminal.png -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/model.stub: -------------------------------------------------------------------------------- 1 | ) { 12 | } 13 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/cpp/function-params.txt: -------------------------------------------------------------------------------- 1 | int f( 2 | int a = 1, 3 | char* b = "2", // Line comment 4 | double c = 3.0, /* Block comment */ 5 | ARRAY(int, 5) d, 6 | void* e __attribute__((unused)) 7 | ); 8 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/ms-icon-144x144.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/ms-icon-150x150.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/ms-icon-310x310.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/Connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/Connection.png -------------------------------------------------------------------------------- /laradock/mariadb/my.cnf: -------------------------------------------------------------------------------- 1 | # MariaDB database server configuration file. 2 | # 3 | # You can use this file to overwrite the default configuration 4 | # 5 | # For explanations see 6 | # http://dev.mysql.com/doc/mysql/en/server-system-variables.html 7 | 8 | -------------------------------------------------------------------------------- /vendor/facade/flare-client-php/src/Context/ContextDetectorInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/multipleNamespacesWithOneClassUsingBraces.php: -------------------------------------------------------------------------------- 1 | memory_limit = ${PHP_MEMORY_LIMIT} 2 | key = $VAR1 3 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/rust/variables.expect.txt: -------------------------------------------------------------------------------- 1 | let foo; 2 | let mut bar; 3 | let _foo_bar; 4 | -------------------------------------------------------------------------------- /vendor/spatie/laravel-permission/docs/changelog.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Changelog 3 | weight: 10 4 | --- 5 | 6 | All notable changes to laravel-permission are documented [on GitHub](https://github.com/spatie/laravel-permission/blob/master/CHANGELOG.md) 7 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/android-icon-36x36.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/android-icon-48x48.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/android-icon-72x72.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/android-icon-96x96.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-114x114.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-120x120.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-144x144.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-152x152.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-180x180.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-57x57.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-60x60.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-72x72.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/apple-icon-76x76.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/ConnectionData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/ConnectionData.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/ConnectionSSH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/ConnectionSSH.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/TerminalShell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/TerminalShell.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/PHPStorm/RemoteHost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/PHPStorm/RemoteHost.png -------------------------------------------------------------------------------- /laradock/percona/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM percona:5.7 2 | 3 | LABEL maintainer="DTUNES " 4 | 5 | RUN chown -R mysql:root /var/lib/mysql/ 6 | 7 | COPY my.cnf /etc/mysql/conf.d/my.cnf 8 | 9 | CMD ["mysqld"] 10 | 11 | EXPOSE 3306 12 | -------------------------------------------------------------------------------- /vendor/egulias/email-validator/src/Exception/CRNoLF.php: -------------------------------------------------------------------------------- 1 | getMessage() ?: 'Forbidden')) 6 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Validation/UnauthorizedException.php: -------------------------------------------------------------------------------- 1 | check1()) 5 | return 3; 6 | else if (a->check2()) 7 | return 4; 8 | return a->result(); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/php/heredoc.txt: -------------------------------------------------------------------------------- 1 | echo <<bar[1]}. 3 | EOT; 4 | 5 | echo <<skip test simplename 2 | skip: test simple name 3 | skip test simple name 4 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/StreamCollector.php: -------------------------------------------------------------------------------- 1 | content .= $arg; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/android-icon-144x144.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/favicons/android-icon-192x192.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/TerminalKeyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/TerminalKeyboard.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/WindowAppearance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/KiTTY/WindowAppearance.png -------------------------------------------------------------------------------- /laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/PHPStorm/DebugRemoteOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manhlab/Document-Management-System/HEAD/laradock/DOCUMENTATION/themes/hugo-material-docs/static/images/photos/PHPStorm/DebugRemoteOn.png -------------------------------------------------------------------------------- /vendor/doctrine/inflector/lib/Doctrine/Inflector/WordInflector.php: -------------------------------------------------------------------------------- 1 | # Escaped double-quote is not a string 2 | echo '"quoted"' | tr -d \" > text.txt 3 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/elixir/function-title.txt: -------------------------------------------------------------------------------- 1 | def f do 2 | :ok 3 | end 4 | 5 | def f(list) do 6 | :ok 7 | end 8 | 9 | def f :clear, list do 10 | :ok 11 | end 12 | 13 | def f!, do: IO.puts "hello world" 14 | 15 | x = 5 16 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/scrivo/highlight.php/test/markup/subunit/subunit-xfailline.expect.txt: -------------------------------------------------------------------------------- 1 | xfail test simplename 2 | xfail: test simple name 3 | xfail test simple name 4 | -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Exception/ValidationException.php: -------------------------------------------------------------------------------- 1 | " 4 | 5 | #COPY mongo.conf /usr/local/etc/mongo/mongo.conf 6 | 7 | VOLUME /data/db /data/configdb 8 | 9 | CMD ["mongod"] 10 | 11 | EXPOSE 27017 12 | 13 | -------------------------------------------------------------------------------- /vendor/egulias/email-validator/src/Exception/ConsecutiveAt.php: -------------------------------------------------------------------------------- 1 | """test""" 2 | b = '''test''' 3 | c = "test" 4 | d = 'test' 5 | --------------------------------------------------------------------------------