├── .idea
├── .name
├── misc.xml
├── scopes
│ └── scope_settings.xml
├── encodings.xml
├── vcs.xml
└── modules.xml
├── public
├── favicon.ico
├── packages
│ └── .gitkeep
└── robots.txt
├── app
├── commands
│ └── .gitkeep
├── config
│ └── packages
│ │ └── .gitkeep
├── controllers
│ ├── .gitkeep
│ └── BaseController.php
├── database
│ ├── seeds
│ │ ├── .gitkeep
│ │ └── DatabaseSeeder.php
│ ├── migrations
│ │ └── .gitkeep
│ └── production.sqlite
├── start
│ └── local.php
├── storage
│ ├── .gitignore
│ ├── cache
│ │ └── .gitignore
│ ├── logs
│ │ └── .gitignore
│ ├── meta
│ │ └── .gitignore
│ ├── sessions
│ │ └── .gitignore
│ └── views
│ │ └── .gitignore
├── views
│ └── emails
│ │ └── auth
│ │ └── reminder.blade.php
├── tests
│ └── ExampleTest.php
└── cache
│ └── app
│ └── controllers
│ └── BaseController.php
├── vendor
├── predis
│ └── predis
│ │ ├── VERSION
│ │ ├── .gitignore
│ │ ├── bin
│ │ └── create-single-file
│ │ └── .travis.yml
├── psr
│ └── log
│ │ ├── .gitignore
│ │ └── Psr
│ │ └── Log
│ │ └── InvalidArgumentException.php
├── stack
│ └── builder
│ │ ├── .gitignore
│ │ ├── CHANGELOG.md
│ │ └── .travis.yml
├── phpseclib
│ └── phpseclib
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── phpseclib
│ │ └── openssl.cnf
│ │ └── AUTHORS
├── swiftmailer
│ └── swiftmailer
│ │ ├── VERSION
│ │ ├── tests
│ │ └── _samples
│ │ │ ├── files
│ │ │ ├── data.txt
│ │ │ └── textfile.zip
│ │ │ ├── smime
│ │ │ └── CA.srl
│ │ │ └── dkim
│ │ │ └── dkim.test.pub
│ │ ├── test-suite
│ │ ├── lib
│ │ │ └── simpletest
│ │ │ │ ├── VERSION
│ │ │ │ ├── test
│ │ │ │ ├── support
│ │ │ │ │ ├── collector
│ │ │ │ │ │ ├── collectable.1
│ │ │ │ │ │ └── collectable.2
│ │ │ │ │ ├── upload_sample.txt
│ │ │ │ │ ├── supplementary_upload_sample.txt
│ │ │ │ │ ├── empty_test_file.php
│ │ │ │ │ ├── test1.php
│ │ │ │ │ └── latin1_sample
│ │ │ │ ├── site
│ │ │ │ │ ├── temp
│ │ │ │ │ │ └── .stop_cvs_removing_temp
│ │ │ │ │ ├── protected
│ │ │ │ │ │ ├── .htpasswd
│ │ │ │ │ │ ├── 1.html
│ │ │ │ │ │ ├── 2.html
│ │ │ │ │ │ ├── 3.html
│ │ │ │ │ │ ├── htaccess
│ │ │ │ │ │ ├── .htaccess
│ │ │ │ │ │ └── local_redirect.php
│ │ │ │ │ ├── timestamp.php
│ │ │ │ │ ├── .htaccess
│ │ │ │ │ ├── self.php
│ │ │ │ │ ├── 1.html
│ │ │ │ │ ├── 2.html
│ │ │ │ │ ├── 3.html
│ │ │ │ │ ├── frame_a.html
│ │ │ │ │ ├── frame_b.html
│ │ │ │ │ ├── search.png
│ │ │ │ │ ├── slow_page.php
│ │ │ │ │ ├── file.html
│ │ │ │ │ ├── base_tag
│ │ │ │ │ │ ├── page_1.html
│ │ │ │ │ │ ├── page_2.html
│ │ │ │ │ │ ├── relative_link.html
│ │ │ │ │ │ ├── base_link.html
│ │ │ │ │ │ └── frameset.html
│ │ │ │ │ ├── local_redirect.php
│ │ │ │ │ ├── base_change_redirect.php
│ │ │ │ │ ├── frame_links.html
│ │ │ │ │ ├── path
│ │ │ │ │ │ └── base_change_redirect.php
│ │ │ │ │ ├── double_base_change_redirect.php
│ │ │ │ │ ├── redirect.php
│ │ │ │ │ ├── cookie_based_counter.php
│ │ │ │ │ └── one_page_frameset.html
│ │ │ │ ├── url_test.php
│ │ │ │ ├── parser_test.php
│ │ │ │ ├── parse_error_test.php
│ │ │ │ └── bad_test_suite.php
│ │ │ │ ├── docs
│ │ │ │ ├── pkg
│ │ │ │ │ └── README
│ │ │ │ ├── lastcraft
│ │ │ │ │ └── README
│ │ │ │ ├── simpletest.org
│ │ │ │ │ ├── README
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ └── images
│ │ │ │ │ │ ├── quote.png
│ │ │ │ │ │ ├── test-in-cli.png
│ │ │ │ │ │ ├── simpletest-logo.png
│ │ │ │ │ │ ├── test-with-1-fail.png
│ │ │ │ │ │ ├── test-with-1-pass.png
│ │ │ │ │ │ ├── simpletest-download.png
│ │ │ │ │ │ ├── simpletest-support.png
│ │ │ │ │ │ ├── simpletest-contribute.png
│ │ │ │ │ │ ├── book-domain-driven-design.jpg
│ │ │ │ │ │ ├── simpletest-external-top.png
│ │ │ │ │ │ ├── simpletest-internal-top.png
│ │ │ │ │ │ ├── simpletest-start-testing.png
│ │ │ │ │ │ ├── simpletest-external-bottom.png
│ │ │ │ │ │ ├── simpletest-external-middle.png
│ │ │ │ │ │ ├── simpletest-internal-bottom.png
│ │ │ │ │ │ ├── simpletest-internal-middle.png
│ │ │ │ │ │ ├── book-guide-to-php-design-patterns.jpg
│ │ │ │ │ │ └── book-the-php-anthology-object-oriented-php-solutions.jpg
│ │ │ │ ├── onpk
│ │ │ │ │ └── README
│ │ │ │ └── source
│ │ │ │ │ └── fr
│ │ │ │ │ ├── index.xml
│ │ │ │ │ ├── intro.xml
│ │ │ │ │ ├── overview.xml
│ │ │ │ │ ├── simple_test.xml
│ │ │ │ │ ├── books_website.xml
│ │ │ │ │ ├── subclass_tutorial.xml
│ │ │ │ │ ├── first_test_tutorial.xml
│ │ │ │ │ ├── group_test_tutorial.xml
│ │ │ │ │ ├── browser_documentation.xml
│ │ │ │ │ ├── gain_control_tutorial.xml
│ │ │ │ │ ├── mock_objects_tutorial.xml
│ │ │ │ │ ├── reporter_documentation.xml
│ │ │ │ │ ├── group_test_documentation.xml
│ │ │ │ │ ├── unit_test_documentation.xml
│ │ │ │ │ ├── web_tester_documentation.xml
│ │ │ │ │ ├── boundary_classes_tutorial.xml
│ │ │ │ │ ├── display_subclass_tutorial.xml
│ │ │ │ │ ├── expectation_documentation.xml
│ │ │ │ │ ├── form_testing_documentation.xml
│ │ │ │ │ ├── improving_design_tutorial.xml
│ │ │ │ │ ├── mock_objects_documentation.xml
│ │ │ │ │ ├── partial_mocks_documentation.xml
│ │ │ │ │ └── authentication_documentation.xml
│ │ │ │ ├── packages
│ │ │ │ ├── make_lastcraft_docs.sh
│ │ │ │ └── onpk
│ │ │ │ │ ├── map_onpk.xml
│ │ │ │ │ └── transform_all_onpk.php
│ │ │ │ ├── extensions
│ │ │ │ ├── img
│ │ │ │ │ └── wait.gif
│ │ │ │ └── selenium
│ │ │ │ │ └── test
│ │ │ │ │ └── remote-control_test.php
│ │ │ │ └── tutorials
│ │ │ │ └── SimpleTest
│ │ │ │ └── SimpleTest.pkg.ini
│ │ ├── templates
│ │ │ └── sweety
│ │ │ │ └── images
│ │ │ │ ├── darr.gif
│ │ │ │ ├── group.gif
│ │ │ │ ├── rarr.gif
│ │ │ │ ├── htmlicon.gif
│ │ │ │ ├── loading.gif
│ │ │ │ ├── network.gif
│ │ │ │ ├── runicon.gif
│ │ │ │ └── xmlicon.gif
│ │ └── CHANGES
│ │ ├── .gitignore
│ │ ├── .gitattributes
│ │ ├── doc
│ │ ├── uml
│ │ │ ├── Mime.graffle
│ │ │ ├── Encoders.graffle
│ │ │ └── Transports.graffle
│ │ └── index.rst
│ │ ├── lib
│ │ └── dependency_maps
│ │ │ └── message_deps.php
│ │ └── notes
│ │ └── APPS
├── monolog
│ └── monolog
│ │ └── tests
│ │ └── Monolog
│ │ └── Handler
│ │ └── Fixtures
│ │ └── .gitkeep
├── andrewsville
│ └── php-token-reflection
│ │ ├── tests
│ │ └── data
│ │ │ ├── broker
│ │ │ └── empty.php
│ │ │ ├── parseerror
│ │ │ ├── invalid-constant-1.php
│ │ │ ├── invalid-file-1.php
│ │ │ ├── invalid-parameter-3.php
│ │ │ ├── invalid-constant-2.php
│ │ │ ├── invalid-constant-3.php
│ │ │ ├── invalid-file-3.php
│ │ │ ├── invalid-file-2.php
│ │ │ ├── invalid-file-4.php
│ │ │ ├── invalid-functionbase-1.php
│ │ │ ├── invalid-functionbase-2.php
│ │ │ ├── invalid-functionbase-3.php
│ │ │ ├── invalid-constant-4.php
│ │ │ ├── invalid-file-5.php
│ │ │ ├── invalid-file-7.php
│ │ │ ├── invalid-parameter-1.php
│ │ │ ├── invalid-parameter-2.php
│ │ │ ├── invalid-property-1.php
│ │ │ ├── invalid-property-3.php
│ │ │ ├── invalid-property-2.php
│ │ │ ├── invalid-class-1.php
│ │ │ ├── invalid-file-6.php
│ │ │ ├── invalid-class-4.php
│ │ │ ├── invalid-class-2.php
│ │ │ ├── invalid-class-5.php
│ │ │ ├── invalid-class-6.php
│ │ │ ├── invalid-stream.php
│ │ │ ├── invalid-class-3.php
│ │ │ ├── invalid-class-9.php
│ │ │ ├── invalid-class-7.php
│ │ │ ├── invalid-class-8.php
│ │ │ └── invalid-class-10.php
│ │ │ ├── class
│ │ │ ├── final.php
│ │ │ ├── lines.php
│ │ │ ├── interface.php
│ │ │ ├── no-abstract.php
│ │ │ ├── no-final.php
│ │ │ ├── no-iterator.php
│ │ │ ├── no-methods.php
│ │ │ ├── no-parent.php
│ │ │ ├── abstract.php
│ │ │ ├── no-constants.php
│ │ │ ├── no-doc-comment.php
│ │ │ ├── no-interface.php
│ │ │ ├── no-interfaces.php
│ │ │ ├── no-namespace.php
│ │ │ ├── no-properties.php
│ │ │ ├── user-defined.php
│ │ │ ├── in-namespace.php
│ │ │ ├── private-clone.php
│ │ │ ├── public-clone.php
│ │ │ ├── abstract-implicit.php
│ │ │ ├── private-constructor.php
│ │ │ ├── public-constructor.php
│ │ │ ├── doc-comment.php
│ │ │ └── iterator.php
│ │ │ ├── function
│ │ │ ├── lines.php
│ │ │ ├── no-closure.php
│ │ │ ├── no-comment.php
│ │ │ ├── no-disabled.php
│ │ │ ├── reference.php
│ │ │ ├── no-deprecated.php
│ │ │ ├── no-namespace.php
│ │ │ ├── no-parameters.php
│ │ │ ├── user-defined.php
│ │ │ ├── no-reference.php
│ │ │ ├── parameters.php
│ │ │ ├── in-namespace.php
│ │ │ ├── invoke.php
│ │ │ ├── doc-comment.php
│ │ │ ├── 54features.php
│ │ │ └── get-closure.php
│ │ │ ├── parameter
│ │ │ ├── array.php
│ │ │ ├── no-array.php
│ │ │ ├── no-class.php
│ │ │ ├── class.php
│ │ │ ├── no-callable.php
│ │ │ ├── no-optional.php
│ │ │ ├── reference.php
│ │ │ ├── callable.php
│ │ │ ├── no-reference.php
│ │ │ ├── no-null-array.php
│ │ │ ├── no-null-class.php
│ │ │ ├── position.php
│ │ │ ├── declaring-function.php
│ │ │ ├── null-array.php
│ │ │ ├── optional-false.php
│ │ │ ├── optional-float.php
│ │ │ ├── optional-integer.php
│ │ │ ├── optional-null.php
│ │ │ ├── optional-true.php
│ │ │ ├── null-class.php
│ │ │ ├── optional-array.php
│ │ │ ├── optional-string.php
│ │ │ ├── optional-constant.php
│ │ │ ├── 54features.php
│ │ │ └── declaring-method.php
│ │ │ ├── constant
│ │ │ ├── lines.php
│ │ │ ├── type-null.php
│ │ │ ├── type-float.php
│ │ │ ├── type-boolean.php
│ │ │ ├── type-integer.php
│ │ │ ├── type-string.php
│ │ │ ├── no-comment.php
│ │ │ ├── in-namespace.php
│ │ │ ├── no-namespace.php
│ │ │ ├── type-constant.php
│ │ │ ├── type-float-negative.php
│ │ │ ├── type-integer-negative.php
│ │ │ ├── heredoc.php
│ │ │ └── overriding.php
│ │ │ ├── property
│ │ │ ├── lines.php
│ │ │ ├── no-default.php
│ │ │ ├── default.php
│ │ │ ├── type-float.php
│ │ │ ├── type-null.php
│ │ │ ├── type-boolean.php
│ │ │ ├── type-integer.php
│ │ │ ├── no-comment.php
│ │ │ ├── type-array.php
│ │ │ ├── type-string.php
│ │ │ ├── accessible.php
│ │ │ ├── 54features.php
│ │ │ └── heredoc.php
│ │ │ ├── method
│ │ │ ├── lines.php
│ │ │ ├── no-closure.php
│ │ │ ├── no-comment.php
│ │ │ ├── reference.php
│ │ │ ├── no-deprecated.php
│ │ │ ├── no-namespace.php
│ │ │ ├── no-parameters.php
│ │ │ ├── no-reference.php
│ │ │ ├── user-defined.php
│ │ │ ├── parameters.php
│ │ │ ├── in-namespace.php
│ │ │ ├── named-constructor.php
│ │ │ ├── clone.php
│ │ │ ├── doc-comment.php
│ │ │ ├── named-constructor-in-namespace.php
│ │ │ ├── constructor-destructor.php
│ │ │ ├── features54.php
│ │ │ ├── invoke.php
│ │ │ ├── prototype.php
│ │ │ └── no-prototype.php
│ │ │ ├── file
│ │ │ └── no-doc-comment.php
│ │ │ └── duplicities
│ │ │ ├── constants.php
│ │ │ ├── classes.php
│ │ │ └── functions.php
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ └── build
│ │ └── phpcs.xml
├── d11wtq
│ └── boris
│ │ ├── .gitignore
│ │ └── composer.json
├── symfony
│ ├── finder
│ │ └── Symfony
│ │ │ └── Component
│ │ │ └── Finder
│ │ │ ├── Tests
│ │ │ └── Fixtures
│ │ │ │ ├── one
│ │ │ │ ├── a
│ │ │ │ └── b
│ │ │ │ │ ├── c.neon
│ │ │ │ │ └── d.neon
│ │ │ │ ├── A
│ │ │ │ ├── B
│ │ │ │ │ ├── ab.dat
│ │ │ │ │ └── C
│ │ │ │ │ │ └── abc.dat
│ │ │ │ └── a.dat
│ │ │ │ ├── copy
│ │ │ │ └── A
│ │ │ │ │ ├── B
│ │ │ │ │ ├── ab.dat.copy
│ │ │ │ │ └── C
│ │ │ │ │ │ └── abc.dat.copy
│ │ │ │ │ └── a.dat.copy
│ │ │ │ ├── with space
│ │ │ │ └── foo.txt
│ │ │ │ ├── dolor.txt
│ │ │ │ ├── ipsum.txt
│ │ │ │ └── lorem.txt
│ │ │ └── .gitignore
│ ├── routing
│ │ └── Symfony
│ │ │ └── Component
│ │ │ └── Routing
│ │ │ ├── Tests
│ │ │ └── Fixtures
│ │ │ │ ├── empty.yml
│ │ │ │ ├── foo.xml
│ │ │ │ ├── foo1.xml
│ │ │ │ ├── annotated.php
│ │ │ │ ├── nonvalid.yml
│ │ │ │ ├── nonvalid2.yml
│ │ │ │ ├── special_route_name.yml
│ │ │ │ ├── withdoctype.xml
│ │ │ │ ├── incomplete.yml
│ │ │ │ ├── nonvalidkeys.yml
│ │ │ │ ├── nonesense_type_without_resource.yml
│ │ │ │ ├── nonesense_resource_plus_path.yml
│ │ │ │ ├── dumper
│ │ │ │ └── url_matcher2.apache
│ │ │ │ └── validresource.yml
│ │ │ └── .gitignore
│ ├── translation
│ │ └── Symfony
│ │ │ └── Component
│ │ │ └── Translation
│ │ │ ├── Tests
│ │ │ └── fixtures
│ │ │ │ ├── empty.csv
│ │ │ │ ├── empty.ini
│ │ │ │ ├── empty.json
│ │ │ │ ├── empty.mo
│ │ │ │ ├── empty.po
│ │ │ │ ├── empty.xlf
│ │ │ │ ├── empty.yml
│ │ │ │ ├── non-valid.yml
│ │ │ │ ├── resources.yml
│ │ │ │ ├── resources.ini
│ │ │ │ ├── resourcebundle
│ │ │ │ ├── corrupted
│ │ │ │ │ └── resources.dat
│ │ │ │ ├── dat
│ │ │ │ │ ├── packagelist.txt
│ │ │ │ │ ├── en.txt
│ │ │ │ │ ├── fr.txt
│ │ │ │ │ ├── en.res
│ │ │ │ │ ├── fr.res
│ │ │ │ │ └── resources.dat
│ │ │ │ └── res
│ │ │ │ │ └── en.res
│ │ │ │ ├── malformed.json
│ │ │ │ ├── resources.json
│ │ │ │ ├── empty-translation.po
│ │ │ │ ├── valid.csv
│ │ │ │ ├── resources.php
│ │ │ │ ├── plurals.po
│ │ │ │ ├── resources.csv
│ │ │ │ ├── plurals.mo
│ │ │ │ ├── encoding.xlf
│ │ │ │ ├── resources.mo
│ │ │ │ ├── resources.po
│ │ │ │ └── resources.ts
│ │ │ └── .gitignore
│ ├── console
│ │ └── Symfony
│ │ │ └── Component
│ │ │ └── Console
│ │ │ ├── Tests
│ │ │ └── Fixtures
│ │ │ │ ├── input_definition_1.md
│ │ │ │ ├── input_definition_1.txt
│ │ │ │ ├── application_run4.txt
│ │ │ │ ├── input_argument_1.txt
│ │ │ │ ├── input_definition_1.json
│ │ │ │ ├── input_option_1.txt
│ │ │ │ ├── input_argument_2.txt
│ │ │ │ ├── input_option_3.txt
│ │ │ │ ├── input_definition_2.txt
│ │ │ │ ├── input_definition_3.txt
│ │ │ │ ├── input_argument_1.json
│ │ │ │ ├── input_argument_3.txt
│ │ │ │ ├── input_option_4.txt
│ │ │ │ ├── input_option_2.txt
│ │ │ │ ├── input_argument_2.json
│ │ │ │ ├── input_definition_1.xml
│ │ │ │ ├── input_argument_3.json
│ │ │ │ ├── input_argument_1.md
│ │ │ │ ├── input_option_1.json
│ │ │ │ ├── input_definition_2.json
│ │ │ │ ├── input_definition_4.txt
│ │ │ │ ├── input_option_3.json
│ │ │ │ ├── input_option_4.json
│ │ │ │ ├── input_argument_2.md
│ │ │ │ ├── command_1.txt
│ │ │ │ ├── input_argument_3.md
│ │ │ │ ├── input_option_2.json
│ │ │ │ ├── command_1.md
│ │ │ │ ├── input_argument_1.xml
│ │ │ │ ├── input_definition_2.md
│ │ │ │ ├── application_renderexception1.txt
│ │ │ │ ├── Foo5Command.php
│ │ │ │ ├── command_1.json
│ │ │ │ ├── input_definition_3.json
│ │ │ │ ├── input_option_1.xml
│ │ │ │ ├── input_argument_2.xml
│ │ │ │ ├── input_option_1.md
│ │ │ │ ├── input_option_3.md
│ │ │ │ ├── application_renderexception4.txt
│ │ │ │ ├── input_option_4.md
│ │ │ │ ├── input_option_2.md
│ │ │ │ ├── input_option_3.xml
│ │ │ │ ├── input_option_4.xml
│ │ │ │ ├── BarBucCommand.php
│ │ │ │ ├── Foo4Command.php
│ │ │ │ ├── input_definition_3.md
│ │ │ │ ├── input_argument_3.xml
│ │ │ │ ├── application_renderexception2.txt
│ │ │ │ ├── input_option_2.xml
│ │ │ │ ├── input_definition_2.xml
│ │ │ │ ├── command_2.txt
│ │ │ │ ├── input_definition_4.json
│ │ │ │ └── input_definition_3.xml
│ │ │ ├── .gitignore
│ │ │ └── Resources
│ │ │ └── bin
│ │ │ └── hiddeninput.exe
│ ├── dom-crawler
│ │ └── Symfony
│ │ │ └── Component
│ │ │ └── DomCrawler
│ │ │ ├── Tests
│ │ │ └── Fixtures
│ │ │ │ ├── no-extension
│ │ │ │ └── windows-1250.html
│ │ │ └── .gitignore
│ ├── http-kernel
│ │ └── Symfony
│ │ │ └── Component
│ │ │ └── HttpKernel
│ │ │ ├── Tests
│ │ │ └── Fixtures
│ │ │ │ ├── Bundle1Bundle
│ │ │ │ ├── bar.txt
│ │ │ │ ├── foo.txt
│ │ │ │ └── Resources
│ │ │ │ │ └── foo.txt
│ │ │ │ ├── Bundle2Bundle
│ │ │ │ └── foo.txt
│ │ │ │ ├── Resources
│ │ │ │ ├── FooBundle
│ │ │ │ │ └── foo.txt
│ │ │ │ ├── BaseBundle
│ │ │ │ │ └── hide.txt
│ │ │ │ ├── Bundle1Bundle
│ │ │ │ │ └── foo.txt
│ │ │ │ └── ChildBundle
│ │ │ │ │ └── foo.txt
│ │ │ │ ├── BaseBundle
│ │ │ │ └── Resources
│ │ │ │ │ ├── foo.txt
│ │ │ │ │ └── hide.txt
│ │ │ │ └── ChildBundle
│ │ │ │ └── Resources
│ │ │ │ ├── foo.txt
│ │ │ │ └── hide.txt
│ │ │ └── .gitignore
│ ├── debug
│ │ └── Symfony
│ │ │ └── Component
│ │ │ └── Debug
│ │ │ ├── .gitignore
│ │ │ ├── Tests
│ │ │ └── Fixtures
│ │ │ │ ├── PEARClass.php
│ │ │ │ └── RequiredTwice.php
│ │ │ └── CHANGELOG.md
│ ├── http-foundation
│ │ └── Symfony
│ │ │ └── Component
│ │ │ └── HttpFoundation
│ │ │ ├── Tests
│ │ │ └── File
│ │ │ │ └── Fixtures
│ │ │ │ ├── .unknownextension
│ │ │ │ ├── directory
│ │ │ │ └── .empty
│ │ │ │ ├── test
│ │ │ │ └── test.gif
│ │ │ └── .gitignore
│ ├── process
│ │ └── Symfony
│ │ │ └── Component
│ │ │ └── Process
│ │ │ └── .gitignore
│ ├── security
│ │ └── Symfony
│ │ │ └── Component
│ │ │ └── Security
│ │ │ ├── .gitignore
│ │ │ ├── Acl
│ │ │ └── .gitignore
│ │ │ ├── Core
│ │ │ └── .gitignore
│ │ │ ├── Csrf
│ │ │ └── .gitignore
│ │ │ └── Http
│ │ │ └── .gitignore
│ ├── browser-kit
│ │ └── Symfony
│ │ │ └── Component
│ │ │ └── BrowserKit
│ │ │ └── .gitignore
│ ├── filesystem
│ │ └── Symfony
│ │ │ └── Component
│ │ │ └── Filesystem
│ │ │ └── .gitignore
│ ├── css-selector
│ │ └── Symfony
│ │ │ └── Component
│ │ │ └── CssSelector
│ │ │ ├── .gitignore
│ │ │ └── CHANGELOG.md
│ └── event-dispatcher
│ │ └── Symfony
│ │ └── Component
│ │ └── EventDispatcher
│ │ └── .gitignore
├── classpreloader
│ └── classpreloader
│ │ ├── .gitignore
│ │ └── classpreloader.php
├── jakubledl
│ └── dissect
│ │ ├── .gitignore
│ │ ├── bin
│ │ └── dissect
│ │ ├── docs
│ │ └── state_3.png
│ │ ├── .travis.yml
│ │ ├── CHANGELOG.md
│ │ └── tests
│ │ ├── Dissect
│ │ └── Parser
│ │ │ ├── LALR1
│ │ │ └── Dumper
│ │ │ │ └── res
│ │ │ │ ├── table
│ │ │ │ └── production.php
│ │ │ │ └── graphviz
│ │ │ │ └── state.dot
│ │ │ └── ExampleGrammar.php
│ │ └── bootstrap.php
├── doctrine
│ ├── annotations
│ │ ├── .gitignore
│ │ ├── tests
│ │ │ └── Doctrine
│ │ │ │ └── Tests
│ │ │ │ ├── Common
│ │ │ │ └── Annotations
│ │ │ │ │ ├── Fixtures
│ │ │ │ │ ├── NoAnnotation.php
│ │ │ │ │ ├── Api.php
│ │ │ │ │ ├── Annotation
│ │ │ │ │ │ ├── Autoload.php
│ │ │ │ │ │ ├── Version.php
│ │ │ │ │ │ ├── Route.php
│ │ │ │ │ │ └── AnnotWithDefaultValue.php
│ │ │ │ │ ├── InvalidAnnotationUsageClass.php
│ │ │ │ │ ├── AnnotationWithTargetSyntaxError.php
│ │ │ │ │ ├── ClassWithConstants.php
│ │ │ │ │ ├── AnnotationTargetAll.php
│ │ │ │ │ ├── IntefaceWithConstants.php
│ │ │ │ │ ├── TestInterface.php
│ │ │ │ │ ├── AnnotationTargetClass.php
│ │ │ │ │ ├── AnnotationTargetMethod.php
│ │ │ │ │ ├── NonNamespacedClass.php
│ │ │ │ │ ├── AnnotationTargetAnnotation.php
│ │ │ │ │ ├── MultipleImportsInUseStatement.php
│ │ │ │ │ └── MultipleClassesInFile.php
│ │ │ │ │ ├── Ticket
│ │ │ │ │ └── DCOM58Entity.php
│ │ │ │ │ └── TopLevelAnnotation.php
│ │ │ │ └── DoctrineTestCase.php
│ │ └── .travis.yml
│ └── lexer
│ │ └── README.md
├── filp
│ └── whoops
│ │ ├── .gitignore
│ │ ├── .travis.yml
│ │ └── tests
│ │ ├── fixtures
│ │ └── frame.lines-test.php
│ │ └── bootstrap.php
├── laravel
│ └── framework
│ │ ├── .gitattributes
│ │ ├── .gitignore
│ │ ├── src
│ │ └── Illuminate
│ │ │ ├── Workbench
│ │ │ └── stubs
│ │ │ │ ├── gitignore.txt
│ │ │ │ └── .travis.yml
│ │ │ ├── Session
│ │ │ └── TokenMismatchException.php
│ │ │ ├── Routing
│ │ │ └── Generators
│ │ │ │ └── stubs
│ │ │ │ ├── controller.stub
│ │ │ │ ├── index.stub
│ │ │ │ ├── create.stub
│ │ │ │ ├── store.stub
│ │ │ │ ├── show.stub
│ │ │ │ ├── destroy.stub
│ │ │ │ ├── edit.stub
│ │ │ │ └── update.stub
│ │ │ ├── Database
│ │ │ ├── Eloquent
│ │ │ │ └── MassAssignmentException.php
│ │ │ └── Connectors
│ │ │ │ └── ConnectorInterface.php
│ │ │ ├── Support
│ │ │ ├── Contracts
│ │ │ │ ├── ArrayableInterface.php
│ │ │ │ ├── RenderableInterface.php
│ │ │ │ ├── MessageProviderInterface.php
│ │ │ │ └── JsonableInterface.php
│ │ │ └── Facades
│ │ │ │ └── Log.php
│ │ │ ├── Pagination
│ │ │ └── views
│ │ │ │ ├── slider-3.php
│ │ │ │ └── slider.php
│ │ │ ├── Auth
│ │ │ └── Reminders
│ │ │ │ └── RemindableInterface.php
│ │ │ ├── Queue
│ │ │ └── Connectors
│ │ │ │ └── ConnectorInterface.php
│ │ │ ├── Exception
│ │ │ └── ExceptionDisplayerInterface.php
│ │ │ └── View
│ │ │ └── Engines
│ │ │ └── EngineInterface.php
│ │ └── .travis.yml
├── nikic
│ └── php-parser
│ │ ├── .travis.yml
│ │ ├── lib
│ │ └── PHPParser
│ │ │ ├── Comment
│ │ │ └── Doc.php
│ │ │ ├── Node
│ │ │ ├── Expr.php
│ │ │ ├── Stmt.php
│ │ │ ├── Scalar.php
│ │ │ ├── Expr
│ │ │ │ └── Cast
│ │ │ │ │ ├── Array.php
│ │ │ │ │ ├── Bool.php
│ │ │ │ │ ├── Int.php
│ │ │ │ │ ├── Unset.php
│ │ │ │ │ ├── Double.php
│ │ │ │ │ ├── Object.php
│ │ │ │ │ └── String.php
│ │ │ └── Stmt
│ │ │ │ └── TraitUseAdaptation.php
│ │ │ ├── Builder.php
│ │ │ ├── PrettyPrinter
│ │ │ └── Zend.php
│ │ │ ├── Serializer.php
│ │ │ └── Unserializer.php
│ │ └── test
│ │ └── code
│ │ ├── prettyPrinter
│ │ ├── include.test
│ │ ├── onlyPHP.file-test
│ │ └── onlyInlineHTML.file-test
│ │ └── parser
│ │ ├── stmt
│ │ ├── tryCatch.test-fail
│ │ ├── haltCompilerInvalidSyntax.test-fail
│ │ ├── namespace
│ │ │ └── nested.test-fail
│ │ ├── haltCompilerOutermostScope.test-fail
│ │ ├── loop
│ │ │ └── do.test
│ │ └── class
│ │ │ └── final.test
│ │ └── expr
│ │ ├── print.test
│ │ ├── clone.test
│ │ └── errorSuppress.test
├── bin
│ ├── boris.bat
│ ├── dissect.bat
│ ├── dissect.php.bat
│ ├── classpreloader.php.bat
│ ├── boris
│ ├── dissect
│ ├── dissect.php
│ └── classpreloader.php
├── lisachenko
│ └── go-aop-php
│ │ ├── tests
│ │ └── Go
│ │ │ └── Instrument
│ │ │ └── Transformer
│ │ │ └── _files
│ │ │ ├── interface.php
│ │ │ ├── multiple-ns.php
│ │ │ ├── aspect.php
│ │ │ └── empty-classes.php
│ │ ├── .travis.yml
│ │ └── .gitignore
├── ircmaxell
│ └── password-compat
│ │ ├── .travis.yml
│ │ └── version-test.php
├── jeremeamia
│ └── SuperClosure
│ │ ├── .gitignore
│ │ ├── tests
│ │ └── bootstrap.php
│ │ └── .travis.yml
├── patchwork
│ └── utf8
│ │ ├── class
│ │ └── Patchwork
│ │ │ └── PHP
│ │ │ └── Shim
│ │ │ └── charset
│ │ │ ├── from.big5.ser
│ │ │ ├── to.stdenc.ser
│ │ │ ├── to.symbol.ser
│ │ │ ├── from.cp037.ser
│ │ │ ├── from.cp1006.ser
│ │ │ ├── from.cp1026.ser
│ │ │ ├── from.cp424.ser
│ │ │ ├── from.cp437.ser
│ │ │ ├── from.cp500.ser
│ │ │ ├── from.cp737.ser
│ │ │ ├── from.cp775.ser
│ │ │ ├── from.cp850.ser
│ │ │ ├── from.cp852.ser
│ │ │ ├── from.cp855.ser
│ │ │ ├── from.cp856.ser
│ │ │ ├── from.cp857.ser
│ │ │ ├── from.cp860.ser
│ │ │ ├── from.cp861.ser
│ │ │ ├── from.cp862.ser
│ │ │ ├── from.cp863.ser
│ │ │ ├── from.cp864.ser
│ │ │ ├── from.cp865.ser
│ │ │ ├── from.cp866.ser
│ │ │ ├── from.cp869.ser
│ │ │ ├── from.cp874.ser
│ │ │ ├── from.cp875.ser
│ │ │ ├── from.cp932.ser
│ │ │ ├── from.cp936.ser
│ │ │ ├── from.cp949.ser
│ │ │ ├── from.cp950.ser
│ │ │ ├── from.koi8-r.ser
│ │ │ ├── from.koi8-u.ser
│ │ │ ├── from.stdenc.ser
│ │ │ ├── from.symbol.ser
│ │ │ ├── to.mazovia.ser
│ │ │ ├── to.zdingbat.ser
│ │ │ ├── from.mazovia.ser
│ │ │ ├── from.nextstep.ser
│ │ │ ├── from.turkish.ser
│ │ │ ├── from.x-mac-ce.ser
│ │ │ ├── from.zdingbat.ser
│ │ │ ├── from.iso-8859-1.ser
│ │ │ ├── from.iso-8859-10.ser
│ │ │ ├── from.iso-8859-11.ser
│ │ │ ├── from.iso-8859-13.ser
│ │ │ ├── from.iso-8859-14.ser
│ │ │ ├── from.iso-8859-15.ser
│ │ │ ├── from.iso-8859-16.ser
│ │ │ ├── from.iso-8859-2.ser
│ │ │ ├── from.iso-8859-3.ser
│ │ │ ├── from.iso-8859-4.ser
│ │ │ ├── from.iso-8859-5.ser
│ │ │ ├── from.iso-8859-6.ser
│ │ │ ├── from.iso-8859-7.ser
│ │ │ ├── from.iso-8859-8.ser
│ │ │ ├── from.iso-8859-9.ser
│ │ │ ├── from.x-mac-greek.ser
│ │ │ ├── from.x-mac-roman.ser
│ │ │ ├── from.windows-1250.ser
│ │ │ ├── from.windows-1251.ser
│ │ │ ├── from.windows-1252.ser
│ │ │ ├── from.windows-1253.ser
│ │ │ ├── from.windows-1254.ser
│ │ │ ├── from.windows-1255.ser
│ │ │ ├── from.windows-1256.ser
│ │ │ ├── from.windows-1257.ser
│ │ │ ├── from.windows-1258.ser
│ │ │ ├── from.x-mac-cyrillic.ser
│ │ │ └── from.x-mac-icelandic.ser
│ │ └── .travis.yml
├── autoload.php
└── composer
│ ├── include_paths.php
│ └── autoload_psr4.php
├── composer.bat
├── .settings
├── org.eclipse.wst.jsdt.ui.superType.name
├── org.eclipse.php.core.prefs
├── org.eclipse.wst.jsdt.ui.superType.container
└── org.eclipse.wst.common.project.facet.core.xml
├── composer.phar
├── CONTRIBUTING.md
├── .buildpath
├── readme.md
└── cache
└── app
└── controllers
└── BaseController.php
/.idea/.name:
--------------------------------------------------------------------------------
1 | laravel
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/commands/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/config/packages/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/controllers/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/database/seeds/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/packages/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/database/migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/database/production.sqlite:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/start/local.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/one/a:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/classpreloader/classpreloader/.gitignore:
--------------------------------------------------------------------------------
1 | composer.lock
2 | vendor
--------------------------------------------------------------------------------
/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/VERSION:
--------------------------------------------------------------------------------
1 | 1.1beta
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/A/B/ab.dat:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/A/a.dat:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/empty.yml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/foo.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/foo1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/A/B/C/abc.dat:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/one/b/c.neon:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/one/b/d.neon:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/annotated.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/jakubledl/dissect/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.phar
3 | composer.lock
4 |
--------------------------------------------------------------------------------
/vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl:
--------------------------------------------------------------------------------
1 | D42DA34CF90FA0DE
2 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/copy/A/B/ab.dat.copy:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/copy/A/a.dat.copy:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/with space/foo.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.csv:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.ini:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.json:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.mo:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.po:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.xlf:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/empty.yml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/doctrine/annotations/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | composer.phar
4 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/nonvalid.yml:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/composer.phar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/shashigharti/LaravelWithGoAop/master/composer.phar
--------------------------------------------------------------------------------
/vendor/filp/whoops/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/*
2 | report/*
3 | phpunit.xml
4 | composer.lock
5 |
--------------------------------------------------------------------------------
/vendor/laravel/framework/.gitattributes:
--------------------------------------------------------------------------------
1 | /build export-ignore
2 | /tests export-ignore
3 |
--------------------------------------------------------------------------------
/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/support/collector/collectable.1:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/support/collector/collectable.2:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/dom-crawler/Symfony/Component/DomCrawler/Tests/Fixtures/no-extension:
--------------------------------------------------------------------------------
1 | Test
2 |
--------------------------------------------------------------------------------
/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle1Bundle/bar.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle1Bundle/foo.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle2Bundle/foo.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/non-valid.yml:
--------------------------------------------------------------------------------
1 | foo
2 |
--------------------------------------------------------------------------------
/vendor/laravel/framework/.gitignore:
--------------------------------------------------------------------------------
1 | /vendor
2 | composer.phar
3 | composer.lock
4 | .DS_Store
5 |
--------------------------------------------------------------------------------
/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/site/temp/.stop_cvs_removing_temp:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/FooBundle/foo.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/nonvalid2.yml:
--------------------------------------------------------------------------------
1 | route: string
2 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.yml:
--------------------------------------------------------------------------------
1 | foo: bar
2 |
--------------------------------------------------------------------------------
/.settings/org.eclipse.php.core.prefs:
--------------------------------------------------------------------------------
1 | eclipse.preferences.version=1
2 | include_path=0;/laravel_as
3 |
--------------------------------------------------------------------------------
/.settings/org.eclipse.wst.jsdt.ui.superType.container:
--------------------------------------------------------------------------------
1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary
--------------------------------------------------------------------------------
/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run4.txt:
--------------------------------------------------------------------------------
1 | Console Tool
2 |
--------------------------------------------------------------------------------
/vendor/symfony/debug/Symfony/Component/Debug/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/File/Fixtures/.unknownextension:
--------------------------------------------------------------------------------
1 | f
--------------------------------------------------------------------------------
/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/File/Fixtures/directory/.empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/BaseBundle/Resources/foo.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/BaseBundle/Resources/hide.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Bundle1Bundle/Resources/foo.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/ChildBundle/Resources/foo.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/ChildBundle/Resources/hide.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/BaseBundle/hide.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/Bundle1Bundle/foo.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/Resources/ChildBundle/foo.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/symfony/translation/Symfony/Component/Translation/Tests/fixtures/resources.ini:
--------------------------------------------------------------------------------
1 | foo="bar"
2 |
--------------------------------------------------------------------------------
/vendor/nikic/php-parser/.travis.yml:
--------------------------------------------------------------------------------
1 | language: php
2 |
3 | php:
4 | - 5.2
5 | - 5.3
6 | - 5.4
7 | - 5.5
--------------------------------------------------------------------------------
/vendor/symfony/console/Symfony/Component/Console/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/vendor/symfony/finder/Symfony/Component/Finder/Tests/Fixtures/dolor.txt:
--------------------------------------------------------------------------------
1 | dolor sit amet
2 | DOLOR SIT AMET
--------------------------------------------------------------------------------
/vendor/symfony/process/Symfony/Component/Process/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/vendor/symfony/routing/Symfony/Component/Routing/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/vendor/symfony/security/Symfony/Component/Security/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | composer.lock
3 | phpunit.xml
4 |
--------------------------------------------------------------------------------
/vendor/bin/boris.bat:
--------------------------------------------------------------------------------
1 | @ECHO OFF
2 | SET BIN_TARGET=%~dp0/../d11wtq/boris/bin/boris
3 | php "%BIN_TARGET%" %*
4 |
--------------------------------------------------------------------------------
/vendor/jakubledl/dissect/bin/dissect:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env php
2 |
--------------------------------------------------------------------------------
/vendor/swiftmailer/swiftmailer/test-suite/lib/simpletest/test/support/upload_sample.txt:
--------------------------------------------------------------------------------
1 | Sample for testing file upload
--------------------------------------------------------------------------------
/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.txt:
--------------------------------------------------------------------------------
1 |