├── public ├── favicon.ico ├── robots.txt ├── fonts │ └── roboto │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-Thin.woff │ │ ├── Roboto-Black.woff │ │ ├── Roboto-Black.woff2 │ │ ├── Roboto-Bold.woff2 │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-Regular.woff │ │ ├── Roboto-Thin.woff2 │ │ ├── Roboto-Regular.woff2 │ │ ├── Roboto-BlackItalic.woff │ │ ├── Roboto-BlackItalic.woff2 │ │ ├── Roboto-BoldItalic.woff │ │ ├── Roboto-BoldItalic.woff2 │ │ ├── Roboto-LightItalic.woff │ │ ├── Roboto-LightItalic.woff2 │ │ ├── Roboto-MediumItalic.woff │ │ ├── Roboto-ThinItalic.woff │ │ ├── Roboto-ThinItalic.woff2 │ │ ├── Roboto-MediumItalic.woff2 │ │ ├── Roboto-RegularItalic.woff │ │ └── Roboto-RegularItalic.woff2 └── icons │ └── material-icons │ ├── MaterialIcons-Regular.woff │ └── MaterialIcons-Regular.woff2 ├── database └── .gitignore ├── vendor ├── predis │ └── predis │ │ └── VERSION ├── psr │ ├── log │ │ ├── .gitignore │ │ └── Psr │ │ │ └── Log │ │ │ └── InvalidArgumentException.php │ ├── container │ │ └── .gitignore │ └── simple-cache │ │ └── src │ │ └── CacheException.php ├── symfony │ ├── finder │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── .dot │ │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ │ ├── one │ │ │ │ ├── a │ │ │ │ ├── .dot │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ │ ├── ab.dat │ │ │ │ │ └── C │ │ │ │ │ │ └── abc.dat │ │ │ │ └── a.dat │ │ │ │ ├── copy │ │ │ │ └── A │ │ │ │ │ ├── B │ │ │ │ │ ├── ab.dat.copy │ │ │ │ │ └── C │ │ │ │ │ │ └── abc.dat.copy │ │ │ │ │ └── a.dat.copy │ │ │ │ ├── with space │ │ │ │ └── foo.txt │ │ │ │ ├── r+e.gex[c]a(r)s │ │ │ │ └── dir │ │ │ │ │ └── bar.dat │ │ │ │ ├── dolor.txt │ │ │ │ ├── ipsum.txt │ │ │ │ └── lorem.txt │ │ └── .gitignore │ ├── routing │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── bar.xml │ │ │ │ ├── empty.yml │ │ │ │ ├── foo.xml │ │ │ │ ├── foo1.xml │ │ │ │ ├── annotated.php │ │ │ │ ├── file_resource.yml │ │ │ │ ├── nonvalid.yml │ │ │ │ ├── nonvalid2.yml │ │ │ │ ├── directory │ │ │ │ ├── routes3.yml │ │ │ │ └── recurse │ │ │ │ │ ├── routes1.yml │ │ │ │ │ └── routes2.yml │ │ │ │ ├── special_route_name.yml │ │ │ │ ├── OtherAnnotatedClasses │ │ │ │ └── NoStartTagClass.php │ │ │ │ ├── withdoctype.xml │ │ │ │ ├── incomplete.yml │ │ │ │ ├── nonvalidkeys.yml │ │ │ │ ├── directory_import │ │ │ │ └── import.yml │ │ │ │ ├── nonesense_type_without_resource.yml │ │ │ │ ├── bad_format.yml │ │ │ │ ├── nonesense_resource_plus_path.yml │ │ │ │ ├── controller │ │ │ │ ├── import_controller.yml │ │ │ │ ├── import__controller.yml │ │ │ │ ├── override_defaults.yml │ │ │ │ ├── import_override_defaults.yml │ │ │ │ └── routing.yml │ │ │ │ └── with_define_path_variable.php │ │ └── .gitignore │ ├── translation │ │ ├── Tests │ │ │ └── fixtures │ │ │ │ ├── empty.csv │ │ │ │ ├── empty.ini │ │ │ │ ├── empty.json │ │ │ │ ├── empty.mo │ │ │ │ ├── empty.po │ │ │ │ ├── empty.xlf │ │ │ │ ├── empty.yml │ │ │ │ ├── non-valid.yml │ │ │ │ ├── resources.yml │ │ │ │ ├── resources.ini │ │ │ │ ├── extractor │ │ │ │ ├── resource.format.engine │ │ │ │ └── this.is.a.template.format.engine │ │ │ │ ├── malformed.json │ │ │ │ ├── resourcebundle │ │ │ │ ├── corrupted │ │ │ │ │ └── resources.dat │ │ │ │ ├── dat │ │ │ │ │ ├── packagelist.txt │ │ │ │ │ ├── en.txt │ │ │ │ │ ├── fr.txt │ │ │ │ │ ├── en.res │ │ │ │ │ ├── fr.res │ │ │ │ │ └── resources.dat │ │ │ │ └── res │ │ │ │ │ └── en.res │ │ │ │ ├── resources.dump.json │ │ │ │ ├── resources.json │ │ │ │ ├── empty-translation.po │ │ │ │ ├── messages_linear.yml │ │ │ │ ├── valid.csv │ │ │ │ ├── messages.yml │ │ │ │ ├── resources.php │ │ │ │ ├── plurals.po │ │ │ │ ├── encoding.xlf │ │ │ │ ├── plurals.mo │ │ │ │ ├── resources.csv │ │ │ │ ├── resources.mo │ │ │ │ ├── empty-translation.mo │ │ │ │ ├── resources.po │ │ │ │ ├── fuzzy-translations.po │ │ │ │ ├── escaped-id.po │ │ │ │ └── resources.ts │ │ └── .gitignore │ ├── console │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── input_definition_1.md │ │ │ │ ├── input_definition_1.txt │ │ │ │ ├── application_gethelp.txt │ │ │ │ ├── application_run4.txt │ │ │ │ ├── input_argument_1.txt │ │ │ │ ├── input_option_1.txt │ │ │ │ ├── input_argument_2.txt │ │ │ │ ├── input_definition_1.json │ │ │ │ ├── input_definition_2.txt │ │ │ │ ├── input_option_3.txt │ │ │ │ ├── input_definition_3.txt │ │ │ │ ├── input_option_6.txt │ │ │ │ ├── input_argument_4.txt │ │ │ │ ├── input_argument_1.md │ │ │ │ ├── Style │ │ │ │ └── SymfonyStyle │ │ │ │ │ └── output │ │ │ │ │ ├── output_3.txt │ │ │ │ │ ├── output_7.txt │ │ │ │ │ ├── interactive_output_1.txt │ │ │ │ │ ├── output_17.txt │ │ │ │ │ ├── output_0.txt │ │ │ │ │ ├── output_1.txt │ │ │ │ │ └── output_6.txt │ │ │ │ ├── input_argument_3.txt │ │ │ │ ├── input_argument_with_default_inf_value.txt │ │ │ │ ├── input_option_2.txt │ │ │ │ ├── input_option_4.txt │ │ │ │ ├── input_option_5.txt │ │ │ │ ├── input_argument_with_style.txt │ │ │ │ ├── input_definition_1.xml │ │ │ │ ├── input_definition_2.md │ │ │ │ ├── input_option_with_default_inf_value.txt │ │ │ │ ├── command_1.txt │ │ │ │ ├── input_argument_2.md │ │ │ │ ├── input_option_1.md │ │ │ │ ├── input_option_with_style.txt │ │ │ │ ├── input_argument_3.md │ │ │ │ ├── input_argument_with_style.md │ │ │ │ ├── application_renderexception1.txt │ │ │ │ ├── input_argument_4.md │ │ │ │ ├── input_argument_with_default_inf_value.md │ │ │ │ ├── input_definition_4.txt │ │ │ │ ├── application_renderexception_doublewidth1.txt │ │ │ │ ├── input_argument_1.json │ │ │ │ ├── input_definition_3.md │ │ │ │ ├── input_option_3.md │ │ │ │ ├── input_option_4.md │ │ │ │ ├── input_option_2.md │ │ │ │ ├── application_renderexception4.txt │ │ │ │ ├── input_option_6.md │ │ │ │ ├── input_option_with_style.md │ │ │ │ ├── input_argument_2.json │ │ │ │ ├── input_option_with_default_inf_value.md │ │ │ │ ├── input_argument_1.xml │ │ │ │ ├── input_option_5.md │ │ │ │ ├── Foo5Command.php │ │ │ │ ├── input_argument_3.json │ │ │ │ ├── input_argument_4.json │ │ │ │ ├── command_1.md │ │ │ │ ├── input_option_1.xml │ │ │ │ ├── application_renderexception_escapeslines.txt │ │ │ │ ├── input_argument_2.xml │ │ │ │ ├── input_argument_with_default_inf_value.json │ │ │ │ ├── input_argument_with_style.json │ │ │ │ ├── input_option_with_style_array.md │ │ │ │ ├── application_renderexception2.txt │ │ │ │ ├── input_argument_4.xml │ │ │ │ ├── application_renderexception_doublewidth2.txt │ │ │ │ ├── input_option_with_style_array.txt │ │ │ │ ├── BarBucCommand.php │ │ │ │ ├── application_renderexception_doublewidth1decorated.txt │ │ │ │ ├── input_option_1.json │ │ │ │ ├── input_option_3.xml │ │ │ │ ├── input_option_4.xml │ │ │ │ ├── Foo4Command.php │ │ │ │ ├── input_option_3.json │ │ │ │ ├── input_option_4.json │ │ │ │ ├── input_option_5.xml │ │ │ │ ├── input_argument_3.xml │ │ │ │ └── input_option_5.json │ │ ├── .gitignore │ │ └── Resources │ │ │ └── bin │ │ │ └── hiddeninput.exe │ ├── http-kernel │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── Bundle1Bundle │ │ │ │ ├── bar.txt │ │ │ │ ├── foo.txt │ │ │ │ └── Resources │ │ │ │ │ └── foo.txt │ │ │ │ ├── Bundle2Bundle │ │ │ │ └── foo.txt │ │ │ │ ├── BaseBundle │ │ │ │ └── Resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── hide.txt │ │ │ │ ├── ChildBundle │ │ │ │ └── Resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── hide.txt │ │ │ │ └── Resources │ │ │ │ ├── BaseBundle │ │ │ │ └── hide.txt │ │ │ │ ├── Bundle1Bundle │ │ │ │ └── foo.txt │ │ │ │ ├── ChildBundle │ │ │ │ └── foo.txt │ │ │ │ └── FooBundle │ │ │ │ └── foo.txt │ │ └── .gitignore │ ├── http-foundation │ │ ├── Tests │ │ │ ├── File │ │ │ │ └── Fixtures │ │ │ │ │ ├── directory │ │ │ │ │ └── .empty │ │ │ │ │ ├── .unknownextension │ │ │ │ │ ├── other-file.example │ │ │ │ │ ├── test │ │ │ │ │ └── test.gif │ │ │ └── Session │ │ │ │ └── Storage │ │ │ │ └── Handler │ │ │ │ └── Fixtures │ │ │ │ ├── read_only.php │ │ │ │ ├── empty_destroys.php │ │ │ │ └── with_cookie.php │ │ └── .gitignore │ ├── debug │ │ ├── .gitignore │ │ └── Tests │ │ │ ├── Fixtures │ │ │ ├── Throwing.php │ │ │ ├── PEARClass.php │ │ │ ├── notPsr0Bis.php │ │ │ ├── reallyNotPsr0.php │ │ │ ├── casemismatch.php │ │ │ ├── psr4 │ │ │ │ └── Psr4CaseMismatch.php │ │ │ ├── ClassAlias.php │ │ │ ├── InternalTrait.php │ │ │ ├── NonDeprecatedInterface.php │ │ │ ├── FinalClass.php │ │ │ ├── InternalInterface.php │ │ │ ├── DeprecatedClass.php │ │ │ ├── DeprecatedInterface.php │ │ │ └── AnnotatedClass.php │ │ │ └── Fixtures2 │ │ │ └── RequiredTwice.php │ ├── process │ │ └── .gitignore │ ├── var-dumper │ │ ├── .gitignore │ │ └── Tests │ │ │ └── Fixtures │ │ │ ├── NotLoadableClass.php │ │ │ └── FooInterface.php │ ├── css-selector │ │ └── .gitignore │ ├── event-dispatcher │ │ └── .gitignore │ └── polyfill-php70 │ │ └── Resources │ │ └── stubs │ │ ├── Error.php │ │ ├── ParseError.php │ │ ├── TypeError.php │ │ ├── ArithmeticError.php │ │ ├── AssertionError.php │ │ └── DivisionByZeroError.php ├── sebastian │ ├── version │ │ ├── .gitignore │ │ └── .gitattributes │ ├── recursion-context │ │ └── .gitignore │ ├── resource-operations │ │ └── .gitignore │ ├── exporter │ │ └── .gitignore │ ├── code-unit-reverse-lookup │ │ └── .gitignore │ ├── comparator │ │ └── .gitignore │ ├── global-state │ │ └── .gitignore │ ├── diff │ │ ├── .gitignore │ │ └── tests │ │ │ └── fixtures │ │ │ └── patch.txt │ ├── object-reflector │ │ └── .gitignore │ ├── environment │ │ └── .gitignore │ └── object-enumerator │ │ └── .gitignore ├── league │ └── flysystem │ │ ├── docs │ │ ├── .gitignore │ │ ├── CNAME │ │ └── _data │ │ │ ├── images.yml │ │ │ └── project.yml │ │ └── src │ │ ├── Exception.php │ │ ├── Adapter │ │ ├── SynologyFtp.php │ │ └── Polyfill │ │ │ └── StreamedTrait.php │ │ ├── RootViolationException.php │ │ ├── Plugin │ │ └── PluginNotFoundException.php │ │ └── FilesystemNotFoundException.php ├── mockery │ └── mockery │ │ ├── .styleci.yml │ │ ├── docs │ │ ├── .gitignore │ │ ├── README.md │ │ ├── getting_started │ │ │ ├── map.rst.inc │ │ │ └── index.rst │ │ ├── cookbook │ │ │ ├── map.rst.inc │ │ │ └── index.rst │ │ └── reference │ │ │ └── mockery │ │ │ └── index.rst │ │ ├── tests │ │ └── Mockery │ │ │ └── _files │ │ │ └── file.txt │ │ ├── travis │ │ ├── extra.ini │ │ ├── install.sh │ │ ├── after_success.sh │ │ └── script.sh │ │ ├── .gitignore │ │ ├── library │ │ └── Mockery │ │ │ ├── Loader │ │ │ └── Loader.php │ │ │ └── Generator │ │ │ ├── Generator.php │ │ │ └── StringManipulation │ │ │ └── Pass │ │ │ └── Pass.php │ │ └── examples │ │ └── starship │ │ └── Bootstrap.php ├── psy │ └── psysh │ │ ├── test │ │ └── fixtures │ │ │ ├── legacy │ │ │ └── .psysh │ │ │ │ ├── history │ │ │ │ ├── php_manual.sqlite │ │ │ │ └── rc.php │ │ │ ├── mixed │ │ │ └── .psysh │ │ │ │ ├── psysh_history │ │ │ │ ├── rc.php │ │ │ │ └── config.php │ │ │ └── default │ │ │ ├── .config │ │ │ └── psysh │ │ │ │ ├── psysh_history │ │ │ │ └── config.php │ │ │ └── .local │ │ │ └── share │ │ │ └── psysh │ │ │ └── php_manual.sqlite │ │ ├── .gitignore │ │ ├── .editorconfig │ │ └── bin │ │ └── build-vendor ├── dnoegel │ └── php-xdg-base-dir │ │ └── .gitignore ├── phpunit │ ├── php-timer │ │ ├── .gitattributes │ │ └── .gitignore │ ├── phpunit │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── bar.xml │ │ │ │ ├── foo.xml │ │ │ │ ├── expectedFileFormat.txt │ │ │ │ ├── JsonData │ │ │ │ │ ├── simpleObject.json │ │ │ │ │ └── arrayObject.json │ │ │ │ ├── NoTestCaseClass.php │ │ │ │ ├── configuration.colors.empty.xml │ │ │ │ ├── configuration.colors.true.xml │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── configuration.colors.false.xml │ │ │ │ ├── configuration.colors.invalid.xml │ │ │ │ ├── DummyException.php │ │ │ │ ├── NonStatic.php │ │ │ │ ├── configuration_stop_on_warning.xml │ │ │ │ ├── NamespaceCoveredFunction.php │ │ │ │ ├── NotVoidTestCase.php │ │ │ │ ├── CustomPrinter.php │ │ │ │ ├── EmptyTestCaseTest.php │ │ │ │ ├── InheritedTestCase.php │ │ │ │ ├── configuration.custom-printer.xml │ │ │ │ ├── Inheritance │ │ │ │ │ ├── InheritanceA.php │ │ │ │ │ └── InheritanceB.php │ │ │ │ ├── AssertionExample.php │ │ │ │ ├── OverrideTestCase.php │ │ │ │ ├── ClassWithScalarTypeDeclarations.php │ │ │ │ ├── ConcreteTest.php │ │ │ │ ├── Struct.php │ │ │ │ ├── NoTestCases.php │ │ │ │ ├── NothingTest.php │ │ │ │ ├── ConcreteTest.my.php │ │ │ │ ├── NoArgTestCaseTest.php │ │ │ │ ├── StopsOnWarningTest.php │ │ │ │ ├── MockRunner.php │ │ │ │ ├── configuration.suites.xml │ │ │ │ ├── Failure.php │ │ │ │ ├── ThrowNoExceptionTestCase.php │ │ │ │ ├── Success.php │ │ │ │ ├── TestTestError.php │ │ │ │ ├── phpt-for-coverage.phpt │ │ │ │ ├── AbstractTest.php │ │ │ │ ├── TestSkipped.php │ │ │ │ ├── configuration.one-file-suite.xml │ │ │ │ ├── phpunit-example-extension │ │ │ │ │ └── tools │ │ │ │ │ │ └── phpunit.d │ │ │ │ │ │ └── phpunit-example-extension-1.0.1.phar │ │ │ │ ├── TestGeneratorMaker.php │ │ │ │ ├── TestIncomplete.php │ │ │ │ ├── WasRun.php │ │ │ │ ├── IncompleteTest.php │ │ │ │ ├── OneTestCase.php │ │ │ │ ├── phpt-xfail.phpt │ │ │ │ ├── IniTest.php │ │ │ │ ├── CoverageNoneTest.php │ │ │ │ ├── NotPublicTestCase.php │ │ │ │ ├── ThrowExceptionTestCase.php │ │ │ │ └── AssertionExampleTest.php │ │ │ ├── TextUI │ │ │ │ ├── _files │ │ │ │ │ ├── expect_external.txt │ │ │ │ │ ├── phpt-env.expected.txt │ │ │ │ │ └── phpt_external.php │ │ │ │ ├── phpt-external.phpt │ │ │ │ ├── phpt-args.phpt │ │ │ │ ├── phpt-stdin.phpt │ │ │ │ └── phpt-env.phpt │ │ │ ├── Regression │ │ │ │ ├── GitHub │ │ │ │ │ ├── 74 │ │ │ │ │ │ └── NewException.php │ │ │ │ │ ├── 322 │ │ │ │ │ │ └── phpunit322.xml │ │ │ │ │ ├── 797 │ │ │ │ │ │ └── bootstrap797.php │ │ │ │ │ ├── 873 │ │ │ │ │ │ └── Issue873Test.php │ │ │ │ │ ├── 1216 │ │ │ │ │ │ ├── bootstrap1216.php │ │ │ │ │ │ └── phpunit1216.xml │ │ │ │ │ ├── 1265 │ │ │ │ │ │ ├── phpunit1265.xml │ │ │ │ │ │ └── Issue1265Test.php │ │ │ │ │ ├── 1330 │ │ │ │ │ │ ├── phpunit1330.xml │ │ │ │ │ │ └── Issue1330Test.php │ │ │ │ │ ├── 1351 │ │ │ │ │ │ └── ChildProcessClass1351.php │ │ │ │ │ ├── 1437 │ │ │ │ │ │ └── Issue1437Test.php │ │ │ │ │ ├── 1570 │ │ │ │ │ │ └── Issue1570Test.php │ │ │ │ │ ├── 2158 │ │ │ │ │ │ └── constant.inc │ │ │ │ │ ├── 2435 │ │ │ │ │ │ └── Issue2435Test.php │ │ │ │ │ ├── 2448 │ │ │ │ │ │ └── Test.php │ │ │ │ │ └── 2591 │ │ │ │ │ │ ├── bootstrapWithBootstrap.php │ │ │ │ │ │ ├── bootstrapWithBootstrapNoGlobal.php │ │ │ │ │ │ └── bootstrapNoBootstrap.php │ │ │ │ └── Trac │ │ │ │ │ ├── 684 │ │ │ │ │ └── Issue684Test.php │ │ │ │ │ └── 783 │ │ │ │ │ ├── OneTest.php │ │ │ │ │ └── TwoTest.php │ │ │ └── Fail │ │ │ │ └── fail.phpt │ │ ├── .gitattributes │ │ ├── .stickler.yml │ │ └── .editorconfig │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── tests │ │ │ ├── _files │ │ │ │ ├── CoveredFunction.php │ │ │ │ ├── source_without_ignore.php │ │ │ │ ├── ignored-lines-text.txt │ │ │ │ └── CoverageNoneTest.php │ │ │ └── bootstrap.php │ │ ├── .gitignore │ │ ├── src │ │ │ └── Report │ │ │ │ └── Html │ │ │ │ └── Renderer │ │ │ │ └── Template │ │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── .github │ │ │ └── CONTRIBUTING.md │ ├── php-file-iterator │ │ ├── .gitattributes │ │ └── .gitignore │ ├── php-text-template │ │ ├── .gitattributes │ │ └── .gitignore │ ├── php-token-stream │ │ ├── .gitattributes │ │ ├── .gitignore │ │ └── tests │ │ │ └── _fixture │ │ │ ├── issue19.php │ │ │ ├── classInNamespace.php │ │ │ ├── classUsesNamespacedFunction.php │ │ │ ├── issue30.php │ │ │ ├── classInScopedNamespace.php │ │ │ ├── source2.php │ │ │ ├── class_with_method_named_empty.php │ │ │ ├── classExtendsNamespacedClass.php │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ └── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ └── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── src │ │ └── Generator │ │ │ ├── deprecation.tpl.dist │ │ │ ├── trait_class.tpl.dist │ │ │ ├── wsdl_method.tpl.dist │ │ │ ├── mocked_clone.tpl.dist │ │ │ ├── unmocked_clone.tpl.dist │ │ │ └── wsdl_class.tpl.dist │ │ ├── tests │ │ ├── _fixture │ │ │ ├── AnInterface.php │ │ │ ├── AnotherInterface.php │ │ │ ├── TraversableMockTestInterface.php │ │ │ ├── Bar.php │ │ │ ├── AnInterfaceWithReturnType.php │ │ │ ├── ClassWithSelfTypeHint.php │ │ │ ├── InterfaceWithStaticMethod.php │ │ │ ├── ClassWithStaticMethod.php │ │ │ ├── InterfaceWithSemiReservedMethodName.php │ │ │ ├── StringableClass.php │ │ │ ├── Foo.php │ │ │ ├── MockTestInterface.php │ │ │ ├── FunctionCallback.php │ │ │ └── SomeClass.php │ │ └── bootstrap.php │ │ └── CONTRIBUTING.md ├── fzaninotto │ └── faker │ │ ├── .gitignore │ │ ├── src │ │ └── Faker │ │ │ └── Provider │ │ │ ├── de_AT │ │ │ └── Text.php │ │ │ ├── fr_CH │ │ │ └── Text.php │ │ │ ├── it_CH │ │ │ └── Text.php │ │ │ ├── fr_CA │ │ │ └── Company.php │ │ │ ├── en_NG │ │ │ └── Internet.php │ │ │ └── th_TH │ │ │ └── Internet.php │ │ └── Makefile ├── monolog │ └── monolog │ │ └── tests │ │ └── Monolog │ │ └── Handler │ │ └── Fixtures │ │ └── .gitkeep ├── hamcrest │ └── hamcrest-php │ │ ├── .coveralls.yml │ │ ├── .gitignore │ │ ├── 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 ├── swiftmailer │ └── swiftmailer │ │ ├── tests │ │ ├── _samples │ │ │ ├── files │ │ │ │ ├── data.txt │ │ │ │ ├── textfile.zip │ │ │ │ └── swiftmailer.png │ │ │ └── smime │ │ │ │ └── CA.srl │ │ └── StreamCollector.php │ │ ├── .gitignore │ │ ├── doc │ │ └── index.rst │ │ ├── .gitattributes │ │ └── lib │ │ └── dependency_maps │ │ └── message_deps.php ├── webmozart │ └── assert │ │ ├── .gitignore │ │ └── .styleci.yml ├── jakub-onderka │ ├── php-console-color │ │ ├── .gitignore │ │ └── tests │ │ │ └── bootstrap.php │ └── php-console-highlighter │ │ ├── .gitignore │ │ └── tests │ │ └── bootstrap.php ├── myclabs │ └── deep-copy │ │ ├── .gitignore │ │ ├── fixtures │ │ ├── f008 │ │ │ └── B.php │ │ ├── f005 │ │ │ └── Foo.php │ │ └── f004 │ │ │ └── UnclonableItem.php │ │ ├── doc │ │ ├── clone.png │ │ ├── graph.png │ │ ├── deep-clone.png │ │ └── deep-copy.png │ │ ├── .gitattributes │ │ └── src │ │ └── DeepCopy │ │ ├── Exception │ │ ├── CloneException.php │ │ └── PropertyException.php │ │ └── TypeFilter │ │ └── Spl │ │ └── SplDoublyLinkedList.php ├── gregwar │ └── captcha │ │ ├── .gitignore │ │ ├── src │ │ └── Gregwar │ │ │ └── Captcha │ │ │ └── Font │ │ │ ├── captcha0.ttf │ │ │ ├── captcha1.ttf │ │ │ ├── captcha2.ttf │ │ │ ├── captcha3.ttf │ │ │ ├── captcha4.ttf │ │ │ └── captcha5.ttf │ │ ├── demo │ │ ├── demo.php │ │ ├── fingerprint.php │ │ └── output.php │ │ └── .travis.yml ├── laravel │ └── framework │ │ └── src │ │ └── Illuminate │ │ ├── Mail │ │ └── resources │ │ │ └── views │ │ │ ├── markdown │ │ │ ├── footer.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── subcopy.blade.php │ │ │ ├── table.blade.php │ │ │ ├── promotion.blade.php │ │ │ ├── button.blade.php │ │ │ ├── header.blade.php │ │ │ ├── promotion │ │ │ │ └── button.blade.php │ │ │ └── layout.blade.php │ │ │ └── html │ │ │ ├── table.blade.php │ │ │ ├── header.blade.php │ │ │ └── subcopy.blade.php │ │ ├── Auth │ │ ├── Console │ │ │ └── stubs │ │ │ │ └── make │ │ │ │ └── routes.stub │ │ └── Access │ │ │ └── AuthorizationException.php │ │ ├── Queue │ │ ├── Events │ │ │ └── WorkerStopping.php │ │ ├── ManuallyFailedException.php │ │ └── MaxAttemptsExceededException.php │ │ ├── Contracts │ │ ├── Queue │ │ │ └── ShouldQueue.php │ │ ├── Validation │ │ │ └── ImplicitRule.php │ │ ├── Broadcasting │ │ │ └── ShouldBroadcastNow.php │ │ ├── Cache │ │ │ └── LockTimeoutException.php │ │ ├── Redis │ │ │ └── LimiterTimeoutException.php │ │ ├── Filesystem │ │ │ └── FileNotFoundException.php │ │ └── Encryption │ │ │ ├── DecryptException.php │ │ │ └── EncryptException.php │ │ ├── Cache │ │ └── Events │ │ │ ├── CacheMissed.php │ │ │ └── KeyForgotten.php │ │ ├── Foundation │ │ ├── Exceptions │ │ │ └── views │ │ │ │ ├── 429.blade.php │ │ │ │ ├── 503.blade.php │ │ │ │ ├── 500.blade.php │ │ │ │ ├── 404.blade.php │ │ │ │ └── 419.blade.php │ │ ├── Console │ │ │ └── stubs │ │ │ │ ├── exception.stub │ │ │ │ ├── model.stub │ │ │ │ └── pivot.model.stub │ │ └── Testing │ │ │ └── HttpException.php │ │ ├── Database │ │ ├── Events │ │ │ ├── TransactionBeginning.php │ │ │ ├── TransactionCommitted.php │ │ │ └── TransactionRolledBack.php │ │ ├── Console │ │ │ └── Factories │ │ │ │ └── stubs │ │ │ │ └── factory.stub │ │ └── Eloquent │ │ │ └── MassAssignmentException.php │ │ ├── Notifications │ │ └── Notifiable.php │ │ ├── Redis │ │ └── Connections │ │ │ ├── PredisClusterConnection.php │ │ │ └── PhpRedisClusterConnection.php │ │ ├── Session │ │ └── TokenMismatchException.php │ │ ├── Broadcasting │ │ └── BroadcastException.php │ │ ├── Validation │ │ └── UnauthorizedException.php │ │ ├── Http │ │ └── File.php │ │ └── Routing │ │ └── Console │ │ └── stubs │ │ └── controller.plain.stub ├── nikic │ └── php-parser │ │ ├── .gitignore │ │ ├── test │ │ └── code │ │ │ ├── prettyPrinter │ │ │ ├── stmt │ │ │ │ ├── throw.test │ │ │ │ ├── goto.test │ │ │ │ ├── while.test │ │ │ │ ├── do_while.test │ │ │ │ ├── break_continue.test │ │ │ │ ├── if.test │ │ │ │ ├── const.test │ │ │ │ └── nullable_types.test │ │ │ ├── expr │ │ │ │ ├── include.test │ │ │ │ ├── call.test │ │ │ │ ├── shortArraySyntax.test │ │ │ │ └── constant_deref.test │ │ │ ├── onlyPHP.file-test │ │ │ └── onlyInlineHTML.file-test │ │ │ └── parser │ │ │ ├── stmt │ │ │ ├── haltCompilerInvalidSyntax.test │ │ │ ├── haltCompilerOutermostScope.test │ │ │ └── loop │ │ │ │ └── do.test │ │ │ └── expr │ │ │ ├── print.test │ │ │ ├── clone.test │ │ │ └── errorSuppress.test │ │ ├── lib │ │ ├── PhpParser │ │ │ ├── Node │ │ │ │ ├── Scalar.php │ │ │ │ ├── Expr.php │ │ │ │ ├── Stmt.php │ │ │ │ ├── Expr │ │ │ │ │ ├── Cast │ │ │ │ │ │ ├── Array_.php │ │ │ │ │ │ ├── Unset_.php │ │ │ │ │ │ ├── Bool_.php │ │ │ │ │ │ ├── Int_.php │ │ │ │ │ │ ├── Double.php │ │ │ │ │ │ ├── Object_.php │ │ │ │ │ │ └── String_.php │ │ │ │ │ ├── AssignOp │ │ │ │ │ │ ├── Div.php │ │ │ │ │ │ ├── Minus.php │ │ │ │ │ │ ├── Mod.php │ │ │ │ │ │ ├── Mul.php │ │ │ │ │ │ ├── Plus.php │ │ │ │ │ │ ├── Pow.php │ │ │ │ │ │ ├── Concat.php │ │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ │ └── ShiftRight.php │ │ │ │ │ └── BinaryOp │ │ │ │ │ │ ├── Div.php │ │ │ │ │ │ ├── Equal.php │ │ │ │ │ │ ├── Minus.php │ │ │ │ │ │ ├── Mod.php │ │ │ │ │ │ ├── Mul.php │ │ │ │ │ │ ├── Plus.php │ │ │ │ │ │ ├── Pow.php │ │ │ │ │ │ ├── Concat.php │ │ │ │ │ │ ├── Greater.php │ │ │ │ │ │ ├── Smaller.php │ │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ │ ├── BooleanAnd.php │ │ │ │ │ │ ├── BooleanOr.php │ │ │ │ │ │ ├── Identical.php │ │ │ │ │ │ ├── LogicalAnd.php │ │ │ │ │ │ ├── LogicalOr.php │ │ │ │ │ │ ├── LogicalXor.php │ │ │ │ │ │ ├── NotEqual.php │ │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ │ ├── ShiftRight.php │ │ │ │ │ │ ├── NotIdentical.php │ │ │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ │ └── Spaceship.php │ │ │ │ ├── Scalar │ │ │ │ │ └── MagicConst │ │ │ │ │ │ ├── Dir.php │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ └── Line.php │ │ │ │ └── Stmt │ │ │ │ │ └── Nop.php │ │ │ ├── Comment │ │ │ │ └── Doc.php │ │ │ └── Builder.php │ │ └── bootstrap.php │ │ └── test_old │ │ └── run-php-src.sh ├── sho │ ├── manual │ │ └── img │ │ │ └── tab.png │ ├── app │ │ └── js │ │ │ └── images │ │ │ ├── treeview-default.gif │ │ │ └── treeview-default-line.gif │ └── example │ │ └── example_extract_html.php ├── doctrine │ ├── instantiator │ │ └── .gitignore │ └── lexer │ │ └── README.md ├── 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 ├── phar-io │ ├── version │ │ ├── .gitignore │ │ ├── src │ │ │ └── InvalidVersionException.php │ │ └── phive.xml │ └── manifest │ │ ├── .gitignore │ │ ├── tests │ │ └── _fixture │ │ │ └── test.phar │ │ ├── src │ │ └── exceptions │ │ │ ├── ManifestLoaderException.php │ │ │ ├── ManifestElementException.php │ │ │ ├── ManifestDocumentException.php │ │ │ └── ManifestDocumentMapperException.php │ │ └── phive.xml ├── theseer │ └── tokenizer │ │ ├── .gitignore │ │ ├── src │ │ ├── Exception.php │ │ ├── NamespaceUriException.php │ │ └── TokenCollectionException.php │ │ └── phive.xml ├── bin │ ├── psysh.bat │ ├── phpunit.bat │ └── php-parse.bat ├── phpdocumentor │ ├── reflection-docblock │ │ └── .coveralls.yml │ └── reflection-common │ │ └── README.md ├── paragonie │ └── random_compat │ │ ├── build-phar.sh │ │ └── dist │ │ └── random_compat.phar.pubkey ├── vlucas │ └── phpdotenv │ │ └── src │ │ └── Exception │ │ └── ExceptionInterface.php └── egulias │ └── email-validator │ └── EmailValidator │ ├── Exception │ ├── CRNoLF.php │ ├── DotAtEnd.php │ ├── DotAtStart.php │ ├── NoDomainPart.php │ ├── NoLocalPart.php │ ├── CRLFAtTheEnd.php │ ├── ConsecutiveAt.php │ ├── ConsecutiveDot.php │ ├── ExpectingAT.php │ ├── ExpectingATEXT.php │ ├── ExpectingCTEXT.php │ ├── ExpectingDTEXT.php │ ├── ExpectingQPair.php │ ├── CRLFX2.php │ ├── AtextAfterCFWS.php │ ├── DomainHyphened.php │ ├── CharNotAllowed.php │ ├── UnclosedComment.php │ ├── UnclosedQuotedString.php │ ├── UnopenedComment.php │ └── CommaInDomain.php │ └── Warning │ └── TLD.php ├── .gitignore ├── bootstrap └── cache │ └── .gitignore ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── cache │ └── .gitignore │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── resources ├── views │ └── common │ │ └── meta.blade.php └── assets │ └── sass │ └── app.scss ├── .gitattributes ├── tests └── TestCase.php ├── app ├── Http │ └── Controllers │ │ └── BaseController.php └── Members.php ├── .idea └── modules.xml └── README.md /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /vendor/predis/predis/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.1 2 | -------------------------------------------------------------------------------- /vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .well-known 3 | .idea -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/.dot/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/a.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/bar.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/foo1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vendor/league/flysystem/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/tests/Mockery/_files/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/psy/psysh/test/fixtures/legacy/.psysh/history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/.dot/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/.dot/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/.dot: -------------------------------------------------------------------------------- 1 | .dot -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/annotated.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.xlf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-timer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/bar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/psy/psysh/test/fixtures/mixed/.psysh/psysh_history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/sebastian/version/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/with space/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/file_resource.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/nonvalid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/league/flysystem/docs/CNAME: -------------------------------------------------------------------------------- 1 | flysystem.thephpleague.com -------------------------------------------------------------------------------- /vendor/monolog/monolog/tests/Monolog/Handler/Fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/psy/psysh/test/fixtures/legacy/.psysh/php_manual.sqlite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/psy/psysh/test/fixtures/legacy/.psysh/rc.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Tests/File/Fixtures/directory/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /vendor/webmozart/assert/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/matchers_footer.txt: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/_files/expect_external.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /vendor/psy/psysh/test/fixtures/default/.config/psysh/config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/jakub-onderka/php-console-color/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | vendor 3 | composer.lock 4 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/travis/extra.ini: -------------------------------------------------------------------------------- 1 | extension = "mongo.so" 2 | extension = "redis.so" -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.phar 2 | /composer.lock 3 | /vendor/* 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/_files/phpt-env.expected.txt: -------------------------------------------------------------------------------- 1 | string(%d) "%s" 2 | -------------------------------------------------------------------------------- /vendor/sebastian/recursion-context/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | -------------------------------------------------------------------------------- /vendor/sebastian/resource-operations/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /build/arginfo.php 3 | 4 | -------------------------------------------------------------------------------- /vendor/symfony/css-selector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/event-dispatcher/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/extractor/this.is.a.template.format.engine: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resources.dump.json: -------------------------------------------------------------------------------- 1 | {"foo":"\u0022bar\u0022"} -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } -------------------------------------------------------------------------------- /vendor/gregwar/captcha/.gitignore: -------------------------------------------------------------------------------- 1 | demo/*.jpg 2 | demo/*.pgm 3 | demo/temp/ 4 | vendor/ 5 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/matchers_imports.txt: -------------------------------------------------------------------------------- 1 | 2 | namespace Hamcrest; -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/.gitattributes: -------------------------------------------------------------------------------- 1 | /build export-ignore 2 | 3 | *.php diff=php 4 | 5 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_1.txt: -------------------------------------------------------------------------------- 1 | argument_name 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_1.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name 2 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/ipsum.txt: -------------------------------------------------------------------------------- 1 | ipsum dolor sit amet 2 | IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/phpunit/php-token-stream/tests/_fixture/issue19.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.colors.true.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/code-unit-reverse-lookup/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | 5 | -------------------------------------------------------------------------------- /vendor/sebastian/comparator/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/sebastian/global-state/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/lorem.txt: -------------------------------------------------------------------------------- 1 | lorem ipsum dolor sit amet 2 | LOREM IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/directory/recurse/routes1.yml: -------------------------------------------------------------------------------- 1 | route1: 2 | path: /route/1 3 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/directory/recurse/routes2.yml: -------------------------------------------------------------------------------- 1 | route2: 2 | path: /route/2 3 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/messages_linear.yml: -------------------------------------------------------------------------------- 1 | foo.bar1: value1 2 | foo.bar2: value2 3 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/valid.csv: -------------------------------------------------------------------------------- 1 | foo;bar 2 | bar;"foo 3 | foo" 4 | "foo;foo";bar 5 | -------------------------------------------------------------------------------- /vendor/jakub-onderka/php-console-highlighter/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /build/ 3 | /vendor/ 4 | /composer.lock -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/promotion.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | grammar/kmyacc.exe 4 | grammar/y.output 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /composer.lock 3 | /vendor 4 | /.php_cs.cache 5 | /from.txt.orig -------------------------------------------------------------------------------- /vendor/sebastian/object-reflector/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.php_cs.cache 3 | /composer.lock 4 | /vendor 5 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/messages.yml: -------------------------------------------------------------------------------- 1 | foo: 2 | bar1: value1 3 | bar2: value2 4 | -------------------------------------------------------------------------------- /vendor/phpunit/php-text-template/.gitignore: -------------------------------------------------------------------------------- 1 | /composer.lock 2 | /composer.phar 3 | /.idea 4 | /vendor 5 | 6 | -------------------------------------------------------------------------------- /vendor/sho/manual/img/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/vendor/sho/manual/img/tab.png -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_2.txt: -------------------------------------------------------------------------------- 1 | argument_name argument description 2 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/en.txt: -------------------------------------------------------------------------------- 1 | en{ 2 | symfony{"Symfony is great"} 3 | } -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | composer.lock 3 | build 4 | vendor 5 | coverage.clover 6 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/button.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }}: {{ $url }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/header.blade.php: -------------------------------------------------------------------------------- 1 | [{{ $slot }}]({{ $url }}) 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoveredFunction.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php70/Resources/stubs/Error.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/fr.txt: -------------------------------------------------------------------------------- 1 | fr{ 2 | symfony{"Symfony est génial"} 3 | } -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resources.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /vendor/sebastian/environment/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /composer.lock 4 | /composer.phar 5 | /.php_cs.cache 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "arguments": [], 3 | "options": [] 4 | } 5 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php70/Resources/stubs/ParseError.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/DummyException.php: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_3.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME option description 2 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/incomplete.yml: -------------------------------------------------------------------------------- 1 | blog_show: 2 | defaults: { _controller: MyBlogBundle:Blog:show } 3 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/nonvalidkeys.yml: -------------------------------------------------------------------------------- 1 | someroute: 2 | resource: path/to/some.yml 3 | name_prefix: test_ 4 | -------------------------------------------------------------------------------- /public/fonts/roboto/Roboto-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/public/fonts/roboto/Roboto-Black.woff -------------------------------------------------------------------------------- /public/fonts/roboto/Roboto-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/public/fonts/roboto/Roboto-Black.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/public/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/public/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /public/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/public/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/public/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /public/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/public/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /public/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/public/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /public/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/public/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /vendor/filp/whoops/src/Whoops/Resources/views/header_outer.html.php: -------------------------------------------------------------------------------- 1 |
2 | render($header) ?> 3 |
4 | -------------------------------------------------------------------------------- /vendor/jakub-onderka/php-console-highlighter/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | Options: 2 | -o, --option_name 3 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php: -------------------------------------------------------------------------------- 1 | render($frame_code) ?> 2 | render($env_details) ?> -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/vendor/myclabs/deep-copy/doc/deep-clone.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/deep-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/vendor/myclabs/deep-copy/doc/deep-copy.png -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/src/Generator/trait_class.tpl.dist: -------------------------------------------------------------------------------- 1 | {prologue}class {class_name} 2 | { 3 | use {trait_name}; 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NonStatic.php: -------------------------------------------------------------------------------- 1 | -o|O, --option_name=OPTION_NAME option with multiple shortcuts 2 | -------------------------------------------------------------------------------- /vendor/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/sho/app/js/images/treeview-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/vendor/sho/app/js/images/treeview-default.gif -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_4.txt: -------------------------------------------------------------------------------- 1 | argument_name multiline 2 | argument description 3 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/bad_format.yml: -------------------------------------------------------------------------------- 1 | blog_show: 2 | path: /blog/{slug} 3 | defaults: { _controller: "MyBundle:Blog:show" } 4 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/nonesense_resource_plus_path.yml: -------------------------------------------------------------------------------- 1 | blog_show: 2 | resource: validpattern.yml 3 | path: /test 4 | -------------------------------------------------------------------------------- /vendor/bin/phpunit.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | setlocal DISABLEDELAYEDEXPANSION 3 | SET BIN_TARGET=%~dp0/../phpunit/phpunit/phpunit 4 | php "%BIN_TARGET%" %* 5 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/Node/Scalar.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/sho/app/js/images/treeview-default-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/vendor/sho/app/js/images/treeview-default-line.gif -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_3.txt: -------------------------------------------------------------------------------- 1 | 2 | First title 3 | =========== 4 | 5 | Second title 6 | ============ 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/notPsr0Bis.php: -------------------------------------------------------------------------------- 1 | argument_name argument description [default: "default_value"] 2 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/casemismatch.php: -------------------------------------------------------------------------------- 1 | name('home'); 5 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/html/table.blade.php: -------------------------------------------------------------------------------- 1 |
2 | {{ Illuminate\Mail\Markdown::parse($slot) }} 3 |
4 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/prettyPrinter/stmt/while.test: -------------------------------------------------------------------------------- 1 | while 2 | ----- 3 | plaintext; 5 | ?> -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.txt: -------------------------------------------------------------------------------- 1 | argument_name argument description [default: INF] 2 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures2/RequiredTwice.php: -------------------------------------------------------------------------------- 1 | 2 | render($panel_details) ?> 3 | -------------------------------------------------------------------------------- /vendor/phpunit/php-file-iterator/.gitignore: -------------------------------------------------------------------------------- 1 | build/api 2 | build/code-browser 3 | build/coverage 4 | build/logs 5 | build/pdepend 6 | cache.properties 7 | phpunit.xml 8 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_2.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description [default: "default_value"] 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_4.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description (multiple values allowed) 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_5.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME multiline 2 | option description 3 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Tests/File/Fixtures/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/vendor/symfony/http-foundation/Tests/File/Fixtures/test.gif -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/with_define_path_variable.php: -------------------------------------------------------------------------------- 1 | argument_name argument description [default: "\style\"] 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_2.md: -------------------------------------------------------------------------------- 1 | ### Arguments 2 | 3 | #### `argument_name` 4 | 5 | * Is required: yes 6 | * Is array: no 7 | * Default: `NULL` 8 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/psr4/Psr4CaseMismatch.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_with_default_inf_value.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name[=OPTION_NAME] option description [default: INF] 2 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/empty-translation.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/vendor/symfony/translation/Tests/fixtures/empty-translation.mo -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/fr_CA/Company.php: -------------------------------------------------------------------------------- 1 | Usage: 2 | descriptor:command1 3 | alias1 4 | alias2 5 | 6 | Help: 7 | command 1 help 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_2.md: -------------------------------------------------------------------------------- 1 | #### `argument_name` 2 | 3 | argument description 4 | 5 | * Is required: no 6 | * Is array: yes 7 | * Default: `array ()` 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_1.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | * Accept value: no 4 | * Is value required: no 5 | * Is multiple: no 6 | * Default: `false` 7 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_with_style.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME option description [default: "\style\"] 2 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/ClassAlias.php: -------------------------------------------------------------------------------- 1 | render($header_outer) ?> 2 | render($frames_description) ?> 3 | render($frames_container) ?> -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Cache/Events/CacheMissed.php: -------------------------------------------------------------------------------- 1 | 4 | How are you?: 5 | > 6 | Where do you come from?: 7 | > 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_17.txt: -------------------------------------------------------------------------------- 1 | 2 | Title ending with \ 3 | =================== 4 | 5 | Section ending with \ 6 | --------------------- 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_3.md: -------------------------------------------------------------------------------- 1 | #### `argument_name` 2 | 3 | argument description 4 | 5 | * Is required: no 6 | * Is array: no 7 | * Default: `'default_value'` 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_with_style.md: -------------------------------------------------------------------------------- 1 | #### `argument_name` 2 | 3 | argument description 4 | 5 | * Is required: no 6 | * Is array: no 7 | * Default: `'style'` 8 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/controller/import__controller.yml: -------------------------------------------------------------------------------- 1 | _static: 2 | resource: routing.yml 3 | defaults: 4 | _controller: FrameworkBundle:Template:template 5 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/en.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/en.res -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/fr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/fr.res -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resourcebundle/res/en.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/vendor/symfony/translation/Tests/fixtures/resourcebundle/res/en.res -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/src/NamespaceUriException.php: -------------------------------------------------------------------------------- 1 | "> 2 | render($panel_left) ?> 3 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/views/429.blade.php: -------------------------------------------------------------------------------- 1 | @extends('errors::layout') 2 | 3 | @section('title', 'Error') 4 | 5 | @section('message', 'Too many requests.') 6 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/travis/install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | composer install -n 3 | 4 | if [[ $TRAVIS_PHP_VERSION == "5.6" ]]; then 5 | composer require --dev satooshi/php-coveralls:~0.7@dev 6 | fi 7 | -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | *.png binary 5 | 6 | tests/ export-ignore 7 | phpunit.xml.dist export-ignore 8 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Array_.php: -------------------------------------------------------------------------------- 1 | doSomethingElse(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_4.txt: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | 4 | Options: 5 | -o, --option_name 6 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/InternalTrait.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_0.txt: -------------------------------------------------------------------------------- 1 | 2 | ! [CAUTION] Lorem ipsum dolor sit amet 3 | 4 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1.txt: -------------------------------------------------------------------------------- 1 | 2 | In ApplicationTest.php line 726: 3 | 4 | エラーメッセージ 5 | 6 | 7 | foo 8 | 9 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "argument_name", 3 | "is_required": true, 4 | "is_array": false, 5 | "description": "", 6 | "default": null 7 | } 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_3.md: -------------------------------------------------------------------------------- 1 | ### Options 2 | 3 | #### `--option_name|-o` 4 | 5 | * Accept value: no 6 | * Is value required: no 7 | * Is multiple: no 8 | * Default: `false` 9 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_3.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | option description 4 | 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Default: `NULL` 9 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/NonDeprecatedInterface.php: -------------------------------------------------------------------------------- 1 | var = $var; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_4.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | option description 4 | 5 | * Accept value: yes 6 | * Is value required: no 7 | * Is multiple: yes 8 | * Default: `array ()` 9 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/FinalClass.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ $slot }} 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Notifications/Notifiable.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | } 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/2448/Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NoTestCases.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NoArgTestCaseTest.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_5.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | multiline 4 | option description 5 | 6 | * Accept value: yes 7 | * Is value required: yes 8 | * Is multiple: no 9 | * Default: `NULL` 10 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/fuzzy-translations.po: -------------------------------------------------------------------------------- 1 | #, php-format 2 | msgid "foo1" 3 | msgstr "bar1" 4 | 5 | #, fuzzy, php-format 6 | msgid "foo2" 7 | msgstr "fuzzy bar2" 8 | 9 | msgid "foo3" 10 | msgstr "bar3" 11 | -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- 1 | "> 2 | render($frame_list) ?> 3 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Foundation/Console/stubs/model.stub: -------------------------------------------------------------------------------- 1 | fail(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/Inheritance/InheritanceB.php: -------------------------------------------------------------------------------- 1 | __phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker(); 4 | parent::__clone(); 5 | } 6 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/FunctionCallback.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/psr/simple-cache/src/CacheException.php: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/escaped-id.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Content-Type: text/plain; charset=UTF-8\n" 4 | "Content-Transfer-Encoding: 8bit\n" 5 | "Language: en\n" 6 | 7 | msgid "escaped \"foo\"" 8 | msgstr "escaped \"bar\"" 9 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Contracts/Redis/LimiterTimeoutException.php: -------------------------------------------------------------------------------- 1 | 'b', 'c' => 'd']; 8 | ----- 9 | []; 10 | array(1, 2, 3); 11 | ['a' => 'b', 'c' => 'd']; -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestTestError.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 8 | --EXPECT-- 9 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/StreamCollector.php: -------------------------------------------------------------------------------- 1 | content .= $arg; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_renderexception_escapeslines.txt: -------------------------------------------------------------------------------- 1 | 2 | In ApplicationTest.php line 754: 3 | 4 | dont break here < 5 | info>! 6 | 7 | 8 | foo 9 | 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | argument description 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_with_default_inf_value.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "argument_name", 3 | "is_required": false, 4 | "is_array": false, 5 | "description": "argument description", 6 | "default": "INF" 7 | } 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_with_style.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "argument_name", 3 | "is_required": false, 4 | "is_array": false, 5 | "description": "argument description", 6 | "default": "style" 7 | } 8 | -------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/demo.php: -------------------------------------------------------------------------------- 1 | build() 10 | ->save('out.jpg') 11 | ; 12 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Contracts/Filesystem/FileNotFoundException.php: -------------------------------------------------------------------------------- 1 | cloned = true; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/parser/expr/errorSuppress.test: -------------------------------------------------------------------------------- 1 | Error suppression 2 | ----- 3 | 0 && $argv[1] == 'help') { 8 | echo 'Help'; 9 | } 10 | ?> 11 | --EXPECT-- 12 | Help 13 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.md: -------------------------------------------------------------------------------- 1 | #### `--option_name|-o` 2 | 3 | option description 4 | 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: yes 8 | * Default: `array ( 0 => 'Hello', 1 => 'world',)` 9 | -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/Tests/Fixtures/FooInterface.php: -------------------------------------------------------------------------------- 1 | define(DummyModel::class, function (Faker $faker) { 6 | return [ 7 | // 8 | ]; 9 | }); 10 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wysten-Hgg/vipVideo/HEAD/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/2591/bootstrapNoBootstrap.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_renderexception2.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | The "--foo" option does not exist. 4 | 5 | 6 | list [--raw] [--format FORMAT] [--] [] 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | multiline 4 | argument description 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/read_only.php: -------------------------------------------------------------------------------- 1 | 10 | --EXPECT-- 11 | Hello World 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestSkipped.php: -------------------------------------------------------------------------------- 1 | markTestSkipped('Skipped test'); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/configuration.one-file-suite.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ../../tests/TextUI/debug.phpt 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_1.txt: -------------------------------------------------------------------------------- 1 | 2 | Title 3 | ===== 4 | 5 | [WARNING] Lorem ipsum dolor sit amet 6 | 7 | Title 8 | ===== 9 | 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth2.txt: -------------------------------------------------------------------------------- 1 | 2 | In ApplicationTest.php line 740: 3 | 4 | コマンドの実行中にエラーが 5 | 発生しました。 6 | 7 | 8 | foo 9 | 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_with_style_array.txt: -------------------------------------------------------------------------------- 1 | -o, --option_name=OPTION_NAME option description [default: ["\Hello\","\world\"]] (multiple values allowed) 2 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/empty_destroys.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/egulias/email-validator/EmailValidator/Exception/CRLFX2.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/797/bootstrap797.php: -------------------------------------------------------------------------------- 1 | build() 9 | ->getFingerprint() 10 | ); 11 | 12 | echo "\n"; 13 | -------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/output.php: -------------------------------------------------------------------------------- 1 | build() 11 | ->output() 12 | ; 13 | -------------------------------------------------------------------------------- /vendor/league/flysystem/docs/_data/images.yml: -------------------------------------------------------------------------------- 1 | # Path to project specific favicon.ico, leave blank to use default 2 | favicon: 3 | 4 | # Path to project specific apple-touch-icon-precomposed.png, leave blank to use default 5 | apple_touch: 6 | 7 | # Path to project logo 8 | logo: 9 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/travis/after_success.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | if [[ $TRAVIS_PHP_VERSION == "5.6" ]]; then 3 | vendor/bin/coveralls -v 4 | wget https://scrutinizer-ci.com/ocular.phar 5 | php ocular.phar code-coverage:upload --format=php-clover ./build/logs/clover.xml 6 | fi 7 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/prettyPrinter/onlyPHP.file-test: -------------------------------------------------------------------------------- 1 | File containing only PHP 2 | ----- 3 | 2 | 3 | Issue1216Test.php 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/1330/Issue1330Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(PHPUNIT_1330); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/GitHub/873/Issue873Test.php: -------------------------------------------------------------------------------- 1 | $value) { 7 | yield $key => $value; 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/TestIncomplete.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Incomplete test'); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/WasRun.php: -------------------------------------------------------------------------------- 1 | wasRun = true; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/BarBucCommand.php: -------------------------------------------------------------------------------- 1 | setName('bar:buc'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Style/SymfonyStyle/output/output_6.txt: -------------------------------------------------------------------------------- 1 | 2 | * Lorem ipsum dolor sit amet 3 | * consectetur adipiscing elit 4 | 5 | [OK] Lorem ipsum dolor sit amet 6 | 7 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_renderexception_doublewidth1decorated.txt: -------------------------------------------------------------------------------- 1 | 2 | In ApplicationTest.php line 726: 3 |   4 |  エラーメッセージ  5 |   6 | 7 | foo 8 | 9 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": false, 5 | "is_value_required": false, 6 | "is_multiple": false, 7 | "description": "", 8 | "default": false 9 | } 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/DeprecatedClass.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ Illuminate\Mail\Markdown::parse($slot) }} 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/league/flysystem/docs/_data/project.yml: -------------------------------------------------------------------------------- 1 | title: "Flysystem" 2 | tagline: "Multiple Filesystems, One API" 3 | description: "Filesystem abstraction package allowing you to use the same API for both local, remote and cloud filesystems." 4 | google_analytics_tracking_id: "UA-46050814-3" 5 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit-mock-objects/tests/_fixture/SomeClass.php: -------------------------------------------------------------------------------- 1 | markTestIncomplete('Test incomplete'); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/OneTestCase.php: -------------------------------------------------------------------------------- 1 | 8 | --XFAIL-- 9 | Syntax Error in PHPT is supposed to fail 10 | --EXPECT-- 11 | Should not see this 12 | -------------------------------------------------------------------------------- /vendor/sebastian/diff/tests/fixtures/patch.txt: -------------------------------------------------------------------------------- 1 | diff --git a/Foo.php b/Foo.php 2 | index abcdefg..abcdefh 100644 3 | --- a/Foo.php 4 | +++ b/Foo.php 5 | @@ -20,4 +20,5 @@ class Foo 6 | const ONE = 1; 7 | const TWO = 2; 8 | + const THREE = 3; 9 | const FOUR = 4; 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/Foo4Command.php: -------------------------------------------------------------------------------- 1 | setName('foo3:bar:toh'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/egulias/email-validator/EmailValidator/Exception/CharNotAllowed.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Test.php 4 | 5 | 6 | 7 | 8 | one 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/IniTest.php: -------------------------------------------------------------------------------- 1 | assertEquals('application/x-test', ini_get('default_mimetype')); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Tests/Fixtures/controller/routing.yml: -------------------------------------------------------------------------------- 1 | app_homepage: 2 | path: / 3 | controller: AppBundle:Homepage:show 4 | 5 | app_blog: 6 | path: /blog 7 | defaults: 8 | _controller: AppBundle:Blog:list 9 | 10 | app_logout: 11 | path: /logout 12 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vipVideo 2 | 使用Laravel采集各大视频站视频,采集库采用simple_html_dom,最关键的播放视频采用三方接口。。所以本项目没什么技术含量,仅供学习Laravel。 3 | 4 | ## 更新日志 5 | - 2018-03:添加订阅功能。 6 | - 2018-03:添加爱奇艺动漫。 7 | - 2018-03:添加不可描述功能,手动滑稽。 8 | - 2018-02:上线聊天室。 9 | - 2018-02:添加热搜,和上次观看内容。 10 | - 2018-01:上线,可看爱奇艺、腾讯电视剧与电影,优酷电视剧。 11 | -------------------------------------------------------------------------------- /vendor/egulias/email-validator/EmailValidator/Exception/CommaInDomain.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/Trac/783/TwoTest.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/CoverageNoneTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": true, 6 | "is_multiple": false, 7 | "description": "option description", 8 | "default": null 9 | } 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": false, 6 | "is_multiple": true, 7 | "description": "option description", 8 | "default": [] 9 | } 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/DeprecatedInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | resources 5 | 6 | foo 7 | bar 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/Members.php: -------------------------------------------------------------------------------- 1 | assertTrue(false); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/TextUI/phpt-env.phpt: -------------------------------------------------------------------------------- 1 | --TEST-- 2 | PHPT runner should support ENV section 3 | --ENV-- 4 | FOO=bar 5 | --FILE-- 6 | 11 | --EXPECTF_EXTERNAL-- 12 | _files/phpt-env.expected.txt 13 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/NotPublicTestCase.php: -------------------------------------------------------------------------------- 1 |
8 | Please refresh and try again. 9 | @stop 10 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/examples/starship/Bootstrap.php: -------------------------------------------------------------------------------- 1 | register(); 12 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/Node/Scalar/MagicConst/Dir.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/CoverageNoneTest.php: -------------------------------------------------------------------------------- 1 | publicMethod(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/AssertionExampleTest.php: -------------------------------------------------------------------------------- 1 | doSomething(); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/lib/dependency_maps/message_deps.php: -------------------------------------------------------------------------------- 1 | register('message.message') 5 | ->asNewInstanceOf('Swift_Message') 6 | 7 | ->register('message.mimepart') 8 | ->asNewInstanceOf('Swift_MimePart') 9 | ; 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_argument_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | argument description 4 | 5 | default_value 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_option_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "--option_name", 3 | "shortcut": "-o", 4 | "accept_value": true, 5 | "is_value_required": true, 6 | "is_multiple": false, 7 | "description": "multiline option description", 8 | "default": null 9 | } 10 | -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/phive.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/egulias/email-validator/EmailValidator/Warning/TLD.php: -------------------------------------------------------------------------------- 1 | message = "RFC5321, TLD"; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/library/Mockery/Generator/StringManipulation/Pass/Pass.php: -------------------------------------------------------------------------------- 1 |