├── public ├── favicon.ico ├── css │ ├── .gitignore │ └── style.css ├── img │ ├── .gitignore │ ├── loading.gif │ ├── progressbar.gif │ ├── glyphicons-halflings.png │ ├── login_with_douban_18.png │ └── glyphicons-halflings-white.png ├── packages │ └── .gitkeep ├── robots.txt ├── data │ ├── 02126cf4a8ff13b69acdb4e9cb78fdb0.jpeg │ ├── 05d8ccdf0c23d8f13dfcad69eb3a8fcc.jpeg │ ├── 060994b2f071ed146ef2b487ff9f087f.jpeg │ ├── 0d9d92d9cf18e21da332eeead98a0c04.jpeg │ ├── 0f1bace5aafd144e67f5981aca9bbf5b.jpeg │ ├── 14f1fc5be9927f6a51a10ffbaa8d48e7.jpeg │ ├── 16d11b94884be0eeff7140d4c1b8b851.jpeg │ ├── 19a997398eb9d597a9d0fc2990bade03.jpeg │ ├── 21123813e2eeb89437461b01b772ced9.jpeg │ ├── 31b042d9c6ae7bf1a504008da4d3b53b.jpeg │ ├── 4282d50b243dc87c00088178206895db.jpeg │ ├── 46d51979b35a63b3f395a83f45328f7c.jpeg │ ├── 490ddad733c76a8da1aaff998348bde1.jpeg │ ├── 4adeab373fb4230ef285ae0b91b2e179.jpeg │ ├── 4e4a84ee7b989c12bbec9a91cb114120.jpeg │ ├── 4f491794dd21e90d45f3dab0548350b4.jpeg │ ├── 51fa15e1528a4e2322c1e021f9dd376b.jpeg │ ├── 524f9206ad023e529010153a37d70d78.jpeg │ ├── 791c2c52599ec7a77ca38ae6901b3c65.jpeg │ ├── 79615d6ff1afe4d8352e92326073de18.jpeg │ ├── 7fe417924a759f4c84f7c9e6f42c00ff.jpeg │ ├── 8ca7ca53497bd0cad1c501c9c7329592.jpeg │ ├── 95be472e7f4a92f37934785b6d6b4992.jpeg │ ├── 9c895d29450982d2ec4434c95b5e178f.jpeg │ ├── 9ecf57893f6c137386584cfd2370c495.jpeg │ ├── a5913d2c4425e89031c6d4fe95ea5a6f.jpeg │ ├── ad0c42268bd4650ab7c8713d745bb21b.jpeg │ ├── bad042bac84176085af2f24d3cae7289.jpeg │ ├── bfa15b063ce06bfd8ad52e53491f210c.jpeg │ ├── c33a55e8fcf035f40a2722f3a1ef17d2.jpeg │ ├── c857c020140b45298d2b5f036fed87ab.jpeg │ ├── cc6785a70460d71af6df2022a74033f3.jpeg │ ├── d2412af2393556f35cf3ece388c4a22e.jpeg │ ├── df620a3fa7ccc6e0806d4f7624a5f3b9.jpeg │ ├── e28ec941d6ee580f67c641b1a20fc6b4.jpeg │ ├── e4b42fe74a37ff6340d2d8c5921a93c9.jpeg │ ├── e91a200a67fe078cf2789ac29cb3a316.jpeg │ ├── f00a1f52a56c027e1349e92711d4173a.jpeg │ └── fbb5eb8aa066649ae394b0fb0307972f.jpeg └── .htaccess ├── app ├── commands │ └── .gitkeep ├── config │ └── packages │ │ └── .gitkeep ├── controllers │ ├── .gitkeep │ └── BaseController.php ├── database │ ├── seeds │ │ ├── .gitkeep │ │ └── DatabaseSeeder.php │ ├── migrations │ │ └── .gitkeep │ └── production.sqlite ├── start │ ├── local.php │ └── artisan.php ├── storage │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── logs │ │ └── .gitignore │ ├── meta │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── views │ └── emails │ │ └── auth │ │ └── reminder.blade.php └── tests │ ├── ExampleTest.php │ └── TestCase.php ├── vendor ├── psr │ └── log │ │ ├── .gitignore │ │ ├── Psr │ │ └── Log │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LoggerAwareInterface.php │ │ │ └── LogLevel.php │ │ └── composer.json ├── predis │ └── predis │ │ ├── VERSION │ │ ├── .gitignore │ │ ├── bin │ │ └── create-single-file.php │ │ ├── .travis.yml │ │ └── autoload.php ├── doctrine │ ├── cache │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── README.md │ │ └── tests │ │ │ └── Doctrine │ │ │ └── Tests │ │ │ └── DoctrineTestCase.php │ ├── annotations │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── tests │ │ │ └── Doctrine │ │ │ │ └── Tests │ │ │ │ ├── Common │ │ │ │ └── Annotations │ │ │ │ │ ├── Fixtures │ │ │ │ │ ├── NoAnnotation.php │ │ │ │ │ ├── Api.php │ │ │ │ │ ├── Annotation │ │ │ │ │ │ ├── Autoload.php │ │ │ │ │ │ ├── Version.php │ │ │ │ │ │ ├── Route.php │ │ │ │ │ │ ├── AnnotWithDefaultValue.php │ │ │ │ │ │ └── Template.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 │ │ │ │ │ ├── AnnotationTargetPropertyMethod.php │ │ │ │ │ ├── AnnotationEnumInvalid.php │ │ │ │ │ ├── InvalidAnnotationUsageButIgnoredClass.php │ │ │ │ │ ├── GlobalNamespacesPerFileWithClassAsLast.php │ │ │ │ │ ├── ClassWithRequire.php │ │ │ │ │ ├── GlobalNamespacesPerFileWithClassAsFirst.php │ │ │ │ │ ├── AnnotationWithConstants.php │ │ │ │ │ └── ClassWithFullyQualifiedUseStatements.php │ │ │ │ │ ├── Ticket │ │ │ │ │ └── DCOM58Entity.php │ │ │ │ │ ├── TopLevelAnnotation.php │ │ │ │ │ └── AnnotationReaderTest.php │ │ │ │ └── DoctrineTestCase.php │ │ └── README.md │ ├── collections │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── tests │ │ │ └── Doctrine │ │ │ │ └── Tests │ │ │ │ └── DoctrineTestCase.php │ │ └── README.md │ ├── dbal │ │ ├── lib │ │ │ └── Doctrine │ │ │ │ └── DBAL │ │ │ │ └── README.markdown │ │ └── bin │ │ │ └── doctrine-dbal │ ├── common │ │ ├── tests │ │ │ ├── Doctrine │ │ │ │ └── Tests │ │ │ │ │ ├── Common │ │ │ │ │ ├── DoctrineExceptionTest.php │ │ │ │ │ ├── Persistence │ │ │ │ │ │ └── Mapping │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── global.yml │ │ │ │ │ │ │ ├── stdClass.yml │ │ │ │ │ │ │ └── TestEntity.php │ │ │ │ │ ├── ClassLoaderTest │ │ │ │ │ │ ├── ClassA.class.php │ │ │ │ │ │ ├── ClassB.class.php │ │ │ │ │ │ ├── ClassC.class.php │ │ │ │ │ │ ├── ClassD.php │ │ │ │ │ │ └── ClassE.php │ │ │ │ │ ├── Reflection │ │ │ │ │ │ ├── NoParent.php │ │ │ │ │ │ ├── Dummies │ │ │ │ │ │ │ └── NoParent.php │ │ │ │ │ │ ├── SameNamespaceParent.php │ │ │ │ │ │ ├── DeeperNamespaceParent.php │ │ │ │ │ │ ├── FullyClassifiedParent.php │ │ │ │ │ │ └── UseParent.php │ │ │ │ │ └── Proxy │ │ │ │ │ │ ├── CallableTypeHintClass.php │ │ │ │ │ │ ├── SleepClass.php │ │ │ │ │ │ └── InvalidTypeHintClass.php │ │ │ │ │ └── DoctrineTestCase.php │ │ │ └── .gitignore │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── build.properties │ │ └── .travis.yml │ ├── inflector │ │ ├── .travis.yml │ │ ├── README.md │ │ └── tests │ │ │ └── Doctrine │ │ │ └── Tests │ │ │ └── DoctrineTestCase.php │ └── lexer │ │ └── README.md ├── nesbot │ └── carbon │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── composer.lock │ │ └── phpunit.xml.dist ├── swiftmailer │ └── swiftmailer │ │ ├── VERSION │ │ ├── tests │ │ ├── _samples │ │ │ ├── files │ │ │ │ ├── data.txt │ │ │ │ └── textfile.zip │ │ │ ├── smime │ │ │ │ ├── sign.p12 │ │ │ │ └── encrypt.p12 │ │ │ └── dkim │ │ │ │ └── dkim.test.pub │ │ └── acceptance │ │ │ └── Swift │ │ │ ├── AttachmentAcceptanceTest.php │ │ │ └── EmbeddedFileAcceptanceTest.php │ │ ├── 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 │ │ │ │ │ ├── form_with_radio_buttons.html │ │ │ │ │ ├── frameset.html │ │ │ │ │ ├── nested_frameset.html │ │ │ │ │ └── counting_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 │ │ │ │ │ │ ├── simpletest-external-top.png │ │ │ │ │ │ ├── simpletest-internal-top.png │ │ │ │ │ │ ├── simpletest-start-testing.png │ │ │ │ │ │ ├── book-domain-driven-design.jpg │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── browser_documentation.xml │ │ │ │ │ ├── first_test_tutorial.xml │ │ │ │ │ ├── gain_control_tutorial.xml │ │ │ │ │ ├── group_test_tutorial.xml │ │ │ │ │ ├── mock_objects_tutorial.xml │ │ │ │ │ ├── reporter_documentation.xml │ │ │ │ │ ├── unit_test_documentation.xml │ │ │ │ │ ├── boundary_classes_tutorial.xml │ │ │ │ │ ├── display_subclass_tutorial.xml │ │ │ │ │ ├── expectation_documentation.xml │ │ │ │ │ ├── form_testing_documentation.xml │ │ │ │ │ ├── group_test_documentation.xml │ │ │ │ │ ├── improving_design_tutorial.xml │ │ │ │ │ ├── mock_objects_documentation.xml │ │ │ │ │ ├── web_tester_documentation.xml │ │ │ │ │ ├── authentication_documentation.xml │ │ │ │ │ └── partial_mocks_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 │ │ │ │ └── recorder │ │ │ │ │ └── test │ │ │ │ │ └── sample.php │ │ │ │ └── tutorials │ │ │ │ └── SimpleTest │ │ │ │ └── SimpleTest.pkg.ini │ │ ├── templates │ │ │ └── sweety │ │ │ │ └── images │ │ │ │ ├── darr.gif │ │ │ │ ├── rarr.gif │ │ │ │ ├── group.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── network.gif │ │ │ │ ├── runicon.gif │ │ │ │ ├── xmlicon.gif │ │ │ │ └── htmlicon.gif │ │ └── CHANGES │ │ ├── doc │ │ ├── uml │ │ │ ├── Mime.graffle │ │ │ ├── Encoders.graffle │ │ │ └── Transports.graffle │ │ └── index.rst │ │ ├── .gitignore │ │ ├── lib │ │ └── dependency_maps │ │ │ └── message_deps.php │ │ └── notes │ │ └── APPS ├── monolog │ └── monolog │ │ └── tests │ │ ├── Monolog │ │ └── Handler │ │ │ └── Fixtures │ │ │ └── .gitkeep │ │ └── bootstrap.php ├── 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 │ │ │ │ ├── nonvalidnode.xml │ │ │ │ ├── missing_id.xml │ │ │ │ └── missing_path.xml │ │ │ └── .gitignore │ ├── translation │ │ └── Symfony │ │ │ └── Component │ │ │ └── Translation │ │ │ ├── Tests │ │ │ └── fixtures │ │ │ │ ├── empty.csv │ │ │ │ ├── empty.ini │ │ │ │ ├── empty.mo │ │ │ │ ├── empty.po │ │ │ │ ├── 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 │ │ │ │ ├── resources.po │ │ │ │ ├── empty-translation.po │ │ │ │ ├── valid.csv │ │ │ │ ├── resources.php │ │ │ │ ├── plurals.po │ │ │ │ ├── resources.csv │ │ │ │ ├── plurals.mo │ │ │ │ ├── encoding.xlf │ │ │ │ ├── resources.mo │ │ │ │ ├── resources.ts │ │ │ │ └── non-valid.xlf │ │ │ └── .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 │ │ │ │ ├── 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 │ │ │ │ ├── Foo4Command.php │ │ │ │ ├── input_definition_3.md │ │ │ │ ├── input_argument_3.xml │ │ │ │ ├── application_renderexception2.txt │ │ │ │ ├── input_option_2.xml │ │ │ │ ├── application_renderexception3.txt │ │ │ │ ├── input_definition_2.xml │ │ │ │ ├── command_2.txt │ │ │ │ ├── input_definition_4.json │ │ │ │ ├── input_definition_3.xml │ │ │ │ └── command_1.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 │ │ │ └── CHANGELOG.md │ ├── http-foundation │ │ └── Symfony │ │ │ └── Component │ │ │ └── HttpFoundation │ │ │ ├── Tests │ │ │ └── File │ │ │ │ └── Fixtures │ │ │ │ ├── .unknownextension │ │ │ │ ├── directory │ │ │ │ └── .empty │ │ │ │ ├── test │ │ │ │ └── test.gif │ │ │ └── .gitignore │ ├── process │ │ └── Symfony │ │ │ └── Component │ │ │ └── Process │ │ │ ├── .gitignore │ │ │ └── Tests │ │ │ └── SignalListener.php │ ├── browser-kit │ │ └── Symfony │ │ │ └── Component │ │ │ └── BrowserKit │ │ │ └── .gitignore │ ├── filesystem │ │ └── Symfony │ │ │ └── Component │ │ │ └── Filesystem │ │ │ ├── .gitignore │ │ │ └── CHANGELOG.md │ ├── css-selector │ │ └── Symfony │ │ │ └── Component │ │ │ └── CssSelector │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ └── Tests │ │ │ └── XPath │ │ │ └── Fixtures │ │ │ └── lang.xml │ └── event-dispatcher │ │ └── Symfony │ │ └── Component │ │ └── EventDispatcher │ │ └── .gitignore ├── classpreloader │ └── classpreloader │ │ ├── .gitignore │ │ └── classpreloader.php ├── filp │ └── whoops │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── tests │ │ ├── fixtures │ │ │ └── frame.lines-test.php │ │ └── bootstrap.php │ │ └── src │ │ └── Whoops │ │ └── Exception │ │ └── ErrorException.php ├── laravel │ └── framework │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── src │ │ └── Illuminate │ │ │ ├── Workbench │ │ │ └── stubs │ │ │ │ ├── gitignore.txt │ │ │ │ └── .travis.yml │ │ │ ├── Routing │ │ │ ├── Controllers │ │ │ │ ├── After.php │ │ │ │ └── Before.php │ │ │ └── Generators │ │ │ │ └── stubs │ │ │ │ ├── controller.stub │ │ │ │ ├── index.stub │ │ │ │ ├── create.stub │ │ │ │ ├── store.stub │ │ │ │ ├── show.stub │ │ │ │ ├── update.stub │ │ │ │ ├── destroy.stub │ │ │ │ └── edit.stub │ │ │ ├── Session │ │ │ └── TokenMismatchException.php │ │ │ ├── Database │ │ │ ├── Eloquent │ │ │ │ ├── MassAssignmentException.php │ │ │ │ └── ModelNotFoundException.php │ │ │ ├── Query │ │ │ │ └── Grammars │ │ │ │ │ └── MySqlGrammar.php │ │ │ ├── Connectors │ │ │ │ └── ConnectorInterface.php │ │ │ └── Migrations │ │ │ │ └── stubs │ │ │ │ └── blank.stub │ │ │ ├── Support │ │ │ ├── Contracts │ │ │ │ ├── ArrayableInterface.php │ │ │ │ ├── RenderableInterface.php │ │ │ │ ├── MessageProviderInterface.php │ │ │ │ ├── JsonableInterface.php │ │ │ │ └── ResponsePreparerInterface.php │ │ │ └── Facades │ │ │ │ ├── App.php │ │ │ │ ├── DB.php │ │ │ │ ├── Log.php │ │ │ │ ├── URL.php │ │ │ │ ├── Auth.php │ │ │ │ ├── File.php │ │ │ │ ├── Form.php │ │ │ │ ├── Hash.php │ │ │ │ ├── Mail.php │ │ │ │ ├── View.php │ │ │ │ ├── Cache.php │ │ │ │ ├── Config.php │ │ │ │ ├── Cookie.php │ │ │ │ ├── Crypt.php │ │ │ │ ├── Event.php │ │ │ │ ├── HTML.php │ │ │ │ ├── Lang.php │ │ │ │ ├── Queue.php │ │ │ │ ├── Redis.php │ │ │ │ ├── Artisan.php │ │ │ │ ├── Redirect.php │ │ │ │ ├── Request.php │ │ │ │ ├── Session.php │ │ │ │ ├── Paginator.php │ │ │ │ ├── Password.php │ │ │ │ ├── Validator.php │ │ │ │ └── Blade.php │ │ │ ├── Auth │ │ │ ├── Reminders │ │ │ │ └── RemindableInterface.php │ │ │ └── UserInterface.php │ │ │ ├── Pagination │ │ │ └── views │ │ │ │ └── slider.php │ │ │ ├── Queue │ │ │ ├── Connectors │ │ │ │ ├── ConnectorInterface.php │ │ │ │ └── SyncConnector.php │ │ │ └── IlluminateQueueClosure.php │ │ │ ├── Exception │ │ │ └── ExceptionDisplayerInterface.php │ │ │ ├── Http │ │ │ └── JsonResponse.php │ │ │ ├── View │ │ │ └── Engines │ │ │ │ └── EngineInterface.php │ │ │ └── Filesystem │ │ │ └── FilesystemServiceProvider.php │ │ ├── readme.md │ │ └── .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 │ │ │ │ └── Scalar │ │ │ │ │ ├── DirConst.php │ │ │ │ │ ├── ClassConst.php │ │ │ │ │ ├── FileConst.php │ │ │ │ │ ├── FuncConst.php │ │ │ │ │ ├── LineConst.php │ │ │ │ │ ├── NSConst.php │ │ │ │ │ ├── TraitConst.php │ │ │ │ │ └── MethodConst.php │ │ │ ├── Builder.php │ │ │ ├── PrettyPrinter │ │ │ │ └── Zend.php │ │ │ ├── Serializer.php │ │ │ ├── Unserializer.php │ │ │ └── NodeVisitorAbstract.php │ │ └── bootstrap.php │ │ └── test │ │ └── code │ │ ├── parser │ │ ├── stmt │ │ │ ├── tryCatch.test-fail │ │ │ ├── haltCompilerInvalidSyntax.test-fail │ │ │ ├── namespace │ │ │ │ ├── nested.test-fail │ │ │ │ ├── outsideStmt.test-fail │ │ │ │ └── mix.test-fail │ │ │ ├── haltCompilerOutermostScope.test-fail │ │ │ ├── loop │ │ │ │ ├── do.test │ │ │ │ └── while.test │ │ │ ├── class │ │ │ │ ├── final.test │ │ │ │ └── staticMethod.test-fail │ │ │ └── inlineHTML.test │ │ └── expr │ │ │ ├── print.test │ │ │ ├── clone.test │ │ │ └── errorSuppress.test │ │ └── prettyPrinter │ │ ├── onlyPHP.file-test │ │ └── onlyInlineHTML.file-test ├── bin │ ├── classpreloader.php.bat │ └── classpreloader.php ├── ircmaxell │ └── password-compat │ │ ├── .travis.yml │ │ └── version-test.php ├── patchwork │ └── utf8 │ │ ├── .gitattributes │ │ └── class │ │ └── Patchwork │ │ └── PHP │ │ └── Shim │ │ └── charset │ │ ├── from.big5.ser │ │ ├── from.cp037.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 │ │ ├── to.mazovia.ser │ │ ├── to.stdenc.ser │ │ ├── to.symbol.ser │ │ ├── from.cp1006.ser │ │ ├── from.cp1026.ser │ │ ├── from.koi8-r.ser │ │ ├── from.koi8-u.ser │ │ ├── from.mazovia.ser │ │ ├── from.nextstep.ser │ │ ├── from.stdenc.ser │ │ ├── from.symbol.ser │ │ ├── from.turkish.ser │ │ ├── from.x-mac-ce.ser │ │ ├── from.zdingbat.ser │ │ ├── to.zdingbat.ser │ │ ├── from.iso-8859-1.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.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.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-greek.ser │ │ ├── from.x-mac-roman.ser │ │ ├── from.x-mac-cyrillic.ser │ │ └── from.x-mac-icelandic.ser └── autoload.php ├── CONTRIBUTING.md └── README.md /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/commands/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/css/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/img/.gitignore: -------------------------------------------------------------------------------- 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/doctrine/common/tests/Doctrine/Tests/Common/DoctrineExceptionTest.php: -------------------------------------------------------------------------------- 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/filp/whoops/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/* 2 | report/* 3 | phpunit.xml 4 | *.swp 5 | -------------------------------------------------------------------------------- /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.mo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/laravel/framework/.gitattributes: -------------------------------------------------------------------------------- 1 | /build export-ignore 2 | /tests export-ignore -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/_files/global.yml: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /vendor/laravel/framework/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.phar 3 | composer.lock 4 | .DS_Store -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- 1 | body 2 | { 3 | padding:1em 5em 2em 5em; 4 | font-family:sans-serif; 5 | } -------------------------------------------------------------------------------- /public/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/img/loading.gif -------------------------------------------------------------------------------- /vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/_files/stdClass.yml: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /vendor/nikic/php-parser/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.2 5 | - 5.3 6 | - 5.4 -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /public/img/progressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/img/progressbar.gif -------------------------------------------------------------------------------- /vendor/doctrine/dbal/bin/doctrine-dbal: -------------------------------------------------------------------------------- 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/browser-kit/Symfony/Component/BrowserKit/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | 5 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.txt: -------------------------------------------------------------------------------- 1 | argument_name 2 | -------------------------------------------------------------------------------- /vendor/symfony/dom-crawler/Symfony/Component/DomCrawler/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | 5 | -------------------------------------------------------------------------------- /vendor/symfony/filesystem/Symfony/Component/Filesystem/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | 5 | -------------------------------------------------------------------------------- /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/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | 5 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/pkg/README: -------------------------------------------------------------------------------- 1 | Files here are generated from make_phpdoc_docs.sh -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/support/supplementary_upload_sample.txt: -------------------------------------------------------------------------------- 1 | Some more text content -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.json: -------------------------------------------------------------------------------- 1 | {"arguments":[],"options":[]} 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.txt: -------------------------------------------------------------------------------- 1 | --option_name (-o) 2 | -------------------------------------------------------------------------------- /vendor/symfony/css-selector/Symfony/Component/CssSelector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | 5 | -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/special_route_name.yml: -------------------------------------------------------------------------------- 1 | "#$péß^a|": 2 | path: "true" 3 | -------------------------------------------------------------------------------- /public/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/img/login_with_douban_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/img/login_with_douban_18.png -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Workbench/stubs/gitignore.txt: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.phar 3 | composer.lock 4 | .DS_Store -------------------------------------------------------------------------------- /vendor/nesbot/carbon/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | 7 | script: phpunit --coverage-text -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/.htaccess: -------------------------------------------------------------------------------- 1 | DirectoryIndex index.php 2 | Options Indexes 3 | -------------------------------------------------------------------------------- /vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | 5 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/lorem.txt: -------------------------------------------------------------------------------- 1 | lorem ipsum dolor sit amet 2 | LOREM IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | 5 | -------------------------------------------------------------------------------- /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/nikic/php-parser/lib/PHPParser/Comment/Doc.php: -------------------------------------------------------------------------------- 1 | getFieldNames(); -------------------------------------------------------------------------------- /vendor/filp/whoops/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | php: 3 | - 5.4 4 | - 5.3 5 | before_script: 6 | - composer install --dev 7 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/lastcraft/README: -------------------------------------------------------------------------------- 1 | Output folder for Lastcraft site versions of documentation. -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.txt: -------------------------------------------------------------------------------- 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/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/ClassA.class.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /vendor/doctrine/common/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | logs/ 3 | reports/ 4 | dist/ 5 | tests/Doctrine/Tests/Common/Proxy/generated/ 6 | vendor/ 7 | .idea 8 | -------------------------------------------------------------------------------- /vendor/doctrine/common/tests/Doctrine/Tests/Common/ClassLoaderTest/ClassD.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /public/data/02126cf4a8ff13b69acdb4e9cb78fdb0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/02126cf4a8ff13b69acdb4e9cb78fdb0.jpeg -------------------------------------------------------------------------------- /public/data/05d8ccdf0c23d8f13dfcad69eb3a8fcc.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/05d8ccdf0c23d8f13dfcad69eb3a8fcc.jpeg -------------------------------------------------------------------------------- /public/data/060994b2f071ed146ef2b487ff9f087f.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/060994b2f071ed146ef2b487ff9f087f.jpeg -------------------------------------------------------------------------------- /public/data/0d9d92d9cf18e21da332eeead98a0c04.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/0d9d92d9cf18e21da332eeead98a0c04.jpeg -------------------------------------------------------------------------------- /public/data/0f1bace5aafd144e67f5981aca9bbf5b.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/0f1bace5aafd144e67f5981aca9bbf5b.jpeg -------------------------------------------------------------------------------- /public/data/14f1fc5be9927f6a51a10ffbaa8d48e7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/14f1fc5be9927f6a51a10ffbaa8d48e7.jpeg -------------------------------------------------------------------------------- /public/data/16d11b94884be0eeff7140d4c1b8b851.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/16d11b94884be0eeff7140d4c1b8b851.jpeg -------------------------------------------------------------------------------- /public/data/19a997398eb9d597a9d0fc2990bade03.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/19a997398eb9d597a9d0fc2990bade03.jpeg -------------------------------------------------------------------------------- /public/data/21123813e2eeb89437461b01b772ced9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/21123813e2eeb89437461b01b772ced9.jpeg -------------------------------------------------------------------------------- /public/data/31b042d9c6ae7bf1a504008da4d3b53b.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/31b042d9c6ae7bf1a504008da4d3b53b.jpeg -------------------------------------------------------------------------------- /public/data/4282d50b243dc87c00088178206895db.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/4282d50b243dc87c00088178206895db.jpeg -------------------------------------------------------------------------------- /public/data/46d51979b35a63b3f395a83f45328f7c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/46d51979b35a63b3f395a83f45328f7c.jpeg -------------------------------------------------------------------------------- /public/data/490ddad733c76a8da1aaff998348bde1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/490ddad733c76a8da1aaff998348bde1.jpeg -------------------------------------------------------------------------------- /public/data/4adeab373fb4230ef285ae0b91b2e179.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/4adeab373fb4230ef285ae0b91b2e179.jpeg -------------------------------------------------------------------------------- /public/data/4e4a84ee7b989c12bbec9a91cb114120.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/4e4a84ee7b989c12bbec9a91cb114120.jpeg -------------------------------------------------------------------------------- /public/data/4f491794dd21e90d45f3dab0548350b4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/4f491794dd21e90d45f3dab0548350b4.jpeg -------------------------------------------------------------------------------- /public/data/51fa15e1528a4e2322c1e021f9dd376b.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/51fa15e1528a4e2322c1e021f9dd376b.jpeg -------------------------------------------------------------------------------- /public/data/524f9206ad023e529010153a37d70d78.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/524f9206ad023e529010153a37d70d78.jpeg -------------------------------------------------------------------------------- /public/data/791c2c52599ec7a77ca38ae6901b3c65.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/791c2c52599ec7a77ca38ae6901b3c65.jpeg -------------------------------------------------------------------------------- /public/data/79615d6ff1afe4d8352e92326073de18.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/79615d6ff1afe4d8352e92326073de18.jpeg -------------------------------------------------------------------------------- /public/data/7fe417924a759f4c84f7c9e6f42c00ff.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/7fe417924a759f4c84f7c9e6f42c00ff.jpeg -------------------------------------------------------------------------------- /public/data/8ca7ca53497bd0cad1c501c9c7329592.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/8ca7ca53497bd0cad1c501c9c7329592.jpeg -------------------------------------------------------------------------------- /public/data/95be472e7f4a92f37934785b6d6b4992.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/95be472e7f4a92f37934785b6d6b4992.jpeg -------------------------------------------------------------------------------- /public/data/9c895d29450982d2ec4434c95b5e178f.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/9c895d29450982d2ec4434c95b5e178f.jpeg -------------------------------------------------------------------------------- /public/data/9ecf57893f6c137386584cfd2370c495.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/9ecf57893f6c137386584cfd2370c495.jpeg -------------------------------------------------------------------------------- /public/data/a5913d2c4425e89031c6d4fe95ea5a6f.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/a5913d2c4425e89031c6d4fe95ea5a6f.jpeg -------------------------------------------------------------------------------- /public/data/ad0c42268bd4650ab7c8713d745bb21b.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/ad0c42268bd4650ab7c8713d745bb21b.jpeg -------------------------------------------------------------------------------- /public/data/bad042bac84176085af2f24d3cae7289.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/bad042bac84176085af2f24d3cae7289.jpeg -------------------------------------------------------------------------------- /public/data/bfa15b063ce06bfd8ad52e53491f210c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/bfa15b063ce06bfd8ad52e53491f210c.jpeg -------------------------------------------------------------------------------- /public/data/c33a55e8fcf035f40a2722f3a1ef17d2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/c33a55e8fcf035f40a2722f3a1ef17d2.jpeg -------------------------------------------------------------------------------- /public/data/c857c020140b45298d2b5f036fed87ab.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/c857c020140b45298d2b5f036fed87ab.jpeg -------------------------------------------------------------------------------- /public/data/cc6785a70460d71af6df2022a74033f3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/cc6785a70460d71af6df2022a74033f3.jpeg -------------------------------------------------------------------------------- /public/data/d2412af2393556f35cf3ece388c4a22e.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/d2412af2393556f35cf3ece388c4a22e.jpeg -------------------------------------------------------------------------------- /public/data/df620a3fa7ccc6e0806d4f7624a5f3b9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/df620a3fa7ccc6e0806d4f7624a5f3b9.jpeg -------------------------------------------------------------------------------- /public/data/e28ec941d6ee580f67c641b1a20fc6b4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/e28ec941d6ee580f67c641b1a20fc6b4.jpeg -------------------------------------------------------------------------------- /public/data/e4b42fe74a37ff6340d2d8c5921a93c9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/e4b42fe74a37ff6340d2d8c5921a93c9.jpeg -------------------------------------------------------------------------------- /public/data/e91a200a67fe078cf2789ac29cb3a316.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/e91a200a67fe078cf2789ac29cb3a316.jpeg -------------------------------------------------------------------------------- /public/data/f00a1f52a56c027e1349e92711d4173a.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/f00a1f52a56c027e1349e92711d4173a.jpeg -------------------------------------------------------------------------------- /public/data/fbb5eb8aa066649ae394b0fb0307972f.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/public/data/fbb5eb8aa066649ae394b0fb0307972f.jpeg -------------------------------------------------------------------------------- /vendor/bin/classpreloader.php.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | SET BIN_TARGET=%~dp0\"../classpreloader/classpreloader"\classpreloader.php 3 | php "%BIN_TARGET%" %* 4 | -------------------------------------------------------------------------------- /vendor/doctrine/common/tests/.gitignore: -------------------------------------------------------------------------------- 1 | Doctrine/Tests/Proxies/ 2 | Doctrine/Tests/ORM/Proxy/generated/ 3 | Doctrine/Tests/ORM/Tools/Export/export 4 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.txt: -------------------------------------------------------------------------------- 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/laravel/framework/src/Illuminate/Routing/Controllers/After.php: -------------------------------------------------------------------------------- 1 | Options: 2 | --option_name (-o) 3 | -------------------------------------------------------------------------------- /vendor/doctrine/cache/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | 7 | before_script: 8 | - composer --prefer-source --dev install 9 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PHPParser/Node/Expr/Cast/Double.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/http-kernel/Symfony/Component/HttpKernel/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | Tests/ProjectContainer.php 5 | Tests/classes.map -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | Please submit all issues and pull requests to the [laravel/framework](http://github.com/laravel/framework) repository! -------------------------------------------------------------------------------- /vendor/doctrine/annotations/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | 7 | before_script: 8 | - composer --prefer-source --dev install 9 | -------------------------------------------------------------------------------- /vendor/doctrine/inflector/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | 7 | before_script: 8 | - composer --prefer-source --dev install 9 | -------------------------------------------------------------------------------- /vendor/ircmaxell/password-compat/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.5 5 | - 5.4 6 | - 5.3 7 | 8 | script: phpunit --configuration phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | tests/acceptance.conf.php 3 | tests/smoke.conf.php 4 | build/* 5 | .project 6 | .settings/* 7 | /vendor/ 8 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/doc/uml/Encoders.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/doc/uml/Encoders.graffle -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/doc/uml/Transports.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/doc/uml/Transports.graffle -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/simpletest.org/README: -------------------------------------------------------------------------------- 1 | Output folder for SimpleTest.org site versions of content, documentation & tutorial. -------------------------------------------------------------------------------- /vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/nonesense_type_without_resource.yml: -------------------------------------------------------------------------------- 1 | blog_show: 2 | path: /blog/{slug} 3 | type: custom 4 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/plurals.po: -------------------------------------------------------------------------------- 1 | msgid "foo" 2 | msgid_plural "foos" 3 | msgstr[0] "bar" 4 | msgstr[1] "bars" 5 | 6 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Session/TokenMismatchException.php: -------------------------------------------------------------------------------- 1 | 2 | Options -MultiViews 3 | RewriteEngine On 4 | 5 | RewriteCond %{REQUEST_FILENAME} !-f 6 | RewriteRule ^ index.php [L] 7 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Routing/Generators/stubs/controller.stub: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.txt: -------------------------------------------------------------------------------- 1 | --option_name (-o) option description (default: "default_value") 2 | -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/NoAnnotation.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/doctrine/common/tests/Doctrine/Tests/Common/Reflection/NoParent.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/filp/whoops/tests/fixtures/frame.lines-test.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/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/url_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/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/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/darr.gif -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/rarr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/rarr.gif -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/parser/stmt/tryCatch.test-fail: -------------------------------------------------------------------------------- 1 | Cannot use try without catch or finally 2 | ----- 3 | 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/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/search.png -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/group.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/group.gif -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/loading.gif -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/network.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/network.gif -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/runicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/runicon.gif -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/xmlicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/test-suite/templates/sweety/images/xmlicon.gif -------------------------------------------------------------------------------- /vendor/doctrine/common/tests/Doctrine/Tests/Common/Reflection/Dummies/NoParent.php: -------------------------------------------------------------------------------- 1 | assertEqual(3,1+2, "pass1"); 5 | } 6 | } 7 | ?> 8 | -------------------------------------------------------------------------------- /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/symfony/translation/Symfony/Component/Translation/Tests/fixtures/plurals.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/plurals.mo -------------------------------------------------------------------------------- /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/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/dom-crawler/Symfony/Component/DomCrawler/Tests/Fixtures/windows-1250.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/symfony/dom-crawler/Symfony/Component/DomCrawler/Tests/Fixtures/windows-1250.html -------------------------------------------------------------------------------- /vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/File/Fixtures/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/File/Fixtures/test -------------------------------------------------------------------------------- /vendor/doctrine/common/build.properties: -------------------------------------------------------------------------------- 1 | # Project Name 2 | project.name=DoctrineCommon 3 | 4 | # Version class and file 5 | project.version_class = Doctrine\Common\Version 6 | project.version_file = lib/Doctrine/Common/Version.php 7 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/parser/expr/print.test: -------------------------------------------------------------------------------- 1 | Print 2 | ----- 3 | 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/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/en.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/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/cecoo/laravel4demo/HEAD/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/cecoo/laravel4demo/HEAD/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/res/en.res -------------------------------------------------------------------------------- /vendor/doctrine/common/tests/Doctrine/Tests/Common/Reflection/FullyClassifiedParent.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/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/boundary_classes_tutorial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/boundary_classes_tutorial.xml -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/display_subclass_tutorial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/display_subclass_tutorial.xml -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/expectation_documentation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/expectation_documentation.xml -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/form_testing_documentation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/form_testing_documentation.xml -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/group_test_documentation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/group_test_documentation.xml -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/improving_design_tutorial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/improving_design_tutorial.xml -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/mock_objects_documentation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/mock_objects_documentation.xml -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/web_tester_documentation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/docs/source/fr/web_tester_documentation.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/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/Annotation/Autoload.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/resources.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cecoo/laravel4demo/HEAD/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resourcebundle/dat/resources.dat -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Routing/Generators/stubs/destroy.stub: -------------------------------------------------------------------------------- 1 | /** 2 | * Remove the specified resource from storage. 3 | * 4 | * @param int $id 5 | * @return Response 6 | */ 7 | public function destroy($id) 8 | { 9 | // 10 | } -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Routing/Generators/stubs/edit.stub: -------------------------------------------------------------------------------- 1 | /** 2 | * Show the form for editing the specified resource. 3 | * 4 | * @param int $id 5 | * @return Response 6 | */ 7 | public function edit($id) 8 | { 9 | // 10 | } -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PHPParser/Builder.php: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /vendor/doctrine/annotations/README.md: -------------------------------------------------------------------------------- 1 | # Doctrine Annotations 2 | 3 | Docblock Annotations Parser library (extracted from Doctrine Common). 4 | 5 | ## Changelog 6 | 7 | ### v1.1 8 | 9 | * Add Exception when ZendOptimizer+ or Opcache is configured to drop comments 10 | -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/DoctrineTestCase.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | argument description 4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/doctrine/common/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | env: 4 | - OPCODE_CACHE=apc 5 | 6 | php: 7 | - 5.3.3 8 | - 5.3 9 | - 5.4 10 | - 5.5 11 | 12 | before_script: 13 | - composer --prefer-source install 14 | - php ./bin/travis-setup.php $OPCODE_CACHE 15 | -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/Annotation/Version.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/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 | -------------------------------------------------------------------------------- /vendor/ircmaxell/password-compat/version-test.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/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/AnnotationWithTargetSyntaxError.php: -------------------------------------------------------------------------------- 1 | register('message.message') 5 | ->asNewInstanceOf('Swift_Message') 6 | 7 | ->register('message.mimepart') 8 | ->asNewInstanceOf('Swift_MimePart') 9 | ; 10 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /app/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call('UserTableSeeder'); 15 | } 16 | 17 | } -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/double_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/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 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PHPParser/PrettyPrinter/Zend.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Carbon/Tests/ 7 | 8 | 9 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/Annotation/AnnotWithDefaultValue.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | resources 5 | 6 | foo 7 | bar 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Facades/App.php: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Facades/Auth.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | getLastPage() > 1): ?> 6 | 11 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Facades/Cache.php: -------------------------------------------------------------------------------- 1 | run(); 11 | -------------------------------------------------------------------------------- /vendor/doctrine/common/tests/Doctrine/Tests/Common/Proxy/CallableTypeHintClass.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 | -------------------------------------------------------------------------------- /app/tests/ExampleTest.php: -------------------------------------------------------------------------------- 1 | client->request('GET', '/'); 13 | 14 | $this->assertTrue($this->client->getResponse()->isOk()); 15 | } 16 | 17 | } -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/AnnotationTargetClass.php: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /app/controllers/BaseController.php: -------------------------------------------------------------------------------- 1 | layout)) 13 | { 14 | $this->layout = View::make($this->layout); 15 | } 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/AnnotationTargetMethod.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Queue/Connectors/ConnectorInterface.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 | -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/AnnotationTargetAnnotation.php: -------------------------------------------------------------------------------- 1 | data = json_encode($data); 11 | 12 | return $this->update(); 13 | } 14 | 15 | } -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/notes/APPS: -------------------------------------------------------------------------------- 1 | Applications I need to test with 2 | --------------------------------- 3 | 4 | Standalone (can read .eml files): 5 | --------------------------------- 6 | Microsoft Entourage (can assume same as outlook) 7 | Mozilla Thunderbird 8 | Apple Mail 9 | 10 | Web-based: 11 | ---------- 12 | Hotmail 13 | Gmail 14 | Yahoo! 15 | Mail2Web 16 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/base_tag/frameset.html: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /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/View/Engines/EngineInterface.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/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/MultipleClassesInFile.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | bar 8 | 9 | -------------------------------------------------------------------------------- /vendor/doctrine/common/tests/Doctrine/Tests/Common/Proxy/InvalidTypeHintClass.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/code/parser/stmt/namespace/outsideStmt.test-fail: -------------------------------------------------------------------------------- 1 | There (mostly) can't be statements outside of namespaces 2 | ----- 3 | 2 | 3 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Support/Contracts/ResponsePreparerInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | require __DIR__.'/lib/Predis/Autoloader.php'; 13 | 14 | Predis\Autoloader::register(); 15 | -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/LoggerAwareInterface.php: -------------------------------------------------------------------------------- 1 | name = isset($values['value']) ? $values['value'] : null; 13 | } 14 | } -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/AnnotationEnumInvalid.php: -------------------------------------------------------------------------------- 1 | getEngineResolver()->resolve('blade')->getCompiler(); 13 | } 14 | 15 | } -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/InvalidAnnotationUsageButIgnoredClass.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | $loader = require_once __DIR__ . "/../vendor/autoload.php"; 13 | $loader->add('Monolog\\', __DIR__); 14 | -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PHPParser/Node/Scalar/ClassConst.php: -------------------------------------------------------------------------------- 1 | 6 | B 7 | 10 | 2 | 3 |
4 | 1 5 | 2 6 | 3 7 | 8 |
9 | 10 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/frameset.html: -------------------------------------------------------------------------------- 1 | 2 | Frameset for testing of SimpleTest 3 | 4 | 5 | 6 | 7 | <body>This content is for no frames only.</body> 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/tests/TestCase.php: -------------------------------------------------------------------------------- 1 | 2 | a 3 | b 4 | c 5 | d 6 | e 7 | f 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/ClassWithRequire.php: -------------------------------------------------------------------------------- 1 | andWhere($criteria->expr()->contains('property', 'Foo')); 17 | -------------------------------------------------------------------------------- /vendor/symfony/filesystem/Symfony/Component/Filesystem/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | CHANGELOG 2 | ========= 3 | 4 | 2.3.0 5 | ----- 6 | 7 | * added the dumpFile() method to atomically write files 8 | 9 | 2.2.0 10 | ----- 11 | 12 | * added a delete option for the mirror() method 13 | 14 | 2.1.0 15 | ----- 16 | 17 | * 24eb396 : BC Break : mkdir() function now throws exception in case of failure instead of returning Boolean value 18 | * created the component 19 | -------------------------------------------------------------------------------- /vendor/psr/log/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "psr/log", 3 | "description": "Common interface for logging libraries", 4 | "keywords": ["psr", "psr-3", "log"], 5 | "license": "MIT", 6 | "authors": [ 7 | { 8 | "name": "PHP-FIG", 9 | "homepage": "http://www.php-fig.org/" 10 | } 11 | ], 12 | "autoload": { 13 | "psr-0": { 14 | "Psr\\Log\\": "" 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/nested_frameset.html: -------------------------------------------------------------------------------- 1 | 2 | Nested frameset for testing of SimpleTest 3 | 4 | 5 | 6 | 7 | <body>This content is for no frames only.</body> 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | descriptor:command1 4 | command 1 description 5 | command 1 help 6 | 7 | alias1 8 | alias2 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/AnnotationWithConstants.php: -------------------------------------------------------------------------------- 1 | 2 | Frameset for testing of SimpleTest 3 | 4 | 5 | 6 | 7 | <body>This content is for no frames only.</body> 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/doctrine/annotations/tests/Doctrine/Tests/Common/Annotations/Fixtures/ClassWithFullyQualifiedUseStatements.php: -------------------------------------------------------------------------------- 1 | 5 | */ 6 | 7 | namespace Whoops\Exception; 8 | use ErrorException as BaseErrorException; 9 | 10 | /** 11 | * Wraps ErrorException; mostly used for typing (at least now) 12 | * to easily cleanup the stack trace of redundant info. 13 | */ 14 | class ErrorException extends BaseErrorException {} 15 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Database/Migrations/stubs/blank.stub: -------------------------------------------------------------------------------- 1 | assertTrue(true); 8 | } 9 | 10 | function testFalseIsTrue() { 11 | $this->assertFalse(true); 12 | } 13 | } 14 | ?> -------------------------------------------------------------------------------- /vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/non-valid.xlf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | foo 7 | bar 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemServiceProvider.php: -------------------------------------------------------------------------------- 1 | app['files'] = $this->app->share(function() { return new Filesystem; }); 15 | } 16 | 17 | } -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Queue/Connectors/SyncConnector.php: -------------------------------------------------------------------------------- 1 |