├── .idea ├── .name ├── misc.xml ├── scopes │ └── scope_settings.xml ├── encodings.xml ├── vcs.xml └── modules.xml ├── public ├── favicon.ico ├── packages │ └── .gitkeep └── robots.txt ├── app ├── commands │ └── .gitkeep ├── config │ └── packages │ │ └── .gitkeep ├── controllers │ ├── .gitkeep │ └── BaseController.php ├── database │ ├── seeds │ │ ├── .gitkeep │ │ └── DatabaseSeeder.php │ ├── migrations │ │ └── .gitkeep │ └── production.sqlite ├── start │ └── local.php ├── storage │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── logs │ │ └── .gitignore │ ├── meta │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── views │ └── emails │ │ └── auth │ │ └── reminder.blade.php ├── tests │ └── ExampleTest.php └── cache │ └── app │ └── controllers │ └── BaseController.php ├── vendor ├── predis │ └── predis │ │ ├── VERSION │ │ ├── .gitignore │ │ ├── bin │ │ └── create-single-file │ │ └── .travis.yml ├── psr │ └── log │ │ ├── .gitignore │ │ └── Psr │ │ └── Log │ │ └── InvalidArgumentException.php ├── stack │ └── builder │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ └── .travis.yml ├── phpseclib │ └── phpseclib │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── phpseclib │ │ └── openssl.cnf │ │ └── AUTHORS ├── swiftmailer │ └── swiftmailer │ │ ├── VERSION │ │ ├── tests │ │ └── _samples │ │ │ ├── files │ │ │ ├── data.txt │ │ │ └── textfile.zip │ │ │ ├── smime │ │ │ └── CA.srl │ │ │ └── dkim │ │ │ └── dkim.test.pub │ │ ├── test-suite │ │ ├── lib │ │ │ └── simpletest │ │ │ │ ├── VERSION │ │ │ │ ├── test │ │ │ │ ├── support │ │ │ │ │ ├── collector │ │ │ │ │ │ ├── collectable.1 │ │ │ │ │ │ └── collectable.2 │ │ │ │ │ ├── upload_sample.txt │ │ │ │ │ ├── supplementary_upload_sample.txt │ │ │ │ │ ├── empty_test_file.php │ │ │ │ │ ├── test1.php │ │ │ │ │ └── latin1_sample │ │ │ │ ├── site │ │ │ │ │ ├── temp │ │ │ │ │ │ └── .stop_cvs_removing_temp │ │ │ │ │ ├── protected │ │ │ │ │ │ ├── .htpasswd │ │ │ │ │ │ ├── 1.html │ │ │ │ │ │ ├── 2.html │ │ │ │ │ │ ├── 3.html │ │ │ │ │ │ ├── htaccess │ │ │ │ │ │ ├── .htaccess │ │ │ │ │ │ └── local_redirect.php │ │ │ │ │ ├── timestamp.php │ │ │ │ │ ├── .htaccess │ │ │ │ │ ├── self.php │ │ │ │ │ ├── 1.html │ │ │ │ │ ├── 2.html │ │ │ │ │ ├── 3.html │ │ │ │ │ ├── frame_a.html │ │ │ │ │ ├── frame_b.html │ │ │ │ │ ├── search.png │ │ │ │ │ ├── slow_page.php │ │ │ │ │ ├── file.html │ │ │ │ │ ├── base_tag │ │ │ │ │ │ ├── page_1.html │ │ │ │ │ │ ├── page_2.html │ │ │ │ │ │ ├── relative_link.html │ │ │ │ │ │ ├── base_link.html │ │ │ │ │ │ └── frameset.html │ │ │ │ │ ├── local_redirect.php │ │ │ │ │ ├── base_change_redirect.php │ │ │ │ │ ├── frame_links.html │ │ │ │ │ ├── path │ │ │ │ │ │ └── base_change_redirect.php │ │ │ │ │ ├── double_base_change_redirect.php │ │ │ │ │ ├── redirect.php │ │ │ │ │ ├── cookie_based_counter.php │ │ │ │ │ └── one_page_frameset.html │ │ │ │ ├── url_test.php │ │ │ │ ├── parser_test.php │ │ │ │ ├── parse_error_test.php │ │ │ │ └── bad_test_suite.php │ │ │ │ ├── docs │ │ │ │ ├── pkg │ │ │ │ │ └── README │ │ │ │ ├── lastcraft │ │ │ │ │ └── README │ │ │ │ ├── simpletest.org │ │ │ │ │ ├── README │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── images │ │ │ │ │ │ ├── quote.png │ │ │ │ │ │ ├── test-in-cli.png │ │ │ │ │ │ ├── simpletest-logo.png │ │ │ │ │ │ ├── test-with-1-fail.png │ │ │ │ │ │ ├── test-with-1-pass.png │ │ │ │ │ │ ├── simpletest-download.png │ │ │ │ │ │ ├── simpletest-support.png │ │ │ │ │ │ ├── simpletest-contribute.png │ │ │ │ │ │ ├── book-domain-driven-design.jpg │ │ │ │ │ │ ├── simpletest-external-top.png │ │ │ │ │ │ ├── simpletest-internal-top.png │ │ │ │ │ │ ├── simpletest-start-testing.png │ │ │ │ │ │ ├── simpletest-external-bottom.png │ │ │ │ │ │ ├── simpletest-external-middle.png │ │ │ │ │ │ ├── simpletest-internal-bottom.png │ │ │ │ │ │ ├── simpletest-internal-middle.png │ │ │ │ │ │ ├── book-guide-to-php-design-patterns.jpg │ │ │ │ │ │ └── book-the-php-anthology-object-oriented-php-solutions.jpg │ │ │ │ ├── onpk │ │ │ │ │ └── README │ │ │ │ └── source │ │ │ │ │ └── fr │ │ │ │ │ ├── index.xml │ │ │ │ │ ├── intro.xml │ │ │ │ │ ├── overview.xml │ │ │ │ │ ├── simple_test.xml │ │ │ │ │ ├── books_website.xml │ │ │ │ │ ├── subclass_tutorial.xml │ │ │ │ │ ├── first_test_tutorial.xml │ │ │ │ │ ├── group_test_tutorial.xml │ │ │ │ │ ├── browser_documentation.xml │ │ │ │ │ ├── gain_control_tutorial.xml │ │ │ │ │ ├── mock_objects_tutorial.xml │ │ │ │ │ ├── reporter_documentation.xml │ │ │ │ │ ├── group_test_documentation.xml │ │ │ │ │ ├── unit_test_documentation.xml │ │ │ │ │ ├── web_tester_documentation.xml │ │ │ │ │ ├── boundary_classes_tutorial.xml │ │ │ │ │ ├── display_subclass_tutorial.xml │ │ │ │ │ ├── expectation_documentation.xml │ │ │ │ │ ├── form_testing_documentation.xml │ │ │ │ │ ├── improving_design_tutorial.xml │ │ │ │ │ ├── mock_objects_documentation.xml │ │ │ │ │ ├── partial_mocks_documentation.xml │ │ │ │ │ └── authentication_documentation.xml │ │ │ │ ├── packages │ │ │ │ ├── make_lastcraft_docs.sh │ │ │ │ └── onpk │ │ │ │ │ ├── map_onpk.xml │ │ │ │ │ └── transform_all_onpk.php │ │ │ │ ├── extensions │ │ │ │ ├── img │ │ │ │ │ └── wait.gif │ │ │ │ └── selenium │ │ │ │ │ └── test │ │ │ │ │ └── remote-control_test.php │ │ │ │ └── tutorials │ │ │ │ └── SimpleTest │ │ │ │ └── SimpleTest.pkg.ini │ │ ├── templates │ │ │ └── sweety │ │ │ │ └── images │ │ │ │ ├── darr.gif │ │ │ │ ├── group.gif │ │ │ │ ├── rarr.gif │ │ │ │ ├── htmlicon.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── network.gif │ │ │ │ ├── runicon.gif │ │ │ │ └── xmlicon.gif │ │ └── CHANGES │ │ ├── .gitignore │ │ ├── .gitattributes │ │ ├── doc │ │ ├── uml │ │ │ ├── Mime.graffle │ │ │ ├── Encoders.graffle │ │ │ └── Transports.graffle │ │ └── index.rst │ │ ├── lib │ │ └── dependency_maps │ │ │ └── message_deps.php │ │ └── notes │ │ └── APPS ├── monolog │ └── monolog │ │ └── tests │ │ └── Monolog │ │ └── Handler │ │ └── Fixtures │ │ └── .gitkeep ├── andrewsville │ └── php-token-reflection │ │ ├── tests │ │ └── data │ │ │ ├── broker │ │ │ └── empty.php │ │ │ ├── parseerror │ │ │ ├── invalid-constant-1.php │ │ │ ├── invalid-file-1.php │ │ │ ├── invalid-parameter-3.php │ │ │ ├── invalid-constant-2.php │ │ │ ├── invalid-constant-3.php │ │ │ ├── invalid-file-3.php │ │ │ ├── invalid-file-2.php │ │ │ ├── invalid-file-4.php │ │ │ ├── invalid-functionbase-1.php │ │ │ ├── invalid-functionbase-2.php │ │ │ ├── invalid-functionbase-3.php │ │ │ ├── invalid-constant-4.php │ │ │ ├── invalid-file-5.php │ │ │ ├── invalid-file-7.php │ │ │ ├── invalid-parameter-1.php │ │ │ ├── invalid-parameter-2.php │ │ │ ├── invalid-property-1.php │ │ │ ├── invalid-property-3.php │ │ │ ├── invalid-property-2.php │ │ │ ├── invalid-class-1.php │ │ │ ├── invalid-file-6.php │ │ │ ├── invalid-class-4.php │ │ │ ├── invalid-class-2.php │ │ │ ├── invalid-class-5.php │ │ │ ├── invalid-class-6.php │ │ │ ├── invalid-stream.php │ │ │ ├── invalid-class-3.php │ │ │ ├── invalid-class-9.php │ │ │ ├── invalid-class-7.php │ │ │ ├── invalid-class-8.php │ │ │ └── invalid-class-10.php │ │ │ ├── class │ │ │ ├── final.php │ │ │ ├── lines.php │ │ │ ├── interface.php │ │ │ ├── no-abstract.php │ │ │ ├── no-final.php │ │ │ ├── no-iterator.php │ │ │ ├── no-methods.php │ │ │ ├── no-parent.php │ │ │ ├── abstract.php │ │ │ ├── no-constants.php │ │ │ ├── no-doc-comment.php │ │ │ ├── no-interface.php │ │ │ ├── no-interfaces.php │ │ │ ├── no-namespace.php │ │ │ ├── no-properties.php │ │ │ ├── user-defined.php │ │ │ ├── in-namespace.php │ │ │ ├── private-clone.php │ │ │ ├── public-clone.php │ │ │ ├── abstract-implicit.php │ │ │ ├── private-constructor.php │ │ │ ├── public-constructor.php │ │ │ ├── doc-comment.php │ │ │ └── iterator.php │ │ │ ├── function │ │ │ ├── lines.php │ │ │ ├── no-closure.php │ │ │ ├── no-comment.php │ │ │ ├── no-disabled.php │ │ │ ├── reference.php │ │ │ ├── no-deprecated.php │ │ │ ├── no-namespace.php │ │ │ ├── no-parameters.php │ │ │ ├── user-defined.php │ │ │ ├── no-reference.php │ │ │ ├── parameters.php │ │ │ ├── in-namespace.php │ │ │ ├── invoke.php │ │ │ ├── doc-comment.php │ │ │ ├── 54features.php │ │ │ └── get-closure.php │ │ │ ├── parameter │ │ │ ├── array.php │ │ │ ├── no-array.php │ │ │ ├── no-class.php │ │ │ ├── class.php │ │ │ ├── no-callable.php │ │ │ ├── no-optional.php │ │ │ ├── reference.php │ │ │ ├── callable.php │ │ │ ├── no-reference.php │ │ │ ├── no-null-array.php │ │ │ ├── no-null-class.php │ │ │ ├── position.php │ │ │ ├── declaring-function.php │ │ │ ├── null-array.php │ │ │ ├── optional-false.php │ │ │ ├── optional-float.php │ │ │ ├── optional-integer.php │ │ │ ├── optional-null.php │ │ │ ├── optional-true.php │ │ │ ├── null-class.php │ │ │ ├── optional-array.php │ │ │ ├── optional-string.php │ │ │ ├── optional-constant.php │ │ │ ├── 54features.php │ │ │ └── declaring-method.php │ │ │ ├── constant │ │ │ ├── lines.php │ │ │ ├── type-null.php │ │ │ ├── type-float.php │ │ │ ├── type-boolean.php │ │ │ ├── type-integer.php │ │ │ ├── type-string.php │ │ │ ├── no-comment.php │ │ │ ├── in-namespace.php │ │ │ ├── no-namespace.php │ │ │ ├── type-constant.php │ │ │ ├── type-float-negative.php │ │ │ ├── type-integer-negative.php │ │ │ ├── heredoc.php │ │ │ └── overriding.php │ │ │ ├── property │ │ │ ├── lines.php │ │ │ ├── no-default.php │ │ │ ├── default.php │ │ │ ├── type-float.php │ │ │ ├── type-null.php │ │ │ ├── type-boolean.php │ │ │ ├── type-integer.php │ │ │ ├── no-comment.php │ │ │ ├── type-array.php │ │ │ ├── type-string.php │ │ │ ├── accessible.php │ │ │ ├── 54features.php │ │ │ └── heredoc.php │ │ │ ├── method │ │ │ ├── lines.php │ │ │ ├── no-closure.php │ │ │ ├── no-comment.php │ │ │ ├── reference.php │ │ │ ├── no-deprecated.php │ │ │ ├── no-namespace.php │ │ │ ├── no-parameters.php │ │ │ ├── no-reference.php │ │ │ ├── user-defined.php │ │ │ ├── parameters.php │ │ │ ├── in-namespace.php │ │ │ ├── named-constructor.php │ │ │ ├── clone.php │ │ │ ├── doc-comment.php │ │ │ ├── named-constructor-in-namespace.php │ │ │ ├── constructor-destructor.php │ │ │ ├── features54.php │ │ │ ├── invoke.php │ │ │ ├── prototype.php │ │ │ └── no-prototype.php │ │ │ ├── file │ │ │ └── no-doc-comment.php │ │ │ └── duplicities │ │ │ ├── constants.php │ │ │ ├── classes.php │ │ │ └── functions.php │ │ ├── .gitignore │ │ ├── .travis.yml │ │ └── build │ │ └── phpcs.xml ├── d11wtq │ └── boris │ │ ├── .gitignore │ │ └── composer.json ├── symfony │ ├── finder │ │ └── Symfony │ │ │ └── Component │ │ │ └── Finder │ │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── one │ │ │ │ ├── a │ │ │ │ └── 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 │ │ │ │ ├── dolor.txt │ │ │ │ ├── ipsum.txt │ │ │ │ └── lorem.txt │ │ │ └── .gitignore │ ├── routing │ │ └── Symfony │ │ │ └── Component │ │ │ └── Routing │ │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── empty.yml │ │ │ │ ├── foo.xml │ │ │ │ ├── foo1.xml │ │ │ │ ├── annotated.php │ │ │ │ ├── nonvalid.yml │ │ │ │ ├── nonvalid2.yml │ │ │ │ ├── special_route_name.yml │ │ │ │ ├── withdoctype.xml │ │ │ │ ├── incomplete.yml │ │ │ │ ├── nonvalidkeys.yml │ │ │ │ ├── nonesense_type_without_resource.yml │ │ │ │ ├── nonesense_resource_plus_path.yml │ │ │ │ ├── dumper │ │ │ │ └── url_matcher2.apache │ │ │ │ └── validresource.yml │ │ │ └── .gitignore │ ├── translation │ │ └── Symfony │ │ │ └── Component │ │ │ └── Translation │ │ │ ├── Tests │ │ │ └── fixtures │ │ │ │ ├── empty.csv │ │ │ │ ├── empty.ini │ │ │ │ ├── empty.json │ │ │ │ ├── empty.mo │ │ │ │ ├── empty.po │ │ │ │ ├── empty.xlf │ │ │ │ ├── empty.yml │ │ │ │ ├── non-valid.yml │ │ │ │ ├── resources.yml │ │ │ │ ├── resources.ini │ │ │ │ ├── resourcebundle │ │ │ │ ├── corrupted │ │ │ │ │ └── resources.dat │ │ │ │ ├── dat │ │ │ │ │ ├── packagelist.txt │ │ │ │ │ ├── en.txt │ │ │ │ │ ├── fr.txt │ │ │ │ │ ├── en.res │ │ │ │ │ ├── fr.res │ │ │ │ │ └── resources.dat │ │ │ │ └── res │ │ │ │ │ └── en.res │ │ │ │ ├── malformed.json │ │ │ │ ├── resources.json │ │ │ │ ├── empty-translation.po │ │ │ │ ├── valid.csv │ │ │ │ ├── resources.php │ │ │ │ ├── plurals.po │ │ │ │ ├── resources.csv │ │ │ │ ├── plurals.mo │ │ │ │ ├── encoding.xlf │ │ │ │ ├── resources.mo │ │ │ │ ├── resources.po │ │ │ │ └── resources.ts │ │ │ └── .gitignore │ ├── console │ │ └── Symfony │ │ │ └── Component │ │ │ └── Console │ │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── input_definition_1.md │ │ │ │ ├── input_definition_1.txt │ │ │ │ ├── application_run4.txt │ │ │ │ ├── input_argument_1.txt │ │ │ │ ├── input_definition_1.json │ │ │ │ ├── input_option_1.txt │ │ │ │ ├── input_argument_2.txt │ │ │ │ ├── input_option_3.txt │ │ │ │ ├── input_definition_2.txt │ │ │ │ ├── input_definition_3.txt │ │ │ │ ├── input_argument_1.json │ │ │ │ ├── input_argument_3.txt │ │ │ │ ├── input_option_4.txt │ │ │ │ ├── input_option_2.txt │ │ │ │ ├── input_argument_2.json │ │ │ │ ├── input_definition_1.xml │ │ │ │ ├── input_argument_3.json │ │ │ │ ├── input_argument_1.md │ │ │ │ ├── input_option_1.json │ │ │ │ ├── input_definition_2.json │ │ │ │ ├── input_definition_4.txt │ │ │ │ ├── input_option_3.json │ │ │ │ ├── input_option_4.json │ │ │ │ ├── input_argument_2.md │ │ │ │ ├── command_1.txt │ │ │ │ ├── input_argument_3.md │ │ │ │ ├── input_option_2.json │ │ │ │ ├── command_1.md │ │ │ │ ├── input_argument_1.xml │ │ │ │ ├── input_definition_2.md │ │ │ │ ├── application_renderexception1.txt │ │ │ │ ├── Foo5Command.php │ │ │ │ ├── command_1.json │ │ │ │ ├── input_definition_3.json │ │ │ │ ├── input_option_1.xml │ │ │ │ ├── input_argument_2.xml │ │ │ │ ├── input_option_1.md │ │ │ │ ├── input_option_3.md │ │ │ │ ├── application_renderexception4.txt │ │ │ │ ├── input_option_4.md │ │ │ │ ├── input_option_2.md │ │ │ │ ├── input_option_3.xml │ │ │ │ ├── input_option_4.xml │ │ │ │ ├── BarBucCommand.php │ │ │ │ ├── Foo4Command.php │ │ │ │ ├── input_definition_3.md │ │ │ │ ├── input_argument_3.xml │ │ │ │ ├── application_renderexception2.txt │ │ │ │ ├── input_option_2.xml │ │ │ │ ├── input_definition_2.xml │ │ │ │ ├── command_2.txt │ │ │ │ ├── input_definition_4.json │ │ │ │ └── input_definition_3.xml │ │ │ ├── .gitignore │ │ │ └── Resources │ │ │ └── bin │ │ │ └── hiddeninput.exe │ ├── dom-crawler │ │ └── Symfony │ │ │ └── Component │ │ │ └── DomCrawler │ │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── no-extension │ │ │ │ └── windows-1250.html │ │ │ └── .gitignore │ ├── http-kernel │ │ └── Symfony │ │ │ └── Component │ │ │ └── HttpKernel │ │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── Bundle1Bundle │ │ │ │ ├── bar.txt │ │ │ │ ├── foo.txt │ │ │ │ └── Resources │ │ │ │ │ └── foo.txt │ │ │ │ ├── Bundle2Bundle │ │ │ │ └── foo.txt │ │ │ │ ├── Resources │ │ │ │ ├── FooBundle │ │ │ │ │ └── foo.txt │ │ │ │ ├── BaseBundle │ │ │ │ │ └── hide.txt │ │ │ │ ├── Bundle1Bundle │ │ │ │ │ └── foo.txt │ │ │ │ └── ChildBundle │ │ │ │ │ └── foo.txt │ │ │ │ ├── BaseBundle │ │ │ │ └── Resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── hide.txt │ │ │ │ └── ChildBundle │ │ │ │ └── Resources │ │ │ │ ├── foo.txt │ │ │ │ └── hide.txt │ │ │ └── .gitignore │ ├── debug │ │ └── Symfony │ │ │ └── Component │ │ │ └── Debug │ │ │ ├── .gitignore │ │ │ ├── Tests │ │ │ └── Fixtures │ │ │ │ ├── PEARClass.php │ │ │ │ └── RequiredTwice.php │ │ │ └── CHANGELOG.md │ ├── http-foundation │ │ └── Symfony │ │ │ └── Component │ │ │ └── HttpFoundation │ │ │ ├── Tests │ │ │ └── File │ │ │ │ └── Fixtures │ │ │ │ ├── .unknownextension │ │ │ │ ├── directory │ │ │ │ └── .empty │ │ │ │ ├── test │ │ │ │ └── test.gif │ │ │ └── .gitignore │ ├── process │ │ └── Symfony │ │ │ └── Component │ │ │ └── Process │ │ │ └── .gitignore │ ├── security │ │ └── Symfony │ │ │ └── Component │ │ │ └── Security │ │ │ ├── .gitignore │ │ │ ├── Acl │ │ │ └── .gitignore │ │ │ ├── Core │ │ │ └── .gitignore │ │ │ ├── Csrf │ │ │ └── .gitignore │ │ │ └── Http │ │ │ └── .gitignore │ ├── browser-kit │ │ └── Symfony │ │ │ └── Component │ │ │ └── BrowserKit │ │ │ └── .gitignore │ ├── filesystem │ │ └── Symfony │ │ │ └── Component │ │ │ └── Filesystem │ │ │ └── .gitignore │ ├── css-selector │ │ └── Symfony │ │ │ └── Component │ │ │ └── CssSelector │ │ │ ├── .gitignore │ │ │ └── CHANGELOG.md │ └── event-dispatcher │ │ └── Symfony │ │ └── Component │ │ └── EventDispatcher │ │ └── .gitignore ├── classpreloader │ └── classpreloader │ │ ├── .gitignore │ │ └── classpreloader.php ├── jakubledl │ └── dissect │ │ ├── .gitignore │ │ ├── bin │ │ └── dissect │ │ ├── docs │ │ └── state_3.png │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ └── tests │ │ ├── Dissect │ │ └── Parser │ │ │ ├── LALR1 │ │ │ └── Dumper │ │ │ │ └── res │ │ │ │ ├── table │ │ │ │ └── production.php │ │ │ │ └── graphviz │ │ │ │ └── state.dot │ │ │ └── ExampleGrammar.php │ │ └── bootstrap.php ├── doctrine │ ├── annotations │ │ ├── .gitignore │ │ ├── tests │ │ │ └── Doctrine │ │ │ │ └── Tests │ │ │ │ ├── Common │ │ │ │ └── Annotations │ │ │ │ │ ├── Fixtures │ │ │ │ │ ├── NoAnnotation.php │ │ │ │ │ ├── Api.php │ │ │ │ │ ├── Annotation │ │ │ │ │ │ ├── Autoload.php │ │ │ │ │ │ ├── Version.php │ │ │ │ │ │ ├── Route.php │ │ │ │ │ │ └── AnnotWithDefaultValue.php │ │ │ │ │ ├── InvalidAnnotationUsageClass.php │ │ │ │ │ ├── AnnotationWithTargetSyntaxError.php │ │ │ │ │ ├── ClassWithConstants.php │ │ │ │ │ ├── AnnotationTargetAll.php │ │ │ │ │ ├── IntefaceWithConstants.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ ├── AnnotationTargetClass.php │ │ │ │ │ ├── AnnotationTargetMethod.php │ │ │ │ │ ├── NonNamespacedClass.php │ │ │ │ │ ├── AnnotationTargetAnnotation.php │ │ │ │ │ ├── MultipleImportsInUseStatement.php │ │ │ │ │ └── MultipleClassesInFile.php │ │ │ │ │ ├── Ticket │ │ │ │ │ └── DCOM58Entity.php │ │ │ │ │ └── TopLevelAnnotation.php │ │ │ │ └── DoctrineTestCase.php │ │ └── .travis.yml │ └── lexer │ │ └── README.md ├── filp │ └── whoops │ │ ├── .gitignore │ │ ├── .travis.yml │ │ └── tests │ │ ├── fixtures │ │ └── frame.lines-test.php │ │ └── bootstrap.php ├── laravel │ └── framework │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── src │ │ └── Illuminate │ │ │ ├── Workbench │ │ │ └── stubs │ │ │ │ ├── gitignore.txt │ │ │ │ └── .travis.yml │ │ │ ├── Session │ │ │ └── TokenMismatchException.php │ │ │ ├── Routing │ │ │ └── Generators │ │ │ │ └── stubs │ │ │ │ ├── controller.stub │ │ │ │ ├── index.stub │ │ │ │ ├── create.stub │ │ │ │ ├── store.stub │ │ │ │ ├── show.stub │ │ │ │ ├── destroy.stub │ │ │ │ ├── edit.stub │ │ │ │ └── update.stub │ │ │ ├── Database │ │ │ ├── Eloquent │ │ │ │ └── MassAssignmentException.php │ │ │ └── Connectors │ │ │ │ └── ConnectorInterface.php │ │ │ ├── Support │ │ │ ├── Contracts │ │ │ │ ├── ArrayableInterface.php │ │ │ │ ├── RenderableInterface.php │ │ │ │ ├── MessageProviderInterface.php │ │ │ │ └── JsonableInterface.php │ │ │ └── Facades │ │ │ │ └── Log.php │ │ │ ├── Pagination │ │ │ └── views │ │ │ │ ├── slider-3.php │ │ │ │ └── slider.php │ │ │ ├── Auth │ │ │ └── Reminders │ │ │ │ └── RemindableInterface.php │ │ │ ├── Queue │ │ │ └── Connectors │ │ │ │ └── ConnectorInterface.php │ │ │ ├── Exception │ │ │ └── ExceptionDisplayerInterface.php │ │ │ └── View │ │ │ └── Engines │ │ │ └── EngineInterface.php │ │ └── .travis.yml ├── nikic │ └── php-parser │ │ ├── .travis.yml │ │ ├── lib │ │ └── PHPParser │ │ │ ├── Comment │ │ │ └── Doc.php │ │ │ ├── Node │ │ │ ├── Expr.php │ │ │ ├── Stmt.php │ │ │ ├── Scalar.php │ │ │ ├── Expr │ │ │ │ └── Cast │ │ │ │ │ ├── Array.php │ │ │ │ │ ├── Bool.php │ │ │ │ │ ├── Int.php │ │ │ │ │ ├── Unset.php │ │ │ │ │ ├── Double.php │ │ │ │ │ ├── Object.php │ │ │ │ │ └── String.php │ │ │ └── Stmt │ │ │ │ └── TraitUseAdaptation.php │ │ │ ├── Builder.php │ │ │ ├── PrettyPrinter │ │ │ └── Zend.php │ │ │ ├── Serializer.php │ │ │ └── Unserializer.php │ │ └── test │ │ └── code │ │ ├── prettyPrinter │ │ ├── include.test │ │ ├── onlyPHP.file-test │ │ └── onlyInlineHTML.file-test │ │ └── parser │ │ ├── stmt │ │ ├── tryCatch.test-fail │ │ ├── haltCompilerInvalidSyntax.test-fail │ │ ├── namespace │ │ │ └── nested.test-fail │ │ ├── haltCompilerOutermostScope.test-fail │ │ ├── loop │ │ │ └── do.test │ │ └── class │ │ │ └── final.test │ │ └── expr │ │ ├── print.test │ │ ├── clone.test │ │ └── errorSuppress.test ├── bin │ ├── boris.bat │ ├── dissect.bat │ ├── dissect.php.bat │ ├── classpreloader.php.bat │ ├── boris │ ├── dissect │ ├── dissect.php │ └── classpreloader.php ├── lisachenko │ └── go-aop-php │ │ ├── tests │ │ └── Go │ │ │ └── Instrument │ │ │ └── Transformer │ │ │ └── _files │ │ │ ├── interface.php │ │ │ ├── multiple-ns.php │ │ │ ├── aspect.php │ │ │ └── empty-classes.php │ │ ├── .travis.yml │ │ └── .gitignore ├── ircmaxell │ └── password-compat │ │ ├── .travis.yml │ │ └── version-test.php ├── jeremeamia │ └── SuperClosure │ │ ├── .gitignore │ │ ├── tests │ │ └── bootstrap.php │ │ └── .travis.yml ├── patchwork │ └── utf8 │ │ ├── class │ │ └── Patchwork │ │ │ └── PHP │ │ │ └── Shim │ │ │ └── charset │ │ │ ├── from.big5.ser │ │ │ ├── to.stdenc.ser │ │ │ ├── to.symbol.ser │ │ │ ├── from.cp037.ser │ │ │ ├── from.cp1006.ser │ │ │ ├── from.cp1026.ser │ │ │ ├── from.cp424.ser │ │ │ ├── from.cp437.ser │ │ │ ├── from.cp500.ser │ │ │ ├── from.cp737.ser │ │ │ ├── from.cp775.ser │ │ │ ├── from.cp850.ser │ │ │ ├── from.cp852.ser │ │ │ ├── from.cp855.ser │ │ │ ├── from.cp856.ser │ │ │ ├── from.cp857.ser │ │ │ ├── from.cp860.ser │ │ │ ├── from.cp861.ser │ │ │ ├── from.cp862.ser │ │ │ ├── from.cp863.ser │ │ │ ├── from.cp864.ser │ │ │ ├── from.cp865.ser │ │ │ ├── from.cp866.ser │ │ │ ├── from.cp869.ser │ │ │ ├── from.cp874.ser │ │ │ ├── from.cp875.ser │ │ │ ├── from.cp932.ser │ │ │ ├── from.cp936.ser │ │ │ ├── from.cp949.ser │ │ │ ├── from.cp950.ser │ │ │ ├── from.koi8-r.ser │ │ │ ├── from.koi8-u.ser │ │ │ ├── from.stdenc.ser │ │ │ ├── from.symbol.ser │ │ │ ├── to.mazovia.ser │ │ │ ├── to.zdingbat.ser │ │ │ ├── from.mazovia.ser │ │ │ ├── from.nextstep.ser │ │ │ ├── from.turkish.ser │ │ │ ├── from.x-mac-ce.ser │ │ │ ├── from.zdingbat.ser │ │ │ ├── from.iso-8859-1.ser │ │ │ ├── from.iso-8859-10.ser │ │ │ ├── from.iso-8859-11.ser │ │ │ ├── from.iso-8859-13.ser │ │ │ ├── from.iso-8859-14.ser │ │ │ ├── from.iso-8859-15.ser │ │ │ ├── from.iso-8859-16.ser │ │ │ ├── from.iso-8859-2.ser │ │ │ ├── from.iso-8859-3.ser │ │ │ ├── from.iso-8859-4.ser │ │ │ ├── from.iso-8859-5.ser │ │ │ ├── from.iso-8859-6.ser │ │ │ ├── from.iso-8859-7.ser │ │ │ ├── from.iso-8859-8.ser │ │ │ ├── from.iso-8859-9.ser │ │ │ ├── from.x-mac-greek.ser │ │ │ ├── from.x-mac-roman.ser │ │ │ ├── from.windows-1250.ser │ │ │ ├── from.windows-1251.ser │ │ │ ├── from.windows-1252.ser │ │ │ ├── from.windows-1253.ser │ │ │ ├── from.windows-1254.ser │ │ │ ├── from.windows-1255.ser │ │ │ ├── from.windows-1256.ser │ │ │ ├── from.windows-1257.ser │ │ │ ├── from.windows-1258.ser │ │ │ ├── from.x-mac-cyrillic.ser │ │ │ └── from.x-mac-icelandic.ser │ │ └── .travis.yml ├── autoload.php └── composer │ ├── include_paths.php │ └── autoload_psr4.php ├── composer.bat ├── .settings ├── org.eclipse.wst.jsdt.ui.superType.name ├── org.eclipse.php.core.prefs ├── org.eclipse.wst.jsdt.ui.superType.container └── org.eclipse.wst.common.project.facet.core.xml ├── composer.phar ├── CONTRIBUTING.md ├── .buildpath ├── readme.md └── cache └── app └── controllers └── BaseController.php /.idea/.name: -------------------------------------------------------------------------------- 1 | laravel -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/production.sqlite: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/start/local.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/one/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/classpreloader/classpreloader/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/VERSION: -------------------------------------------------------------------------------- 1 | 1.1beta -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/A/B/ab.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/A/a.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/foo.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/foo1.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/A/B/C/abc.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/one/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/one/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/annotated.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/jakubledl/dissect/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.phar 3 | composer.lock 4 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/copy/A/B/ab.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/copy/A/a.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/with space/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.xlf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/doctrine/annotations/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | composer.phar 4 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/nonvalid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/composer.phar -------------------------------------------------------------------------------- /vendor/filp/whoops/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* 2 | report/* 3 | phpunit.xml 4 | composer.lock 5 | -------------------------------------------------------------------------------- /vendor/laravel/framework/.gitattributes: -------------------------------------------------------------------------------- 1 | /build export-ignore 2 | /tests export-ignore 3 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/support/collector/collectable.1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/support/collector/collectable.2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/Symfony/Component/DomCrawler/Tests/Fixtures/no-extension: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle1Bundle/bar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle1Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle2Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/non-valid.yml: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.phar 3 | composer.lock 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/temp/.stop_cvs_removing_temp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/FooBundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/nonvalid2.yml: -------------------------------------------------------------------------------- 1 | route: string 2 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /.settings/org.eclipse.php.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | include_path=0;/laravel_as 3 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Symfony/Component/Debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/File/Fixtures/.unknownextension: -------------------------------------------------------------------------------- 1 | f -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/File/Fixtures/directory/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/BaseBundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/BaseBundle/Resources/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle1Bundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/ChildBundle/Resources/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/ChildBundle/Resources/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/BaseBundle/hide.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/Bundle1Bundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/ChildBundle/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.ini: -------------------------------------------------------------------------------- 1 | foo="bar" 2 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.2 5 | - 5.3 6 | - 5.4 7 | - 5.5 -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/dolor.txt: -------------------------------------------------------------------------------- 1 | dolor sit amet 2 | DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/process/Symfony/Component/Process/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/security/Symfony/Component/Security/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/bin/boris.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | SET BIN_TARGET=%~dp0/../d11wtq/boris/bin/boris 3 | php "%BIN_TARGET%" %* 4 | -------------------------------------------------------------------------------- /vendor/jakubledl/dissect/bin/dissect: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/support/upload_sample.txt: -------------------------------------------------------------------------------- 1 | Sample for testing file upload -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.txt: -------------------------------------------------------------------------------- 1 | argument_name 2 | -------------------------------------------------------------------------------- /vendor/symfony/css-selector/Symfony/Component/CssSelector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/ipsum.txt: -------------------------------------------------------------------------------- 1 | ipsum dolor sit amet 2 | IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/malformed.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" " 3 | } -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/parseerror/invalid-constant-1.php: -------------------------------------------------------------------------------- 1 | --option_name (-o) 2 | -------------------------------------------------------------------------------- /vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/special_route_name.yml: -------------------------------------------------------------------------------- 1 | "#$péß^a|": 2 | path: "true" 3 | -------------------------------------------------------------------------------- /vendor/bin/dissect.php.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | SET BIN_TARGET=%~dp0/../jakubledl/dissect/bin/dissect.php 3 | php "%BIN_TARGET%" %* 4 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/.gitignore: -------------------------------------------------------------------------------- 1 | /tests/acceptance.conf.php 2 | /tests/smoke.conf.php 3 | /build/* 4 | /vendor/ 5 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/.htaccess: -------------------------------------------------------------------------------- 1 | DirectoryIndex index.php 2 | Options Indexes 3 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/lorem.txt: -------------------------------------------------------------------------------- 1 | lorem ipsum dolor sit amet 2 | LOREM IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty-translation.po: -------------------------------------------------------------------------------- 1 | msgid "foo" 2 | msgstr "" 3 | 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/packagelist.txt: -------------------------------------------------------------------------------- 1 | en.res 2 | fr.res 3 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/parseerror/invalid-constant-2.php: -------------------------------------------------------------------------------- 1 | argument_name argument description 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.txt: -------------------------------------------------------------------------------- 1 | --option_name (-o) option description 2 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/class/interface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/.gitignore: -------------------------------------------------------------------------------- 1 | /build/api/ 2 | /build/code-browser/ 3 | /build/coverage/ 4 | /build/logs/ 5 | /build/pdepend/ -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/class/abstract.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/function/no-deprecated.php: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/incomplete.yml: -------------------------------------------------------------------------------- 1 | blog_show: 2 | defaults: { _controller: MyBlogBundle:Blog:show } 3 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/nonvalidkeys.yml: -------------------------------------------------------------------------------- 1 | someroute: 2 | resource: path/to/some.yml 3 | name_prefix: test_ 4 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/function/no-reference.php: -------------------------------------------------------------------------------- 1 | Options: 2 | --option_name (-o) 3 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/parameter/callable.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Symfony/Component/Debug/Tests/Fixtures/PEARClass.php: -------------------------------------------------------------------------------- 1 | argument_name argument description (default: "default_value") 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.txt: -------------------------------------------------------------------------------- 1 | --option_name (-o) option description (multiple values allowed) 2 | -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/constant/no-comment.php: -------------------------------------------------------------------------------- 1 | 1); 6 | } -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/property/type-string.php: -------------------------------------------------------------------------------- 1 | --option_name (-o) option description (default: "default_value") 2 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Symfony/Component/Debug/Tests/Fixtures/RequiredTwice.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.csv: -------------------------------------------------------------------------------- 1 | "foo"; "bar" 2 | #"bar"; "foo" 3 | "incorrect"; "number"; "columns"; "will"; "be"; "ignored" 4 | "incorrect" -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/class/abstract-implicit.php: -------------------------------------------------------------------------------- 1 | 2 | 1 3 | 4 | 2 5 | 6 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/2.html: -------------------------------------------------------------------------------- 1 | 2 | 2 3 | 4 | 3 5 | 6 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 3 | 4 | 1 5 | 6 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip -------------------------------------------------------------------------------- /.buildpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/constant/type-float-negative.php: -------------------------------------------------------------------------------- 1 | 2 | A 3 | 4 | This is frame A
5 | 6 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/frame_b.html: -------------------------------------------------------------------------------- 1 | 2 | B 3 | 4 | This is frame B
5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.json: -------------------------------------------------------------------------------- 1 | {"name":"argument_name","is_required":false,"is_array":true,"description":"argument description","default":[]} 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/class/private-constructor.php: -------------------------------------------------------------------------------- 1 | 2 | 1 3 | 4 | 2 5 | 6 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/protected/2.html: -------------------------------------------------------------------------------- 1 | 2 | 2 3 | 4 | 3 5 | 6 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/protected/3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 3 | 4 | 1 5 | 6 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/parseerror/invalid-class-10.php: -------------------------------------------------------------------------------- 1 | assertEqual(3,1+2, "pass1"); 5 | } 6 | } 7 | ?> 8 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/url_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/url_test.php -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/darr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/darr.gif -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/group.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/group.gif -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/rarr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/rarr.gif -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.json: -------------------------------------------------------------------------------- 1 | {"name":"argument_name","is_required":false,"is_array":false,"description":"argument description","default":"default_value"} 2 | -------------------------------------------------------------------------------- /vendor/bin/classpreloader.php: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | SRC_DIR="`pwd`" 3 | cd "`dirname "$0"`" 4 | cd "../classpreloader/classpreloader" 5 | BIN_TARGET="`pwd`/classpreloader.php" 6 | cd "$SRC_DIR" 7 | "$BIN_TARGET" "$@" 8 | -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Ticket/DCOM58Entity.php: -------------------------------------------------------------------------------- 1 | 7 | * Default: `NULL` 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.json: -------------------------------------------------------------------------------- 1 | {"name":"--option_name","shortcut":"-o","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"","default":false} 2 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | 4 | Slow page 5 | This page takes at least two seconds 6 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/support/latin1_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/support/latin1_sample -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.json: -------------------------------------------------------------------------------- 1 | {"arguments":{"argument_name":{"name":"argument_name","is_required":true,"is_array":false,"description":"","default":null}},"options":[]} 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.txt: -------------------------------------------------------------------------------- 1 | Arguments: 2 | argument_name 3 | 4 | Options: 5 | --option_name (-o) 6 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/plurals.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/plurals.mo -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/method/named-constructor.php: -------------------------------------------------------------------------------- 1 | 2 | Link to SimpleTest 3 | 4 | Link to SimpleTest 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.md: -------------------------------------------------------------------------------- 1 | **argument_name:** 2 | 3 | * Name: argument_name 4 | * Is required: no 5 | * Is array: yes 6 | * Description: argument description 7 | * Default: `array ()` 8 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/function/54features.php: -------------------------------------------------------------------------------- 1 | Usage: 2 | descriptor:command1 3 | 4 | Aliases: alias1, alias2 5 | 6 | Help: 7 | command 1 help 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.md: -------------------------------------------------------------------------------- 1 | **argument_name:** 2 | 3 | * Name: argument_name 4 | * Is required: no 5 | * Is array: no 6 | * Description: argument description 7 | * Default: `'default_value'` 8 | -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/File/Fixtures/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/File/Fixtures/test.gif -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.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 "foo" 8 | msgstr "bar" -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Routing/Generators/stubs/show.stub: -------------------------------------------------------------------------------- 1 | /** 2 | * Display the specified resource. 3 | * 4 | * @param int $id 5 | * @return Response 6 | */ 7 | public function show($id) 8 | { 9 | // 10 | } 11 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/first_test_tutorial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/first_test_tutorial.xml -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/group_test_tutorial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/group_test_tutorial.xml -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/base_tag/page_1.html: -------------------------------------------------------------------------------- 1 | 2 | Page 1 3 | 4 | This is page 1. 5 | To page 2 6 | 7 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/base_tag/page_2.html: -------------------------------------------------------------------------------- 1 | 2 | Page 2 3 | 4 | This is page 2. 5 | To page 1 6 | 7 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/protected/.htaccess: -------------------------------------------------------------------------------- 1 | AuthName "Test of basic authentication" 2 | AuthType Basic 3 | AuthUserFile /home/marcus/projects/lastcraft/www/test/protected/.htpasswd 4 | require valid-user 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.json: -------------------------------------------------------------------------------- 1 | {"name":"--option_name","shortcut":"-o","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"option description","default":"default_value"} 2 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/method/named-constructor-in-namespace.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.md: -------------------------------------------------------------------------------- 1 | ### Arguments: 2 | 3 | **argument_name:** 4 | 5 | * Name: argument_name 6 | * Is required: yes 7 | * Is array: no 8 | * Description: 9 | * Default: `NULL` 10 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/en.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/en.res -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/fr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/fr.res -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/res/en.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/res/en.res -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PHPParser/Builder.php: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/resources.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/resources.dat -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/function/get-closure.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | argument description 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/parser/stmt/haltCompilerOutermostScope.test-fail: -------------------------------------------------------------------------------- 1 | __halt_compiler can only be used from outermost scope 2 | ----- 3 | 9 | * Default: `false` 10 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/simpletest.org/images/book-domain-driven-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/simpletest.org/images/book-domain-driven-design.jpg -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/simpletest.org/images/simpletest-external-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/simpletest.org/images/simpletest-external-top.png -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/simpletest.org/images/simpletest-internal-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/simpletest.org/images/simpletest-internal-top.png -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/simpletest.org/images/simpletest-start-testing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/simpletest.org/images/simpletest-start-testing.png -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/base_tag/relative_link.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Links without base tag 4 | 5 | 6 | Back to test pages 7 | 8 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/local_redirect.php: -------------------------------------------------------------------------------- 1 | 4 | Redirection test 5 | This is a test page for the SimpleTest PHP unit tester 6 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | ## Configure GoAOP in laravel 4 2 | 3 | Go AOP is an AOP framework which provides us the flexibility to define advices using annotations such as @Before, @After etc. This laravel application is configured with Go AOP and it prints some output before and after the method execution. 4 | -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/monolog/monolog/src/Monolog'), 10 | ); 11 | -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/Annotation/Version.php: -------------------------------------------------------------------------------- 1 | array(0=>array('a'=>2,'$eof'=>-2,),2=>array('a'=>2,'b'=>-2,),3=>array('b'=>4,),1=>array('$eof'=>0,),4=>array('$eof'=>-1,'b'=>-1,),),'goto'=>array(0=>array('S'=>1,),2=>array('S'=>3,),)); 2 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/protected/local_redirect.php: -------------------------------------------------------------------------------- 1 | 4 | Redirection test 5 | This is a test page for the SimpleTest PHP unit tester 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: yes 6 | * Is value required: yes 7 | * Is multiple: no 8 | * Description: option description 9 | * Default: `NULL` 10 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher2.apache: -------------------------------------------------------------------------------- 1 | # skip "real" requests 2 | RewriteCond %{REQUEST_FILENAME} -f 3 | RewriteRule .* - [QSA,L] 4 | 5 | # foo 6 | RewriteCond %{REQUEST_URI} ^/foo$ 7 | RewriteRule .* ap\ p_d\ ev.php [QSA,L,E=_ROUTING_route:foo] 8 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/class/doc-comment.php: -------------------------------------------------------------------------------- 1 | 4 | Redirection test 5 | This is a test page for the SimpleTest PHP unit tester 6 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/frame_links.html: -------------------------------------------------------------------------------- 1 | 2 | 1 3 | 4 | Set one to 2 5 | Exit the frameset 6 | 7 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/path/base_change_redirect.php: -------------------------------------------------------------------------------- 1 | 4 | Redirection test 5 | This is a test page for the SimpleTest PHP unit tester 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception4.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [InvalidArgumentException] 5 | Command "foo" is not define 6 | d. 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: yes 6 | * Is value required: no 7 | * Is multiple: yes 8 | * Description: option description 9 | * Default: `array ()` 10 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/file/no-doc-comment.php: -------------------------------------------------------------------------------- 1 | register('message.message') 5 | ->asNewInstanceOf('Swift_Message') 6 | 7 | ->register('message.mimepart') 8 | ->asNewInstanceOf('Swift_MimePart') 9 | ; 10 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/simpletest.org/images/book-guide-to-php-design-patterns.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/simpletest.org/images/book-guide-to-php-design-patterns.jpg -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.md: -------------------------------------------------------------------------------- 1 | **option_name:** 2 | 3 | * Name: `--option_name` 4 | * Shortcut: `-o` 5 | * Accept value: yes 6 | * Is value required: no 7 | * Is multiple: no 8 | * Description: option description 9 | * Default: `'default_value'` 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Contracts/ArrayableInterface.php: -------------------------------------------------------------------------------- 1 | 4 | Redirection test 5 | This is a test page for the SimpleTest PHP unit tester 6 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/BarBucCommand.php: -------------------------------------------------------------------------------- 1 | setName('bar:buc'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo4Command.php: -------------------------------------------------------------------------------- 1 | setName('foo3:bar:toh'); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.md: -------------------------------------------------------------------------------- 1 | ### Options: 2 | 3 | **option_name:** 4 | 5 | * Name: `--option_name` 6 | * Shortcut: `-o` 7 | * Accept value: no 8 | * Is value required: no 9 | * Is multiple: no 10 | * Description: 11 | * Default: `false` 12 | -------------------------------------------------------------------------------- /app/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call('UserTableSeeder'); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PHPParser/PrettyPrinter/Zend.php: -------------------------------------------------------------------------------- 1 | add('Dissect', __DIR__); 10 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/redirect.php: -------------------------------------------------------------------------------- 1 | 4 | Redirection test 5 | This is a test page for the SimpleTest PHP unit tester 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/constant/overriding.php: -------------------------------------------------------------------------------- 1 | 3 [label="S"]; 8 | 2 -> 2 [label="a"]; 9 | } 10 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Pagination/views/slider-3.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | getLastPage() > 1): ?> 6 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Contracts/RenderableInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | resources 5 | 6 | foo 7 | bar 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | 7 | env: 8 | - TRAVISCI=1 9 | 10 | branches: 11 | only: 12 | - develop 13 | - master 14 | 15 | notifications: 16 | email: 17 | - ci@andrewsville.cz 18 | 19 | script: phpunit tests/TokenReflection -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/base_tag/base_link.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Links and base tag 4 | 5 | 6 | 7 | Back to test pages 8 | 9 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | argument description 4 | 5 | default_value 6 | 7 | 8 | -------------------------------------------------------------------------------- /vendor/symfony/debug/Symfony/Component/Debug/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 2.4.0 5 | ----- 6 | 7 | * added a DebugClassLoader able to wrap any autoloader providing a findFile method 8 | * improved error messages for not found classes and functions 9 | 10 | 2.3.0 11 | ----- 12 | 13 | * added the component 14 | -------------------------------------------------------------------------------- /app/views/emails/auth/reminder.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Password Reset

8 | 9 |
10 | To reset your password, complete this form: {{ URL::to('password/reset', array($token)) }}. 11 |
12 | 13 | 14 | -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/ClassWithConstants.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | getLastPage() > 1): ?> 6 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/validresource.yml: -------------------------------------------------------------------------------- 1 | _blog: 2 | resource: validpattern.yml 3 | prefix: /{foo} 4 | defaults: { 'foo': '123' } 5 | requirements: { 'foo': '\d+' } 6 | options: { 'foo': 'bar' } 7 | host: "" 8 | condition: 'context.getMethod() == "POST"' 9 | -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/IntefaceWithConstants.php: -------------------------------------------------------------------------------- 1 | run(); 11 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Database/Connectors/ConnectorInterface.php: -------------------------------------------------------------------------------- 1 | dump() should be used for output where needed. Will address this again 7 | later. 8 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception2.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [InvalidArgumentException] 5 | The "--foo" option does not exist. 6 | 7 | 8 | 9 | list [--xml] [--raw] [--format="..."] [namespace] 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/build/phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | TokenReflection coding standard 4 | 5 | 6 | 7 | 8 | 0 9 | 10 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/method/prototype.php: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /app/tests/ExampleTest.php: -------------------------------------------------------------------------------- 1 | client->request('GET', '/'); 13 | 14 | $this->assertTrue($this->client->getResponse()->isOk()); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /vendor/d11wtq/boris/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "d11wtq/boris", 3 | "require": { 4 | "php": ">=5.3.0" 5 | }, 6 | "suggest": { 7 | "ext-readline": "*", 8 | "ext-pcntl": "*", 9 | "ext-posix": "*" 10 | }, 11 | "autoload": { 12 | "psr-0": {"Boris": "lib"} 13 | }, 14 | "bin": ["bin/boris"] 15 | } 16 | -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/AnnotationTargetMethod.php: -------------------------------------------------------------------------------- 1 | is('a', 'b', 'c') 11 | ->is('x', 'y', 'z'); 12 | 13 | $this->start('Foo'); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Contracts/JsonableInterface.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/controllers/BaseController.php: -------------------------------------------------------------------------------- 1 | layout)) 13 | { 14 | $this->layout = View::make($this->layout); 15 | } 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/parse_error_test.php: -------------------------------------------------------------------------------- 1 | addFile('test_with_parse_error.php'); 8 | $test->run(new HtmlReporter()); 9 | ?> -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.txt: -------------------------------------------------------------------------------- 1 | Usage: 2 | descriptor:command2 [-o|--option_name] argument_name 3 | 4 | Arguments: 5 | argument_name 6 | 7 | Options: 8 | --option_name (-o) 9 | 10 | Help: 11 | command 2 help 12 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.json: -------------------------------------------------------------------------------- 1 | {"arguments":{"argument_name":{"name":"argument_name","is_required":true,"is_array":false,"description":"","default":null}},"options":{"option_name":{"name":"--option_name","shortcut":"-o","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"","default":false}}} 2 | -------------------------------------------------------------------------------- /cache/app/controllers/BaseController.php: -------------------------------------------------------------------------------- 1 | layout)) 13 | { 14 | $this->layout = View::make($this->layout); 15 | } 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/duplicities/functions.php: -------------------------------------------------------------------------------- 1 | 2 | Frameset for testing of SimpleTest 3 | 4 | 5 | 6 | This content is for no frames only. 7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/cookie_based_counter.php: -------------------------------------------------------------------------------- 1 | 8 | Cookie Counter 9 | 10 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/one_page_frameset.html: -------------------------------------------------------------------------------- 1 | 2 | Frameset for testing of SimpleTest 3 | 4 | 5 | 6 | <body>This content is for no frames only.</body> 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/cache/app/controllers/BaseController.php: -------------------------------------------------------------------------------- 1 | layout)) 13 | { 14 | $this->layout = View::make($this->layout); 15 | } 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/MultipleImportsInUseStatement.php: -------------------------------------------------------------------------------- 1 | 5 | * 6 | * Bootstraper for PHPUnit tests. 7 | */ 8 | error_reporting(E_ALL | E_STRICT); 9 | $_ENV['whoops-test'] = true; 10 | $loader = require_once __DIR__ . '/../vendor/autoload.php'; 11 | $loader->add('Whoops\\', __DIR__); 12 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Exception/ExceptionDisplayerInterface.php: -------------------------------------------------------------------------------- 1 | TestSuite('Two bad test cases'); 7 | $this->addFile(dirname(__FILE__) . '/support/empty_test_file.php'); 8 | } 9 | } 10 | ?> -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/andrewsville/php-token-reflection/tests/data/class/iterator.php: -------------------------------------------------------------------------------- 1 |