实例介绍
laravel商城项目源码
【实例截图】
【核心代码】
c006c9c8-a268-4ec3-b153-3bfb3fa9edf1
└── laravel鍟嗗煄椤圭洰婧愮爜
├── php32
│ ├── alipay
│ │ ├── alipayapi.php
│ │ ├── alipay.config.php
│ │ ├── cacert.pem
│ │ ├── img
│ │ │ ├── alipay_logo.png
│ │ │ ├── guanzhu_qrcode.png
│ │ │ └── little_qrcode.jpg
│ │ ├── index.php
│ │ ├── lib
│ │ │ ├── alipay_core.function.php
│ │ │ ├── alipay_md5.function.php
│ │ │ ├── alipay_notify.class.php
│ │ │ └── alipay_submit.class.php
│ │ ├── log.txt
│ │ ├── notify_url.php
│ │ ├── readme.txt
│ │ └── return_url.php
│ ├── app
│ │ ├── Console
│ │ │ ├── Commands
│ │ │ │ └── Inspire.php
│ │ │ └── Kernel.php
│ │ ├── Events
│ │ │ └── Event.php
│ │ ├── Exceptions
│ │ │ └── Handler.php
│ │ ├── helpers.php
│ │ ├── Http
│ │ │ ├── Controllers
│ │ │ │ ├── Admin
│ │ │ │ │ ├── AdminController.php
│ │ │ │ │ ├── AttributeController.php
│ │ │ │ │ ├── CategoryController.php
│ │ │ │ │ ├── GoodsController.php
│ │ │ │ │ ├── GoodsNumberController.php
│ │ │ │ │ ├── IndexController.php
│ │ │ │ │ ├── LoginController.php
│ │ │ │ │ ├── MemberLevelController.php
│ │ │ │ │ ├── PrivilegeController.php
│ │ │ │ │ ├── RoleController.php
│ │ │ │ │ └── TypeController.php
│ │ │ │ ├── Controller.php
│ │ │ │ ├── Home
│ │ │ │ │ ├── CartController.php
│ │ │ │ │ ├── CommentController.php
│ │ │ │ │ ├── HomeController.php
│ │ │ │ │ ├── IndexController.php
│ │ │ │ │ ├── MemberController.php
│ │ │ │ │ ├── OrderController.php
│ │ │ │ │ └── SearchController.php
│ │ │ │ └── HomeController.php
│ │ │ ├── Kernel.php
│ │ │ ├── Middleware
│ │ │ │ ├── AdminLogin.php
│ │ │ │ ├── Authenticate.php
│ │ │ │ ├── EncryptCookies.php
│ │ │ │ ├── RedirectIfAuthenticated.php
│ │ │ │ └── VerifyCsrfToken.php
│ │ │ ├── Model
│ │ │ │ ├── Admin.php
│ │ │ │ ├── Attribute.php
│ │ │ │ ├── Cart.php
│ │ │ │ ├── Category.php
│ │ │ │ ├── Comment.php
│ │ │ │ ├── GoodsNumber.php
│ │ │ │ ├── Goods.php
│ │ │ │ ├── MemberLevel.php
│ │ │ │ ├── Member.php
│ │ │ │ ├── Order.php
│ │ │ │ ├── Privilege.php
│ │ │ │ ├── Role.php
│ │ │ │ └── Type.php
│ │ │ ├── Requests
│ │ │ │ └── Request.php
│ │ │ └── routes.php
│ │ ├── Jobs
│ │ │ └── Job.php
│ │ ├── Listeners
│ │ ├── Policies
│ │ └── Providers
│ │ ├── AppServiceProvider.php
│ │ ├── AuthServiceProvider.php
│ │ ├── EventServiceProvider.php
│ │ ├── RoleServiceProvider.php
│ │ └── RouteServiceProvider.php
│ ├── artisan
│ ├── bootstrap
│ │ ├── app.php
│ │ ├── autoload.php
│ │ └── cache
│ │ └── services.php
│ ├── composer.json
│ ├── composer.lock
│ ├── config
│ │ ├── app.php
│ │ ├── auth.php
│ │ ├── broadcasting.php
│ │ ├── cache.php
│ │ ├── compile.php
│ │ ├── database.php
│ │ ├── entrust.php
│ │ ├── filesystems.php
│ │ ├── image.php
│ │ ├── mail.php
│ │ ├── queue.php
│ │ ├── services.php
│ │ ├── session.php
│ │ └── view.php
│ ├── database
│ │ ├── factories
│ │ │ └── ModelFactory.php
│ │ ├── migrations
│ │ │ ├── 2014_10_12_000000_create_users_table.php
│ │ │ ├── 2014_10_12_100000_create_password_resets_table.php
│ │ │ ├── 2016_01_18_071439_create_admin_users.php
│ │ │ ├── 2016_01_18_071720_create_admin_password_resets_table.php
│ │ │ ├── 2016_01_23_031442_entrust_base.php
│ │ │ └── 2016_01_23_031518_entrust_pivot_admin_user_role.php
│ │ └── seeds
│ │ └── DatabaseSeeder.php
│ ├── db.sql
│ ├── gulpfile.js
│ ├── index.php
│ ├── npm-debug.log
│ ├── order.lock
│ ├── package.json
│ ├── PHPMailer_v5.1
│ │ ├── aboutus.html
│ │ ├── changelog.txt
│ │ ├── class.phpmailer.php
│ │ ├── class.pop3.php
│ │ ├── class.smtp.php
│ │ ├── docs
│ │ │ ├── Callback_function_notes.txt
│ │ │ ├── DomainKeys_notes.txt
│ │ │ ├── extending.html
│ │ │ ├── faq.html
│ │ │ ├── Note_for_SMTP_debugging.txt
│ │ │ ├── pop3_article.txt
│ │ │ └── use_gmail.txt
│ │ ├── examples
│ │ │ ├── contents.html
│ │ │ ├── images
│ │ │ │ ├── phpmailer.gif
│ │ │ │ └── phpmailer_mini.gif
│ │ │ ├── index.html
│ │ │ ├── test_db_smtp_basic.php
│ │ │ ├── test_mail_advanced.php
│ │ │ ├── test_mail_basic.php
│ │ │ ├── test_pop_before_smtp_advanced.php
│ │ │ ├── test_pop_before_smtp_basic.php
│ │ │ ├── test_sendmail_advanced.php
│ │ │ ├── test_sendmail_basic.php
│ │ │ ├── test_smtp_advanced_no_auth.php
│ │ │ ├── test_smtp_advanced.php
│ │ │ ├── test_smtp_basic_no_auth.php
│ │ │ ├── test_smtp_basic.php
│ │ │ ├── test_smtp_gmail_advanced.php
│ │ │ └── test_smtp_gmail_basic.php
│ │ ├── language
│ │ │ ├── phpmailer.lang-ar.php
│ │ │ ├── phpmailer.lang-br.php
│ │ │ ├── phpmailer.lang-ca.php
│ │ │ ├── phpmailer.lang-ch.php
│ │ │ ├── phpmailer.lang-cz.php
│ │ │ ├── phpmailer.lang-de.php
│ │ │ ├── phpmailer.lang-dk.php
│ │ │ ├── phpmailer.lang-es.php
│ │ │ ├── phpmailer.lang-et.php
│ │ │ ├── phpmailer.lang-fi.php
│ │ │ ├── phpmailer.lang-fo.php
│ │ │ ├── phpmailer.lang-fr.php
│ │ │ ├── phpmailer.lang-hu.php
│ │ │ ├── phpmailer.lang-it.php
│ │ │ ├── phpmailer.lang-ja.php
│ │ │ ├── phpmailer.lang-nl.php
│ │ │ ├── phpmailer.lang-no.php
│ │ │ ├── phpmailer.lang-pl.php
│ │ │ ├── phpmailer.lang-ro.php
│ │ │ ├── phpmailer.lang-ru.php
│ │ │ ├── phpmailer.lang-se.php
│ │ │ ├── phpmailer.lang-tr.php
│ │ │ ├── phpmailer.lang-zh_cn.php
│ │ │ └── phpmailer.lang-zh.php
│ │ ├── LICENSE
│ │ ├── README
│ │ └── test
│ │ ├── contents.html
│ │ ├── phpmailerTest.php
│ │ ├── test_callback.php
│ │ ├── testemail.php
│ │ └── test.png
│ ├── phpunit.xml
│ ├── public
│ │ ├── backstage
│ │ │ ├── bootstrap
│ │ │ │ ├── css
│ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ ├── bootstrap.css.map
│ │ │ │ │ └── bootstrap.min.css
│ │ │ │ ├── fonts
│ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ │ └── js
│ │ │ │ ├── bootstrap.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ └── npm.js
│ │ │ ├── bower.json
│ │ │ ├── build
│ │ │ │ ├── bootstrap-less
│ │ │ │ │ ├── mixins
│ │ │ │ │ │ ├── alerts.less
│ │ │ │ │ │ ├── background-variant.less
│ │ │ │ │ │ ├── border-radius.less
│ │ │ │ │ │ ├── buttons.less
│ │ │ │ │ │ ├── center-block.less
│ │ │ │ │ │ ├── clearfix.less
│ │ │ │ │ │ ├── forms.less
│ │ │ │ │ │ ├── gradients.less
│ │ │ │ │ │ ├── grid-framework.less
│ │ │ │ │ │ ├── grid.less
│ │ │ │ │ │ ├── hide-text.less
│ │ │ │ │ │ ├── image.less
│ │ │ │ │ │ ├── labels.less
│ │ │ │ │ │ ├── list-group.less
│ │ │ │ │ │ ├── nav-divider.less
│ │ │ │ │ │ ├── nav-vertical-align.less
│ │ │ │ │ │ ├── opacity.less
│ │ │ │ │ │ ├── pagination.less
│ │ │ │ │ │ ├── panels.less
│ │ │ │ │ │ ├── progress-bar.less
│ │ │ │ │ │ ├── reset-filter.less
│ │ │ │ │ │ ├── resize.less
│ │ │ │ │ │ ├── responsive-visibility.less
│ │ │ │ │ │ ├── size.less
│ │ │ │ │ │ ├── tab-focus.less
│ │ │ │ │ │ ├── table-row.less
│ │ │ │ │ │ ├── text-emphasis.less
│ │ │ │ │ │ ├── text-overflow.less
│ │ │ │ │ │ └── vendor-prefixes.less
│ │ │ │ │ ├── mixins.less
│ │ │ │ │ └── variables.less
│ │ │ │ └── less
│ │ │ │ ├── 404_500_errors.less
│ │ │ │ ├── AdminLTE.less
│ │ │ │ ├── alerts.less
│ │ │ │ ├── bootstrap-social.less
│ │ │ │ ├── boxes.less
│ │ │ │ ├── buttons.less
│ │ │ │ ├── callout.less
│ │ │ │ ├── carousel.less
│ │ │ │ ├── control-sidebar.less
│ │ │ │ ├── core.less
│ │ │ │ ├── direct-chat.less
│ │ │ │ ├── dropdown.less
│ │ │ │ ├── forms.less
│ │ │ │ ├── fullcalendar.less
│ │ │ │ ├── header.less
│ │ │ │ ├── info-box.less
│ │ │ │ ├── invoice.less
│ │ │ │ ├── labels.less
│ │ │ │ ├── lockscreen.less
│ │ │ │ ├── login_and_register.less
│ │ │ │ ├── mailbox.less
│ │ │ │ ├── miscellaneous.less
│ │ │ │ ├── mixins.less
│ │ │ │ ├── modal.less
│ │ │ │ ├── navs.less
│ │ │ │ ├── print.less
│ │ │ │ ├── products.less
│ │ │ │ ├── profile.less
│ │ │ │ ├── progress-bars.less
│ │ │ │ ├── select2.less
│ │ │ │ ├── sidebar.less
│ │ │ │ ├── sidebar-mini.less
│ │ │ │ ├── skins
│ │ │ │ │ ├── _all-skins.less
│ │ │ │ │ ├── skin-black.less
│ │ │ │ │ ├── skin-black-light.less
│ │ │ │ │ ├── skin-blue.less
│ │ │ │ │ ├── skin-blue-light.less
│ │ │ │ │ ├── skin-green.less
│ │ │ │ │ ├── skin-green-light.less
│ │ │ │ │ ├── skin-purple.less
│ │ │ │ │ ├── skin-purple-light.less
│ │ │ │ │ ├── skin-red.less
│ │ │ │ │ ├── skin-red-light.less
│ │ │ │ │ ├── skin-yellow.less
│ │ │ │ │ └── skin-yellow-light.less
│ │ │ │ ├── small-box.less
│ │ │ │ ├── social-widgets.less
│ │ │ │ ├── table.less
│ │ │ │ ├── timeline.less
│ │ │ │ ├── users-list.less
│ │ │ │ └── variables.less
│ │ │ ├── changelog
│ │ │ ├── composer.json
│ │ │ ├── dist
│ │ │ │ ├── css
│ │ │ │ │ ├── AdminLTE.css
│ │ │ │ │ ├── AdminLTE.min.css
│ │ │ │ │ └── skins
│ │ │ │ │ ├── _all-skins.css
│ │ │ │ │ ├── _all-skins.min.css
│ │ │ │ │ ├── skin-black.css
│ │ │ │ │ ├── skin-black-light.css
│ │ │ │ │ ├── skin-black-light.min.css
│ │ │ │ │ ├── skin-black.min.css
│ │ │ │ │ ├── skin-blue.css
│ │ │ │ │ ├── skin-blue-light.css
│ │ │ │ │ ├── skin-blue-light.min.css
│ │ │ │ │ ├── skin-blue.min.css
│ │ │ │ │ ├── skin-green.css
│ │ │ │ │ ├── skin-green-light.css
│ │ │ │ │ ├── skin-green-light.min.css
│ │ │ │ │ ├── skin-green.min.css
│ │ │ │ │ ├── skin-purple.css
│ │ │ │ │ ├── skin-purple-light.css
│ │ │ │ │ ├── skin-purple-light.min.css
│ │ │ │ │ ├── skin-purple.min.css
│ │ │ │ │ ├── skin-red.css
│ │ │ │ │ ├── skin-red-light.css
│ │ │ │ │ ├── skin-red-light.min.css
│ │ │ │ │ ├── skin-red.min.css
│ │ │ │ │ ├── skin-yellow.css
│ │ │ │ │ ├── skin-yellow-light.css
│ │ │ │ │ ├── skin-yellow-light.min.css
│ │ │ │ │ └── skin-yellow.min.css
│ │ │ │ ├── img
│ │ │ │ │ ├── avatar04.png
│ │ │ │ │ ├── avatar2.png
│ │ │ │ │ ├── avatar3.png
│ │ │ │ │ ├── avatar5.png
│ │ │ │ │ ├── avatar.png
│ │ │ │ │ ├── boxed-bg.jpg
│ │ │ │ │ ├── boxed-bg.png
│ │ │ │ │ ├── credit
│ │ │ │ │ │ ├── american-express.png
│ │ │ │ │ │ ├── cirrus.png
│ │ │ │ │ │ ├── mastercard.png
│ │ │ │ │ │ ├── mestro.png
│ │ │ │ │ │ ├── paypal2.png
│ │ │ │ │ │ ├── paypal.png
│ │ │ │ │ │ └── visa.png
│ │ │ │ │ ├── default-50x50.gif
│ │ │ │ │ ├── icons.png
│ │ │ │ │ ├── photo1.png
│ │ │ │ │ ├── photo2.png
│ │ │ │ │ ├── photo3.jpg
│ │ │ │ │ ├── photo4.jpg
│ │ │ │ │ ├── user1-128x128.jpg
│ │ │ │ │ ├── user2-160x160.jpg
│ │ │ │ │ ├── user3-128x128.jpg
│ │ │ │ │ ├── user4-128x128.jpg
│ │ │ │ │ ├── user5-128x128.jpg
│ │ │ │ │ ├── user6-128x128.jpg
│ │ │ │ │ ├── user7-128x128.jpg
│ │ │ │ │ └── user8-128x128.jpg
│ │ │ │ └── js
│ │ │ │ ├── app.js
│ │ │ │ ├── app.min.js
│ │ │ │ ├── demo.js
│ │ │ │ └── pages
│ │ │ │ ├── dashboard2.js
│ │ │ │ └── dashboard.js
│ │ │ ├── documentation
│ │ │ │ ├── build
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── adminlte-options.html
│ │ │ │ │ │ ├── advice.html
│ │ │ │ │ │ ├── browsers.html
│ │ │ │ │ │ ├── components.html
│ │ │ │ │ │ ├── dependencies.html
│ │ │ │ │ │ ├── download.html
│ │ │ │ │ │ ├── faq.html
│ │ │ │ │ │ ├── implementations.html
│ │ │ │ │ │ ├── introduction.html
│ │ │ │ │ │ ├── layout.html
│ │ │ │ │ │ ├── license.html
│ │ │ │ │ │ ├── plugins.html
│ │ │ │ │ │ └── upgrade.html
│ │ │ │ │ └── index.html
│ │ │ │ ├── docs.js
│ │ │ │ ├── index.html
│ │ │ │ └── style.css
│ │ │ ├── Gruntfile.js
│ │ │ ├── index2.html
│ │ │ ├── index.html
│ │ │ ├── LICENSE
│ │ │ ├── package.json
│ │ │ ├── pages
│ │ │ │ ├── calendar.html
│ │ │ │ ├── charts
│ │ │ │ │ ├── chartjs.html
│ │ │ │ │ ├── flot.html
│ │ │ │ │ ├── inline.html
│ │ │ │ │ └── morris.html
│ │ │ │ ├── examples
│ │ │ │ │ ├── 404.html
│ │ │ │ │ ├── 500.html
│ │ │ │ │ ├── blank.html
│ │ │ │ │ ├── invoice.html
│ │ │ │ │ ├── invoice-print.html
│ │ │ │ │ ├── lockscreen.html
│ │ │ │ │ ├── login.html
│ │ │ │ │ ├── profile.html
│ │ │ │ │ └── register.html
│ │ │ │ ├── forms
│ │ │ │ │ ├── advanced.html
│ │ │ │ │ ├── editors.html
│ │ │ │ │ └── general.html
│ │ │ │ ├── layout
│ │ │ │ │ ├── boxed.html
│ │ │ │ │ ├── collapsed-sidebar.html
│ │ │ │ │ ├── fixed.html
│ │ │ │ │ └── top-nav.html
│ │ │ │ ├── mailbox
│ │ │ │ │ ├── compose.html
│ │ │ │ │ ├── mailbox.html
│ │ │ │ │ └── read-mail.html
│ │ │ │ ├── tables
│ │ │ │ │ ├── data.html
│ │ │ │ │ └── simple.html
│ │ │ │ ├── UI
│ │ │ │ │ ├── buttons.html
│ │ │ │ │ ├── general.html
│ │ │ │ │ ├── icons.html
│ │ │ │ │ ├── modals.html
│ │ │ │ │ ├── sliders.html
│ │ │ │ │ └── timeline.html
│ │ │ │ └── widgets.html
│ │ │ ├── plugins
│ │ │ │ ├── bootstrap-slider
│ │ │ │ │ ├── bootstrap-slider.js
│ │ │ │ │ └── slider.css
│ │ │ │ ├── bootstrap-wysihtml5
│ │ │ │ │ ├── bootstrap3-wysihtml5.all.js
│ │ │ │ │ ├── bootstrap3-wysihtml5.all.min.js
│ │ │ │ │ ├── bootstrap3-wysihtml5.css
│ │ │ │ │ └── bootstrap3-wysihtml5.min.css
│ │ │ │ ├── chartjs
│ │ │ │ │ ├── Chart.js
│ │ │ │ │ └── Chart.min.js
│ │ │ │ ├── ckeditor
│ │ │ │ │ ├── adapters
│ │ │ │ │ │ └── jquery.js
│ │ │ │ │ ├── build-config.js
│ │ │ │ │ ├── CHANGES.md
│ │ │ │ │ ├── ckeditor.js
│ │ │ │ │ ├── config.js
│ │ │ │ │ ├── contents.css
│ │ │ │ │ ├── lang
│ │ │ │ │ │ ├── af.js
│ │ │ │ │ │ ├── ar.js
│ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ ├── bn.js
│ │ │ │ │ │ ├── bs.js
│ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ ├── cy.js
│ │ │ │ │ │ ├── da.js
│ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ ├── el.js
│ │ │ │ │ │ ├── en-au.js
│ │ │ │ │ │ ├── en-ca.js
│ │ │ │ │ │ ├── en-gb.js
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── eo.js
│ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ ├── et.js
│ │ │ │ │ │ ├── eu.js
│ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ ├── fo.js
│ │ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ ├── gu.js
│ │ │ │ │ │ ├── he.js
│ │ │ │ │ │ ├── hi.js
│ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ ├── is.js
│ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ ├── ja.js
│ │ │ │ │ │ ├── ka.js
│ │ │ │ │ │ ├── km.js
│ │ │ │ │ │ ├── ko.js
│ │ │ │ │ │ ├── ku.js
│ │ │ │ │ │ ├── lt.js
│ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ ├── mk.js
│ │ │ │ │ │ ├── mn.js
│ │ │ │ │ │ ├── ms.js
│ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ ├── no.js
│ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ ├── pt-br.js
│ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ ├── ro.js
│ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ ├── si.js
│ │ │ │ │ │ ├── sk.js
│ │ │ │ │ │ ├── sl.js
│ │ │ │ │ │ ├── sq.js
│ │ │ │ │ │ ├── sr.js
│ │ │ │ │ │ ├── sr-latn.js
│ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ ├── th.js
│ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ ├── ug.js
│ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ ├── vi.js
│ │ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ │ └── zh.js
│ │ │ │ │ ├── LICENSE.md
│ │ │ │ │ ├── plugins
│ │ │ │ │ │ ├── a11yhelp
│ │ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ │ ├── a11yhelp.js
│ │ │ │ │ │ │ └── lang
│ │ │ │ │ │ │ ├── ar.js
│ │ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ │ ├── cy.js
│ │ │ │ │ │ │ ├── da.js
│ │ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ │ ├── el.js
│ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ ├── eo.js
│ │ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ │ ├── et.js
│ │ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ │ ├── gu.js
│ │ │ │ │ │ │ ├── he.js
│ │ │ │ │ │ │ ├── hi.js
│ │ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ │ ├── ja.js
│ │ │ │ │ │ │ ├── km.js
│ │ │ │ │ │ │ ├── ko.js
│ │ │ │ │ │ │ ├── ku.js
│ │ │ │ │ │ │ ├── lt.js
│ │ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ │ ├── mk.js
│ │ │ │ │ │ │ ├── mn.js
│ │ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ │ ├── no.js
│ │ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ │ ├── pt-br.js
│ │ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ │ ├── ro.js
│ │ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ │ ├── si.js
│ │ │ │ │ │ │ ├── sk.js
│ │ │ │ │ │ │ ├── sl.js
│ │ │ │ │ │ │ ├── sq.js
│ │ │ │ │ │ │ ├── sr.js
│ │ │ │ │ │ │ ├── sr-latn.js
│ │ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ │ ├── th.js
│ │ │ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ │ ├── ug.js
│ │ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ │ ├── vi.js
│ │ │ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ │ │ └── zh.js
│ │ │ │ │ │ ├── about
│ │ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ │ ├── about.js
│ │ │ │ │ │ │ ├── hidpi
│ │ │ │ │ │ │ │ └── logo_ckeditor.png
│ │ │ │ │ │ │ └── logo_ckeditor.png
│ │ │ │ │ │ ├── clipboard
│ │ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ │ └── paste.js
│ │ │ │ │ │ ├── dialog
│ │ │ │ │ │ │ └── dialogDefinition.js
│ │ │ │ │ │ ├── fakeobjects
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ └── spacer.gif
│ │ │ │ │ │ ├── icons_hidpi.png
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image
│ │ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ │ └── image.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ └── noimage.png
│ │ │ │ │ │ ├── link
│ │ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ │ ├── anchor.js
│ │ │ │ │ │ │ │ └── link.js
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── anchor.png
│ │ │ │ │ │ │ └── hidpi
│ │ │ │ │ │ │ └── anchor.png
│ │ │ │ │ │ ├── magicline
│ │ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── hidpi
│ │ │ │ │ │ │ │ └── icon.png
│ │ │ │ │ │ │ └── icon.png
│ │ │ │ │ │ ├── pastefromword
│ │ │ │ │ │ │ └── filter
│ │ │ │ │ │ │ └── default.js
│ │ │ │ │ │ ├── scayt
│ │ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ │ ├── options.js
│ │ │ │ │ │ │ │ └── toolbar.css
│ │ │ │ │ │ │ ├── LICENSE.md
│ │ │ │ │ │ │ └── README.md
│ │ │ │ │ │ ├── specialchar
│ │ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ │ ├── lang
│ │ │ │ │ │ │ │ ├── ar.js
│ │ │ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ │ │ ├── cy.js
│ │ │ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ │ │ ├── el.js
│ │ │ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ │ │ ├── eo.js
│ │ │ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ │ │ ├── et.js
│ │ │ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ │ │ ├── fr-ca.js
│ │ │ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ │ │ ├── he.js
│ │ │ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ │ │ ├── ja.js
│ │ │ │ │ │ │ │ ├── km.js
│ │ │ │ │ │ │ │ ├── ku.js
│ │ │ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ │ │ ├── no.js
│ │ │ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ │ │ ├── pt-br.js
│ │ │ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ │ │ ├── si.js
│ │ │ │ │ │ │ │ ├── sk.js
│ │ │ │ │ │ │ │ ├── sl.js
│ │ │ │ │ │ │ │ ├── sq.js
│ │ │ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ │ │ ├── th.js
│ │ │ │ │ │ │ │ ├── _translationstatus.txt
│ │ │ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ │ │ ├── ug.js
│ │ │ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ │ │ ├── vi.js
│ │ │ │ │ │ │ │ ├── zh-cn.js
│ │ │ │ │ │ │ │ └── zh.js
│ │ │ │ │ │ │ └── specialchar.js
│ │ │ │ │ │ ├── table
│ │ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ │ └── table.js
│ │ │ │ │ │ ├── tabletools
│ │ │ │ │ │ │ └── dialogs
│ │ │ │ │ │ │ └── tableCell.js
│ │ │ │ │ │ └── wsc
│ │ │ │ │ │ ├── dialogs
│ │ │ │ │ │ │ ├── ciframe.html
│ │ │ │ │ │ │ ├── tmpFrameset.html
│ │ │ │ │ │ │ ├── tmp.html
│ │ │ │ │ │ │ ├── wsc.css
│ │ │ │ │ │ │ ├── wsc_ie.js
│ │ │ │ │ │ │ └── wsc.js
│ │ │ │ │ │ ├── LICENSE.md
│ │ │ │ │ │ └── README.md
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── skins
│ │ │ │ │ │ └── moono
│ │ │ │ │ │ ├── dialog.css
│ │ │ │ │ │ ├── dialog_ie7.css
│ │ │ │ │ │ ├── dialog_ie8.css
│ │ │ │ │ │ ├── dialog_ie.css
│ │ │ │ │ │ ├── dialog_iequirks.css
│ │ │ │ │ │ ├── dialog_opera.css
│ │ │ │ │ │ ├── editor.css
│ │ │ │ │ │ ├── editor_gecko.css
│ │ │ │ │ │ ├── editor_ie7.css
│ │ │ │ │ │ ├── editor_ie8.css
│ │ │ │ │ │ ├── editor_ie.css
│ │ │ │ │ │ ├── editor_iequirks.css
│ │ │ │ │ │ ├── icons_hidpi.png
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── arrow.png
│ │ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ │ ├── hidpi
│ │ │ │ │ │ │ │ ├── close.png
│ │ │ │ │ │ │ │ ├── lock-open.png
│ │ │ │ │ │ │ │ ├── lock.png
│ │ │ │ │ │ │ │ └── refresh.png
│ │ │ │ │ │ │ ├── lock-open.png
│ │ │ │ │ │ │ ├── lock.png
│ │ │ │ │ │ │ └── refresh.png
│ │ │ │ │ │ └── readme.md
│ │ │ │ │ └── styles.js
│ │ │ │ ├── colorpicker
│ │ │ │ │ ├── bootstrap-colorpicker.css
│ │ │ │ │ ├── bootstrap-colorpicker.js
│ │ │ │ │ ├── bootstrap-colorpicker.min.css
│ │ │ │ │ ├── bootstrap-colorpicker.min.js
│ │ │ │ │ └── img
│ │ │ │ │ ├── alpha-horizontal.png
│ │ │ │ │ ├── alpha.png
│ │ │ │ │ ├── hue-horizontal.png
│ │ │ │ │ ├── hue.png
│ │ │ │ │ └── saturation.png
│ │ │ │ ├── datatables
│ │ │ │ │ ├── dataTables.bootstrap.css
│ │ │ │ │ ├── dataTables.bootstrap.js
│ │ │ │ │ ├── dataTables.bootstrap.min.js
│ │ │ │ │ ├── extensions
│ │ │ │ │ │ ├── AutoFill
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── dataTables.autoFill.css
│ │ │ │ │ │ │ │ └── dataTables.autoFill.min.css
│ │ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ │ ├── columns.html
│ │ │ │ │ │ │ │ ├── complete-callback.html
│ │ │ │ │ │ │ │ ├── fill-both.html
│ │ │ │ │ │ │ │ ├── fill-horizontal.html
│ │ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ │ ├── scrolling.html
│ │ │ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ │ │ └── step-callback.html
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ └── filler.png
│ │ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ │ ├── dataTables.autoFill.js
│ │ │ │ │ │ │ │ └── dataTables.autoFill.min.js
│ │ │ │ │ │ │ └── Readme.txt
│ │ │ │ │ │ ├── ColReorder
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── dataTables.colReorder.css
│ │ │ │ │ │ │ │ └── dataTables.colReorder.min.css
│ │ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ │ ├── alt_insert.html
│ │ │ │ │ │ │ │ ├── col_filter.html
│ │ │ │ │ │ │ │ ├── colvis.html
│ │ │ │ │ │ │ │ ├── fixedcolumns.html
│ │ │ │ │ │ │ │ ├── fixedheader.html
│ │ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ │ ├── jqueryui.html
│ │ │ │ │ │ │ │ ├── new_init.html
│ │ │ │ │ │ │ │ ├── predefined.html
│ │ │ │ │ │ │ │ ├── realtime.html
│ │ │ │ │ │ │ │ ├── reset.html
│ │ │ │ │ │ │ │ ├── scrolling.html
│ │ │ │ │ │ │ │ ├── server_side.html
│ │ │ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ │ │ └── state_save.html
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ └── insert.png
│ │ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ │ ├── dataTables.colReorder.js
│ │ │ │ │ │ │ │ └── dataTables.colReorder.min.js
│ │ │ │ │ │ │ ├── License.txt
│ │ │ │ │ │ │ └── Readme.md
│ │ │ │ │ │ ├── ColVis
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── dataTables.colVis.css
│ │ │ │ │ │ │ │ ├── dataTables.colvis.jqueryui.css
│ │ │ │ │ │ │ │ └── dataTables.colVis.min.css
│ │ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ │ ├── button_order.html
│ │ │ │ │ │ │ │ ├── exclude_columns.html
│ │ │ │ │ │ │ │ ├── group_columns.html
│ │ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ │ ├── jqueryui.html
│ │ │ │ │ │ │ │ ├── mouseover.html
│ │ │ │ │ │ │ │ ├── new_init.html
│ │ │ │ │ │ │ │ ├── restore.html
│ │ │ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ │ │ ├── text.html
│ │ │ │ │ │ │ │ ├── title_callback.html
│ │ │ │ │ │ │ │ ├── two_tables.html
│ │ │ │ │ │ │ │ └── two_tables_identical.html
│ │ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ │ ├── dataTables.colVis.js
│ │ │ │ │ │ │ │ └── dataTables.colVis.min.js
│ │ │ │ │ │ │ ├── License.txt
│ │ │ │ │ │ │ └── Readme.md
│ │ │ │ │ │ ├── FixedColumns
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── dataTables.fixedColumns.css
│ │ │ │ │ │ │ │ └── dataTables.fixedColumns.min.css
│ │ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ │ │ │ ├── col_filter.html
│ │ │ │ │ │ │ │ ├── colvis.html
│ │ │ │ │ │ │ │ ├── css_size.html
│ │ │ │ │ │ │ │ ├── index_column.html
│ │ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ │ ├── left_right_columns.html
│ │ │ │ │ │ │ │ ├── right_column.html
│ │ │ │ │ │ │ │ ├── rowspan.html
│ │ │ │ │ │ │ │ ├── server-side-processing.html
│ │ │ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ │ │ ├── size_fixed.html
│ │ │ │ │ │ │ │ ├── size_fluid.html
│ │ │ │ │ │ │ │ └── two_columns.html
│ │ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ │ ├── dataTables.fixedColumns.js
│ │ │ │ │ │ │ │ └── dataTables.fixedColumns.min.js
│ │ │ │ │ │ │ ├── License.txt
│ │ │ │ │ │ │ └── Readme.md
│ │ │ │ │ │ ├── FixedHeader
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── dataTables.fixedHeader.css
│ │ │ │ │ │ │ │ └── dataTables.fixedHeader.min.css
│ │ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ │ ├── header_footer.html
│ │ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ │ │ ├── top_left_right.html
│ │ │ │ │ │ │ │ ├── two_tables.html
│ │ │ │ │ │ │ │ └── zIndexes.html
│ │ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ │ ├── dataTables.fixedHeader.js
│ │ │ │ │ │ │ │ └── dataTables.fixedHeader.min.js
│ │ │ │ │ │ │ └── Readme.txt
│ │ │ │ │ │ ├── KeyTable
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── dataTables.keyTable.css
│ │ │ │ │ │ │ │ └── dataTables.keyTable.min.css
│ │ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ │ ├── events.html
│ │ │ │ │ │ │ │ ├── html.html
│ │ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ │ ├── scrolling.html
│ │ │ │ │ │ │ │ └── simple.html
│ │ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ │ ├── dataTables.keyTable.js
│ │ │ │ │ │ │ │ └── dataTables.keyTable.min.js
│ │ │ │ │ │ │ └── Readme.txt
│ │ │ │ │ │ ├── Responsive
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── dataTables.responsive.css
│ │ │ │ │ │ │ │ └── dataTables.responsive.scss
│ │ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ │ ├── child-rows
│ │ │ │ │ │ │ │ │ ├── column-control.html
│ │ │ │ │ │ │ │ │ ├── custom-renderer.html
│ │ │ │ │ │ │ │ │ ├── disable-child-rows.html
│ │ │ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ │ │ ├── right-column.html
│ │ │ │ │ │ │ │ │ └── whole-row-control.html
│ │ │ │ │ │ │ │ ├── display-control
│ │ │ │ │ │ │ │ │ ├── auto.html
│ │ │ │ │ │ │ │ │ ├── classes.html
│ │ │ │ │ │ │ │ │ ├── complexHeader.html
│ │ │ │ │ │ │ │ │ ├── fixedHeader.html
│ │ │ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ │ │ └── init-classes.html
│ │ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ │ ├── initialisation
│ │ │ │ │ │ │ │ │ ├── ajax.html
│ │ │ │ │ │ │ │ │ ├── className.html
│ │ │ │ │ │ │ │ │ ├── default.html
│ │ │ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ │ │ ├── new.html
│ │ │ │ │ │ │ │ │ └── option.html
│ │ │ │ │ │ │ │ └── styling
│ │ │ │ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ │ │ │ ├── compact.html
│ │ │ │ │ │ │ │ ├── foundation.html
│ │ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ │ └── scrolling.html
│ │ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ │ ├── dataTables.responsive.js
│ │ │ │ │ │ │ │ └── dataTables.responsive.min.js
│ │ │ │ │ │ │ ├── License.txt
│ │ │ │ │ │ │ └── Readme.md
│ │ │ │ │ │ ├── Scroller
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ ├── dataTables.scroller.css
│ │ │ │ │ │ │ │ └── dataTables.scroller.min.css
│ │ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ │ ├── api_scrolling.html
│ │ │ │ │ │ │ │ ├── data
│ │ │ │ │ │ │ │ │ ├── 2500.txt
│ │ │ │ │ │ │ │ │ └── ssp.php
│ │ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ │ ├── large_js_source.html
│ │ │ │ │ │ │ │ ├── server-side_processing.html
│ │ │ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ │ │ └── state_saving.html
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ └── loading-background.png
│ │ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ │ ├── dataTables.scroller.js
│ │ │ │ │ │ │ │ └── dataTables.scroller.min.js
│ │ │ │ │ │ │ └── Readme.txt
│ │ │ │ │ │ └── TableTools
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── dataTables.tableTools.css
│ │ │ │ │ │ │ └── dataTables.tableTools.min.css
│ │ │ │ │ │ ├── examples
│ │ │ │ │ │ │ ├── ajax.html
│ │ │ │ │ │ │ ├── alter_buttons.html
│ │ │ │ │ │ │ ├── bootstrap.html
│ │ │ │ │ │ │ ├── button_text.html
│ │ │ │ │ │ │ ├── collection.html
│ │ │ │ │ │ │ ├── defaults.html
│ │ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ │ ├── jqueryui.html
│ │ │ │ │ │ │ ├── multi_instance.html
│ │ │ │ │ │ │ ├── multiple_tables.html
│ │ │ │ │ │ │ ├── new_init.html
│ │ │ │ │ │ │ ├── pdf_message.html
│ │ │ │ │ │ │ ├── plug-in.html
│ │ │ │ │ │ │ ├── select_column.html
│ │ │ │ │ │ │ ├── select_multi.html
│ │ │ │ │ │ │ ├── select_os.html
│ │ │ │ │ │ │ ├── select_single.html
│ │ │ │ │ │ │ ├── simple.html
│ │ │ │ │ │ │ └── swf_path.html
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── collection_hover.png
│ │ │ │ │ │ │ ├── collection.png
│ │ │ │ │ │ │ ├── copy_hover.png
│ │ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ │ ├── csv_hover.png
│ │ │ │ │ │ │ ├── csv.png
│ │ │ │ │ │ │ ├── pdf_hover.png
│ │ │ │ │ │ │ ├── pdf.png
│ │ │ │ │ │ │ ├── print_hover.png
│ │ │ │ │ │ │ ├── print.png
│ │ │ │ │ │ │ ├── psd
│ │ │ │ │ │ │ │ ├── collection.psd
│ │ │ │ │ │ │ │ ├── copy document.psd
│ │ │ │ │ │ │ │ ├── file_types.psd
│ │ │ │ │ │ │ │ └── printer.psd
│ │ │ │ │ │ │ ├── xls_hover.png
│ │ │ │ │ │ │ └── xls.png
│ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ ├── dataTables.tableTools.js
│ │ │ │ │ │ │ └── dataTables.tableTools.min.js
│ │ │ │ │ │ ├── Readme.md
│ │ │ │ │ │ └── swf
│ │ │ │ │ │ ├── copy_csv_xls_pdf.swf
│ │ │ │ │ │ └── copy_csv_xls.swf
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── sort_asc_disabled.png
│ │ │ │ │ │ ├── sort_asc.png
│ │ │ │ │ │ ├── sort_both.png
│ │ │ │ │ │ ├── sort_desc_disabled.png
│ │ │ │ │ │ └── sort_desc.png
│ │ │ │ │ ├── jquery.dataTables.css
│ │ │ │ │ ├── jquery.dataTables.js
│ │ │ │ │ ├── jquery.dataTables.min.css
│ │ │ │ │ ├── jquery.dataTables.min.js
│ │ │ │ │ └── jquery.dataTables_themeroller.css
│ │ │ │ ├── datepicker
│ │ │ │ │ ├── bootstrap-datepicker.js
│ │ │ │ │ ├── datepicker3.css
│ │ │ │ │ └── locales
│ │ │ │ │ ├── bootstrap-datepicker.ar.js
│ │ │ │ │ ├── bootstrap-datepicker.az.js
│ │ │ │ │ ├── bootstrap-datepicker.bg.js
│ │ │ │ │ ├── bootstrap-datepicker.ca.js
│ │ │ │ │ ├── bootstrap-datepicker.cs.js
│ │ │ │ │ ├── bootstrap-datepicker.cy.js
│ │ │ │ │ ├── bootstrap-datepicker.da.js
│ │ │ │ │ ├── bootstrap-datepicker.de.js
│ │ │ │ │ ├── bootstrap-datepicker.el.js
│ │ │ │ │ ├── bootstrap-datepicker.es.js
│ │ │ │ │ ├── bootstrap-datepicker.et.js
│ │ │ │ │ ├── bootstrap-datepicker.fa.js
│ │ │ │ │ ├── bootstrap-datepicker.fi.js
│ │ │ │ │ ├── bootstrap-datepicker.fr.js
│ │ │ │ │ ├── bootstrap-datepicker.gl.js
│ │ │ │ │ ├── bootstrap-datepicker.he.js
│ │ │ │ │ ├── bootstrap-datepicker.hr.js
│ │ │ │ │ ├── bootstrap-datepicker.hu.js
│ │ │ │ │ ├── bootstrap-datepicker.id.js
│ │ │ │ │ ├── bootstrap-datepicker.is.js
│ │ │ │ │ ├── bootstrap-datepicker.it.js
│ │ │ │ │ ├── bootstrap-datepicker.ja.js
│ │ │ │ │ ├── bootstrap-datepicker.ka.js
│ │ │ │ │ ├── bootstrap-datepicker.kk.js
│ │ │ │ │ ├── bootstrap-datepicker.kr.js
│ │ │ │ │ ├── bootstrap-datepicker.lt.js
│ │ │ │ │ ├── bootstrap-datepicker.lv.js
│ │ │ │ │ ├── bootstrap-datepicker.mk.js
│ │ │ │ │ ├── bootstrap-datepicker.ms.js
│ │ │ │ │ ├── bootstrap-datepicker.nb.js
│ │ │ │ │ ├── bootstrap-datepicker.nl-BE.js
│ │ │ │ │ ├── bootstrap-datepicker.nl.js
│ │ │ │ │ ├── bootstrap-datepicker.no.js
│ │ │ │ │ ├── bootstrap-datepicker.pl.js
│ │ │ │ │ ├── bootstrap-datepicker.pt-BR.js
│ │ │ │ │ ├── bootstrap-datepicker.pt.js
│ │ │ │ │ ├── bootstrap-datepicker.ro.js
│ │ │ │ │ ├── bootstrap-datepicker.rs.js
│ │ │ │ │ ├── bootstrap-datepicker.rs-latin.js
│ │ │ │ │ ├── bootstrap-datepicker.ru.js
│ │ │ │ │ ├── bootstrap-datepicker.sk.js
│ │ │ │ │ ├── bootstrap-datepicker.sl.js
│ │ │ │ │ ├── bootstrap-datepicker.sq.js
│ │ │ │ │ ├── bootstrap-datepicker.sv.js
│ │ │ │ │ ├── bootstrap-datepicker.sw.js
│ │ │ │ │ ├── bootstrap-datepicker.th.js
│ │ │ │ │ ├── bootstrap-datepicker.tr.js
│ │ │ │ │ ├── bootstrap-datepicker.ua.js
│ │ │ │ │ ├── bootstrap-datepicker.vi.js
│ │ │ │ │ ├── bootstrap-datepicker.zh-CN.js
│ │ │ │ │ └── bootstrap-datepicker.zh-TW.js
│ │ │ │ ├── daterangepicker
│ │ │ │ │ ├── daterangepicker-bs3.css
│ │ │ │ │ ├── daterangepicker.js
│ │ │ │ │ ├── moment.js
│ │ │ │ │ └── moment.min.js
│ │ │ │ ├── fastclick
│ │ │ │ │ ├── fastclick.js
│ │ │ │ │ └── fastclick.min.js
│ │ │ │ ├── flot
│ │ │ │ │ ├── excanvas.js
│ │ │ │ │ ├── excanvas.min.js
│ │ │ │ │ ├── jquery.colorhelpers.js
│ │ │ │ │ ├── jquery.colorhelpers.min.js
│ │ │ │ │ ├── jquery.flot.canvas.js
│ │ │ │ │ ├── jquery.flot.canvas.min.js
│ │ │ │ │ ├── jquery.flot.categories.js
│ │ │ │ │ ├── jquery.flot.categories.min.js
│ │ │ │ │ ├── jquery.flot.crosshair.js
│ │ │ │ │ ├── jquery.flot.crosshair.min.js
│ │ │ │ │ ├── jquery.flot.errorbars.js
│ │ │ │ │ ├── jquery.flot.errorbars.min.js
│ │ │ │ │ ├── jquery.flot.fillbetween.js
│ │ │ │ │ ├── jquery.flot.fillbetween.min.js
│ │ │ │ │ ├── jquery.flot.image.js
│ │ │ │ │ ├── jquery.flot.image.min.js
│ │ │ │ │ ├── jquery.flot.js
│ │ │ │ │ ├── jquery.flot.min.js
│ │ │ │ │ ├── jquery.flot.navigate.js
│ │ │ │ │ ├── jquery.flot.navigate.min.js
│ │ │ │ │ ├── jquery.flot.pie.js
│ │ │ │ │ ├── jquery.flot.pie.min.js
│ │ │ │ │ ├── jquery.flot.resize.js
│ │ │ │ │ ├── jquery.flot.resize.min.js
│ │ │ │ │ ├── jquery.flot.selection.js
│ │ │ │ │ ├── jquery.flot.selection.min.js
│ │ │ │ │ ├── jquery.flot.stack.js
│ │ │ │ │ ├── jquery.flot.stack.min.js
│ │ │ │ │ ├── jquery.flot.symbol.js
│ │ │ │ │ ├── jquery.flot.symbol.min.js
│ │ │ │ │ ├── jquery.flot.threshold.js
│ │ │ │ │ ├── jquery.flot.threshold.min.js
│ │ │ │ │ ├── jquery.flot.time.js
│ │ │ │ │ └── jquery.flot.time.min.js
│ │ │ │ ├── fullcalendar
│ │ │ │ │ ├── fullcalendar.css
│ │ │ │ │ ├── fullcalendar.js
│ │ │ │ │ ├── fullcalendar.min.css
│ │ │ │ │ ├── fullcalendar.min.js
│ │ │ │ │ └── fullcalendar.print.css
│ │ │ │ ├── iCheck
│ │ │ │ │ ├── all.css
│ │ │ │ │ ├── flat
│ │ │ │ │ │ ├── aero@2x.png
│ │ │ │ │ │ ├── aero.css
│ │ │ │ │ │ ├── aero.png
│ │ │ │ │ │ ├── _all.css
│ │ │ │ │ │ ├── blue@2x.png
│ │ │ │ │ │ ├── blue.css
│ │ │ │ │ │ ├── blue.png
│ │ │ │ │ │ ├── flat@2x.png
│ │ │ │ │ │ ├── flat.css
│ │ │ │ │ │ ├── flat.png
│ │ │ │ │ │ ├── green@2x.png
│ │ │ │ │ │ ├── green.css
│ │ │ │ │ │ ├── green.png
│ │ │ │ │ │ ├── grey@2x.png
│ │ │ │ │ │ ├── grey.css
│ │ │ │ │ │ ├── grey.png
│ │ │ │ │ │ ├── orange@2x.png
│ │ │ │ │ │ ├── orange.css
│ │ │ │ │ │ ├── orange.png
│ │ │ │ │ │ ├── pink@2x.png
│ │ │ │ │ │ ├── pink.css
│ │ │ │ │ │ ├── pink.png
│ │ │ │ │ │ ├── purple@2x.png
│ │ │ │ │ │ ├── purple.css
│ │ │ │ │ │ ├── purple.png
│ │ │ │ │ │ ├── red@2x.png
│ │ │ │ │ │ ├── red.css
│ │ │ │ │ │ ├── red.png
│ │ │ │ │ │ ├── yellow@2x.png
│ │ │ │ │ │ ├── yellow.css
│ │ │ │ │ │ └── yellow.png
│ │ │ │ │ ├── futurico
│ │ │ │ │ │ ├── futurico@2x.png
│ │ │ │ │ │ ├── futurico.css
│ │ │ │ │ │ └── futurico.png
│ │ │ │ │ ├── icheck.js
│ │ │ │ │ ├── icheck.min.js
│ │ │ │ │ ├── line
│ │ │ │ │ │ ├── aero.css
│ │ │ │ │ │ ├── _all.css
│ │ │ │ │ │ ├── blue.css
│ │ │ │ │ │ ├── green.css
│ │ │ │ │ │ ├── grey.css
│ │ │ │ │ │ ├── line@2x.png
│ │ │ │ │ │ ├── line.css
│ │ │ │ │ │ ├── line.png
│ │ │ │ │ │ ├── orange.css
│ │ │ │ │ │ ├── pink.css
│ │ │ │ │ │ ├── purple.css
│ │ │ │ │ │ ├── red.css
│ │ │ │ │ │ └── yellow.css
│ │ │ │ │ ├── minimal
│ │ │ │ │ │ ├── aero@2x.png
│ │ │ │ │ │ ├── aero.css
│ │ │ │ │ │ ├── aero.png
│ │ │ │ │ │ ├── _all.css
│ │ │ │ │ │ ├── blue@2x.png
│ │ │ │ │ │ ├── blue.css
│ │ │ │ │ │ ├── blue.png
│ │ │ │ │ │ ├── green@2x.png
│ │ │ │ │ │ ├── green.css
│ │ │ │ │ │ ├── green.png
│ │ │ │ │ │ ├── grey@2x.png
│ │ │ │ │ │ ├── grey.css
│ │ │ │ │ │ ├── grey.png
│ │ │ │ │ │ ├── minimal@2x.png
│ │ │ │ │ │ ├── minimal.css
│ │ │ │ │ │ ├── minimal.png
│ │ │ │ │ │ ├── orange@2x.png
│ │ │ │ │ │ ├── orange.css
│ │ │ │ │ │ ├── orange.png
│ │ │ │ │ │ ├── pink@2x.png
│ │ │ │ │ │ ├── pink.css
│ │ │ │ │ │ ├── pink.png
│ │ │ │ │ │ ├── purple@2x.png
│ │ │ │ │ │ ├── purple.css
│ │ │ │ │ │ ├── purple.png
│ │ │ │ │ │ ├── red@2x.png
│ │ │ │ │ │ ├── red.css
│ │ │ │ │ │ ├── red.png
│ │ │ │ │ │ ├── yellow@2x.png
│ │ │ │ │ │ ├── yellow.css
│ │ │ │ │ │ └── yellow.png
│ │ │ │ │ ├── polaris
│ │ │ │ │ │ ├── polaris@2x.png
│ │ │ │ │ │ ├── polaris.css
│ │ │ │ │ │ └── polaris.png
│ │ │ │ │ └── square
│ │ │ │ │ ├── aero@2x.png
│ │ │ │ │ ├── aero.css
│ │ │ │ │ ├── aero.png
│ │ │ │ │ ├── _all.css
│ │ │ │ │ ├── blue@2x.png
│ │ │ │ │ ├── blue.css
│ │ │ │ │ ├── blue.png
│ │ │ │ │ ├── green@2x.png
│ │ │ │ │ ├── green.css
│ │ │ │ │ ├── green.png
│ │ │ │ │ ├── grey@2x.png
│ │ │ │ │ ├── grey.css
│ │ │ │ │ ├── grey.png
│ │ │ │ │ ├── orange@2x.png
│ │ │ │ │ ├── orange.css
│ │ │ │ │ ├── orange.png
│ │ │ │ │ ├── pink@2x.png
│ │ │ │ │ ├── pink.css
│ │ │ │ │ ├── pink.png
│ │ │ │ │ ├── purple@2x.png
│ │ │ │ │ ├── purple.css
│ │ │ │ │ ├── purple.png
│ │ │ │ │ ├── red@2x.png
│ │ │ │ │ ├── red.css
│ │ │ │ │ ├── red.png
│ │ │ │ │ ├── square@2x.png
│ │ │ │ │ ├── square.css
│ │ │ │ │ ├── square.png
│ │ │ │ │ ├── yellow@2x.png
│ │ │ │ │ ├── yellow.css
│ │ │ │ │ └── yellow.png
│ │ │ │ ├── input-mask
│ │ │ │ │ ├── jquery.inputmask.date.extensions.js
│ │ │ │ │ ├── jquery.inputmask.extensions.js
│ │ │ │ │ ├── jquery.inputmask.js
│ │ │ │ │ ├── jquery.inputmask.numeric.extensions.js
│ │ │ │ │ ├── jquery.inputmask.phone.extensions.js
│ │ │ │ │ ├── jquery.inputmask.regex.extensions.js
│ │ │ │ │ └── phone-codes
│ │ │ │ │ ├── phone-be.json
│ │ │ │ │ ├── phone-codes.json
│ │ │ │ │ └── readme.txt
│ │ │ │ ├── ionslider
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── sprite-skin-flat.png
│ │ │ │ │ │ └── sprite-skin-nice.png
│ │ │ │ │ ├── ion.rangeSlider.css
│ │ │ │ │ ├── ion.rangeSlider.min.js
│ │ │ │ │ ├── ion.rangeSlider.skinFlat.css
│ │ │ │ │ └── ion.rangeSlider.skinNice.css
│ │ │ │ ├── jQuery
│ │ │ │ │ └── jQuery-2.1.4.min.js
│ │ │ │ ├── jQueryUI
│ │ │ │ │ ├── jquery-ui.js
│ │ │ │ │ └── jquery-ui.min.js
│ │ │ │ ├── jvectormap
│ │ │ │ │ ├── jquery-jvectormap-1.2.2.css
│ │ │ │ │ ├── jquery-jvectormap-1.2.2.min.js
│ │ │ │ │ └── jquery-jvectormap-world-mill-en.js
│ │ │ │ ├── knob
│ │ │ │ │ └── jquery.knob.js
│ │ │ │ ├── morris
│ │ │ │ │ ├── morris.css
│ │ │ │ │ ├── morris.js
│ │ │ │ │ └── morris.min.js
│ │ │ │ ├── pace
│ │ │ │ │ └── pace.js
│ │ │ │ ├── select2
│ │ │ │ │ ├── i18n
│ │ │ │ │ │ ├── az.js
│ │ │ │ │ │ ├── bg.js
│ │ │ │ │ │ ├── ca.js
│ │ │ │ │ │ ├── cs.js
│ │ │ │ │ │ ├── da.js
│ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ ├── et.js
│ │ │ │ │ │ ├── eu.js
│ │ │ │ │ │ ├── fa.js
│ │ │ │ │ │ ├── fi.js
│ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ ├── gl.js
│ │ │ │ │ │ ├── he.js
│ │ │ │ │ │ ├── hi.js
│ │ │ │ │ │ ├── hr.js
│ │ │ │ │ │ ├── hu.js
│ │ │ │ │ │ ├── id.js
│ │ │ │ │ │ ├── is.js
│ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ ├── ko.js
│ │ │ │ │ │ ├── lt.js
│ │ │ │ │ │ ├── lv.js
│ │ │ │ │ │ ├── mk.js
│ │ │ │ │ │ ├── nb.js
│ │ │ │ │ │ ├── nl.js
│ │ │ │ │ │ ├── pl.js
│ │ │ │ │ │ ├── pt-BR.js
│ │ │ │ │ │ ├── pt.js
│ │ │ │ │ │ ├── ro.js
│ │ │ │ │ │ ├── ru.js
│ │ │ │ │ │ ├── sk.js
│ │ │ │ │ │ ├── sr.js
│ │ │ │ │ │ ├── sv.js
│ │ │ │ │ │ ├── th.js
│ │ │ │ │ │ ├── tr.js
│ │ │ │ │ │ ├── uk.js
│ │ │ │ │ │ ├── vi.js
│ │ │ │ │ │ ├── zh-CN.js
│ │ │ │ │ │ └── zh-TW.js
│ │ │ │ │ ├── select2.css
│ │ │ │ │ ├── select2.full.js
│ │ │ │ │ ├── select2.full.min.js
│ │ │ │ │ ├── select2.js
│ │ │ │ │ ├── select2.min.css
│ │ │ │ │ └── select2.min.js
│ │ │ │ ├── slimScroll
│ │ │ │ │ ├── jquery.slimscroll.js
│ │ │ │ │ └── jquery.slimscroll.min.js
│ │ │ │ ├── sparkline
│ │ │ │ │ ├── jquery.sparkline.js
│ │ │ │ │ └── jquery.sparkline.min.js
│ │ │ │ └── timepicker
│ │ │ │ ├── bootstrap-timepicker.css
│ │ │ │ ├── bootstrap-timepicker.js
│ │ │ │ ├── bootstrap-timepicker.min.css
│ │ │ │ └── bootstrap-timepicker.min.js
│ │ │ ├── README.md
│ │ │ └── starter.html
│ │ ├── favicon.ico
│ │ ├── index.php
│ │ ├── robots.txt
│ │ └── web.config
│ ├── readme.md
│ ├── resources
│ │ ├── assets
│ │ │ ├── admin
│ │ │ │ ├── font
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── font-awesome.css
│ │ │ │ │ │ └── font-awesome.min.css
│ │ │ │ │ └── fonts
│ │ │ │ │ ├── FontAwesome.otf
│ │ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ │ └── fontawesome-webfont.woff2
│ │ │ │ ├── Images
│ │ │ │ │ ├── 225-54.gif
│ │ │ │ │ ├── 8800_110.gif
│ │ │ │ │ ├── Account_32-2.gif
│ │ │ │ │ ├── ads03.gif
│ │ │ │ │ ├── ajax_loader.gif
│ │ │ │ │ ├── area_link.gif
│ │ │ │ │ ├── arrow.gif
│ │ │ │ │ ├── arrowhead.jpg
│ │ │ │ │ ├── arrow_left.gif
│ │ │ │ │ ├── arrow_right.gif
│ │ │ │ │ ├── bag_close.gif
│ │ │ │ │ ├── bag_open.gif
│ │ │ │ │ ├── banner0.gif
│ │ │ │ │ ├── banner1.gif
│ │ │ │ │ ├── banner2.gif
│ │ │ │ │ ├── base1.gif
│ │ │ │ │ ├── basebg.gif
│ │ │ │ │ ├── base.gif
│ │ │ │ │ ├── basetbb.gif
│ │ │ │ │ ├── basetbg1.gif
│ │ │ │ │ ├── basetbg.gif
│ │ │ │ │ ├── bg_repx.gif
│ │ │ │ │ ├── bgx.jpg
│ │ │ │ │ ├── book_open.gif
│ │ │ │ │ ├── brand_1.gif
│ │ │ │ │ ├── brand.gif
│ │ │ │ │ ├── btn_close.gif
│ │ │ │ │ ├── btn_drop.gif
│ │ │ │ │ ├── btn_maximize.gif
│ │ │ │ │ ├── btn_minimize.gif
│ │ │ │ │ ├── button_bg.gif
│ │ │ │ │ ├── by_top.gif
│ │ │ │ │ ├── cart.jpg
│ │ │ │ │ ├── close.gif
│ │ │ │ │ ├── closeIcon.gif
│ │ │ │ │ ├── color_selecter.gif
│ │ │ │ │ ├── confirm.gif
│ │ │ │ │ ├── detail_botbg.jpg
│ │ │ │ │ ├── detail_footer.gif
│ │ │ │ │ ├── detail_header.gif
│ │ │ │ │ ├── dot.gif
│ │ │ │ │ ├── ecshop_logo.gif
│ │ │ │ │ ├── empty.gif
│ │ │ │ │ ├── error.gif
│ │ │ │ │ ├── filecheck.gif
│ │ │ │ │ ├── help03.gif
│ │ │ │ │ ├── help06.gif
│ │ │ │ │ ├── home_1.gif
│ │ │ │ │ ├── home.gif
│ │ │ │ │ ├── icon_account.gif
│ │ │ │ │ ├── icon_add.gif
│ │ │ │ │ ├── icon_copy.gif
│ │ │ │ │ ├── icon_docs.gif
│ │ │ │ │ ├── icon_drop.gif
│ │ │ │ │ ├── icon_edit.gif
│ │ │ │ │ ├── icon_js.gif
│ │ │ │ │ ├── icon_output.gif
│ │ │ │ │ ├── icon_priv.gif
│ │ │ │ │ ├── icon_search.gif
│ │ │ │ │ ├── icon_send_bonus.gif
│ │ │ │ │ ├── icon_title.gif
│ │ │ │ │ ├── icon_trash.gif
│ │ │ │ │ ├── icon_view.gif
│ │ │ │ │ ├── img_ser.jpg
│ │ │ │ │ ├── infoheader.gif
│ │ │ │ │ ├── information.gif
│ │ │ │ │ ├── line_1.gif
│ │ │ │ │ ├── line.gif
│ │ │ │ │ ├── loader.gif
│ │ │ │ │ ├── login03.gif
│ │ │ │ │ ├── login_line.gif
│ │ │ │ │ ├── login.png
│ │ │ │ │ ├── logo21.gif
│ │ │ │ │ ├── LOGO2.gif
│ │ │ │ │ ├── logo.gif
│ │ │ │ │ ├── lowerbody.jpg
│ │ │ │ │ ├── member_shop.gif
│ │ │ │ │ ├── menu_arrow.gif
│ │ │ │ │ ├── menu_minus.gif
│ │ │ │ │ ├── menu_plus.gif
│ │ │ │ │ ├── message.gif
│ │ │ │ │ ├── nav_03.gif
│ │ │ │ │ ├── nav_06.gif
│ │ │ │ │ ├── new_1.gif
│ │ │ │ │ ├── new.gif
│ │ │ │ │ ├── no.gif
│ │ │ │ │ ├── notice.gif
│ │ │ │ │ ├── num.gif
│ │ │ │ │ ├── online.swf
│ │ │ │ │ ├── online.wav
│ │ │ │ │ ├── picb2.gif
│ │ │ │ │ ├── picb.gif
│ │ │ │ │ ├── picb_hs.gif
│ │ │ │ │ ├── picc.gif
│ │ │ │ │ ├── picflag.gif
│ │ │ │ │ ├── picnoflag.gif
│ │ │ │ │ ├── sale_1.gif
│ │ │ │ │ ├── sale.gif
│ │ │ │ │ ├── shop_tel.gif
│ │ │ │ │ ├── sort_asc.gif
│ │ │ │ │ ├── sort_desc.gif
│ │ │ │ │ ├── stepnum.gif
│ │ │ │ │ ├── succ.gif
│ │ │ │ │ ├── tel1.gif
│ │ │ │ │ ├── tel2.gif
│ │ │ │ │ ├── th_bg.gif
│ │ │ │ │ ├── top_icon.gif
│ │ │ │ │ ├── top_loader.gif
│ │ │ │ │ ├── top_min.jpg
│ │ │ │ │ ├── typedot.gif
│ │ │ │ │ ├── typehome_1.gif
│ │ │ │ │ ├── typehome.gif
│ │ │ │ │ ├── warning.gif
│ │ │ │ │ ├── warning_small.gif
│ │ │ │ │ └── yes.gif
│ │ │ │ ├── Js
│ │ │ │ │ ├── ch-ui.admin.js
│ │ │ │ │ ├── common.js
│ │ │ │ │ ├── global.js
│ │ │ │ │ ├── jquery.js
│ │ │ │ │ ├── parsley.min.js
│ │ │ │ │ ├── transport.js
│ │ │ │ │ └── utils.js
│ │ │ │ └── Styles
│ │ │ │ ├── ch-ui.admin.css
│ │ │ │ ├── general.css
│ │ │ │ ├── index.css
│ │ │ │ ├── main.css
│ │ │ │ ├── member.css
│ │ │ │ ├── message.css
│ │ │ │ ├── other.css
│ │ │ │ ├── parsley.css
│ │ │ │ ├── style.css
│ │ │ │ └── topic.css
│ │ │ ├── home
│ │ │ │ ├── images
│ │ │ │ │ ├── 20120209D.png
│ │ │ │ │ ├── 20130415i.png
│ │ │ │ │ ├── acer4739.jpg
│ │ │ │ │ ├── acer.gif
│ │ │ │ │ ├── ad.jpg
│ │ │ │ │ ├── arrow.gif
│ │ │ │ │ ├── beian.gif
│ │ │ │ │ ├── bg1.png
│ │ │ │ │ ├── bg2.png
│ │ │ │ │ ├── bg_hotsale.gif
│ │ │ │ │ ├── bg_icons.png
│ │ │ │ │ ├── bg_tit_home.gif
│ │ │ │ │ ├── bg_xiala.png
│ │ │ │ │ ├── btn_check.jpg
│ │ │ │ │ ├── btn_continue.png
│ │ │ │ │ ├── btn_fillin.png
│ │ │ │ │ ├── canon.jpg
│ │ │ │ │ ├── cart_001.gif
│ │ │ │ │ ├── cart_goods1.jpg
│ │ │ │ │ ├── cart_goods2.jpg
│ │ │ │ │ ├── cart_goods3.jpg
│ │ │ │ │ ├── checkcode1.jpg
│ │ │ │ │ ├── checkcode2.jpg
│ │ │ │ │ ├── crazy1.jpg
│ │ │ │ │ ├── crazy2.jpg
│ │ │ │ │ ├── crazy3.jpg
│ │ │ │ │ ├── crazy4.jpg
│ │ │ │ │ ├── crazy5.jpg
│ │ │ │ │ ├── dell.gif
│ │ │ │ │ ├── desc1.jpg
│ │ │ │ │ ├── desc2.jpg
│ │ │ │ │ ├── desc3.jpg
│ │ │ │ │ ├── desc4.jpg
│ │ │ │ │ ├── desc5.jpg
│ │ │ │ │ ├── desc6.jpg
│ │ │ │ │ ├── desc7.jpg
│ │ │ │ │ ├── desc8.jpg
│ │ │ │ │ ├── desc9.jpg
│ │ │ │ │ ├── dlink.gif
│ │ │ │ │ ├── flow_bg.gif
│ │ │ │ │ ├── flow_bg.png
│ │ │ │ │ ├── fujitsu.jpg
│ │ │ │ │ ├── goods1.jpg
│ │ │ │ │ ├── goods2.jpg
│ │ │ │ │ ├── goods3.jpg
│ │ │ │ │ ├── goods4.jpg
│ │ │ │ │ ├── goods5.jpg
│ │ │ │ │ ├── goods6.jpg
│ │ │ │ │ ├── guess1.jpg
│ │ │ │ │ ├── guess2.jpg
│ │ │ │ │ ├── guess3.jpg
│ │ │ │ │ ├── holiday.jpg
│ │ │ │ │ ├── hot1.jpg
│ │ │ │ │ ├── hot2.jpg
│ │ │ │ │ ├── hot3.jpg
│ │ │ │ │ ├── hpG4.jpg
│ │ │ │ │ ├── hp.jpg
│ │ │ │ │ ├── icon_cologin.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── icon_promotion.png
│ │ │ │ │ ├── index_slide1.jpg
│ │ │ │ │ ├── index_slide2.jpg
│ │ │ │ │ ├── index_slide3.jpg
│ │ │ │ │ ├── index_slide4.jpg
│ │ │ │ │ ├── index_slide5.jpg
│ │ │ │ │ ├── index_slide6.jpg
│ │ │ │ │ ├── intel.jpg
│ │ │ │ │ ├── jdleft.png
│ │ │ │ │ ├── kexin.jpg
│ │ │ │ │ ├── lenove.jpg
│ │ │ │ │ ├── lh531.jpg
│ │ │ │ │ ├── list_hot1.jpg
│ │ │ │ │ ├── list_hot2.jpg
│ │ │ │ │ ├── list_hot3.jpg
│ │ │ │ │ ├── login_ad.jpg
│ │ │ │ │ ├── login_img.png
│ │ │ │ │ ├── login_word.png
│ │ │ │ │ ├── logo.png
│ │ │ │ │ ├── lottery.jpg
│ │ │ │ │ ├── new1.jpg
│ │ │ │ │ ├── new2.jpg
│ │ │ │ │ ├── new3.jpg
│ │ │ │ │ ├── newicon1.png
│ │ │ │ │ ├── newicon201301028.png
│ │ │ │ │ ├── newicon.png
│ │ │ │ │ ├── notebook.jpg
│ │ │ │ │ ├── one4.jpg
│ │ │ │ │ ├── one5.jpg
│ │ │ │ │ ├── order1.jpg
│ │ │ │ │ ├── order2.jpg
│ │ │ │ │ ├── order3.jpg
│ │ │ │ │ ├── order_btn.jpg
│ │ │ │ │ ├── order_disabled.png
│ │ │ │ │ ├── p-btns.png
│ │ │ │ │ ├── police.jpg
│ │ │ │ │ ├── preview_l1.jpg
│ │ │ │ │ ├── preview_l2.jpg
│ │ │ │ │ ├── preview_l3.jpg
│ │ │ │ │ ├── preview_l4.jpg
│ │ │ │ │ ├── preview_l5.jpg
│ │ │ │ │ ├── preview_l6.jpg
│ │ │ │ │ ├── preview_l7.jpg
│ │ │ │ │ ├── preview_l8.jpg
│ │ │ │ │ ├── preview_l9.jpg
│ │ │ │ │ ├── preview_m1.jpg
│ │ │ │ │ ├── preview_m2.jpg
│ │ │ │ │ ├── preview_m3.jpg
│ │ │ │ │ ├── preview_m4.jpg
│ │ │ │ │ ├── preview_m5.jpg
│ │ │ │ │ ├── preview_m6.jpg
│ │ │ │ │ ├── preview_m7.jpg
│ │ │ │ │ ├── preview_m8.jpg
│ │ │ │ │ ├── preview_m9.jpg
│ │ │ │ │ ├── preview_s1.jpg
│ │ │ │ │ ├── preview_s2.jpg
│ │ │ │ │ ├── preview_s3.jpg
│ │ │ │ │ ├── preview_s4.jpg
│ │ │ │ │ ├── preview_s5.jpg
│ │ │ │ │ ├── preview_s6.jpg
│ │ │ │ │ ├── preview_s7.jpg
│ │ │ │ │ ├── preview_s8.jpg
│ │ │ │ │ ├── preview_s9.jpg
│ │ │ │ │ ├── qinghuax2.jpg
│ │ │ │ │ ├── recommend1.jpg
│ │ │ │ │ ├── recommend2.jpg
│ │ │ │ │ ├── recommend3.jpg
│ │ │ │ │ ├── regist_img.png
│ │ │ │ │ ├── reg_mobile.png
│ │ │ │ │ ├── relate_view1.jpg
│ │ │ │ │ ├── relate_view2.jpg
│ │ │ │ │ ├── relate_view3.jpg
│ │ │ │ │ ├── relate_view4.jpg
│ │ │ │ │ ├── relate_view5.jpg
│ │ │ │ │ ├── samsung6800.jpg
│ │ │ │ │ ├── samsung.gif
│ │ │ │ │ ├── samsung.jpg
│ │ │ │ │ ├── sanguo.jpg
│ │ │ │ │ ├── scenic.jpg
│ │ │ │ │ ├── seagate.jpg
│ │ │ │ │ ├── sort_bg.png
│ │ │ │ │ ├── taohua.jpg
│ │ │ │ │ ├── tb_th.gif
│ │ │ │ │ ├── thinkpad e420.jpg
│ │ │ │ │ ├── tit_regist.jpg
│ │ │ │ │ ├── user1.gif
│ │ │ │ │ ├── user2.jpg
│ │ │ │ │ ├── user3.jpg
│ │ │ │ │ ├── view_list1.jpg
│ │ │ │ │ ├── view_list2.jpg
│ │ │ │ │ ├── view_list3.jpg
│ │ │ │ │ ├── viewsonic.jpg
│ │ │ │ │ ├── wulin.jpg
│ │ │ │ │ └── xin.png
│ │ │ │ ├── js
│ │ │ │ │ ├── cart1.js
│ │ │ │ │ ├── cart2.js
│ │ │ │ │ ├── goods.js
│ │ │ │ │ ├── header.js
│ │ │ │ │ ├── home.js
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── jquery-1.8.3.min.js
│ │ │ │ │ ├── jqzoom-core.js
│ │ │ │ │ └── list.js
│ │ │ │ └── style
│ │ │ │ ├── address.css
│ │ │ │ ├── base.css
│ │ │ │ ├── bottomnav.css
│ │ │ │ ├── cart.css
│ │ │ │ ├── common.css
│ │ │ │ ├── fillin.css
│ │ │ │ ├── footer.css
│ │ │ │ ├── global.css
│ │ │ │ ├── goods.css
│ │ │ │ ├── header.css
│ │ │ │ ├── home.css
│ │ │ │ ├── index.css
│ │ │ │ ├── jqzoom.css
│ │ │ │ ├── list.css
│ │ │ │ ├── login.css
│ │ │ │ ├── order.css
│ │ │ │ ├── success.css
│ │ │ │ └── user.css
│ │ │ └── sass
│ │ │ └── app.scss
│ │ ├── lang
│ │ │ └── en
│ │ │ ├── auth.php
│ │ │ ├── pagination.php
│ │ │ ├── passwords.php
│ │ │ └── validation.php
│ │ ├── org
│ │ │ ├── code
│ │ │ │ ├── Code.class.php
│ │ │ │ └── consola.ttf
│ │ │ ├── datetimepicker
│ │ │ │ ├── datepicker-zh_cn.js
│ │ │ │ ├── images
│ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ │ │ ├── jquery-1.7.2.min.js
│ │ │ │ ├── jquery-ui-1.9.2.custom.min.css
│ │ │ │ ├── jquery-ui-1.9.2.custom.min.js
│ │ │ │ ├── time
│ │ │ │ │ ├── i18n
│ │ │ │ │ │ ├── jquery-ui-timepicker-addon-i18n.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-addon-i18n.min.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-af.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-am.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-bg.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-ca.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-cs.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-da.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-de.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-el.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-es.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-et.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-eu.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-fa.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-fi.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-fr.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-gl.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-he.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-hr.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-hu.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-id.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-it.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-ja.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-ko.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-lt.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-lv.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-nl.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-no.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-pl.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-pt-BR.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-pt.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-ro.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-ru.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-sk.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-sl.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-sr-RS.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-sr-YU.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-sv.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-th.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-tr.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-uk.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-vi.js
│ │ │ │ │ │ ├── jquery-ui-timepicker-zh-CN.js
│ │ │ │ │ │ └── jquery-ui-timepicker-zh-TW.js
│ │ │ │ │ ├── jquery-ui-timepicker-addon.min.css
│ │ │ │ │ └── jquery-ui-timepicker-addon.min.js
│ │ │ │ └── 浣跨敤璇存槑.txt
│ │ │ ├── jqueryui
│ │ │ │ ├── external
│ │ │ │ │ └── jquery
│ │ │ │ │ └── jquery.js
│ │ │ │ ├── images
│ │ │ │ │ ├── ui-icons_444444_256x240.png
│ │ │ │ │ ├── ui-icons_555555_256x240.png
│ │ │ │ │ ├── ui-icons_777620_256x240.png
│ │ │ │ │ ├── ui-icons_777777_256x240.png
│ │ │ │ │ ├── ui-icons_cc0000_256x240.png
│ │ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ │ ├── index.html
│ │ │ │ ├── jquery-ui.css
│ │ │ │ ├── jquery-ui.js
│ │ │ │ ├── jquery-ui.min.css
│ │ │ │ ├── jquery-ui.min.js
│ │ │ │ ├── jquery-ui.structure.css
│ │ │ │ ├── jquery-ui.structure.min.css
│ │ │ │ ├── jquery-ui.theme.css
│ │ │ │ └── jquery-ui.theme.min.css
│ │ │ ├── layer
│ │ │ │ ├── extend
│ │ │ │ │ └── layer.ext.js
│ │ │ │ ├── layer.js
│ │ │ │ └── skin
│ │ │ │ ├── default
│ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ └── loading-2.gif
│ │ │ │ ├── layer.css
│ │ │ │ └── layer.ext.css
│ │ │ ├── ueditor
│ │ │ │ ├── dialogs
│ │ │ │ │ ├── anchor
│ │ │ │ │ │ └── anchor.html
│ │ │ │ │ ├── attachment
│ │ │ │ │ │ ├── attachment.css
│ │ │ │ │ │ ├── attachment.html
│ │ │ │ │ │ ├── attachment.js
│ │ │ │ │ │ ├── fileTypeImages
│ │ │ │ │ │ │ ├── icon_chm.gif
│ │ │ │ │ │ │ ├── icon_default.png
│ │ │ │ │ │ │ ├── icon_doc.gif
│ │ │ │ │ │ │ ├── icon_exe.gif
│ │ │ │ │ │ │ ├── icon_jpg.gif
│ │ │ │ │ │ │ ├── icon_mp3.gif
│ │ │ │ │ │ │ ├── icon_mv.gif
│ │ │ │ │ │ │ ├── icon_pdf.gif
│ │ │ │ │ │ │ ├── icon_ppt.gif
│ │ │ │ │ │ │ ├── icon_psd.gif
│ │ │ │ │ │ │ ├── icon_rar.gif
│ │ │ │ │ │ │ ├── icon_txt.gif
│ │ │ │ │ │ │ └── icon_xls.gif
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── alignicon.gif
│ │ │ │ │ │ ├── alignicon.png
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── background
│ │ │ │ │ │ ├── background.css
│ │ │ │ │ │ ├── background.html
│ │ │ │ │ │ ├── background.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── charts
│ │ │ │ │ │ ├── chart.config.js
│ │ │ │ │ │ ├── charts.css
│ │ │ │ │ │ ├── charts.html
│ │ │ │ │ │ ├── charts.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── charts0.png
│ │ │ │ │ │ ├── charts1.png
│ │ │ │ │ │ ├── charts2.png
│ │ │ │ │ │ ├── charts3.png
│ │ │ │ │ │ ├── charts4.png
│ │ │ │ │ │ └── charts5.png
│ │ │ │ │ ├── emotion
│ │ │ │ │ │ ├── emotion.css
│ │ │ │ │ │ ├── emotion.html
│ │ │ │ │ │ ├── emotion.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ ├── bface.gif
│ │ │ │ │ │ ├── cface.gif
│ │ │ │ │ │ ├── fface.gif
│ │ │ │ │ │ ├── jxface2.gif
│ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ ├── tface.gif
│ │ │ │ │ │ ├── wface.gif
│ │ │ │ │ │ └── yface.gif
│ │ │ │ │ ├── gmap
│ │ │ │ │ │ └── gmap.html
│ │ │ │ │ ├── help
│ │ │ │ │ │ ├── help.css
│ │ │ │ │ │ ├── help.html
│ │ │ │ │ │ └── help.js
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── image.css
│ │ │ │ │ │ ├── image.html
│ │ │ │ │ │ ├── image.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── alignicon.jpg
│ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ └── success.png
│ │ │ │ │ ├── insertframe
│ │ │ │ │ │ └── insertframe.html
│ │ │ │ │ ├── internal.js
│ │ │ │ │ ├── link
│ │ │ │ │ │ └── link.html
│ │ │ │ │ ├── map
│ │ │ │ │ │ ├── map.html
│ │ │ │ │ │ └── show.html
│ │ │ │ │ ├── music
│ │ │ │ │ │ ├── music.css
│ │ │ │ │ │ ├── music.html
│ │ │ │ │ │ └── music.js
│ │ │ │ │ ├── preview
│ │ │ │ │ │ └── preview.html
│ │ │ │ │ ├── scrawl
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── addimg.png
│ │ │ │ │ │ │ ├── brush.png
│ │ │ │ │ │ │ ├── delimgH.png
│ │ │ │ │ │ │ ├── delimg.png
│ │ │ │ │ │ │ ├── emptyH.png
│ │ │ │ │ │ │ ├── empty.png
│ │ │ │ │ │ │ ├── eraser.png
│ │ │ │ │ │ │ ├── redoH.png
│ │ │ │ │ │ │ ├── redo.png
│ │ │ │ │ │ │ ├── scaleH.png
│ │ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ │ ├── size.png
│ │ │ │ │ │ │ ├── undoH.png
│ │ │ │ │ │ │ └── undo.png
│ │ │ │ │ │ ├── scrawl.css
│ │ │ │ │ │ ├── scrawl.html
│ │ │ │ │ │ └── scrawl.js
│ │ │ │ │ ├── searchreplace
│ │ │ │ │ │ ├── searchreplace.html
│ │ │ │ │ │ └── searchreplace.js
│ │ │ │ │ ├── snapscreen
│ │ │ │ │ │ └── snapscreen.html
│ │ │ │ │ ├── spechars
│ │ │ │ │ │ ├── spechars.html
│ │ │ │ │ │ └── spechars.js
│ │ │ │ │ ├── table
│ │ │ │ │ │ ├── dragicon.png
│ │ │ │ │ │ ├── edittable.css
│ │ │ │ │ │ ├── edittable.html
│ │ │ │ │ │ ├── edittable.js
│ │ │ │ │ │ ├── edittd.html
│ │ │ │ │ │ └── edittip.html
│ │ │ │ │ ├── template
│ │ │ │ │ │ ├── config.js
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── bg.gif
│ │ │ │ │ │ │ ├── pre0.png
│ │ │ │ │ │ │ ├── pre1.png
│ │ │ │ │ │ │ ├── pre2.png
│ │ │ │ │ │ │ ├── pre3.png
│ │ │ │ │ │ │ └── pre4.png
│ │ │ │ │ │ ├── template.css
│ │ │ │ │ │ ├── template.html
│ │ │ │ │ │ └── template.js
│ │ │ │ │ ├── video
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── bg.png
│ │ │ │ │ │ │ ├── center_focus.jpg
│ │ │ │ │ │ │ ├── file-icons.gif
│ │ │ │ │ │ │ ├── file-icons.png
│ │ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ │ ├── image.png
│ │ │ │ │ │ │ ├── left_focus.jpg
│ │ │ │ │ │ │ ├── none_focus.jpg
│ │ │ │ │ │ │ ├── progress.png
│ │ │ │ │ │ │ ├── right_focus.jpg
│ │ │ │ │ │ │ ├── success.gif
│ │ │ │ │ │ │ └── success.png
│ │ │ │ │ │ ├── video.css
│ │ │ │ │ │ ├── video.html
│ │ │ │ │ │ └── video.js
│ │ │ │ │ ├── webapp
│ │ │ │ │ │ └── webapp.html
│ │ │ │ │ └── wordimage
│ │ │ │ │ ├── fClipboard_ueditor.swf
│ │ │ │ │ ├── imageUploader.swf
│ │ │ │ │ ├── tangram.js
│ │ │ │ │ ├── wordimage.html
│ │ │ │ │ └── wordimage.js
│ │ │ │ ├── index.html
│ │ │ │ ├── lang
│ │ │ │ │ ├── en
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── addimage.png
│ │ │ │ │ │ ├── alldeletebtnhoverskin.png
│ │ │ │ │ │ ├── alldeletebtnupskin.png
│ │ │ │ │ │ ├── background.png
│ │ │ │ │ │ ├── button.png
│ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ ├── deletedisable.png
│ │ │ │ │ │ ├── deleteenable.png
│ │ │ │ │ │ ├── listbackground.png
│ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ ├── rotateleftdisable.png
│ │ │ │ │ │ ├── rotateleftenable.png
│ │ │ │ │ │ ├── rotaterightdisable.png
│ │ │ │ │ │ ├── rotaterightenable.png
│ │ │ │ │ │ └── upload.png
│ │ │ │ │ └── zh-cn
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── copy.png
│ │ │ │ │ │ ├── localimage.png
│ │ │ │ │ │ ├── music.png
│ │ │ │ │ │ └── upload.png
│ │ │ │ │ └── zh-cn.js
│ │ │ │ ├── php
│ │ │ │ │ ├── action_crawler.php
│ │ │ │ │ ├── action_list.php
│ │ │ │ │ ├── action_upload.php
│ │ │ │ │ ├── config.json
│ │ │ │ │ ├── controller.php
│ │ │ │ │ └── Uploader.class.php
│ │ │ │ ├── themes
│ │ │ │ │ ├── default
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── ueditor.css
│ │ │ │ │ │ │ └── ueditor.min.css
│ │ │ │ │ │ ├── dialogbase.css
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── anchor.gif
│ │ │ │ │ │ ├── arrow_down.png
│ │ │ │ │ │ ├── arrow.png
│ │ │ │ │ │ ├── arrow_up.png
│ │ │ │ │ │ ├── button-bg.gif
│ │ │ │ │ │ ├── cancelbutton.gif
│ │ │ │ │ │ ├── charts.png
│ │ │ │ │ │ ├── cursor_h.gif
│ │ │ │ │ │ ├── cursor_h.png
│ │ │ │ │ │ ├── cursor_v.gif
│ │ │ │ │ │ ├── cursor_v.png
│ │ │ │ │ │ ├── dialog-title-bg.png
│ │ │ │ │ │ ├── filescan.png
│ │ │ │ │ │ ├── highlighted.gif
│ │ │ │ │ │ ├── icons-all.gif
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── icons.png
│ │ │ │ │ │ ├── loaderror.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── lock.gif
│ │ │ │ │ │ ├── neweditor-tab-bg.png
│ │ │ │ │ │ ├── pagebreak.gif
│ │ │ │ │ │ ├── scale.png
│ │ │ │ │ │ ├── sortable.png
│ │ │ │ │ │ ├── spacer.gif
│ │ │ │ │ │ ├── sparator_v.png
│ │ │ │ │ │ ├── table-cell-align.png
│ │ │ │ │ │ ├── tangram-colorpicker.png
│ │ │ │ │ │ ├── toolbar_bg.png
│ │ │ │ │ │ ├── unhighlighted.gif
│ │ │ │ │ │ ├── upload.png
│ │ │ │ │ │ ├── videologo.gif
│ │ │ │ │ │ ├── word.gif
│ │ │ │ │ │ └── wordpaste.png
│ │ │ │ │ └── iframe.css
│ │ │ │ ├── third-party
│ │ │ │ │ ├── codemirror
│ │ │ │ │ │ ├── codemirror.css
│ │ │ │ │ │ └── codemirror.js
│ │ │ │ │ ├── highcharts
│ │ │ │ │ │ ├── adapters
│ │ │ │ │ │ │ ├── mootools-adapter.js
│ │ │ │ │ │ │ ├── mootools-adapter.src.js
│ │ │ │ │ │ │ ├── prototype-adapter.js
│ │ │ │ │ │ │ ├── prototype-adapter.src.js
│ │ │ │ │ │ │ ├── standalone-framework.js
│ │ │ │ │ │ │ └── standalone-framework.src.js
│ │ │ │ │ │ ├── highcharts.js
│ │ │ │ │ │ ├── highcharts-more.js
│ │ │ │ │ │ ├── highcharts-more.src.js
│ │ │ │ │ │ ├── highcharts.src.js
│ │ │ │ │ │ ├── modules
│ │ │ │ │ │ │ ├── annotations.js
│ │ │ │ │ │ │ ├── annotations.src.js
│ │ │ │ │ │ │ ├── canvas-tools.js
│ │ │ │ │ │ │ ├── canvas-tools.src.js
│ │ │ │ │ │ │ ├── data.js
│ │ │ │ │ │ │ ├── data.src.js
│ │ │ │ │ │ │ ├── drilldown.js
│ │ │ │ │ │ │ ├── drilldown.src.js
│ │ │ │ │ │ │ ├── exporting.js
│ │ │ │ │ │ │ ├── exporting.src.js
│ │ │ │ │ │ │ ├── funnel.js
│ │ │ │ │ │ │ ├── funnel.src.js
│ │ │ │ │ │ │ ├── heatmap.js
│ │ │ │ │ │ │ ├── heatmap.src.js
│ │ │ │ │ │ │ ├── map.js
│ │ │ │ │ │ │ ├── map.src.js
│ │ │ │ │ │ │ ├── no-data-to-display.js
│ │ │ │ │ │ │ └── no-data-to-display.src.js
│ │ │ │ │ │ └── themes
│ │ │ │ │ │ ├── dark-blue.js
│ │ │ │ │ │ ├── dark-green.js
│ │ │ │ │ │ ├── gray.js
│ │ │ │ │ │ ├── grid.js
│ │ │ │ │ │ └── skies.js
│ │ │ │ │ ├── jquery-1.10.2.js
│ │ │ │ │ ├── jquery-1.10.2.min.js
│ │ │ │ │ ├── jquery-1.10.2.min.map
│ │ │ │ │ ├── snapscreen
│ │ │ │ │ │ └── UEditorSnapscreen.exe
│ │ │ │ │ ├── SyntaxHighlighter
│ │ │ │ │ │ ├── shCoreDefault.css
│ │ │ │ │ │ └── shCore.js
│ │ │ │ │ ├── video-js
│ │ │ │ │ │ ├── font
│ │ │ │ │ │ │ ├── vjs.eot
│ │ │ │ │ │ │ ├── vjs.svg
│ │ │ │ │ │ │ ├── vjs.ttf
│ │ │ │ │ │ │ └── vjs.woff
│ │ │ │ │ │ ├── video.dev.js
│ │ │ │ │ │ ├── video.js
│ │ │ │ │ │ ├── video-js.css
│ │ │ │ │ │ ├── video-js.min.css
│ │ │ │ │ │ └── video-js.swf
│ │ │ │ │ ├── webuploader
│ │ │ │ │ │ ├── Uploader.swf
│ │ │ │ │ │ ├── webuploader.css
│ │ │ │ │ │ ├── webuploader.custom.js
│ │ │ │ │ │ ├── webuploader.custom.min.js
│ │ │ │ │ │ ├── webuploader.flashonly.js
│ │ │ │ │ │ ├── webuploader.flashonly.min.js
│ │ │ │ │ │ ├── webuploader.html5only.js
│ │ │ │ │ │ ├── webuploader.html5only.min.js
│ │ │ │ │ │ ├── webuploader.js
│ │ │ │ │ │ ├── webuploader.min.js
│ │ │ │ │ │ ├── webuploader.withoutimage.js
│ │ │ │ │ │ └── webuploader.withoutimage.min.js
│ │ │ │ │ └── zeroclipboard
│ │ │ │ │ ├── ZeroClipboard.js
│ │ │ │ │ ├── ZeroClipboard.min.js
│ │ │ │ │ └── ZeroClipboard.swf
│ │ │ │ ├── ueditor.all.js
│ │ │ │ ├── ueditor.all.min.js
│ │ │ │ ├── ueditor.config.js
│ │ │ │ ├── ueditor.parse.js
│ │ │ │ └── ueditor.parse.min.js
│ │ │ └── uploadify
│ │ │ ├── Change Log.txt
│ │ │ ├── check-exists.php
│ │ │ ├── index.php
│ │ │ ├── jquery.uploadify.js
│ │ │ ├── jquery.uploadify.min.js
│ │ │ ├── license.txt
│ │ │ ├── uploadify-cancel.png
│ │ │ ├── uploadify.css
│ │ │ ├── uploadify.php
│ │ │ └── uploadify.swf
│ │ ├── views
│ │ │ ├── admin
│ │ │ │ ├── admin
│ │ │ │ │ ├── add.blade.php
│ │ │ │ │ ├── edit.blade.php
│ │ │ │ │ └── lst.blade.php
│ │ │ │ ├── attribute
│ │ │ │ │ ├── add.blade.php
│ │ │ │ │ └── lst.blade.php
│ │ │ │ ├── category
│ │ │ │ │ ├── add.blade.php
│ │ │ │ │ ├── edit.blade.php
│ │ │ │ │ └── lst.blade.php
│ │ │ │ ├── goods
│ │ │ │ │ ├── add.blade.php
│ │ │ │ │ ├── create.blade.php
│ │ │ │ │ ├── edit.blade.php
│ │ │ │ │ ├── lst.blade.php
│ │ │ │ │ └── recycle.blade.php
│ │ │ │ ├── goodsnumber
│ │ │ │ │ └── lst.blade.php
│ │ │ │ ├── index.blade.php
│ │ │ │ ├── login
│ │ │ │ │ └── login.blade.php
│ │ │ │ ├── main.blade.php
│ │ │ │ ├── memberlevel
│ │ │ │ │ ├── add.blade.php
│ │ │ │ │ ├── edit.blade.php
│ │ │ │ │ └── lst.blade.php
│ │ │ │ ├── menu.blade.php
│ │ │ │ ├── privilege
│ │ │ │ │ ├── add.blade.php
│ │ │ │ │ ├── edit.blade.php
│ │ │ │ │ └── lst.blade.php
│ │ │ │ ├── role
│ │ │ │ │ ├── add.blade.php
│ │ │ │ │ ├── edit.blade.php
│ │ │ │ │ ├── lst.blade.php
│ │ │ │ │ └── test.html
│ │ │ │ ├── top.blade.php
│ │ │ │ └── type
│ │ │ │ ├── add.blade.php
│ │ │ │ ├── edit.blade.php
│ │ │ │ └── lst.blade.php
│ │ │ ├── emails
│ │ │ │ └── reminder.blade.php
│ │ │ ├── errors
│ │ │ │ ├── 503.blade.php
│ │ │ │ └── errors.blade.php
│ │ │ ├── home
│ │ │ │ ├── cart
│ │ │ │ │ ├── index.blade.php
│ │ │ │ │ └── order.blade.php
│ │ │ │ ├── index
│ │ │ │ │ ├── goods.blade.php
│ │ │ │ │ └── index.blade.php
│ │ │ │ ├── member
│ │ │ │ │ ├── login.blade.php
│ │ │ │ │ └── regist.blade.php
│ │ │ │ ├── order
│ │ │ │ │ └── success.blade.php
│ │ │ │ └── search
│ │ │ │ ├── key_search.blade.php
│ │ │ │ └── search.blade.php
│ │ │ ├── home.blade.php
│ │ │ ├── layouts
│ │ │ │ ├── admin.blade.php
│ │ │ │ ├── app.blade.php
│ │ │ │ ├── header.blade.php
│ │ │ │ └── home.blade.php
│ │ │ ├── vendor
│ │ │ └── welcome.blade.php
│ │ └── 妯℃澘
│ │ └── 妯℃澘
│ │ ├── 鍓嶅彴
│ │ │ ├── address.html
│ │ │ ├── bottomnav.html
│ │ │ ├── flow1.html
│ │ │ ├── flow2.html
│ │ │ ├── flow3.html
│ │ │ ├── footer.html
│ │ │ ├── goods.html
│ │ │ ├── header.html
│ │ │ ├── images
│ │ │ │ ├── 20120209D.png
│ │ │ │ ├── 20130415i.png
│ │ │ │ ├── acer4739.jpg
│ │ │ │ ├── acer.gif
│ │ │ │ ├── ad.jpg
│ │ │ │ ├── arrow.gif
│ │ │ │ ├── beian.gif
│ │ │ │ ├── bg1.png
│ │ │ │ ├── bg2.png
│ │ │ │ ├── bg_hotsale.gif
│ │ │ │ ├── bg_icons.png
│ │ │ │ ├── bg_tit_home.gif
│ │ │ │ ├── bg_xiala.png
│ │ │ │ ├── btn_check.jpg
│ │ │ │ ├── btn_continue.png
│ │ │ │ ├── btn_fillin.png
│ │ │ │ ├── canon.jpg
│ │ │ │ ├── cart_001.gif
│ │ │ │ ├── cart_goods1.jpg
│ │ │ │ ├── cart_goods2.jpg
│ │ │ │ ├── cart_goods3.jpg
│ │ │ │ ├── checkcode1.jpg
│ │ │ │ ├── checkcode2.jpg
│ │ │ │ ├── crazy1.jpg
│ │ │ │ ├── crazy2.jpg
│ │ │ │ ├── crazy3.jpg
│ │ │ │ ├── crazy4.jpg
│ │ │ │ ├── crazy5.jpg
│ │ │ │ ├── dell.gif
│ │ │ │ ├── desc1.jpg
│ │ │ │ ├── desc2.jpg
│ │ │ │ ├── desc3.jpg
│ │ │ │ ├── desc4.jpg
│ │ │ │ ├── desc5.jpg
│ │ │ │ ├── desc6.jpg
│ │ │ │ ├── desc7.jpg
│ │ │ │ ├── desc8.jpg
│ │ │ │ ├── desc9.jpg
│ │ │ │ ├── dlink.gif
│ │ │ │ ├── flow_bg.gif
│ │ │ │ ├── flow_bg.png
│ │ │ │ ├── fujitsu.jpg
│ │ │ │ ├── goods1.jpg
│ │ │ │ ├── goods2.jpg
│ │ │ │ ├── goods3.jpg
│ │ │ │ ├── goods4.jpg
│ │ │ │ ├── goods5.jpg
│ │ │ │ ├── goods6.jpg
│ │ │ │ ├── guess1.jpg
│ │ │ │ ├── guess2.jpg
│ │ │ │ ├── guess3.jpg
│ │ │ │ ├── holiday.jpg
│ │ │ │ ├── hot1.jpg
│ │ │ │ ├── hot2.jpg
│ │ │ │ ├── hot3.jpg
│ │ │ │ ├── hpG4.jpg
│ │ │ │ ├── hp.jpg
│ │ │ │ ├── icon_cologin.png
│ │ │ │ ├── icon.png
│ │ │ │ ├── icon_promotion.png
│ │ │ │ ├── index_slide1.jpg
│ │ │ │ ├── index_slide2.jpg
│ │ │ │ ├── index_slide3.jpg
│ │ │ │ ├── index_slide4.jpg
│ │ │ │ ├── index_slide5.jpg
│ │ │ │ ├── index_slide6.jpg
│ │ │ │ ├── intel.jpg
│ │ │ │ ├── jdleft.png
│ │ │ │ ├── kexin.jpg
│ │ │ │ ├── lenove.jpg
│ │ │ │ ├── lh531.jpg
│ │ │ │ ├── list_hot1.jpg
│ │ │ │ ├── list_hot2.jpg
│ │ │ │ ├── list_hot3.jpg
│ │ │ │ ├── login_ad.jpg
│ │ │ │ ├── login_img.png
│ │ │ │ ├── login_word.png
│ │ │ │ ├── logo.png
│ │ │ │ ├── lottery.jpg
│ │ │ │ ├── new1.jpg
│ │ │ │ ├── new2.jpg
│ │ │ │ ├── new3.jpg
│ │ │ │ ├── newicon1.png
│ │ │ │ ├── newicon201301028.png
│ │ │ │ ├── newicon.png
│ │ │ │ ├── notebook.jpg
│ │ │ │ ├── one4.jpg
│ │ │ │ ├── one5.jpg
│ │ │ │ ├── order1.jpg
│ │ │ │ ├── order2.jpg
│ │ │ │ ├── order3.jpg
│ │ │ │ ├── order_btn.jpg
│ │ │ │ ├── order_disabled.png
│ │ │ │ ├── p-btns.png
│ │ │ │ ├── police.jpg
│ │ │ │ ├── preview_l1.jpg
│ │ │ │ ├── preview_l2.jpg
│ │ │ │ ├── preview_l3.jpg
│ │ │ │ ├── preview_l4.jpg
│ │ │ │ ├── preview_l5.jpg
│ │ │ │ ├── preview_l6.jpg
│ │ │ │ ├── preview_l7.jpg
│ │ │ │ ├── preview_l8.jpg
│ │ │ │ ├── preview_l9.jpg
│ │ │ │ ├── preview_m1.jpg
│ │ │ │ ├── preview_m2.jpg
│ │ │ │ ├── preview_m3.jpg
│ │ │ │ ├── preview_m4.jpg
│ │ │ │ ├── preview_m5.jpg
│ │ │ │ ├── preview_m6.jpg
│ │ │ │ ├── preview_m7.jpg
│ │ │ │ ├── preview_m8.jpg
│ │ │ │ ├── preview_m9.jpg
│ │ │ │ ├── preview_s1.jpg
│ │ │ │ ├── preview_s2.jpg
│ │ │ │ ├── preview_s3.jpg
│ │ │ │ ├── preview_s4.jpg
│ │ │ │ ├── preview_s5.jpg
│ │ │ │ ├── preview_s6.jpg
│ │ │ │ ├── preview_s7.jpg
│ │ │ │ ├── preview_s8.jpg
│ │ │ │ ├── preview_s9.jpg
│ │ │ │ ├── qinghuax2.jpg
│ │ │ │ ├── recommend1.jpg
│ │ │ │ ├── recommend2.jpg
│ │ │ │ ├── recommend3.jpg
│ │ │ │ ├── regist_img.png
│ │ │ │ ├── reg_mobile.png
│ │ │ │ ├── relate_view1.jpg
│ │ │ │ ├── relate_view2.jpg
│ │ │ │ ├── relate_view3.jpg
│ │ │ │ ├── relate_view4.jpg
│ │ │ │ ├── relate_view5.jpg
│ │ │ │ ├── samsung6800.jpg
│ │ │ │ ├── samsung.gif
│ │ │ │ ├── samsung.jpg
│ │ │ │ ├── sanguo.jpg
│ │ │ │ ├── scenic.jpg
│ │ │ │ ├── seagate.jpg
│ │ │ │ ├── sort_bg.png
│ │ │ │ ├── taohua.jpg
│ │ │ │ ├── tb_th.gif
│ │ │ │ ├── thinkpad e420.jpg
│ │ │ │ ├── tit_regist.jpg
│ │ │ │ ├── user1.gif
│ │ │ │ ├── user2.jpg
│ │ │ │ ├── user3.jpg
│ │ │ │ ├── view_list1.jpg
│ │ │ │ ├── view_list2.jpg
│ │ │ │ ├── view_list3.jpg
│ │ │ │ ├── viewsonic.jpg
│ │ │ │ ├── wulin.jpg
│ │ │ │ └── xin.png
│ │ │ ├── index.html
│ │ │ ├── js
│ │ │ │ ├── cart1.js
│ │ │ │ ├── cart2.js
│ │ │ │ ├── goods.js
│ │ │ │ ├── header.js
│ │ │ │ ├── home.js
│ │ │ │ ├── index.js
│ │ │ │ ├── jquery-1.8.3.min.js
│ │ │ │ ├── jqzoom-core.js
│ │ │ │ └── list.js
│ │ │ ├── list.html
│ │ │ ├── login.html
│ │ │ ├── order.html
│ │ │ ├── regist.html
│ │ │ ├── style
│ │ │ │ ├── address.css
│ │ │ │ ├── base.css
│ │ │ │ ├── bottomnav.css
│ │ │ │ ├── cart.css
│ │ │ │ ├── common.css
│ │ │ │ ├── fillin.css
│ │ │ │ ├── footer.css
│ │ │ │ ├── global.css
│ │ │ │ ├── goods.css
│ │ │ │ ├── header.css
│ │ │ │ ├── home.css
│ │ │ │ ├── index.css
│ │ │ │ ├── jqzoom.css
│ │ │ │ ├── list.css
│ │ │ │ ├── login.css
│ │ │ │ ├── order.css
│ │ │ │ ├── success.css
│ │ │ │ └── user.css
│ │ │ └── user.html
│ │ └── 鍚庡彴
│ │ ├── brandAdd.html
│ │ ├── brandList.html
│ │ ├── categoryAdd.html
│ │ ├── categoryEdit.html
│ │ ├── categoryList.html
│ │ ├── goodsAdd.html
│ │ ├── goodsEdit.html
│ │ ├── goodsList.html
│ │ ├── goodsTrash.html
│ │ ├── goodsView.html
│ │ ├── Images
│ │ │ ├── 225-54.gif
│ │ │ ├── 8800_110.gif
│ │ │ ├── Account_32-2.gif
│ │ │ ├── ads03.gif
│ │ │ ├── ajax_loader.gif
│ │ │ ├── area_link.gif
│ │ │ ├── arrow.gif
│ │ │ ├── arrowhead.jpg
│ │ │ ├── arrow_left.gif
│ │ │ ├── arrow_right.gif
│ │ │ ├── bag_close.gif
│ │ │ ├── bag_open.gif
│ │ │ ├── banner0.gif
│ │ │ ├── banner1.gif
│ │ │ ├── banner2.gif
│ │ │ ├── base1.gif
│ │ │ ├── basebg.gif
│ │ │ ├── base.gif
│ │ │ ├── basetbb.gif
│ │ │ ├── basetbg1.gif
│ │ │ ├── basetbg.gif
│ │ │ ├── bg_repx.gif
│ │ │ ├── bgx.jpg
│ │ │ ├── book_open.gif
│ │ │ ├── brand_1.gif
│ │ │ ├── brand.gif
│ │ │ ├── btn_close.gif
│ │ │ ├── btn_drop.gif
│ │ │ ├── btn_maximize.gif
│ │ │ ├── btn_minimize.gif
│ │ │ ├── button_bg.gif
│ │ │ ├── by_top.gif
│ │ │ ├── cart.jpg
│ │ │ ├── close.gif
│ │ │ ├── closeIcon.gif
│ │ │ ├── color_selecter.gif
│ │ │ ├── confirm.gif
│ │ │ ├── detail_botbg.jpg
│ │ │ ├── detail_footer.gif
│ │ │ ├── detail_header.gif
│ │ │ ├── dot.gif
│ │ │ ├── ecshop_logo.gif
│ │ │ ├── empty.gif
│ │ │ ├── error.gif
│ │ │ ├── filecheck.gif
│ │ │ ├── help03.gif
│ │ │ ├── help06.gif
│ │ │ ├── home_1.gif
│ │ │ ├── home.gif
│ │ │ ├── icon_account.gif
│ │ │ ├── icon_add.gif
│ │ │ ├── icon_copy.gif
│ │ │ ├── icon_docs.gif
│ │ │ ├── icon_drop.gif
│ │ │ ├── icon_edit.gif
│ │ │ ├── icon_js.gif
│ │ │ ├── icon_output.gif
│ │ │ ├── icon_priv.gif
│ │ │ ├── icon_search.gif
│ │ │ ├── icon_send_bonus.gif
│ │ │ ├── icon_title.gif
│ │ │ ├── icon_trash.gif
│ │ │ ├── icon_view.gif
│ │ │ ├── img_ser.jpg
│ │ │ ├── infoheader.gif
│ │ │ ├── information.gif
│ │ │ ├── line_1.gif
│ │ │ ├── line.gif
│ │ │ ├── loader.gif
│ │ │ ├── login03.gif
│ │ │ ├── login_line.gif
│ │ │ ├── login.png
│ │ │ ├── logo21.gif
│ │ │ ├── LOGO2.gif
│ │ │ ├── logo.gif
│ │ │ ├── lowerbody.jpg
│ │ │ ├── member_shop.gif
│ │ │ ├── menu_arrow.gif
│ │ │ ├── menu_minus.gif
│ │ │ ├── menu_plus.gif
│ │ │ ├── message.gif
│ │ │ ├── nav_03.gif
│ │ │ ├── nav_06.gif
│ │ │ ├── new_1.gif
│ │ │ ├── new.gif
│ │ │ ├── no.gif
│ │ │ ├── notice.gif
│ │ │ ├── num.gif
│ │ │ ├── online.swf
│ │ │ ├── online.wav
│ │ │ ├── picb2.gif
│ │ │ ├── picb.gif
│ │ │ ├── picb_hs.gif
│ │ │ ├── picc.gif
│ │ │ ├── picflag.gif
│ │ │ ├── picnoflag.gif
│ │ │ ├── sale_1.gif
│ │ │ ├── sale.gif
│ │ │ ├── shop_tel.gif
│ │ │ ├── sort_asc.gif
│ │ │ ├── sort_desc.gif
│ │ │ ├── stepnum.gif
│ │ │ ├── succ.gif
│ │ │ ├── tel1.gif
│ │ │ ├── tel2.gif
│ │ │ ├── th_bg.gif
│ │ │ ├── top_icon.gif
│ │ │ ├── top_loader.gif
│ │ │ ├── top_min.jpg
│ │ │ ├── typedot.gif
│ │ │ ├── typehome_1.gif
│ │ │ ├── typehome.gif
│ │ │ ├── warning.gif
│ │ │ ├── warning_small.gif
│ │ │ └── yes.gif
│ │ ├── index.html
│ │ ├── Js
│ │ │ ├── common.js
│ │ │ ├── global.js
│ │ │ ├── transport.js
│ │ │ └── utils.js
│ │ ├── login.html
│ │ ├── main.html
│ │ ├── menu.html
│ │ ├── Styles
│ │ │ ├── general.css
│ │ │ ├── index.css
│ │ │ ├── main.css
│ │ │ ├── member.css
│ │ │ ├── message.css
│ │ │ ├── other.css
│ │ │ ├── style.css
│ │ │ └── topic.css
│ │ └── top.html
│ ├── storage
│ │ ├── app
│ │ │ └── public
│ │ ├── framework
│ │ │ ├── cache
│ │ │ │ ├── 87
│ │ │ │ │ └── 52
│ │ │ │ │ └── 8752fd1541ea50c894fcb28f4bee1c87ca2ecaab
│ │ │ │ └── c2
│ │ │ │ └── 97
│ │ │ │ └── c297121f028a43d0584d36897c55a381df373d1f
│ │ │ ├── sessions
│ │ │ │ └── f303b34fec71d12fa20788ea80b66a6e01fd5ea2
│ │ │ └── views
│ │ │ ├── 0399415c91850a0f3148c7152662a1c9ca2803f2.php
│ │ │ ├── 03cc235e7b7b6d507e2a10dbf486cac573e48628.php
│ │ │ ├── 04acdbf6dbcf29977343bcbe101edc038ad5a935.php
│ │ │ ├── 0b8f727154468b5faa29a61de3f05b44381493d5.php
│ │ │ ├── 1304e996343d90037b7b1086f1b814e7ac585a08.php
│ │ │ ├── 1b47a0ae49608d2726e18a87fcc51550f8405b72.php
│ │ │ ├── 26073be21e3a6c60c169f2934da45c51c468e38e.php
│ │ │ ├── 2d90f85b9fd2f31910771989e9e7fb9c2fee494f.php
│ │ │ ├── 318c99a8d972faa3f75c8bd5a5481e65ff551c20.php
│ │ │ ├── 3a2459978fc302fc22a430bfc540710969a9c5cb.php
│ │ │ ├── 44e0301e502a3d5e656aa7d8b139b394735d07ba.php
│ │ │ ├── 46178711e4e85a773abddab1af04885ca5e5613b.php
│ │ │ ├── 50209a09e892cd9d4732ab7dcbadd52dc902ab83.php
│ │ │ ├── 5526ffd9dbfa97d7e63d3f681d2507d917d00fe0.php
│ │ │ ├── 5547a2059ba3e337481b5ec24b819d77b94d7213.php
│ │ │ ├── 55c45ee61df340a30c1d973b7e6cc832658fe482.php
│ │ │ ├── 55d7005191ef4ec519830470f71a085311e5dd83.php
│ │ │ ├── 569ccf9919bdb309343bdda31dcbb2305080da5b.php
│ │ │ ├── 5862a96748bacbf9f524ef85ce02b79170901ec5.php
│ │ │ ├── 5a4e0a6463aa8fb439f410de3c3175d42397713c.php
│ │ │ ├── 5b50d5f80e197d82c054d2fe73774ea8c911e0ac.php
│ │ │ ├── 5c759ae0137610e0b46bd77f703842f2641c7523.php
│ │ │ ├── 62ae807247b71256199bb06c496022a426c8c48b.php
│ │ │ ├── 638a5392d124f44963beea90e7c32f909917878e.php
│ │ │ ├── 662e7962b5a0b5bfd063820ed59ec15e076dc74a.php
│ │ │ ├── 71c237f7a374e3692a8d290e0af35033dc5bd4ea.php
│ │ │ ├── 71d199ec17fb13f890134a728efab9b96017043f.php
│ │ │ ├── 75f075f81dbeca1bc0b919ce7943f0011adcc1fa.php
│ │ │ ├── 7f63748553baf358f476655e87705852efb2fdc3.php
│ │ │ ├── a4cf14d6612f4cc09820491b3b43da1ba38c3c0d.php
│ │ │ ├── a7c4c775dc872ab9933fb674c24288a6d8d40b67.php
│ │ │ ├── b97f47f8aac03b44909196e7b1c51adc57667821.php
│ │ │ ├── b9eadc4f01c123dda0b395a9016df04465f9d48d.php
│ │ │ ├── ba4486a86366b17c5422d772f89cf7b28f68f785.php
│ │ │ ├── c1eaae149230be582d3b8e40c94b22532f18cd80.php
│ │ │ ├── c5d094d244f811e38081304c2abecaf4300d7358.php
│ │ │ ├── c8cbb86bbcad2e841765c7a7bf0c04be86004aa2.php
│ │ │ ├── cb50b151a8af3b6654006d076be74a7049ea81f7.php
│ │ │ ├── d17915afb269a0fad96b705d4d00c704a53af8da.php
│ │ │ ├── d1cccd3db00629a6e8cbb11e3166e0ca2df47281.php
│ │ │ ├── d36c4c163f803d08512d74b3b8544b27b322469b.php
│ │ │ ├── d829fdc225b28f35a86a88869a4696f8e39c8d7f.php
│ │ │ ├── da1af49821572a29a78e7706b47bd59872303ab1.php
│ │ │ ├── da47379a62214c5e3f8b9f593605e025978a8530.php
│ │ │ ├── e3271fc4ba59fe9c9b50bb7c9a4998926f75ba96.php
│ │ │ ├── e93e16cbab9dc42296bee32f852a1e0c02bd702c.php
│ │ │ ├── eb9cf9775dca2a7ff9c87712c5f5aff355324334.php
│ │ │ ├── f250e4dfb5104e879a184c37d530a84a08ae48c2.php
│ │ │ └── f2bc143fcd25c3acabdc8838940397902a8153d8.php
│ │ └── logs
│ │ └── laravel.log
│ ├── tests
│ │ ├── ExampleTest.php
│ │ └── TestCase.php
│ ├── uploads
│ │ ├── 20160516000516185.jpg
│ │ ├── 20160516000734315.jpg
│ │ ├── 20160516000851910.jpg
│ │ ├── 20160516001345523.jpg
│ │ ├── 20160516155745722.jpg
│ │ ├── 20160516160036118.jpg
│ │ ├── 20160516160332570.jpg
│ │ ├── 20160517173056563.jpg
│ │ ├── 20160517174807177.jpg
│ │ ├── 20160519122627742.jpg
│ │ ├── 20160519123100390.jpg
│ │ ├── 20160519123323269.jpg
│ │ ├── 20160519143608500.jpg
│ │ ├── 20160531164442239.jpg
│ │ ├── 20160531164606935.jpg
│ │ ├── Goods
│ │ │ ├── 20160516001345325.jpg
│ │ │ ├── 20160516001345453.jpg
│ │ │ ├── 20160516001345473.jpg
│ │ │ ├── 20160516154343537.jpg
│ │ │ ├── 20160516155745504.jpg
│ │ │ ├── 20160516155745894.jpg
│ │ │ ├── 20160516155745984.jpg
│ │ │ ├── 20160516160036193.jpg
│ │ │ ├── 20160516160036421.jpg
│ │ │ ├── 20160516160036625.jpg
│ │ │ ├── 20160516160332298.jpg
│ │ │ ├── 20160516160332799.jpg
│ │ │ ├── 20160516160332824.jpg
│ │ │ ├── 20160517201016299.jpg
│ │ │ ├── 20160517201016935.jpg
│ │ │ ├── 20160517201516327.jpg
│ │ │ ├── 20160517201516705.jpg
│ │ │ ├── 20160517202339100.jpg
│ │ │ ├── 20160517202339240.jpg
│ │ │ ├── 20160517203533603.jpg
│ │ │ ├── 20160517203533926.jpg
│ │ │ ├── 20160517214122999.jpg
│ │ │ ├── 20160517214917205.jpg
│ │ │ ├── 20160517215251156.jpg
│ │ │ ├── 20160517215251398.jpg
│ │ │ ├── 20160519122627324.jpg
│ │ │ ├── 20160519122627922.jpg
│ │ │ ├── 20160519123100788.jpg
│ │ │ ├── 20160519123100843.jpg
│ │ │ ├── 20160519123323252.jpg
│ │ │ ├── 20160519123323270.jpg
│ │ │ ├── 20160519123323635.jpg
│ │ │ ├── 20160519143608514.jpg
│ │ │ ├── 20160519143608879.jpg
│ │ │ ├── 20160519144710447.jpg
│ │ │ ├── 20160519144710964.jpg
│ │ │ ├── 20160531164442501.jpg
│ │ │ ├── 20160531164442663.jpg
│ │ │ ├── 20160531164606430.jpg
│ │ │ ├── thumb_0_20160516001345325.jpg
│ │ │ ├── thumb_0_20160516001345453.jpg
│ │ │ ├── thumb_0_20160516001345473.jpg
│ │ │ ├── thumb_0_20160516154343537.jpg
│ │ │ ├── thumb_0_20160516154343712.jpg
│ │ │ ├── thumb_0_20160516155745504.jpg
│ │ │ ├── thumb_0_20160516155745894.jpg
│ │ │ ├── thumb_0_20160516155745984.jpg
│ │ │ ├── thumb_0_20160516160036193.jpg
│ │ │ ├── thumb_0_20160516160036421.jpg
│ │ │ ├── thumb_0_20160516160036625.jpg
│ │ │ ├── thumb_0_20160516160332298.jpg
│ │ │ ├── thumb_0_20160516160332799.jpg
│ │ │ ├── thumb_0_20160516160332824.jpg
│ │ │ ├── thumb_0_20160517201016299.jpg
│ │ │ ├── thumb_0_20160517201016935.jpg
│ │ │ ├── thumb_0_20160517201516327.jpg
│ │ │ ├── thumb_0_20160517201516705.jpg
│ │ │ ├── thumb_0_20160517202339100.jpg
│ │ │ ├── thumb_0_20160517202339240.jpg
│ │ │ ├── thumb_0_20160517203533603.jpg
│ │ │ ├── thumb_0_20160517203533926.jpg
│ │ │ ├── thumb_0_20160517214122999.jpg
│ │ │ ├── thumb_0_20160517214917205.jpg
│ │ │ ├── thumb_0_20160517215251156.jpg
│ │ │ ├── thumb_0_20160517215251398.jpg
│ │ │ ├── thumb_0_20160519122627324.jpg
│ │ │ ├── thumb_0_20160519122627922.jpg
│ │ │ ├── thumb_0_20160519123100788.jpg
│ │ │ ├── thumb_0_20160519123100843.jpg
│ │ │ ├── thumb_0_20160519123323252.jpg
│ │ │ ├── thumb_0_20160519123323270.jpg
│ │ │ ├── thumb_0_20160519123323635.jpg
│ │ │ ├── thumb_0_20160519143608514.jpg
│ │ │ ├── thumb_0_20160519143608879.jpg
│ │ │ ├── thumb_0_20160519144710447.jpg
│ │ │ ├── thumb_0_20160519144710964.jpg
│ │ │ ├── thumb_0_20160531164442501.jpg
│ │ │ ├── thumb_0_20160531164442663.jpg
│ │ │ └── thumb_0_20160531164606430.jpg
│ │ ├── thumb_0_20160516000516185.jpg
│ │ ├── thumb_0_20160516000734315.jpg
│ │ ├── thumb_0_20160516000851910.jpg
│ │ ├── thumb_0_20160516001345523.jpg
│ │ ├── thumb_0_20160516155745722.jpg
│ │ ├── thumb_0_20160516160036118.jpg
│ │ ├── thumb_0_20160516160332570.jpg
│ │ ├── thumb_0_20160517173056563.jpg
│ │ ├── thumb_0_20160517174807177.jpg
│ │ ├── thumb_0_20160519122627742.jpg
│ │ ├── thumb_0_20160519123100390.jpg
│ │ ├── thumb_0_20160519123323269.jpg
│ │ ├── thumb_0_20160519143608500.jpg
│ │ ├── thumb_0_20160531164442239.jpg
│ │ └── thumb_0_20160531164606935.jpg
│ └── vendor
│ ├── autoload.php
│ ├── bin
│ │ ├── php-parse
│ │ ├── phpunit
│ │ └── psysh
│ ├── classpreloader
│ │ └── classpreloader
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ └── src
│ │ ├── ClassList.php
│ │ ├── ClassLoader.php
│ │ ├── ClassNode.php
│ │ ├── ClassPreloader.php
│ │ ├── Config.php
│ │ ├── Exceptions
│ │ │ ├── DirConstantException.php
│ │ │ ├── FileConstantException.php
│ │ │ ├── StrictTypesException.php
│ │ │ └── VisitorExceptionInterface.php
│ │ ├── Factory.php
│ │ └── Parser
│ │ ├── AbstractNodeVisitor.php
│ │ ├── DirVisitor.php
│ │ ├── FileVisitor.php
│ │ ├── NodeTraverser.php
│ │ └── StrictTypesVisitor.php
│ ├── composer
│ │ ├── autoload_classmap.php
│ │ ├── autoload_files.php
│ │ ├── autoload_namespaces.php
│ │ ├── autoload_psr4.php
│ │ ├── autoload_real.php
│ │ ├── ClassLoader.php
│ │ ├── installed.json
│ │ └── LICENSE
│ ├── dnoegel
│ │ └── php-xdg-base-dir
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ └── Xdg.php
│ │ └── tests
│ │ └── XdgTest.php
│ ├── doctrine
│ │ ├── inflector
│ │ │ ├── composer.json
│ │ │ ├── lib
│ │ │ │ └── Doctrine
│ │ │ │ └── Common
│ │ │ │ └── Inflector
│ │ │ │ └── Inflector.php
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ └── tests
│ │ │ └── Doctrine
│ │ │ └── Tests
│ │ │ ├── Common
│ │ │ │ └── Inflector
│ │ │ │ └── InflectorTest.php
│ │ │ ├── DoctrineTestCase.php
│ │ │ └── TestInit.php
│ │ └── instantiator
│ │ ├── composer.json
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── phpmd.xml.dist
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ └── Doctrine
│ │ │ └── Instantiator
│ │ │ ├── Exception
│ │ │ │ ├── ExceptionInterface.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ └── UnexpectedValueException.php
│ │ │ ├── InstantiatorInterface.php
│ │ │ └── Instantiator.php
│ │ └── tests
│ │ └── DoctrineTest
│ │ ├── InstantiatorPerformance
│ │ │ └── InstantiatorPerformanceEvent.php
│ │ ├── InstantiatorTest
│ │ │ ├── Exception
│ │ │ │ ├── InvalidArgumentExceptionTest.php
│ │ │ │ └── UnexpectedValueExceptionTest.php
│ │ │ └── InstantiatorTest.php
│ │ └── InstantiatorTestAsset
│ │ ├── AbstractClassAsset.php
│ │ ├── ArrayObjectAsset.php
│ │ ├── ExceptionAsset.php
│ │ ├── FinalExceptionAsset.php
│ │ ├── PharAsset.php
│ │ ├── PharExceptionAsset.php
│ │ ├── SerializableArrayObjectAsset.php
│ │ ├── SimpleSerializableAsset.php
│ │ ├── SimpleTraitAsset.php
│ │ ├── UnCloneableAsset.php
│ │ ├── UnserializeExceptionArrayObjectAsset.php
│ │ ├── WakeUpNoticesAsset.php
│ │ └── XMLReaderAsset.php
│ ├── fzaninotto
│ │ └── faker
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── Makefile
│ │ ├── phpunit.xml.dist
│ │ ├── readme.md
│ │ ├── src
│ │ │ ├── autoload.php
│ │ │ └── Faker
│ │ │ ├── Calculator
│ │ │ │ ├── Iban.php
│ │ │ │ └── Luhn.php
│ │ │ ├── DefaultGenerator.php
│ │ │ ├── Documentor.php
│ │ │ ├── Factory.php
│ │ │ ├── Generator.php
│ │ │ ├── Guesser
│ │ │ │ └── Name.php
│ │ │ ├── ORM
│ │ │ │ ├── CakePHP
│ │ │ │ │ ├── ColumnTypeGuesser.php
│ │ │ │ │ ├── EntityPopulator.php
│ │ │ │ │ └── Populator.php
│ │ │ │ ├── Doctrine
│ │ │ │ │ ├── ColumnTypeGuesser.php
│ │ │ │ │ ├── EntityPopulator.php
│ │ │ │ │ └── Populator.php
│ │ │ │ ├── Mandango
│ │ │ │ │ ├── ColumnTypeGuesser.php
│ │ │ │ │ ├── EntityPopulator.php
│ │ │ │ │ └── Populator.php
│ │ │ │ ├── Propel
│ │ │ │ │ ├── ColumnTypeGuesser.php
│ │ │ │ │ ├── EntityPopulator.php
│ │ │ │ │ └── Populator.php
│ │ │ │ ├── Propel2
│ │ │ │ │ ├── ColumnTypeGuesser.php
│ │ │ │ │ ├── EntityPopulator.php
│ │ │ │ │ └── Populator.php
│ │ │ │ └── Spot
│ │ │ │ ├── ColumnTypeGuesser.php
│ │ │ │ ├── EntityPopulator.php
│ │ │ │ └── Populator.php
│ │ │ ├── Provider
│ │ │ │ ├── Address.php
│ │ │ │ ├── ar_JO
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── ar_SA
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── at_AT
│ │ │ │ │ └── Payment.php
│ │ │ │ ├── Barcode.php
│ │ │ │ ├── Base.php
│ │ │ │ ├── bg_BG
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── Biased.php
│ │ │ │ ├── bn_BD
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Utils.php
│ │ │ │ ├── Color.php
│ │ │ │ ├── Company.php
│ │ │ │ ├── cs_CZ
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── DateTime.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── da_DK
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── DateTime.php
│ │ │ │ ├── de_AT
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── de_CH
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── de_DE
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── el_GR
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── en_AU
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── en_CA
│ │ │ │ │ ├── Address.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── en_GB
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── en_IN
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── en_NZ
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── en_PH
│ │ │ │ │ ├── Address.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── en_SG
│ │ │ │ │ ├── Address.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── en_UG
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── en_US
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── en_ZA
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── es_AR
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── es_ES
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── es_PE
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── es_VE
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── fa_IR
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── fi_FI
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── File.php
│ │ │ │ ├── fr_BE
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── fr_CA
│ │ │ │ │ ├── Address.php
│ │ │ │ │ └── Person.php
│ │ │ │ ├── fr_CH
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── fr_FR
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── he_IL
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── hr_HR
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── hu_HU
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── hy_AM
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── id_ID
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── Image.php
│ │ │ │ ├── Internet.php
│ │ │ │ ├── is_IS
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── it_CH
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── it_IT
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── ja_JP
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── ka_GE
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── DateTime.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── kk_KZ
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── ko_KR
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── Lorem.php
│ │ │ │ ├── lt_LT
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── lv_LV
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── me_ME
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── Miscellaneous.php
│ │ │ │ ├── mn_MN
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── nb_NO
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── ne_NP
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── nl_BE
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── nl_NL
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── Payment.php
│ │ │ │ ├── Person.php
│ │ │ │ ├── PhoneNumber.php
│ │ │ │ ├── pl_PL
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── pt_BR
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── check_digit.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── pt_PT
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── ro_MD
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── ro_RO
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── ru_RU
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── sk_SK
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── sl_SI
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── sr_Cyrl_RS
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ └── Person.php
│ │ │ │ ├── sr_Latn_RS
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ └── Person.php
│ │ │ │ ├── sr_RS
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ └── Person.php
│ │ │ │ ├── sv_SE
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── Text.php
│ │ │ │ ├── tr_TR
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── DateTime.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── uk_UA
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ ├── PhoneNumber.php
│ │ │ │ │ └── Text.php
│ │ │ │ ├── UserAgent.php
│ │ │ │ ├── Uuid.php
│ │ │ │ ├── vi_VN
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ ├── zh_CN
│ │ │ │ │ ├── Address.php
│ │ │ │ │ ├── Color.php
│ │ │ │ │ ├── Company.php
│ │ │ │ │ ├── DateTime.php
│ │ │ │ │ ├── Internet.php
│ │ │ │ │ ├── Payment.php
│ │ │ │ │ ├── Person.php
│ │ │ │ │ └── PhoneNumber.php
│ │ │ │ └── zh_TW
│ │ │ │ ├── Address.php
│ │ │ │ ├── Color.php
│ │ │ │ ├── Company.php
│ │ │ │ ├── DateTime.php
│ │ │ │ ├── Internet.php
│ │ │ │ ├── Payment.php
│ │ │ │ ├── Person.php
│ │ │ │ ├── PhoneNumber.php
│ │ │ │ └── Text.php
│ │ │ ├── UniqueGenerator.php
│ │ │ └── ValidGenerator.php
│ │ └── test
│ │ ├── documentor.php
│ │ ├── Faker
│ │ │ ├── Calculator
│ │ │ │ ├── IbanTest.php
│ │ │ │ └── LuhnTest.php
│ │ │ ├── DefaultGeneratorTest.php
│ │ │ ├── GeneratorTest.php
│ │ │ └── Provider
│ │ │ ├── AddressTest.php
│ │ │ ├── ar_JO
│ │ │ │ └── InternetTest.php
│ │ │ ├── ar_SA
│ │ │ │ └── InternetTest.php
│ │ │ ├── at_AT
│ │ │ │ └── PaymentTest.php
│ │ │ ├── BarcodeTest.php
│ │ │ ├── BaseTest.php
│ │ │ ├── bg_BG
│ │ │ │ └── PaymentTest.php
│ │ │ ├── BiasedTest.php
│ │ │ ├── bn_BD
│ │ │ │ └── PersonTest.php
│ │ │ ├── ColorTest.php
│ │ │ ├── CompanyTest.php
│ │ │ ├── cs_CZ
│ │ │ │ └── PersonTest.php
│ │ │ ├── da_DK
│ │ │ │ └── InternetTest.php
│ │ │ ├── DateTimeTest.php
│ │ │ ├── de_AT
│ │ │ │ ├── InternetTest.php
│ │ │ │ └── PhoneNumberTest.php
│ │ │ ├── de_CH
│ │ │ │ ├── AddressTest.php
│ │ │ │ ├── InternetTest.php
│ │ │ │ └── PhoneNumberTest.php
│ │ │ ├── de_DE
│ │ │ │ └── InternetTest.php
│ │ │ ├── en_AU
│ │ │ │ └── AddressTest.php
│ │ │ ├── en_CA
│ │ │ │ └── AddressTest.php
│ │ │ ├── en_IN
│ │ │ │ └── AddressTest.php
│ │ │ ├── en_NZ
│ │ │ │ └── PhoneNumberTest.php
│ │ │ ├── en_PH
│ │ │ │ └── AddressTest.php
│ │ │ ├── en_SG
│ │ │ │ ├── AddressTest.php
│ │ │ │ └── PhoneNumberTest.php
│ │ │ ├── en_UG
│ │ │ │ └── AddressTest.php
│ │ │ ├── en_US
│ │ │ │ ├── PaymentTest.php
│ │ │ │ └── PhoneNumberTest.php
│ │ │ ├── en_ZA
│ │ │ │ ├── CompanyTest.php
│ │ │ │ ├── InternetTest.php
│ │ │ │ └── PhoneNumberTest.php
│ │ │ ├── es_ES
│ │ │ │ └── PersonTest.php
│ │ │ ├── fi_FI
│ │ │ │ └── InternetTest.php
│ │ │ ├── fr_BE
│ │ │ │ └── PaymentTest.php
│ │ │ ├── fr_CH
│ │ │ │ ├── AddressTest.php
│ │ │ │ ├── InternetTest.php
│ │ │ │ └── PhoneNumberTest.php
│ │ │ ├── fr_FR
│ │ │ │ └── CompanyTest.php
│ │ │ ├── id_ID
│ │ │ │ └── PersonTest.php
│ │ │ ├── ImageTest.php
│ │ │ ├── InternetTest.php
│ │ │ ├── it_CH
│ │ │ │ ├── AddressTest.php
│ │ │ │ ├── InternetTest.php
│ │ │ │ └── PhoneNumberTest.php
│ │ │ ├── it_IT
│ │ │ │ ├── CompanyTest.php
│ │ │ │ └── PersonTest.php
│ │ │ ├── ja_JP
│ │ │ │ └── PersonTest.php
│ │ │ ├── LocalizationTest.php
│ │ │ ├── LoremTest.php
│ │ │ ├── MiscellaneousTest.php
│ │ │ ├── mn_MN
│ │ │ │ └── PersonTest.php
│ │ │ ├── nl_BE
│ │ │ │ └── PaymentTest.php
│ │ │ ├── nl_NL
│ │ │ │ └── CompanyTest.php
│ │ │ ├── PaymentTest.php
│ │ │ ├── PersonTest.php
│ │ │ ├── PhoneNumberTest.php
│ │ │ ├── ProviderOverrideTest.php
│ │ │ ├── pt_BR
│ │ │ │ ├── CompanyTest.php
│ │ │ │ └── PersonTest.php
│ │ │ ├── pt_PT
│ │ │ │ ├── AddressTest.php
│ │ │ │ ├── PersonTest.php
│ │ │ │ └── PhoneNumberTest.php
│ │ │ ├── ro_RO
│ │ │ │ ├── PersonTest.php
│ │ │ │ └── PhoneNumberTest.php
│ │ │ ├── sv_SE
│ │ │ │ └── PersonTest.php
│ │ │ ├── TextTest.php
│ │ │ ├── uk_UA
│ │ │ │ ├── AddressTest.php
│ │ │ │ └── PhoneNumberTest.php
│ │ │ ├── UserAgentTest.php
│ │ │ ├── UuidTest.php
│ │ │ └── zh_TW
│ │ │ └── TextTest.php
│ │ └── test.php
│ ├── guzzlehttp
│ │ ├── guzzle
│ │ │ ├── CHANGELOG.md
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── ClientInterface.php
│ │ │ │ ├── Client.php
│ │ │ │ ├── Cookie
│ │ │ │ │ ├── CookieJarInterface.php
│ │ │ │ │ ├── CookieJar.php
│ │ │ │ │ ├── FileCookieJar.php
│ │ │ │ │ ├── SessionCookieJar.php
│ │ │ │ │ └── SetCookie.php
│ │ │ │ ├── Exception
│ │ │ │ │ ├── BadResponseException.php
│ │ │ │ │ ├── ClientException.php
│ │ │ │ │ ├── ConnectException.php
│ │ │ │ │ ├── GuzzleException.php
│ │ │ │ │ ├── RequestException.php
│ │ │ │ │ ├── SeekException.php
│ │ │ │ │ ├── ServerException.php
│ │ │ │ │ ├── TooManyRedirectsException.php
│ │ │ │ │ └── TransferException.php
│ │ │ │ ├── functions_include.php
│ │ │ │ ├── functions.php
│ │ │ │ ├── Handler
│ │ │ │ │ ├── CurlFactoryInterface.php
│ │ │ │ │ ├── CurlFactory.php
│ │ │ │ │ ├── CurlHandler.php
│ │ │ │ │ ├── CurlMultiHandler.php
│ │ │ │ │ ├── EasyHandle.php
│ │ │ │ │ ├── MockHandler.php
│ │ │ │ │ ├── Proxy.php
│ │ │ │ │ └── StreamHandler.php
│ │ │ │ ├── HandlerStack.php
│ │ │ │ ├── MessageFormatter.php
│ │ │ │ ├── Middleware.php
│ │ │ │ ├── Pool.php
│ │ │ │ ├── PrepareBodyMiddleware.php
│ │ │ │ ├── RedirectMiddleware.php
│ │ │ │ ├── RequestOptions.php
│ │ │ │ ├── RetryMiddleware.php
│ │ │ │ ├── TransferStats.php
│ │ │ │ └── UriTemplate.php
│ │ │ └── UPGRADING.md
│ │ ├── promises
│ │ │ ├── CHANGELOG.md
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── AggregateException.php
│ │ │ │ ├── CancellationException.php
│ │ │ │ ├── EachPromise.php
│ │ │ │ ├── FulfilledPromise.php
│ │ │ │ ├── functions_include.php
│ │ │ │ ├── functions.php
│ │ │ │ ├── PromiseInterface.php
│ │ │ │ ├── Promise.php
│ │ │ │ ├── PromisorInterface.php
│ │ │ │ ├── RejectedPromise.php
│ │ │ │ ├── RejectionException.php
│ │ │ │ └── TaskQueue.php
│ │ │ └── tests
│ │ │ ├── AggregateExceptionTest.php
│ │ │ ├── bootstrap.php
│ │ │ ├── EachPromiseTest.php
│ │ │ ├── FulfilledPromiseTest.php
│ │ │ ├── functionsTest.php
│ │ │ ├── NotPromiseInstance.php
│ │ │ ├── PromiseTest.php
│ │ │ ├── RejectedPromiseTest.php
│ │ │ ├── RejectionExceptionTest.php
│ │ │ ├── TaskQueueTest.php
│ │ │ └── Thennable.php
│ │ └── psr7
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── Makefile
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── AppendStream.php
│ │ │ ├── BufferStream.php
│ │ │ ├── CachingStream.php
│ │ │ ├── DroppingStream.php
│ │ │ ├── FnStream.php
│ │ │ ├── functions_include.php
│ │ │ ├── functions.php
│ │ │ ├── InflateStream.php
│ │ │ ├── LazyOpenStream.php
│ │ │ ├── LimitStream.php
│ │ │ ├── MessageTrait.php
│ │ │ ├── MultipartStream.php
│ │ │ ├── NoSeekStream.php
│ │ │ ├── PumpStream.php
│ │ │ ├── Request.php
│ │ │ ├── Response.php
│ │ │ ├── ServerRequest.php
│ │ │ ├── StreamDecoratorTrait.php
│ │ │ ├── Stream.php
│ │ │ ├── StreamWrapper.php
│ │ │ ├── UploadedFile.php
│ │ │ └── Uri.php
│ │ └── tests
│ │ ├── AppendStreamTest.php
│ │ ├── bootstrap.php
│ │ ├── BufferStreamTest.php
│ │ ├── CachingStreamTest.php
│ │ ├── DroppingStreamTest.php
│ │ ├── FnStreamTest.php
│ │ ├── FunctionsTest.php
│ │ ├── InflateStreamTest.php
│ │ ├── LazyOpenStreamTest.php
│ │ ├── LimitStreamTest.php
│ │ ├── MultipartStreamTest.php
│ │ ├── NoSeekStreamTest.php
│ │ ├── PumpStreamTest.php
│ │ ├── RequestTest.php
│ │ ├── ResponseTest.php
│ │ ├── ServerRequestTest.php
│ │ ├── StreamDecoratorTraitTest.php
│ │ ├── StreamTest.php
│ │ ├── StreamWrapperTest.php
│ │ ├── UploadedFileTest.php
│ │ └── UriTest.php
│ ├── hamcrest
│ │ └── hamcrest-php
│ │ ├── CHANGES.txt
│ │ ├── composer.json
│ │ ├── generator
│ │ │ ├── FactoryCall.php
│ │ │ ├── FactoryClass.php
│ │ │ ├── FactoryFile.php
│ │ │ ├── FactoryGenerator.php
│ │ │ ├── FactoryMethod.php
│ │ │ ├── FactoryParameter.php
│ │ │ ├── GlobalFunctionFile.php
│ │ │ ├── parts
│ │ │ │ ├── file_header.txt
│ │ │ │ ├── functions_footer.txt
│ │ │ │ ├── functions_header.txt
│ │ │ │ ├── functions_imports.txt
│ │ │ │ ├── matchers_footer.txt
│ │ │ │ ├── matchers_header.txt
│ │ │ │ └── matchers_imports.txt
│ │ │ ├── run.php
│ │ │ └── StaticMethodFile.php
│ │ ├── hamcrest
│ │ │ ├── Hamcrest
│ │ │ │ ├── Arrays
│ │ │ │ │ ├── IsArrayContainingInAnyOrder.php
│ │ │ │ │ ├── IsArrayContainingInOrder.php
│ │ │ │ │ ├── IsArrayContainingKey.php
│ │ │ │ │ ├── IsArrayContainingKeyValuePair.php
│ │ │ │ │ ├── IsArrayContaining.php
│ │ │ │ │ ├── IsArray.php
│ │ │ │ │ ├── IsArrayWithSize.php
│ │ │ │ │ ├── MatchingOnce.php
│ │ │ │ │ └── SeriesMatchingOnce.php
│ │ │ │ ├── AssertionError.php
│ │ │ │ ├── BaseDescription.php
│ │ │ │ ├── BaseMatcher.php
│ │ │ │ ├── Collection
│ │ │ │ │ ├── IsEmptyTraversable.php
│ │ │ │ │ └── IsTraversableWithSize.php
│ │ │ │ ├── Core
│ │ │ │ │ ├── AllOf.php
│ │ │ │ │ ├── AnyOf.php
│ │ │ │ │ ├── CombinableMatcher.php
│ │ │ │ │ ├── DescribedAs.php
│ │ │ │ │ ├── Every.php
│ │ │ │ │ ├── HasToString.php
│ │ │ │ │ ├── IsAnything.php
│ │ │ │ │ ├── IsCollectionContaining.php
│ │ │ │ │ ├── IsEqual.php
│ │ │ │ │ ├── IsIdentical.php
│ │ │ │ │ ├── IsInstanceOf.php
│ │ │ │ │ ├── IsNot.php
│ │ │ │ │ ├── IsNull.php
│ │ │ │ │ ├── Is.php
│ │ │ │ │ ├── IsSame.php
│ │ │ │ │ ├── IsTypeOf.php
│ │ │ │ │ ├── Set.php
│ │ │ │ │ └── ShortcutCombination.php
│ │ │ │ ├── Description.php
│ │ │ │ ├── DiagnosingMatcher.php
│ │ │ │ ├── FeatureMatcher.php
│ │ │ │ ├── Internal
│ │ │ │ │ └── SelfDescribingValue.php
│ │ │ │ ├── MatcherAssert.php
│ │ │ │ ├── Matcher.php
│ │ │ │ ├── Matchers.php
│ │ │ │ ├── NullDescription.php
│ │ │ │ ├── Number
│ │ │ │ │ ├── IsCloseTo.php
│ │ │ │ │ └── OrderingComparison.php
│ │ │ │ ├── SelfDescribing.php
│ │ │ │ ├── StringDescription.php
│ │ │ │ ├── Text
│ │ │ │ │ ├── IsEmptyString.php
│ │ │ │ │ ├── IsEqualIgnoringCase.php
│ │ │ │ │ ├── IsEqualIgnoringWhiteSpace.php
│ │ │ │ │ ├── MatchesPattern.php
│ │ │ │ │ ├── StringContainsIgnoringCase.php
│ │ │ │ │ ├── StringContainsInOrder.php
│ │ │ │ │ ├── StringContains.php
│ │ │ │ │ ├── StringEndsWith.php
│ │ │ │ │ ├── StringStartsWith.php
│ │ │ │ │ └── SubstringMatcher.php
│ │ │ │ ├── Type
│ │ │ │ │ ├── IsArray.php
│ │ │ │ │ ├── IsBoolean.php
│ │ │ │ │ ├── IsCallable.php
│ │ │ │ │ ├── IsDouble.php
│ │ │ │ │ ├── IsInteger.php
│ │ │ │ │ ├── IsNumeric.php
│ │ │ │ │ ├── IsObject.php
│ │ │ │ │ ├── IsResource.php
│ │ │ │ │ ├── IsScalar.php
│ │ │ │ │ └── IsString.php
│ │ │ │ ├── TypeSafeDiagnosingMatcher.php
│ │ │ │ ├── TypeSafeMatcher.php
│ │ │ │ ├── Util.php
│ │ │ │ └── Xml
│ │ │ │ └── HasXPath.php
│ │ │ └── Hamcrest.php
│ │ ├── LICENSE.txt
│ │ ├── README.md
│ │ ├── tests
│ │ │ ├── bootstrap.php
│ │ │ ├── Hamcrest
│ │ │ │ ├── AbstractMatcherTest.php
│ │ │ │ ├── Array
│ │ │ │ │ ├── IsArrayContainingInAnyOrderTest.php
│ │ │ │ │ ├── IsArrayContainingInOrderTest.php
│ │ │ │ │ ├── IsArrayContainingKeyTest.php
│ │ │ │ │ ├── IsArrayContainingKeyValuePairTest.php
│ │ │ │ │ ├── IsArrayContainingTest.php
│ │ │ │ │ ├── IsArrayTest.php
│ │ │ │ │ └── IsArrayWithSizeTest.php
│ │ │ │ ├── BaseMatcherTest.php
│ │ │ │ ├── Collection
│ │ │ │ │ ├── IsEmptyTraversableTest.php
│ │ │ │ │ └── IsTraversableWithSizeTest.php
│ │ │ │ ├── Core
│ │ │ │ │ ├── AllOfTest.php
│ │ │ │ │ ├── AnyOfTest.php
│ │ │ │ │ ├── CombinableMatcherTest.php
│ │ │ │ │ ├── DescribedAsTest.php
│ │ │ │ │ ├── EveryTest.php
│ │ │ │ │ ├── HasToStringTest.php
│ │ │ │ │ ├── IsAnythingTest.php
│ │ │ │ │ ├── IsCollectionContainingTest.php
│ │ │ │ │ ├── IsEqualTest.php
│ │ │ │ │ ├── IsIdenticalTest.php
│ │ │ │ │ ├── IsInstanceOfTest.php
│ │ │ │ │ ├── IsNotTest.php
│ │ │ │ │ ├── IsNullTest.php
│ │ │ │ │ ├── IsSameTest.php
│ │ │ │ │ ├── IsTest.php
│ │ │ │ │ ├── IsTypeOfTest.php
│ │ │ │ │ ├── SampleBaseClass.php
│ │ │ │ │ ├── SampleSubClass.php
│ │ │ │ │ └── SetTest.php
│ │ │ │ ├── FeatureMatcherTest.php
│ │ │ │ ├── MatcherAssertTest.php
│ │ │ │ ├── Number
│ │ │ │ │ ├── IsCloseToTest.php
│ │ │ │ │ └── OrderingComparisonTest.php
│ │ │ │ ├── StringDescriptionTest.php
│ │ │ │ ├── Text
│ │ │ │ │ ├── IsEmptyStringTest.php
│ │ │ │ │ ├── IsEqualIgnoringCaseTest.php
│ │ │ │ │ ├── IsEqualIgnoringWhiteSpaceTest.php
│ │ │ │ │ ├── MatchesPatternTest.php
│ │ │ │ │ ├── StringContainsIgnoringCaseTest.php
│ │ │ │ │ ├── StringContainsInOrderTest.php
│ │ │ │ │ ├── StringContainsTest.php
│ │ │ │ │ ├── StringEndsWithTest.php
│ │ │ │ │ └── StringStartsWithTest.php
│ │ │ │ ├── Type
│ │ │ │ │ ├── IsArrayTest.php
│ │ │ │ │ ├── IsBooleanTest.php
│ │ │ │ │ ├── IsCallableTest.php
│ │ │ │ │ ├── IsDoubleTest.php
│ │ │ │ │ ├── IsIntegerTest.php
│ │ │ │ │ ├── IsNumericTest.php
│ │ │ │ │ ├── IsObjectTest.php
│ │ │ │ │ ├── IsResourceTest.php
│ │ │ │ │ ├── IsScalarTest.php
│ │ │ │ │ └── IsStringTest.php
│ │ │ │ ├── UtilTest.php
│ │ │ │ └── Xml
│ │ │ │ └── HasXPathTest.php
│ │ │ └── phpunit.xml.dist
│ │ └── TODO.txt
│ ├── intervention
│ │ └── image
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── provides.json
│ │ └── src
│ │ ├── config
│ │ │ └── config.php
│ │ └── Intervention
│ │ └── Image
│ │ ├── AbstractColor.php
│ │ ├── AbstractDecoder.php
│ │ ├── AbstractDriver.php
│ │ ├── AbstractEncoder.php
│ │ ├── AbstractFont.php
│ │ ├── AbstractShape.php
│ │ ├── Commands
│ │ │ ├── AbstractCommand.php
│ │ │ ├── Argument.php
│ │ │ ├── ChecksumCommand.php
│ │ │ ├── CircleCommand.php
│ │ │ ├── EllipseCommand.php
│ │ │ ├── ExifCommand.php
│ │ │ ├── IptcCommand.php
│ │ │ ├── LineCommand.php
│ │ │ ├── OrientateCommand.php
│ │ │ ├── PolygonCommand.php
│ │ │ ├── PsrResponseCommand.php
│ │ │ ├── RectangleCommand.php
│ │ │ ├── ResponseCommand.php
│ │ │ ├── StreamCommand.php
│ │ │ └── TextCommand.php
│ │ ├── Constraint.php
│ │ ├── Exception
│ │ │ ├── InvalidArgumentException.php
│ │ │ ├── MissingDependencyException.php
│ │ │ ├── NotFoundException.php
│ │ │ ├── NotReadableException.php
│ │ │ ├── NotSupportedException.php
│ │ │ ├── NotWritableException.php
│ │ │ └── RuntimeException.php
│ │ ├── Facades
│ │ │ └── Image.php
│ │ ├── File.php
│ │ ├── Filters
│ │ │ ├── DemoFilter.php
│ │ │ └── FilterInterface.php
│ │ ├── Gd
│ │ │ ├── Color.php
│ │ │ ├── Commands
│ │ │ │ ├── BackupCommand.php
│ │ │ │ ├── BlurCommand.php
│ │ │ │ ├── BrightnessCommand.php
│ │ │ │ ├── ColorizeCommand.php
│ │ │ │ ├── ContrastCommand.php
│ │ │ │ ├── CropCommand.php
│ │ │ │ ├── DestroyCommand.php
│ │ │ │ ├── FillCommand.php
│ │ │ │ ├── FitCommand.php
│ │ │ │ ├── FlipCommand.php
│ │ │ │ ├── GammaCommand.php
│ │ │ │ ├── GetSizeCommand.php
│ │ │ │ ├── GreyscaleCommand.php
│ │ │ │ ├── HeightenCommand.php
│ │ │ │ ├── InsertCommand.php
│ │ │ │ ├── InterlaceCommand.php
│ │ │ │ ├── InvertCommand.php
│ │ │ │ ├── LimitColorsCommand.php
│ │ │ │ ├── MaskCommand.php
│ │ │ │ ├── OpacityCommand.php
│ │ │ │ ├── PickColorCommand.php
│ │ │ │ ├── PixelateCommand.php
│ │ │ │ ├── PixelCommand.php
│ │ │ │ ├── ResetCommand.php
│ │ │ │ ├── ResizeCanvasCommand.php
│ │ │ │ ├── ResizeCommand.php
│ │ │ │ ├── RotateCommand.php
│ │ │ │ ├── SharpenCommand.php
│ │ │ │ ├── TrimCommand.php
│ │ │ │ └── WidenCommand.php
│ │ │ ├── Decoder.php
│ │ │ ├── Driver.php
│ │ │ ├── Encoder.php
│ │ │ ├── Font.php
│ │ │ └── Shapes
│ │ │ ├── CircleShape.php
│ │ │ ├── EllipseShape.php
│ │ │ ├── LineShape.php
│ │ │ ├── PolygonShape.php
│ │ │ └── RectangleShape.php
│ │ ├── ImageManager.php
│ │ ├── ImageManagerStatic.php
│ │ ├── Image.php
│ │ ├── ImageServiceProviderLaravel4.php
│ │ ├── ImageServiceProviderLaravel5.php
│ │ ├── ImageServiceProviderLeague.php
│ │ ├── ImageServiceProviderLumen.php
│ │ ├── ImageServiceProvider.php
│ │ ├── Imagick
│ │ │ ├── Color.php
│ │ │ ├── Commands
│ │ │ │ ├── BackupCommand.php
│ │ │ │ ├── BlurCommand.php
│ │ │ │ ├── BrightnessCommand.php
│ │ │ │ ├── ColorizeCommand.php
│ │ │ │ ├── ContrastCommand.php
│ │ │ │ ├── CropCommand.php
│ │ │ │ ├── DestroyCommand.php
│ │ │ │ ├── FillCommand.php
│ │ │ │ ├── FitCommand.php
│ │ │ │ ├── FlipCommand.php
│ │ │ │ ├── GammaCommand.php
│ │ │ │ ├── GetSizeCommand.php
│ │ │ │ ├── GreyscaleCommand.php
│ │ │ │ ├── HeightenCommand.php
│ │ │ │ ├── InsertCommand.php
│ │ │ │ ├── InterlaceCommand.php
│ │ │ │ ├── InvertCommand.php
│ │ │ │ ├── LimitColorsCommand.php
│ │ │ │ ├── MaskCommand.php
│ │ │ │ ├── OpacityCommand.php
│ │ │ │ ├── PickColorCommand.php
│ │ │ │ ├── PixelateCommand.php
│ │ │ │ ├── PixelCommand.php
│ │ │ │ ├── ResetCommand.php
│ │ │ │ ├── ResizeCanvasCommand.php
│ │ │ │ ├── ResizeCommand.php
│ │ │ │ ├── RotateCommand.php
│ │ │ │ ├── SharpenCommand.php
│ │ │ │ ├── TrimCommand.php
│ │ │ │ └── WidenCommand.php
│ │ │ ├── Decoder.php
│ │ │ ├── Driver.php
│ │ │ ├── Encoder.php
│ │ │ ├── Font.php
│ │ │ └── Shapes
│ │ │ ├── CircleShape.php
│ │ │ ├── EllipseShape.php
│ │ │ ├── LineShape.php
│ │ │ ├── PolygonShape.php
│ │ │ └── RectangleShape.php
│ │ ├── Point.php
│ │ ├── Response.php
│ │ └── Size.php
│ ├── jakub-onderka
│ │ ├── php-console-color
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── example.php
│ │ │ ├── phpunit.xml
│ │ │ ├── src
│ │ │ │ └── JakubOnderka
│ │ │ │ └── PhpConsoleColor
│ │ │ │ ├── ConsoleColor.php
│ │ │ │ └── InvalidStyleException.php
│ │ │ └── tests
│ │ │ ├── bootstrap.php
│ │ │ └── JakubOnderka
│ │ │ └── PhpConsoleColor
│ │ │ └── ConsoleColorTest.php
│ │ └── php-console-highlighter
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── examples
│ │ │ ├── snippet.php
│ │ │ ├── whole_file_line_numbers.php
│ │ │ └── whole_file.php
│ │ ├── LICENSE
│ │ ├── phpunit.xml
│ │ ├── README.md
│ │ ├── src
│ │ │ └── JakubOnderka
│ │ │ └── PhpConsoleHighlighter
│ │ │ └── Highlighter.php
│ │ └── tests
│ │ ├── bootstrap.php
│ │ └── JakubOnderka
│ │ └── PhpConsoleHighligter
│ │ └── HigligterTest.php
│ ├── jeremeamia
│ │ └── SuperClosure
│ │ ├── composer.json
│ │ ├── LICENSE.md
│ │ └── src
│ │ ├── Analyzer
│ │ │ ├── AstAnalyzer.php
│ │ │ ├── ClosureAnalyzer.php
│ │ │ ├── TokenAnalyzer.php
│ │ │ ├── Token.php
│ │ │ └── Visitor
│ │ │ ├── ClosureLocatorVisitor.php
│ │ │ ├── MagicConstantVisitor.php
│ │ │ └── ThisDetectorVisitor.php
│ │ ├── Exception
│ │ │ ├── ClosureAnalysisException.php
│ │ │ ├── ClosureUnserializationException.php
│ │ │ └── SuperClosureException.php
│ │ ├── SerializableClosure.php
│ │ ├── SerializerInterface.php
│ │ └── Serializer.php
│ ├── laravel
│ │ └── framework
│ │ ├── composer.json
│ │ ├── LICENSE.txt
│ │ ├── readme.md
│ │ └── src
│ │ └── Illuminate
│ │ ├── Auth
│ │ │ ├── Access
│ │ │ │ ├── AuthorizationException.php
│ │ │ │ ├── Gate.php
│ │ │ │ ├── HandlesAuthorization.php
│ │ │ │ └── Response.php
│ │ │ ├── Authenticatable.php
│ │ │ ├── AuthenticationException.php
│ │ │ ├── AuthManager.php
│ │ │ ├── AuthServiceProvider.php
│ │ │ ├── composer.json
│ │ │ ├── Console
│ │ │ │ ├── ClearResetsCommand.php
│ │ │ │ ├── MakeAuthCommand.php
│ │ │ │ └── stubs
│ │ │ │ └── make
│ │ │ │ ├── controllers
│ │ │ │ │ └── HomeController.stub
│ │ │ │ ├── routes.stub
│ │ │ │ └── views
│ │ │ │ ├── auth
│ │ │ │ │ ├── emails
│ │ │ │ │ │ └── password.stub
│ │ │ │ │ ├── login.stub
│ │ │ │ │ ├── passwords
│ │ │ │ │ │ ├── email.stub
│ │ │ │ │ │ └── reset.stub
│ │ │ │ │ └── register.stub
│ │ │ │ ├── home.stub
│ │ │ │ ├── layouts
│ │ │ │ │ └── app.stub
│ │ │ │ └── welcome.stub
│ │ │ ├── CreatesUserProviders.php
│ │ │ ├── DatabaseUserProvider.php
│ │ │ ├── EloquentUserProvider.php
│ │ │ ├── Events
│ │ │ │ ├── Attempting.php
│ │ │ │ ├── Lockout.php
│ │ │ │ ├── Login.php
│ │ │ │ └── Logout.php
│ │ │ ├── GenericUser.php
│ │ │ ├── GuardHelpers.php
│ │ │ ├── Middleware
│ │ │ │ └── AuthenticateWithBasicAuth.php
│ │ │ ├── Passwords
│ │ │ │ ├── CanResetPassword.php
│ │ │ │ ├── DatabaseTokenRepository.php
│ │ │ │ ├── PasswordBrokerManager.php
│ │ │ │ ├── PasswordBroker.php
│ │ │ │ ├── PasswordResetServiceProvider.php
│ │ │ │ └── TokenRepositoryInterface.php
│ │ │ ├── RequestGuard.php
│ │ │ ├── SessionGuard.php
│ │ │ └── TokenGuard.php
│ │ ├── Broadcasting
│ │ │ ├── Broadcasters
│ │ │ │ ├── LogBroadcaster.php
│ │ │ │ ├── PusherBroadcaster.php
│ │ │ │ └── RedisBroadcaster.php
│ │ │ ├── BroadcastEvent.php
│ │ │ ├── BroadcastManager.php
│ │ │ ├── BroadcastServiceProvider.php
│ │ │ └── composer.json
│ │ ├── Bus
│ │ │ ├── BusServiceProvider.php
│ │ │ ├── composer.json
│ │ │ ├── Dispatcher.php
│ │ │ └── Queueable.php
│ │ ├── Cache
│ │ │ ├── ApcStore.php
│ │ │ ├── ApcWrapper.php
│ │ │ ├── ArrayStore.php
│ │ │ ├── CacheManager.php
│ │ │ ├── CacheServiceProvider.php
│ │ │ ├── composer.json
│ │ │ ├── Console
│ │ │ │ ├── CacheTableCommand.php
│ │ │ │ ├── ClearCommand.php
│ │ │ │ └── stubs
│ │ │ │ └── cache.stub
│ │ │ ├── DatabaseStore.php
│ │ │ ├── Events
│ │ │ │ ├── CacheHit.php
│ │ │ │ ├── CacheMissed.php
│ │ │ │ ├── KeyForgotten.php
│ │ │ │ └── KeyWritten.php
│ │ │ ├── FileStore.php
│ │ │ ├── MemcachedConnector.php
│ │ │ ├── MemcachedStore.php
│ │ │ ├── NullStore.php
│ │ │ ├── RateLimiter.php
│ │ │ ├── RedisStore.php
│ │ │ ├── RedisTaggedCache.php
│ │ │ ├── Repository.php
│ │ │ ├── RetrievesMultipleKeys.php
│ │ │ ├── TaggableStore.php
│ │ │ ├── TaggedCache.php
│ │ │ └── TagSet.php
│ │ ├── Config
│ │ │ ├── composer.json
│ │ │ └── Repository.php
│ │ ├── Console
│ │ │ ├── Application.php
│ │ │ ├── AppNamespaceDetectorTrait.php
│ │ │ ├── Command.php
│ │ │ ├── composer.json
│ │ │ ├── ConfirmableTrait.php
│ │ │ ├── Events
│ │ │ │ └── ArtisanStarting.php
│ │ │ ├── GeneratorCommand.php
│ │ │ ├── OutputStyle.php
│ │ │ ├── Parser.php
│ │ │ ├── ScheduleServiceProvider.php
│ │ │ └── Scheduling
│ │ │ ├── CallbackEvent.php
│ │ │ ├── Event.php
│ │ │ ├── Schedule.php
│ │ │ └── ScheduleRunCommand.php
│ │ ├── Container
│ │ │ ├── composer.json
│ │ │ ├── Container.php
│ │ │ └── ContextualBindingBuilder.php
│ │ ├── Contracts
│ │ │ ├── Auth
│ │ │ │ ├── Access
│ │ │ │ │ ├── Authorizable.php
│ │ │ │ │ └── Gate.php
│ │ │ │ ├── Authenticatable.php
│ │ │ │ ├── CanResetPassword.php
│ │ │ │ ├── Factory.php
│ │ │ │ ├── Guard.php
│ │ │ │ ├── PasswordBrokerFactory.php
│ │ │ │ ├── PasswordBroker.php
│ │ │ │ ├── Registrar.php
│ │ │ │ ├── StatefulGuard.php
│ │ │ │ ├── SupportsBasicAuth.php
│ │ │ │ └── UserProvider.php
│ │ │ ├── Broadcasting
│ │ │ │ ├── Broadcaster.php
│ │ │ │ ├── Factory.php
│ │ │ │ ├── ShouldBroadcastNow.php
│ │ │ │ └── ShouldBroadcast.php
│ │ │ ├── Bus
│ │ │ │ ├── Dispatcher.php
│ │ │ │ ├── QueueingDispatcher.php
│ │ │ │ └── SelfHandling.php
│ │ │ ├── Cache
│ │ │ │ ├── Factory.php
│ │ │ │ ├── Repository.php
│ │ │ │ └── Store.php
│ │ │ ├── composer.json
│ │ │ ├── Config
│ │ │ │ └── Repository.php
│ │ │ ├── Console
│ │ │ │ ├── Application.php
│ │ │ │ └── Kernel.php
│ │ │ ├── Container
│ │ │ │ ├── BindingResolutionException.php
│ │ │ │ ├── Container.php
│ │ │ │ └── ContextualBindingBuilder.php
│ │ │ ├── Cookie
│ │ │ │ ├── Factory.php
│ │ │ │ └── QueueingFactory.php
│ │ │ ├── Database
│ │ │ │ └── ModelIdentifier.php
│ │ │ ├── Debug
│ │ │ │ └── ExceptionHandler.php
│ │ │ ├── Encryption
│ │ │ │ ├── DecryptException.php
│ │ │ │ ├── Encrypter.php
│ │ │ │ └── EncryptException.php
│ │ │ ├── Events
│ │ │ │ └── Dispatcher.php
│ │ │ ├── Filesystem
│ │ │ │ ├── Cloud.php
│ │ │ │ ├── Factory.php
│ │ │ │ ├── FileNotFoundException.php
│ │ │ │ └── Filesystem.php
│ │ │ ├── Foundation
│ │ │ │ └── Application.php
│ │ │ ├── Hashing
│ │ │ │ └── Hasher.php
│ │ │ ├── Http
│ │ │ │ └── Kernel.php
│ │ │ ├── Logging
│ │ │ │ └── Log.php
│ │ │ │ ├── Mailer.php
│ │ │ │ └── MailQueue.php
│ │ │ ├── Pagination
│ │ │ │ ├── LengthAwarePaginator.php
│ │ │ │ ├── Paginator.php
│ │ │ │ └── Presenter.php
│ │ │ ├── Pipeline
│ │ │ │ ├── Hub.php
│ │ │ │ └── Pipeline.php
│ │ │ ├── Queue
│ │ │ │ ├── EntityNotFoundException.php
│ │ │ │ ├── EntityResolver.php
│ │ │ │ ├── Factory.php
│ │ │ │ ├── Job.php
│ │ │ │ ├── Monitor.php
│ │ │ │ ├── QueueableEntity.php
│ │ │ │ ├── Queue.php
│ │ │ │ └── ShouldQueue.php
│ │ │ ├── Redis
│ │ │ │ └── Database.php
│ │ │ ├── Routing
│ │ │ │ ├── Registrar.php
│ │ │ │ ├── ResponseFactory.php
│ │ │ │ ├── UrlGenerator.php
│ │ │ │ └── UrlRoutable.php
│ │ │ ├── Support
│ │ │ │ ├── Arrayable.php
│ │ │ │ ├── Htmlable.php
│ │ │ │ ├── Jsonable.php
│ │ │ │ ├── MessageBag.php
│ │ │ │ ├── MessageProvider.php
│ │ │ │ └── Renderable.php
│ │ │ ├── Validation
│ │ │ │ ├── Factory.php
│ │ │ │ ├── UnauthorizedException.php
│ │ │ │ ├── ValidatesWhenResolved.php
│ │ │ │ ├── ValidationException.php
│ │ │ │ └── Validator.php
│ │ │ └── View
│ │ │ ├── Factory.php
│ │ │ └── View.php
│ │ ├── Cookie
│ │ │ ├── composer.json
│ │ │ ├── CookieJar.php
│ │ │ ├── CookieServiceProvider.php
│ │ │ └── Middleware
│ │ │ ├── AddQueuedCookiesToResponse.php
│ │ │ └── EncryptCookies.php
│ │ ├── Database
│ │ │ ├── Capsule
│ │ │ │ └── Manager.php
│ │ │ ├── composer.json
│ │ │ ├── ConnectionInterface.php
│ │ │ ├── Connection.php
│ │ │ ├── ConnectionResolverInterface.php
│ │ │ ├── ConnectionResolver.php
│ │ │ ├── Connectors
│ │ │ │ ├── ConnectionFactory.php
│ │ │ │ ├── ConnectorInterface.php
│ │ │ │ ├── Connector.php
│ │ │ │ ├── MySqlConnector.php
│ │ │ │ ├── PostgresConnector.php
│ │ │ │ ├── SQLiteConnector.php
│ │ │ │ └── SqlServerConnector.php
│ │ │ ├── Console
│ │ │ │ ├── Migrations
│ │ │ │ │ ├── BaseCommand.php
│ │ │ │ │ ├── InstallCommand.php
│ │ │ │ │ ├── MigrateCommand.php
│ │ │ │ │ ├── MigrateMakeCommand.php
│ │ │ │ │ ├── RefreshCommand.php
│ │ │ │ │ ├── ResetCommand.php
│ │ │ │ │ ├── RollbackCommand.php
│ │ │ │ │ └── StatusCommand.php
│ │ │ │ └── Seeds
│ │ │ │ ├── SeedCommand.php
│ │ │ │ ├── SeederMakeCommand.php
│ │ │ │ └── stubs
│ │ │ │ └── seeder.stub
│ │ │ ├── DatabaseManager.php
│ │ │ ├── DatabaseServiceProvider.php
│ │ │ ├── DetectsLostConnections.php
│ │ │ ├── Eloquent
│ │ │ │ ├── Builder.php
│ │ │ │ ├── Collection.php
│ │ │ │ ├── FactoryBuilder.php
│ │ │ │ ├── Factory.php
│ │ │ │ ├── MassAssignmentException.php
│ │ │ │ ├── ModelNotFoundException.php
│ │ │ │ ├── Model.php
│ │ │ │ ├── QueueEntityResolver.php
│ │ │ │ ├── Relations
│ │ │ │ │ ├── BelongsToMany.php
│ │ │ │ │ ├── BelongsTo.php
│ │ │ │ │ ├── HasMany.php
│ │ │ │ │ ├── HasManyThrough.php
│ │ │ │ │ ├── HasOneOrMany.php
│ │ │ │ │ ├── HasOne.php
│ │ │ │ │ ├── MorphMany.php
│ │ │ │ │ ├── MorphOneOrMany.php
│ │ │ │ │ ├── MorphOne.php
│ │ │ │ │ ├── MorphPivot.php
│ │ │ │ │ ├── MorphToMany.php
│ │ │ │ │ ├── MorphTo.php
│ │ │ │ │ ├── Pivot.php
│ │ │ │ │ └── Relation.php
│ │ │ │ ├── ScopeInterface.php
│ │ │ │ ├── Scope.php
│ │ │ │ ├── SoftDeletes.php
│ │ │ │ └── SoftDeletingScope.php
│ │ │ ├── Events
│ │ │ │ ├── ConnectionEvent.php
│ │ │ │ ├── QueryExecuted.php
│ │ │ │ ├── TransactionBeginning.php
│ │ │ │ ├── TransactionCommitted.php
│ │ │ │ └── TransactionRolledBack.php
│ │ │ ├── Grammar.php
│ │ │ ├── Migrations
│ │ │ │ ├── DatabaseMigrationRepository.php
│ │ │ │ ├── MigrationCreator.php
│ │ │ │ ├── Migration.php
│ │ │ │ ├── MigrationRepositoryInterface.php
│ │ │ │ ├── Migrator.php
│ │ │ │ └── stubs
│ │ │ │ ├── blank.stub
│ │ │ │ ├── create.stub
│ │ │ │ └── update.stub
│ │ │ ├── MigrationServiceProvider.php
│ │ │ ├── MySqlConnection.php
│ │ │ ├── PostgresConnection.php
│ │ │ ├── Query
│ │ │ │ ├── Builder.php
│ │ │ │ ├── Expression.php
│ │ │ │ ├── Grammars
│ │ │ │ │ ├── Grammar.php
│ │ │ │ │ ├── MySqlGrammar.php
│ │ │ │ │ ├── PostgresGrammar.php
│ │ │ │ │ ├── SQLiteGrammar.php
│ │ │ │ │ └── SqlServerGrammar.php
│ │ │ │ ├── JoinClause.php
│ │ │ │ ├── JsonExpression.php
│ │ │ │ └── Processors
│ │ │ │ ├── MySqlProcessor.php
│ │ │ │ ├── PostgresProcessor.php
│ │ │ │ ├── Processor.php
│ │ │ │ ├── SQLiteProcessor.php
│ │ │ │ └── SqlServerProcessor.php
│ │ │ ├── QueryException.php
│ │ │ ├── README.md
│ │ │ ├── Schema
│ │ │ │ ├── Blueprint.php
│ │ │ │ ├── Builder.php
│ │ │ │ ├── Grammars
│ │ │ │ │ ├── Grammar.php
│ │ │ │ │ ├── MySqlGrammar.php
│ │ │ │ │ ├── PostgresGrammar.php
│ │ │ │ │ ├── SQLiteGrammar.php
│ │ │ │ │ └── SqlServerGrammar.php
│ │ │ │ ├── MySqlBuilder.php
│ │ │ │ └── PostgresBuilder.php
│ │ │ ├── Seeder.php
│ │ │ ├── SeedServiceProvider.php
│ │ │ ├── SQLiteConnection.php
│ │ │ └── SqlServerConnection.php
│ │ ├── Encryption
│ │ │ ├── BaseEncrypter.php
│ │ │ ├── composer.json
│ │ │ ├── Encrypter.php
│ │ │ ├── EncryptionServiceProvider.php
│ │ │ └── McryptEncrypter.php
│ │ ├── Events
│ │ │ ├── CallQueuedHandler.php
│ │ │ ├── composer.json
│ │ │ ├── Dispatcher.php
│ │ │ └── EventServiceProvider.php
│ │ ├── Filesystem
│ │ │ ├── ClassFinder.php
│ │ │ ├── composer.json
│ │ │ ├── FilesystemAdapter.php
│ │ │ ├── FilesystemManager.php
│ │ │ ├── Filesystem.php
│ │ │ └── FilesystemServiceProvider.php
│ │ ├── Foundation
│ │ │ ├── AliasLoader.php
│ │ │ ├── Application.php
│ │ │ ├── Auth
│ │ │ │ ├── Access
│ │ │ │ │ ├── Authorizable.php
│ │ │ │ │ ├── AuthorizesRequests.php
│ │ │ │ │ └── AuthorizesResources.php
│ │ │ │ ├── AuthenticatesAndRegistersUsers.php
│ │ │ │ ├── AuthenticatesUsers.php
│ │ │ │ ├── RedirectsUsers.php
│ │ │ │ ├── RegistersUsers.php
│ │ │ │ ├── ResetsPasswords.php
│ │ │ │ ├── ThrottlesLogins.php
│ │ │ │ └── User.php
│ │ │ ├── Bootstrap
│ │ │ │ ├── BootProviders.php
│ │ │ │ ├── ConfigureLogging.php
│ │ │ │ ├── DetectEnvironment.php
│ │ │ │ ├── HandleExceptions.php
│ │ │ │ ├── LoadConfiguration.php
│ │ │ │ ├── RegisterFacades.php
│ │ │ │ ├── RegisterProviders.php
│ │ │ │ └── SetRequestForConsole.php
│ │ │ ├── Bus
│ │ │ │ └── DispatchesJobs.php
│ │ │ ├── ComposerScripts.php
│ │ │ ├── Console
│ │ │ │ ├── AppNameCommand.php
│ │ │ │ ├── ClearCompiledCommand.php
│ │ │ │ ├── ConfigCacheCommand.php
│ │ │ │ ├── ConfigClearCommand.php
│ │ │ │ ├── ConsoleMakeCommand.php
│ │ │ │ ├── DownCommand.php
│ │ │ │ ├── EnvironmentCommand.php
│ │ │ │ ├── EventGenerateCommand.php
│ │ │ │ ├── EventMakeCommand.php
│ │ │ │ ├── IlluminateCaster.php
│ │ │ │ ├── JobMakeCommand.php
│ │ │ │ ├── Kernel.php
│ │ │ │ ├── KeyGenerateCommand.php
│ │ │ │ ├── ListenerMakeCommand.php
│ │ │ │ ├── ModelMakeCommand.php
│ │ │ │ ├── Optimize
│ │ │ │ │ └── config.php
│ │ │ │ ├── OptimizeCommand.php
│ │ │ │ ├── PolicyMakeCommand.php
│ │ │ │ ├── ProviderMakeCommand.php
│ │ │ │ ├── QueuedJob.php
│ │ │ │ ├── RequestMakeCommand.php
│ │ │ │ ├── RouteCacheCommand.php
│ │ │ │ ├── RouteClearCommand.php
│ │ │ │ ├── RouteListCommand.php
│ │ │ │ ├── ServeCommand.php
│ │ │ │ ├── stubs
│ │ │ │ │ ├── console.stub
│ │ │ │ │ ├── event-handler-queued.stub
│ │ │ │ │ ├── event-handler.stub
│ │ │ │ │ ├── event.stub
│ │ │ │ │ ├── job-queued.stub
│ │ │ │ │ ├── job.stub
│ │ │ │ │ ├── listener-queued.stub
│ │ │ │ │ ├── listener.stub
│ │ │ │ │ ├── model.stub
│ │ │ │ │ ├── policy.stub
│ │ │ │ │ ├── provider.stub
│ │ │ │ │ ├── request.stub
│ │ │ │ │ ├── routes.stub
│ │ │ │ │ └── test.stub
│ │ │ │ ├── TestMakeCommand.php
│ │ │ │ ├── TinkerCommand.php
│ │ │ │ ├── UpCommand.php
│ │ │ │ ├── VendorPublishCommand.php
│ │ │ │ └── ViewClearCommand.php
│ │ │ ├── EnvironmentDetector.php
│ │ │ ├── Exceptions
│ │ │ │ └── Handler.php
│ │ │ ├── helpers.php
│ │ │ ├── Http
│ │ │ │ ├── FormRequest.php
│ │ │ │ ├── Kernel.php
│ │ │ │ └── Middleware
│ │ │ │ ├── Authorize.php
│ │ │ │ ├── CheckForMaintenanceMode.php
│ │ │ │ ├── VerifyCsrfToken.php
│ │ │ │ └── VerifyPostSize.php
│ │ │ ├── Inspiring.php
│ │ │ ├── ProviderRepository.php
│ │ │ ├── Providers
│ │ │ │ ├── ArtisanServiceProvider.php
│ │ │ │ ├── ComposerServiceProvider.php
│ │ │ │ ├── ConsoleSupportServiceProvider.php
│ │ │ │ └── FoundationServiceProvider.php
│ │ │ ├── Support
│ │ │ │ └── Providers
│ │ │ │ ├── AuthServiceProvider.php
│ │ │ │ ├── EventServiceProvider.php
│ │ │ │ └── RouteServiceProvider.php
│ │ │ ├── Testing
│ │ │ │ ├── Concerns
│ │ │ │ │ ├── ImpersonatesUsers.php
│ │ │ │ │ ├── InteractsWithAuthentication.php
│ │ │ │ │ ├── InteractsWithConsole.php
│ │ │ │ │ ├── InteractsWithContainer.php
│ │ │ │ │ ├── InteractsWithDatabase.php
│ │ │ │ │ ├── InteractsWithPages.php
│ │ │ │ │ ├── InteractsWithSession.php
│ │ │ │ │ ├── MakesHttpRequests.php
│ │ │ │ │ └── MocksApplicationServices.php
│ │ │ │ ├── Constraints
│ │ │ │ │ ├── FormFieldConstraint.php
│ │ │ │ │ ├── HasElement.php
│ │ │ │ │ ├── HasInElement.php
│ │ │ │ │ ├── HasLink.php
│ │ │ │ │ ├── HasSource.php
│ │ │ │ │ ├── HasText.php
│ │ │ │ │ ├── HasValue.php
│ │ │ │ │ ├── IsChecked.php
│ │ │ │ │ ├── IsSelected.php
│ │ │ │ │ ├── PageConstraint.php
│ │ │ │ │ └── ReversePageConstraint.php
│ │ │ │ ├── DatabaseMigrations.php
│ │ │ │ ├── DatabaseTransactions.php
│ │ │ │ ├── HttpException.php
│ │ │ │ ├── TestCase.php
│ │ │ │ ├── WithoutEvents.php
│ │ │ │ └── WithoutMiddleware.php
│ │ │ └── Validation
│ │ │ ├── ValidatesRequests.php
│ │ │ └── ValidationException.php
│ │ ├── Hashing
│ │ │ ├── BcryptHasher.php
│ │ │ ├── composer.json
│ │ │ └── HashServiceProvider.php
│ │ ├── Http
│ │ │ ├── composer.json
│ │ │ ├── Exception
│ │ │ │ ├── HttpResponseException.php
│ │ │ │ └── PostTooLargeException.php
│ │ │ ├── JsonResponse.php
│ │ │ ├── Middleware
│ │ │ │ ├── CheckResponseForModifications.php
│ │ │ │ └── FrameGuard.php
│ │ │ ├── RedirectResponse.php
│ │ │ ├── Request.php
│ │ │ ├── Response.php
│ │ │ ├── ResponseTrait.php
│ │ │ └── UploadedFile.php
│ │ ├── Log
│ │ │ ├── composer.json
│ │ │ └── Writer.php
│ │ │ ├── composer.json
│ │ │ ├── Events
│ │ │ │ └── MessageSending.php
│ │ │ ├── Mailer.php
│ │ │ ├── MailServiceProvider.php
│ │ │ ├── Message.php
│ │ │ ├── Transport
│ │ │ │ ├── LogTransport.php
│ │ │ │ ├── MailgunTransport.php
│ │ │ │ ├── MandrillTransport.php
│ │ │ │ ├── SesTransport.php
│ │ │ │ ├── SparkPostTransport.php
│ │ │ │ └── Transport.php
│ │ │ └── TransportManager.php
│ │ ├── Pagination
│ │ │ ├── AbstractPaginator.php
│ │ │ ├── BootstrapFourNextPreviousButtonRendererTrait.php
│ │ │ ├── BootstrapFourPresenter.php
│ │ │ ├── BootstrapThreeNextPreviousButtonRendererTrait.php
│ │ │ ├── BootstrapThreePresenter.php
│ │ │ ├── composer.json
│ │ │ ├── LengthAwarePaginator.php
│ │ │ ├── PaginationServiceProvider.php
│ │ │ ├── Paginator.php
│ │ │ ├── SimpleBootstrapFourPresenter.php
│ │ │ ├── SimpleBootstrapThreePresenter.php
│ │ │ ├── UrlWindow.php
│ │ │ └── UrlWindowPresenterTrait.php
│ │ ├── Pipeline
│ │ │ ├── composer.json
│ │ │ ├── Hub.php
│ │ │ ├── Pipeline.php
│ │ │ └── PipelineServiceProvider.php
│ │ ├── Queue
│ │ │ ├── BeanstalkdQueue.php
│ │ │ ├── CallQueuedHandler.php
│ │ │ ├── Capsule
│ │ │ │ └── Manager.php
│ │ │ ├── composer.json
│ │ │ ├── Connectors
│ │ │ │ ├── BeanstalkdConnector.php
│ │ │ │ ├── ConnectorInterface.php
│ │ │ │ ├── DatabaseConnector.php
│ │ │ │ ├── NullConnector.php
│ │ │ │ ├── RedisConnector.php
│ │ │ │ ├── SqsConnector.php
│ │ │ │ └── SyncConnector.php
│ │ │ ├── Console
│ │ │ │ ├── FailedTableCommand.php
│ │ │ │ ├── FlushFailedCommand.php
│ │ │ │ ├── ForgetFailedCommand.php
│ │ │ │ ├── ListenCommand.php
│ │ │ │ ├── ListFailedCommand.php
│ │ │ │ ├── RestartCommand.php
│ │ │ │ ├── RetryCommand.php
│ │ │ │ ├── stubs
│ │ │ │ │ ├── failed_jobs.stub
│ │ │ │ │ └── jobs.stub
│ │ │ │ ├── TableCommand.php
│ │ │ │ └── WorkCommand.php
│ │ │ ├── ConsoleServiceProvider.php
│ │ │ ├── DatabaseQueue.php
│ │ │ ├── Events
│ │ │ │ ├── JobExceptionOccurred.php
│ │ │ │ ├── JobFailed.php
│ │ │ │ ├── JobProcessed.php
│ │ │ │ ├── JobProcessing.php
│ │ │ │ └── WorkerStopping.php
│ │ │ ├── Failed
│ │ │ │ ├── DatabaseFailedJobProvider.php
│ │ │ │ ├── FailedJobProviderInterface.php
│ │ │ │ └── NullFailedJobProvider.php
│ │ │ ├── IlluminateQueueClosure.php
│ │ │ ├── InteractsWithQueue.php
│ │ │ ├── Jobs
│ │ │ │ ├── BeanstalkdJob.php
│ │ │ │ ├── DatabaseJob.php
│ │ │ │ ├── Job.php
│ │ │ │ ├── RedisJob.php
│ │ │ │ ├── SqsJob.php
│ │ │ │ └── SyncJob.php
│ │ │ ├── Listener.php
│ │ │ ├── NullQueue.php
│ │ │ ├── QueueManager.php
│ │ │ ├── Queue.php
│ │ │ ├── QueueServiceProvider.php
│ │ │ ├── README.md
│ │ │ ├── RedisQueue.php
│ │ │ ├── SerializesModels.php
│ │ │ ├── SqsQueue.php
│ │ │ ├── SyncQueue.php
│ │ │ └── Worker.php
│ │ ├── Redis
│ │ │ ├── composer.json
│ │ │ ├── Database.php
│ │ │ └── RedisServiceProvider.php
│ │ ├── Routing
│ │ │ ├── composer.json
│ │ │ ├── Console
│ │ │ │ ├── ControllerMakeCommand.php
│ │ │ │ ├── MiddlewareMakeCommand.php
│ │ │ │ └── stubs
│ │ │ │ ├── controller.plain.stub
│ │ │ │ ├── controller.stub
│ │ │ │ └── middleware.stub
│ │ │ ├── ControllerDispatcher.php
│ │ │ ├── ControllerInspector.php
│ │ │ ├── ControllerMiddlewareOptions.php
│ │ │ ├── Controller.php
│ │ │ ├── Events
│ │ │ │ └── RouteMatched.php
│ │ │ ├── Exceptions
│ │ │ │ └── UrlGenerationException.php
│ │ │ ├── Matching
│ │ │ │ ├── HostValidator.php
│ │ │ │ ├── MethodValidator.php
│ │ │ │ ├── SchemeValidator.php
│ │ │ │ ├── UriValidator.php
│ │ │ │ └── ValidatorInterface.php
│ │ │ ├── Middleware
│ │ │ │ └── ThrottleRequests.php
│ │ │ ├── Pipeline.php
│ │ │ ├── Redirector.php
│ │ │ ├── ResourceRegistrar.php
│ │ │ ├── ResponseFactory.php
│ │ │ ├── RouteCollection.php
│ │ │ ├── RouteDependencyResolverTrait.php
│ │ │ ├── Route.php
│ │ │ ├── Router.php
│ │ │ ├── RoutingServiceProvider.php
│ │ │ └── UrlGenerator.php
│ │ ├── Session
│ │ │ ├── CacheBasedSessionHandler.php
│ │ │ ├── composer.json
│ │ │ ├── Console
│ │ │ │ ├── SessionTableCommand.php
│ │ │ │ └── stubs
│ │ │ │ └── database.stub
│ │ │ ├── CookieSessionHandler.php
│ │ │ ├── DatabaseSessionHandler.php
│ │ │ ├── EncryptedStore.php
│ │ │ ├── ExistenceAwareInterface.php
│ │ │ ├── FileSessionHandler.php
│ │ │ ├── LegacyDatabaseSessionHandler.php
│ │ │ ├── Middleware
│ │ │ │ └── StartSession.php
│ │ │ ├── SessionInterface.php
│ │ │ ├── SessionManager.php
│ │ │ ├── SessionServiceProvider.php
│ │ │ ├── Store.php
│ │ │ └── TokenMismatchException.php
│ │ ├── Support
│ │ │ ├── AggregateServiceProvider.php
│ │ │ ├── Arr.php
│ │ │ ├── ClassLoader.php
│ │ │ ├── Collection.php
│ │ │ ├── composer.json
│ │ │ ├── Composer.php
│ │ │ ├── Debug
│ │ │ │ ├── Dumper.php
│ │ │ │ └── HtmlDumper.php
│ │ │ ├── Facades
│ │ │ │ ├── App.php
│ │ │ │ ├── Artisan.php
│ │ │ │ ├── Auth.php
│ │ │ │ ├── Blade.php
│ │ │ │ ├── Bus.php
│ │ │ │ ├── Cache.php
│ │ │ │ ├── Config.php
│ │ │ │ ├── Cookie.php
│ │ │ │ ├── Crypt.php
│ │ │ │ ├── DB.php
│ │ │ │ ├── Event.php
│ │ │ │ ├── Facade.php
│ │ │ │ ├── File.php
│ │ │ │ ├── Gate.php
│ │ │ │ ├── Hash.php
│ │ │ │ ├── Input.php
│ │ │ │ ├── Lang.php
│ │ │ │ ├── Log.php
│ │ │ │ ├── Mail.php
│ │ │ │ ├── Password.php
│ │ │ │ ├── Queue.php
│ │ │ │ ├── Redirect.php
│ │ │ │ ├── Redis.php
│ │ │ │ ├── Request.php
│ │ │ │ ├── Response.php
│ │ │ │ ├── Route.php
│ │ │ │ ├── Schema.php
│ │ │ │ ├── Session.php
│ │ │ │ ├── Storage.php
│ │ │ │ ├── URL.php
│ │ │ │ ├── Validator.php
│ │ │ │ └── View.php
│ │ │ ├── Fluent.php
│ │ │ ├── helpers.php
│ │ │ ├── HtmlString.php
│ │ │ ├── Manager.php
│ │ │ ├── MessageBag.php
│ │ │ ├── NamespacedItemResolver.php
│ │ │ ├── Pluralizer.php
│ │ │ ├── ServiceProvider.php
│ │ │ ├── Str.php
│ │ │ ├── Traits
│ │ │ │ ├── CapsuleManagerTrait.php
│ │ │ │ └── Macroable.php
│ │ │ └── ViewErrorBag.php
│ │ ├── Translation
│ │ │ ├── ArrayLoader.php
│ │ │ ├── composer.json
│ │ │ ├── FileLoader.php
│ │ │ ├── LoaderInterface.php
│ │ │ ├── TranslationServiceProvider.php
│ │ │ └── Translator.php
│ │ ├── Validation
│ │ │ ├── composer.json
│ │ │ ├── DatabasePresenceVerifier.php
│ │ │ ├── Factory.php
│ │ │ ├── PresenceVerifierInterface.php
│ │ │ ├── ValidatesWhenResolvedTrait.php
│ │ │ ├── ValidationException.php
│ │ │ ├── ValidationServiceProvider.php
│ │ │ └── Validator.php
│ │ └── View
│ │ ├── Compilers
│ │ │ ├── BladeCompiler.php
│ │ │ ├── CompilerInterface.php
│ │ │ └── Compiler.php
│ │ ├── composer.json
│ │ ├── Engines
│ │ │ ├── CompilerEngine.php
│ │ │ ├── EngineInterface.php
│ │ │ ├── Engine.php
│ │ │ ├── EngineResolver.php
│ │ │ └── PhpEngine.php
│ │ ├── Expression.php
│ │ ├── Factory.php
│ │ ├── FileViewFinder.php
│ │ ├── Middleware
│ │ │ └── ShareErrorsFromSession.php
│ │ ├── ViewFinderInterface.php
│ │ ├── View.php
│ │ └── ViewServiceProvider.php
│ ├── league
│ │ └── flysystem
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ └── src
│ │ ├── Adapter
│ │ │ ├── AbstractAdapter.php
│ │ │ ├── AbstractFtpAdapter.php
│ │ │ ├── Ftpd.php
│ │ │ ├── Ftp.php
│ │ │ ├── Local.php
│ │ │ ├── NullAdapter.php
│ │ │ ├── Polyfill
│ │ │ │ ├── NotSupportingVisibilityTrait.php
│ │ │ │ ├── StreamedCopyTrait.php
│ │ │ │ ├── StreamedReadingTrait.php
│ │ │ │ ├── StreamedTrait.php
│ │ │ │ └── StreamedWritingTrait.php
│ │ │ └── SynologyFtp.php
│ │ ├── AdapterInterface.php
│ │ ├── ConfigAwareTrait.php
│ │ ├── Config.php
│ │ ├── Directory.php
│ │ ├── Exception.php
│ │ ├── FileExistsException.php
│ │ ├── FileNotFoundException.php
│ │ ├── File.php
│ │ ├── FilesystemInterface.php
│ │ ├── Filesystem.php
│ │ ├── Handler.php
│ │ ├── MountManager.php
│ │ ├── NotSupportedException.php
│ │ ├── Plugin
│ │ │ ├── AbstractPlugin.php
│ │ │ ├── EmptyDir.php
│ │ │ ├── GetWithMetadata.php
│ │ │ ├── ListFiles.php
│ │ │ ├── ListPaths.php
│ │ │ ├── ListWith.php
│ │ │ ├── PluggableTrait.php
│ │ │ └── PluginNotFoundException.php
│ │ ├── PluginInterface.php
│ │ ├── ReadInterface.php
│ │ ├── RootViolationException.php
│ │ ├── UnreadableFileException.php
│ │ ├── Util
│ │ │ ├── ContentListingFormatter.php
│ │ │ ├── MimeType.php
│ │ │ └── StreamHasher.php
│ │ └── Util.php
│ ├── mockery
│ │ └── mockery
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── CONTRIBUTING.md
│ │ ├── docs
│ │ │ ├── conf.py
│ │ │ ├── cookbook
│ │ │ │ ├── default_expectations.rst
│ │ │ │ ├── detecting_mock_objects.rst
│ │ │ │ ├── index.rst
│ │ │ │ ├── map.rst.inc
│ │ │ │ └── mocking_hard_dependencies.rst
│ │ │ ├── getting_started
│ │ │ │ ├── index.rst
│ │ │ │ ├── installation.rst
│ │ │ │ ├── map.rst.inc
│ │ │ │ ├── simple_example.rst
│ │ │ │ └── upgrading.rst
│ │ │ ├── index.rst
│ │ │ ├── Makefile
│ │ │ ├── README.md
│ │ │ └── reference
│ │ │ ├── argument_validation.rst
│ │ │ ├── demeter_chains.rst
│ │ │ ├── expectations.rst
│ │ │ ├── final_methods_classes.rst
│ │ │ ├── index.rst
│ │ │ ├── instance_mocking.rst
│ │ │ ├── magic_methods.rst
│ │ │ ├── map.rst.inc
│ │ │ ├── mockery
│ │ │ │ ├── configuration.rst
│ │ │ │ ├── exceptions.rst
│ │ │ │ ├── gotchas.rst
│ │ │ │ ├── index.rst
│ │ │ │ └── reserved_method_names.rst
│ │ │ ├── object_recording.rst
│ │ │ ├── partial_mocks.rst
│ │ │ ├── pass_by_reference_behaviours.rst
│ │ │ ├── phpunit_integration.rst
│ │ │ ├── public_properties.rst
│ │ │ ├── public_static_properties.rst
│ │ │ ├── quick_examples.rst
│ │ │ └── startup_methods.rst
│ │ ├── examples
│ │ │ └── starship
│ │ │ ├── Bootstrap.php
│ │ │ ├── phpunit.xml
│ │ │ ├── Starship.php
│ │ │ └── StarshipTest.php
│ │ ├── library
│ │ │ ├── Mockery
│ │ │ │ ├── Adapter
│ │ │ │ │ └── Phpunit
│ │ │ │ │ ├── MockeryPHPUnitIntegration.php
│ │ │ │ │ ├── MockeryTestCase.php
│ │ │ │ │ └── TestListener.php
│ │ │ │ ├── CompositeExpectation.php
│ │ │ │ ├── Configuration.php
│ │ │ │ ├── Container.php
│ │ │ │ ├── CountValidator
│ │ │ │ │ ├── AtLeast.php
│ │ │ │ │ ├── AtMost.php
│ │ │ │ │ ├── CountValidatorAbstract.php
│ │ │ │ │ ├── Exact.php
│ │ │ │ │ └── Exception.php
│ │ │ │ ├── Exception
│ │ │ │ │ ├── InvalidCountException.php
│ │ │ │ │ ├── InvalidOrderException.php
│ │ │ │ │ ├── NoMatchingExpectationException.php
│ │ │ │ │ └── RuntimeException.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── ExpectationDirector.php
│ │ │ │ ├── ExpectationInterface.php
│ │ │ │ ├── Expectation.php
│ │ │ │ ├── Generator
│ │ │ │ │ ├── CachingGenerator.php
│ │ │ │ │ ├── DefinedTargetClass.php
│ │ │ │ │ ├── Generator.php
│ │ │ │ │ ├── Method.php
│ │ │ │ │ ├── MockConfigurationBuilder.php
│ │ │ │ │ ├── MockConfiguration.php
│ │ │ │ │ ├── MockDefinition.php
│ │ │ │ │ ├── Parameter.php
│ │ │ │ │ ├── StringManipulation
│ │ │ │ │ │ └── Pass
│ │ │ │ │ │ ├── CallTypeHintPass.php
│ │ │ │ │ │ ├── ClassNamePass.php
│ │ │ │ │ │ ├── ClassPass.php
│ │ │ │ │ │ ├── InstanceMockPass.php
│ │ │ │ │ │ ├── InterfacePass.php
│ │ │ │ │ │ ├── MethodDefinitionPass.php
│ │ │ │ │ │ ├── Pass.php
│ │ │ │ │ │ ├── RemoveBuiltinMethodsThatAreFinalPass.php
│ │ │ │ │ │ └── RemoveUnserializeForInternalSerializableClassesPass.php
│ │ │ │ │ ├── StringManipulationGenerator.php
│ │ │ │ │ ├── TargetClass.php
│ │ │ │ │ └── UndefinedTargetClass.php
│ │ │ │ ├── Instantiator.php
│ │ │ │ ├── Loader
│ │ │ │ │ ├── EvalLoader.php
│ │ │ │ │ ├── Loader.php
│ │ │ │ │ └── RequireLoader.php
│ │ │ │ ├── Loader.php
│ │ │ │ ├── Matcher
│ │ │ │ │ ├── AnyOf.php
│ │ │ │ │ ├── Any.php
│ │ │ │ │ ├── Closure.php
│ │ │ │ │ ├── Contains.php
│ │ │ │ │ ├── Ducktype.php
│ │ │ │ │ ├── HasKey.php
│ │ │ │ │ ├── HasValue.php
│ │ │ │ │ ├── MatcherAbstract.php
│ │ │ │ │ ├── MustBe.php
│ │ │ │ │ ├── NotAnyOf.php
│ │ │ │ │ ├── Not.php
│ │ │ │ │ ├── Subset.php
│ │ │ │ │ └── Type.php
│ │ │ │ ├── MethodCall.php
│ │ │ │ ├── MockInterface.php
│ │ │ │ ├── Mock.php
│ │ │ │ ├── ReceivedMethodCalls.php
│ │ │ │ ├── Recorder.php
│ │ │ │ ├── Undefined.php
│ │ │ │ ├── VerificationDirector.php
│ │ │ │ └── VerificationExpectation.php
│ │ │ └── Mockery.php
│ │ ├── LICENSE
│ │ ├── package.xml
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── tests
│ │ │ ├── Bootstrap.php
│ │ │ └── Mockery
│ │ │ ├── AdhocTest.php
│ │ │ ├── ContainerTest.php
│ │ │ ├── DemeterChainTest.php
│ │ │ ├── ExpectationTest.php
│ │ │ ├── _files
│ │ │ │ └── file.txt
│ │ │ ├── Generator
│ │ │ │ ├── DefinedTargetClassTest.php
│ │ │ │ ├── MockConfigurationTest.php
│ │ │ │ └── StringManipulation
│ │ │ │ └── Pass
│ │ │ │ ├── CallTypeHintPassTest.php
│ │ │ │ ├── ClassNamePassTest.php
│ │ │ │ ├── InstanceMockPassTest.php
│ │ │ │ └── InterfacePassTest.php
│ │ │ ├── HamcrestExpectationTest.php
│ │ │ ├── Loader
│ │ │ │ ├── EvalLoaderTest.php
│ │ │ │ ├── LoaderTestCase.php
│ │ │ │ └── RequireLoaderTest.php
│ │ │ ├── LoaderTest.php
│ │ │ ├── MockClassWithFinalWakeupTest.php
│ │ │ ├── MockClassWithUnknownTypeHintTest.php
│ │ │ ├── MockeryCanMockMultipleInterfacesWhichOverlapTest.php
│ │ │ ├── MockingParameterAndReturnTypesTest.php
│ │ │ ├── MockingProtectedMethodsTest.php
│ │ │ ├── MockingVariadicArgumentsTest.php
│ │ │ ├── MockTest.php
│ │ │ ├── NamedMockTest.php
│ │ │ ├── RecorderTest.php
│ │ │ ├── SpyTest.php
│ │ │ ├── Test
│ │ │ │ └── Generator
│ │ │ │ └── MockConfigurationBuilderTest.php
│ │ │ └── WithFormatterExpectationTest.php
│ │ └── travis
│ │ ├── after_script.sh
│ │ ├── before_script.sh
│ │ ├── extra.ini
│ │ ├── install.sh
│ │ └── script.sh
│ ├── monolog
│ │ └── monolog
│ │ ├── CHANGELOG.mdown
│ │ ├── composer.json
│ │ ├── doc
│ │ │ ├── 01-usage.md
│ │ │ ├── 02-handlers-formatters-processors.md
│ │ │ ├── 03-utilities.md
│ │ │ ├── 04-extending.md
│ │ │ └── sockets.md
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README.mdown
│ │ ├── src
│ │ │ └── Monolog
│ │ │ ├── ErrorHandler.php
│ │ │ ├── Formatter
│ │ │ │ ├── ChromePHPFormatter.php
│ │ │ │ ├── ElasticaFormatter.php
│ │ │ │ ├── FlowdockFormatter.php
│ │ │ │ ├── FluentdFormatter.php
│ │ │ │ ├── FormatterInterface.php
│ │ │ │ ├── GelfMessageFormatter.php
│ │ │ │ ├── HtmlFormatter.php
│ │ │ │ ├── JsonFormatter.php
│ │ │ │ ├── LineFormatter.php
│ │ │ │ ├── LogglyFormatter.php
│ │ │ │ ├── LogstashFormatter.php
│ │ │ │ ├── MongoDBFormatter.php
│ │ │ │ ├── NormalizerFormatter.php
│ │ │ │ ├── ScalarFormatter.php
│ │ │ │ └── WildfireFormatter.php
│ │ │ ├── Handler
│ │ │ │ ├── AbstractHandler.php
│ │ │ │ ├── AbstractProcessingHandler.php
│ │ │ │ ├── AbstractSyslogHandler.php
│ │ │ │ ├── AmqpHandler.php
│ │ │ │ ├── BrowserConsoleHandler.php
│ │ │ │ ├── BufferHandler.php
│ │ │ │ ├── ChromePHPHandler.php
│ │ │ │ ├── CouchDBHandler.php
│ │ │ │ ├── CubeHandler.php
│ │ │ │ ├── Curl
│ │ │ │ │ └── Util.php
│ │ │ │ ├── DeduplicationHandler.php
│ │ │ │ ├── DoctrineCouchDBHandler.php
│ │ │ │ ├── DynamoDbHandler.php
│ │ │ │ ├── ElasticSearchHandler.php
│ │ │ │ ├── ErrorLogHandler.php
│ │ │ │ ├── FilterHandler.php
│ │ │ │ ├── FingersCrossed
│ │ │ │ │ ├── ActivationStrategyInterface.php
│ │ │ │ │ ├── ChannelLevelActivationStrategy.php
│ │ │ │ │ └── ErrorLevelActivationStrategy.php
│ │ │ │ ├── FingersCrossedHandler.php
│ │ │ │ ├── FirePHPHandler.php
│ │ │ │ ├── FleepHookHandler.php
│ │ │ │ ├── FlowdockHandler.php
│ │ │ │ ├── GelfHandler.php
│ │ │ │ ├── GroupHandler.php
│ │ │ │ ├── HandlerInterface.php
│ │ │ │ ├── HandlerWrapper.php
│ │ │ │ ├── HipChatHandler.php
│ │ │ │ ├── IFTTTHandler.php
│ │ │ │ ├── LogEntriesHandler.php
│ │ │ │ ├── LogglyHandler.php
│ │ │ │ ├── MailHandler.php
│ │ │ │ ├── MandrillHandler.php
│ │ │ │ ├── MissingExtensionException.php
│ │ │ │ ├── MongoDBHandler.php
│ │ │ │ ├── NativeMailerHandler.php
│ │ │ │ ├── NewRelicHandler.php
│ │ │ │ ├── NullHandler.php
│ │ │ │ ├── PHPConsoleHandler.php
│ │ │ │ ├── PsrHandler.php
│ │ │ │ ├── PushoverHandler.php
│ │ │ │ ├── RavenHandler.php
│ │ │ │ ├── RedisHandler.php
│ │ │ │ ├── RollbarHandler.php
│ │ │ │ ├── RotatingFileHandler.php
│ │ │ │ ├── SamplingHandler.php
│ │ │ │ ├── SlackHandler.php
│ │ │ │ ├── SocketHandler.php
│ │ │ │ ├── StreamHandler.php
│ │ │ │ ├── SwiftMailerHandler.php
│ │ │ │ ├── SyslogHandler.php
│ │ │ │ ├── SyslogUdp
│ │ │ │ │ └── UdpSocket.php
│ │ │ │ ├── SyslogUdpHandler.php
│ │ │ │ ├── TestHandler.php
│ │ │ │ ├── WhatFailureGroupHandler.php
│ │ │ │ └── ZendMonitorHandler.php
│ │ │ ├── Logger.php
│ │ │ ├── Processor
│ │ │ │ ├── GitProcessor.php
│ │ │ │ ├── IntrospectionProcessor.php
│ │ │ │ ├── MemoryPeakUsageProcessor.php
│ │ │ │ ├── MemoryProcessor.php
│ │ │ │ ├── MemoryUsageProcessor.php
│ │ │ │ ├── ProcessIdProcessor.php
│ │ │ │ ├── PsrLogMessageProcessor.php
│ │ │ │ ├── TagProcessor.php
│ │ │ │ ├── UidProcessor.php
│ │ │ │ └── WebProcessor.php
│ │ │ └── Registry.php
│ │ └── tests
│ │ └── Monolog
│ │ ├── ErrorHandlerTest.php
│ │ ├── Formatter
│ │ │ ├── ChromePHPFormatterTest.php
│ │ │ ├── ElasticaFormatterTest.php
│ │ │ ├── FlowdockFormatterTest.php
│ │ │ ├── FluentdFormatterTest.php
│ │ │ ├── GelfMessageFormatterTest.php
│ │ │ ├── JsonFormatterTest.php
│ │ │ ├── LineFormatterTest.php
│ │ │ ├── LogglyFormatterTest.php
│ │ │ ├── LogstashFormatterTest.php
│ │ │ ├── MongoDBFormatterTest.php
│ │ │ ├── NormalizerFormatterTest.php
│ │ │ ├── ScalarFormatterTest.php
│ │ │ └── WildfireFormatterTest.php
│ │ ├── Handler
│ │ │ ├── AbstractHandlerTest.php
│ │ │ ├── AbstractProcessingHandlerTest.php
│ │ │ ├── AmqpHandlerTest.php
│ │ │ ├── BrowserConsoleHandlerTest.php
│ │ │ ├── BufferHandlerTest.php
│ │ │ ├── ChromePHPHandlerTest.php
│ │ │ ├── CouchDBHandlerTest.php
│ │ │ ├── DeduplicationHandlerTest.php
│ │ │ ├── DoctrineCouchDBHandlerTest.php
│ │ │ ├── DynamoDbHandlerTest.php
│ │ │ ├── ElasticSearchHandlerTest.php
│ │ │ ├── ErrorLogHandlerTest.php
│ │ │ ├── FilterHandlerTest.php
│ │ │ ├── FingersCrossedHandlerTest.php
│ │ │ ├── FirePHPHandlerTest.php
│ │ │ ├── Fixtures
│ │ │ ├── FleepHookHandlerTest.php
│ │ │ ├── FlowdockHandlerTest.php
│ │ │ ├── GelfHandlerLegacyTest.php
│ │ │ ├── GelfHandlerTest.php
│ │ │ ├── GelfMockMessagePublisher.php
│ │ │ ├── GroupHandlerTest.php
│ │ │ ├── HandlerWrapperTest.php
│ │ │ ├── HipChatHandlerTest.php
│ │ │ ├── LogEntriesHandlerTest.php
│ │ │ ├── MailHandlerTest.php
│ │ │ ├── MockRavenClient.php
│ │ │ ├── MongoDBHandlerTest.php
│ │ │ ├── NativeMailerHandlerTest.php
│ │ │ ├── NewRelicHandlerTest.php
│ │ │ ├── NullHandlerTest.php
│ │ │ ├── PHPConsoleHandlerTest.php
│ │ │ ├── PsrHandlerTest.php
│ │ │ ├── PushoverHandlerTest.php
│ │ │ ├── RavenHandlerTest.php
│ │ │ ├── RedisHandlerTest.php
│ │ │ ├── RotatingFileHandlerTest.php
│ │ │ ├── SamplingHandlerTest.php
│ │ │ ├── SlackHandlerTest.php
│ │ │ ├── SocketHandlerTest.php
│ │ │ ├── StreamHandlerTest.php
│ │ │ ├── SwiftMailerHandlerTest.php
│ │ │ ├── SyslogHandlerTest.php
│ │ │ ├── SyslogUdpHandlerTest.php
│ │ │ ├── TestHandlerTest.php
│ │ │ ├── UdpSocketTest.php
│ │ │ ├── WhatFailureGroupHandlerTest.php
│ │ │ └── ZendMonitorHandlerTest.php
│ │ ├── LoggerTest.php
│ │ ├── Processor
│ │ │ ├── GitProcessorTest.php
│ │ │ ├── IntrospectionProcessorTest.php
│ │ │ ├── MemoryPeakUsageProcessorTest.php
│ │ │ ├── MemoryUsageProcessorTest.php
│ │ │ ├── ProcessIdProcessorTest.php
│ │ │ ├── PsrLogMessageProcessorTest.php
│ │ │ ├── TagProcessorTest.php
│ │ │ ├── UidProcessorTest.php
│ │ │ └── WebProcessorTest.php
│ │ ├── PsrLogCompatTest.php
│ │ ├── RegistryTest.php
│ │ └── TestCase.php
│ ├── mtdowling
│ │ └── cron-expression
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── src
│ │ │ └── Cron
│ │ │ ├── AbstractField.php
│ │ │ ├── CronExpression.php
│ │ │ ├── DayOfMonthField.php
│ │ │ ├── DayOfWeekField.php
│ │ │ ├── FieldFactory.php
│ │ │ ├── FieldInterface.php
│ │ │ ├── HoursField.php
│ │ │ ├── MinutesField.php
│ │ │ ├── MonthField.php
│ │ │ └── YearField.php
│ │ └── tests
│ │ └── Cron
│ │ ├── AbstractFieldTest.php
│ │ ├── CronExpressionTest.php
│ │ ├── DayOfMonthFieldTest.php
│ │ ├── DayOfWeekFieldTest.php
│ │ ├── FieldFactoryTest.php
│ │ ├── HoursFieldTest.php
│ │ ├── MinutesFieldTest.php
│ │ ├── MonthFieldTest.php
│ │ └── YearFieldTest.php
│ ├── nesbot
│ │ └── carbon
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── readme.md
│ │ └── src
│ │ └── Carbon
│ │ ├── CarbonInterval.php
│ │ ├── Carbon.php
│ │ └── Lang
│ │ ├── af.php
│ │ ├── ar.php
│ │ ├── az.php
│ │ ├── bg.php
│ │ ├── bn.php
│ │ ├── ca.php
│ │ ├── cs.php
│ │ ├── da.php
│ │ ├── de.php
│ │ ├── el.php
│ │ ├── en.php
│ │ ├── eo.php
│ │ ├── es.php
│ │ ├── et.php
│ │ ├── eu.php
│ │ ├── fa.php
│ │ ├── fi.php
│ │ ├── fo.php
│ │ ├── fr.php
│ │ ├── he.php
│ │ ├── hr.php
│ │ ├── hu.php
│ │ ├── id.php
│ │ ├── it.php
│ │ ├── ja.php
│ │ ├── ko.php
│ │ ├── lt.php
│ │ ├── lv.php
│ │ ├── ms.php
│ │ ├── nl.php
│ │ ├── no.php
│ │ ├── pl.php
│ │ ├── pt_BR.php
│ │ ├── pt.php
│ │ ├── ro.php
│ │ ├── ru.php
│ │ ├── sk.php
│ │ ├── sl.php
│ │ ├── sq.php
│ │ ├── sr.php
│ │ ├── sv.php
│ │ ├── th.php
│ │ ├── tr.php
│ │ ├── uk.php
│ │ ├── uz.php
│ │ ├── vi.php
│ │ ├── zh.php
│ │ └── zh-TW.php
│ ├── nikic
│ │ └── php-parser
│ │ ├── bin
│ │ │ └── php-parse
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── doc
│ │ │ ├── 0_Introduction.markdown
│ │ │ ├── 2_Usage_of_basic_components.markdown
│ │ │ ├── 3_Other_node_tree_representations.markdown
│ │ │ ├── 4_Code_generation.markdown
│ │ │ └── component
│ │ │ ├── Error.markdown
│ │ │ └── Lexer.markdown
│ │ ├── grammar
│ │ │ ├── analyze.php
│ │ │ ├── parser.template
│ │ │ ├── php5.y
│ │ │ ├── php7.y
│ │ │ ├── README.md
│ │ │ ├── rebuildParsers.php
│ │ │ ├── tokens.template
│ │ │ └── tokens.y
│ │ ├── lib
│ │ │ ├── bootstrap.php
│ │ │ └── PhpParser
│ │ │ ├── Autoloader.php
│ │ │ ├── Builder
│ │ │ │ ├── Class_.php
│ │ │ │ ├── Declaration.php
│ │ │ │ ├── FunctionLike.php
│ │ │ │ ├── Function_.php
│ │ │ │ ├── Interface_.php
│ │ │ │ ├── Method.php
│ │ │ │ ├── Namespace_.php
│ │ │ │ ├── Param.php
│ │ │ │ ├── Property.php
│ │ │ │ ├── Trait_.php
│ │ │ │ └── Use_.php
│ │ │ ├── BuilderAbstract.php
│ │ │ ├── BuilderFactory.php
│ │ │ ├── Builder.php
│ │ │ ├── Comment
│ │ │ │ └── Doc.php
│ │ │ ├── Comment.php
│ │ │ ├── Error.php
│ │ │ ├── Lexer
│ │ │ │ └── Emulative.php
│ │ │ ├── Lexer.php
│ │ │ ├── Node
│ │ │ │ ├── Arg.php
│ │ │ │ ├── Const_.php
│ │ │ │ ├── Expr
│ │ │ │ │ ├── ArrayDimFetch.php
│ │ │ │ │ ├── ArrayItem.php
│ │ │ │ │ ├── Array_.php
│ │ │ │ │ ├── AssignOp
│ │ │ │ │ │ ├── BitwiseAnd.php
│ │ │ │ │ │ ├── BitwiseOr.php
│ │ │ │ │ │ ├── BitwiseXor.php
│ │ │ │ │ │ ├── Concat.php
│ │ │ │ │ │ ├── Div.php
│ │ │ │ │ │ ├── Minus.php
│ │ │ │ │ │ ├── Mod.php
│ │ │ │ │ │ ├── Mul.php
│ │ │ │ │ │ ├── Plus.php
│ │ │ │ │ │ ├── Pow.php
│ │ │ │ │ │ ├── ShiftLeft.php
│ │ │ │ │ │ └── ShiftRight.php
│ │ │ │ │ ├── AssignOp.php
│ │ │ │ │ ├── Assign.php
│ │ │ │ │ ├── AssignRef.php
│ │ │ │ │ ├── BinaryOp
│ │ │ │ │ │ ├── BitwiseAnd.php
│ │ │ │ │ │ ├── BitwiseOr.php
│ │ │ │ │ │ ├── BitwiseXor.php
│ │ │ │ │ │ ├── BooleanAnd.php
│ │ │ │ │ │ ├── BooleanOr.php
│ │ │ │ │ │ ├── Coalesce.php
│ │ │ │ │ │ ├── Concat.php
│ │ │ │ │ │ ├── Div.php
│ │ │ │ │ │ ├── Equal.php
│ │ │ │ │ │ ├── GreaterOrEqual.php
│ │ │ │ │ │ ├── Greater.php
│ │ │ │ │ │ ├── Identical.php
│ │ │ │ │ │ ├── LogicalAnd.php
│ │ │ │ │ │ ├── LogicalOr.php
│ │ │ │ │ │ ├── LogicalXor.php
│ │ │ │ │ │ ├── Minus.php
│ │ │ │ │ │ ├── Mod.php
│ │ │ │ │ │ ├── Mul.php
│ │ │ │ │ │ ├── NotEqual.php
│ │ │ │ │ │ ├── NotIdentical.php
│ │ │ │ │ │ ├── Plus.php
│ │ │ │ │ │ ├── Pow.php
│ │ │ │ │ │ ├── ShiftLeft.php
│ │ │ │ │ │ ├── ShiftRight.php
│ │ │ │ │ │ ├── SmallerOrEqual.php
│ │ │ │ │ │ ├── Smaller.php
│ │ │ │ │ │ └── Spaceship.php
│ │ │ │ │ ├── BinaryOp.php
│ │ │ │ │ ├── BitwiseNot.php
│ │ │ │ │ ├── BooleanNot.php
│ │ │ │ │ ├── Cast
│ │ │ │ │ │ ├── Array_.php
│ │ │ │ │ │ ├── Bool_.php
│ │ │ │ │ │ ├── Double.php
│ │ │ │ │ │ ├── Int_.php
│ │ │ │ │ │ ├── Object_.php
│ │ │ │ │ │ ├── String_.php
│ │ │ │ │ │ └── Unset_.php
│ │ │ │ │ ├── Cast.php
│ │ │ │ │ ├── ClassConstFetch.php
│ │ │ │ │ ├── Clone_.php
│ │ │ │ │ ├── Closure.php
│ │ │ │ │ ├── ClosureUse.php
│ │ │ │ │ ├── ConstFetch.php
│ │ │ │ │ ├── Empty_.php
│ │ │ │ │ ├── ErrorSuppress.php
│ │ │ │ │ ├── Eval_.php
│ │ │ │ │ ├── Exit_.php
│ │ │ │ │ ├── FuncCall.php
│ │ │ │ │ ├── Include_.php
│ │ │ │ │ ├── Instanceof_.php
│ │ │ │ │ ├── Isset_.php
│ │ │ │ │ ├── List_.php
│ │ │ │ │ ├── MethodCall.php
│ │ │ │ │ ├── New_.php
│ │ │ │ │ ├── PostDec.php
│ │ │ │ │ ├── PostInc.php
│ │ │ │ │ ├── PreDec.php
│ │ │ │ │ ├── PreInc.php
│ │ │ │ │ ├── Print_.php
│ │ │ │ │ ├── PropertyFetch.php
│ │ │ │ │ ├── ShellExec.php
│ │ │ │ │ ├── StaticCall.php
│ │ │ │ │ ├── StaticPropertyFetch.php
│ │ │ │ │ ├── Ternary.php
│ │ │ │ │ ├── UnaryMinus.php
│ │ │ │ │ ├── UnaryPlus.php
│ │ │ │ │ ├── Variable.php
│ │ │ │ │ ├── YieldFrom.php
│ │ │ │ │ └── Yield_.php
│ │ │ │ ├── Expr.php
│ │ │ │ ├── FunctionLike.php
│ │ │ │ ├── Name
│ │ │ │ │ ├── FullyQualified.php
│ │ │ │ │ └── Relative.php
│ │ │ │ ├── Name.php
│ │ │ │ ├── Param.php
│ │ │ │ ├── Scalar
│ │ │ │ │ ├── DNumber.php
│ │ │ │ │ ├── Encapsed.php
│ │ │ │ │ ├── EncapsedStringPart.php
│ │ │ │ │ ├── LNumber.php
│ │ │ │ │ ├── MagicConst
│ │ │ │ │ │ ├── Class_.php
│ │ │ │ │ │ ├── Dir.php
│ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ ├── Function_.php
│ │ │ │ │ │ ├── Line.php
│ │ │ │ │ │ ├── Method.php
│ │ │ │ │ │ ├── Namespace_.php
│ │ │ │ │ │ └── Trait_.php
│ │ │ │ │ ├── MagicConst.php
│ │ │ │ │ └── String_.php
│ │ │ │ ├── Scalar.php
│ │ │ │ ├── Stmt
│ │ │ │ │ ├── Break_.php
│ │ │ │ │ ├── Case_.php
│ │ │ │ │ ├── Catch_.php
│ │ │ │ │ ├── ClassConst.php
│ │ │ │ │ ├── ClassLike.php
│ │ │ │ │ ├── ClassMethod.php
│ │ │ │ │ ├── Class_.php
│ │ │ │ │ ├── Const_.php
│ │ │ │ │ ├── Continue_.php
│ │ │ │ │ ├── DeclareDeclare.php
│ │ │ │ │ ├── Declare_.php
│ │ │ │ │ ├── Do_.php
│ │ │ │ │ ├── Echo_.php
│ │ │ │ │ ├── ElseIf_.php
│ │ │ │ │ ├── Else_.php
│ │ │ │ │ ├── Foreach_.php
│ │ │ │ │ ├── For_.php
│ │ │ │ │ ├── Function_.php
│ │ │ │ │ ├── Global_.php
│ │ │ │ │ ├── Goto_.php
│ │ │ │ │ ├── GroupUse.php
│ │ │ │ │ ├── HaltCompiler.php
│ │ │ │ │ ├── If_.php
│ │ │ │ │ ├── InlineHTML.php
│ │ │ │ │ ├── Interface_.php
│ │ │ │ │ ├── Label.php
│ │ │ │ │ ├── Namespace_.php
│ │ │ │ │ ├── Nop.php
│ │ │ │ │ ├── Property.php
│ │ │ │ │ ├── PropertyProperty.php
│ │ │ │ │ ├── Return_.php
│ │ │ │ │ ├── Static_.php
│ │ │ │ │ ├── StaticVar.php
│ │ │ │ │ ├── Switch_.php
│ │ │ │ │ ├── Throw_.php
│ │ │ │ │ ├── Trait_.php
│ │ │ │ │ ├── TraitUseAdaptation
│ │ │ │ │ │ ├── Alias.php
│ │ │ │ │ │ └── Precedence.php
│ │ │ │ │ ├── TraitUseAdaptation.php
│ │ │ │ │ ├── TraitUse.php
│ │ │ │ │ ├── TryCatch.php
│ │ │ │ │ ├── Unset_.php
│ │ │ │ │ ├── Use_.php
│ │ │ │ │ ├── UseUse.php
│ │ │ │ │ └── While_.php
│ │ │ │ └── Stmt.php
│ │ │ ├── NodeAbstract.php
│ │ │ ├── NodeDumper.php
│ │ │ ├── Node.php
│ │ │ ├── NodeTraverserInterface.php
│ │ │ ├── NodeTraverser.php
│ │ │ ├── NodeVisitor
│ │ │ │ └── NameResolver.php
│ │ │ ├── NodeVisitorAbstract.php
│ │ │ ├── NodeVisitor.php
│ │ │ ├── Parser
│ │ │ │ ├── Multiple.php
│ │ │ │ ├── Php5.php
│ │ │ │ ├── Php7.php
│ │ │ │ └── Tokens.php
│ │ │ ├── ParserAbstract.php
│ │ │ ├── ParserFactory.php
│ │ │ ├── Parser.php
│ │ │ ├── PrettyPrinter
│ │ │ │ └── Standard.php
│ │ │ ├── PrettyPrinterAbstract.php
│ │ │ ├── Serializer
│ │ │ │ └── XML.php
│ │ │ ├── Serializer.php
│ │ │ ├── Unserializer
│ │ │ │ └── XML.php
│ │ │ └── Unserializer.php
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── test
│ │ │ ├── bootstrap.php
│ │ │ ├── code
│ │ │ │ ├── parser
│ │ │ │ │ ├── comments.test
│ │ │ │ │ ├── errorHandling
│ │ │ │ │ │ ├── eofError.test
│ │ │ │ │ │ └── recovery.test
│ │ │ │ │ ├── expr
│ │ │ │ │ │ ├── arrayDef.test
│ │ │ │ │ │ ├── assign.test
│ │ │ │ │ │ ├── cast.test
│ │ │ │ │ │ ├── clone.test
│ │ │ │ │ │ ├── closure.test
│ │ │ │ │ │ ├── comparison.test
│ │ │ │ │ │ ├── constant_expr.test
│ │ │ │ │ │ ├── errorSuppress.test
│ │ │ │ │ │ ├── exit.test
│ │ │ │ │ │ ├── fetchAndCall
│ │ │ │ │ │ │ ├── args.test
│ │ │ │ │ │ │ ├── constantDeref.test
│ │ │ │ │ │ │ ├── constFetch.test
│ │ │ │ │ │ │ ├── funcCall.test
│ │ │ │ │ │ │ ├── newDeref.test
│ │ │ │ │ │ │ ├── objectAccess.test
│ │ │ │ │ │ │ ├── simpleArrayAccess.test
│ │ │ │ │ │ │ ├── staticCall.test
│ │ │ │ │ │ │ └── staticPropertyFetch.test
│ │ │ │ │ │ ├── includeAndEval.test
│ │ │ │ │ │ ├── issetAndEmpty.test
│ │ │ │ │ │ ├── logic.test
│ │ │ │ │ │ ├── math.test
│ │ │ │ │ │ ├── new.test
│ │ │ │ │ │ ├── newWithoutClass.test
│ │ │ │ │ │ ├── print.test
│ │ │ │ │ │ ├── shellExec.test
│ │ │ │ │ │ ├── ternaryAndCoalesce.test
│ │ │ │ │ │ ├── uvs
│ │ │ │ │ │ │ ├── globalNonSimpleVarError.test
│ │ │ │ │ │ │ ├── indirectCall.test
│ │ │ │ │ │ │ ├── isset.test
│ │ │ │ │ │ │ ├── misc.test
│ │ │ │ │ │ │ ├── new.test
│ │ │ │ │ │ │ └── staticProperty.test
│ │ │ │ │ │ └── variable.test
│ │ │ │ │ ├── scalar
│ │ │ │ │ │ ├── constantString.test
│ │ │ │ │ │ ├── docStringNewlines.test
│ │ │ │ │ │ ├── docString.test
│ │ │ │ │ │ ├── encapsedString.test
│ │ │ │ │ │ ├── float.test
│ │ │ │ │ │ ├── int.test
│ │ │ │ │ │ ├── invalidOctal.test
│ │ │ │ │ │ ├── magicConst.test
│ │ │ │ │ │ └── unicodeEscape.test
│ │ │ │ │ ├── semiReserved.test
│ │ │ │ │ └── stmt
│ │ │ │ │ ├── blocklessStatement.test
│ │ │ │ │ ├── class
│ │ │ │ │ │ ├── abstract.test
│ │ │ │ │ │ ├── anonymous.test
│ │ │ │ │ │ ├── conditional.test
│ │ │ │ │ │ ├── final.test
│ │ │ │ │ │ ├── implicitPublic.test
│ │ │ │ │ │ ├── interface.test
│ │ │ │ │ │ ├── modifier.test
│ │ │ │ │ │ ├── name.test
│ │ │ │ │ │ ├── php4Style.test
│ │ │ │ │ │ ├── simple.test
│ │ │ │ │ │ ├── staticMethod.test
│ │ │ │ │ │ └── trait.test
│ │ │ │ │ ├── const.test
│ │ │ │ │ ├── controlFlow.test
│ │ │ │ │ ├── declare.test
│ │ │ │ │ ├── echo.test
│ │ │ │ │ ├── function
│ │ │ │ │ │ ├── byRef.test
│ │ │ │ │ │ ├── conditional.test
│ │ │ │ │ │ ├── defaultValues.test
│ │ │ │ │ │ ├── returnTypes.test
│ │ │ │ │ │ ├── scalarTypeDeclarations.test
│ │ │ │ │ │ ├── specialVars.test
│ │ │ │ │ │ ├── typeDeclarations.test
│ │ │ │ │ │ ├── variadicDefaultValue.test
│ │ │ │ │ │ └── variadic.test
│ │ │ │ │ ├── generator
│ │ │ │ │ │ ├── basic.test
│ │ │ │ │ │ ├── yieldPrecedence.test
│ │ │ │ │ │ └── yieldUnaryPrecedence.test
│ │ │ │ │ ├── haltCompilerInvalidSyntax.test
│ │ │ │ │ ├── haltCompilerOffset.test
│ │ │ │ │ ├── haltCompilerOutermostScope.test
│ │ │ │ │ ├── haltCompiler.test
│ │ │ │ │ ├── hashbang.test
│ │ │ │ │ ├── if.test
│ │ │ │ │ ├── inlineHTML.test
│ │ │ │ │ ├── loop
│ │ │ │ │ │ ├── do.test
│ │ │ │ │ │ ├── foreach.test
│ │ │ │ │ │ ├── for.test
│ │ │ │ │ │ └── while.test
│ │ │ │ │ ├── namespace
│ │ │ │ │ │ ├── alias.test
│ │ │ │ │ │ ├── braced.test
│ │ │ │ │ │ ├── groupUseErrors.test
│ │ │ │ │ │ ├── groupUse.test
│ │ │ │ │ │ ├── invalidName.test
│ │ │ │ │ │ ├── mix.test
│ │ │ │ │ │ ├── name.test
│ │ │ │ │ │ ├── nested.test
│ │ │ │ │ │ ├── notBraced.test
│ │ │ │ │ │ ├── nsAfterHashbang.test
│ │ │ │ │ │ ├── outsideStmtInvalid.test
│ │ │ │ │ │ └── outsideStmt.test
│ │ │ │ │ ├── switch.test
│ │ │ │ │ ├── tryCatch.test
│ │ │ │ │ ├── tryWithoutCatch.test
│ │ │ │ │ └── unset.test
│ │ │ │ └── prettyPrinter
│ │ │ │ ├── comments.test
│ │ │ │ ├── expr
│ │ │ │ │ ├── anonymousClass.test
│ │ │ │ │ ├── call.test
│ │ │ │ │ ├── closure.test
│ │ │ │ │ ├── constant_deref.test
│ │ │ │ │ ├── docStrings.test
│ │ │ │ │ ├── include.test
│ │ │ │ │ ├── intrinsics.test
│ │ │ │ │ ├── list.test
│ │ │ │ │ ├── literals.test
│ │ │ │ │ ├── numbers.test
│ │ │ │ │ ├── operators.test
│ │ │ │ │ ├── parentheses.test
│ │ │ │ │ ├── shortArraySyntax.test
│ │ │ │ │ ├── uvs.test
│ │ │ │ │ ├── variables.test
│ │ │ │ │ └── yield.test
│ │ │ │ ├── inlineHTMLandPHPtest.file-test
│ │ │ │ ├── onlyInlineHTML.file-test
│ │ │ │ ├── onlyPHP.file-test
│ │ │ │ └── stmt
│ │ │ │ ├── alias.test
│ │ │ │ ├── break_continue.test
│ │ │ │ ├── class.test
│ │ │ │ ├── const.test
│ │ │ │ ├── declare.test
│ │ │ │ ├── do_while.test
│ │ │ │ ├── foreach.test
│ │ │ │ ├── for.test
│ │ │ │ ├── function_signatures.test
│ │ │ │ ├── global_static_variables.test
│ │ │ │ ├── goto.test
│ │ │ │ ├── groupUse.test
│ │ │ │ ├── haltCompiler.file-test
│ │ │ │ ├── if.test
│ │ │ │ ├── namespaces.test
│ │ │ │ ├── switch.test
│ │ │ │ ├── throw.test
│ │ │ │ ├── traitUse.test
│ │ │ │ ├── tryCatch.test
│ │ │ │ └── while.test
│ │ │ └── PhpParser
│ │ │ ├── AutoloaderTest.php
│ │ │ ├── Builder
│ │ │ │ ├── ClassTest.php
│ │ │ │ ├── FunctionTest.php
│ │ │ │ ├── InterfaceTest.php
│ │ │ │ ├── MethodTest.php
│ │ │ │ ├── NamespaceTest.php
│ │ │ │ ├── ParamTest.php
│ │ │ │ ├── PropertyTest.php
│ │ │ │ ├── TraitTest.php
│ │ │ │ └── UseTest.php
│ │ │ ├── BuilderFactoryTest.php
│ │ │ ├── CodeParsingTest.php
│ │ │ ├── CodeTestAbstract.php
│ │ │ ├── CommentTest.php
│ │ │ ├── ErrorTest.php
│ │ │ ├── Lexer
│ │ │ │ └── EmulativeTest.php
│ │ │ ├── LexerTest.php
│ │ │ ├── Node
│ │ │ │ ├── NameTest.php
│ │ │ │ ├── Scalar
│ │ │ │ │ ├── MagicConstTest.php
│ │ │ │ │ └── StringTest.php
│ │ │ │ └── Stmt
│ │ │ │ ├── ClassMethodTest.php
│ │ │ │ ├── ClassTest.php
│ │ │ │ ├── InterfaceTest.php
│ │ │ │ └── PropertyTest.php
│ │ │ ├── NodeAbstractTest.php
│ │ │ ├── NodeDumperTest.php
│ │ │ ├── NodeTraverserTest.php
│ │ │ ├── NodeVisitor
│ │ │ │ └── NameResolverTest.php
│ │ │ ├── Parser
│ │ │ │ ├── MultipleTest.php
│ │ │ │ ├── Php5Test.php
│ │ │ │ └── Php7Test.php
│ │ │ ├── ParserFactoryTest.php
│ │ │ ├── ParserTest.php
│ │ │ ├── PrettyPrinterTest.php
│ │ │ ├── Serializer
│ │ │ │ └── XMLTest.php
│ │ │ └── Unserializer
│ │ │ └── XMLTest.php
│ │ ├── test_old
│ │ │ ├── run.php
│ │ │ └── run-php-src.sh
│ │ ├── UPGRADE-1.0.md
│ │ └── UPGRADE-2.0.md
│ ├── paragonie
│ │ └── random_compat
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── dist
│ │ │ ├── random_compat.phar.pubkey
│ │ │ └── random_compat.phar.pubkey.asc
│ │ ├── ERRATA.md
│ │ ├── lib
│ │ │ ├── byte_safe_strings.php
│ │ │ ├── cast_to_int.php
│ │ │ ├── error_polyfill.php
│ │ │ ├── random_bytes_com_dotnet.php
│ │ │ ├── random_bytes_dev_urandom.php
│ │ │ ├── random_bytes_libsodium_legacy.php
│ │ │ ├── random_bytes_libsodium.php
│ │ │ ├── random_bytes_mcrypt.php
│ │ │ ├── random_bytes_openssl.php
│ │ │ ├── random_int.php
│ │ │ └── random.php
│ │ ├── LICENSE
│ │ ├── other
│ │ │ └── build_phar.php
│ │ ├── README.md
│ │ └── SECURITY.md
│ ├── phpdocumentor
│ │ └── reflection-docblock
│ │ ├── composer.json
│ │ ├── composer.lock
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ └── phpDocumentor
│ │ │ └── Reflection
│ │ │ ├── DocBlock
│ │ │ │ ├── Context.php
│ │ │ │ ├── Description.php
│ │ │ │ ├── Location.php
│ │ │ │ ├── Serializer.php
│ │ │ │ ├── Tag
│ │ │ │ │ ├── AuthorTag.php
│ │ │ │ │ ├── CoversTag.php
│ │ │ │ │ ├── DeprecatedTag.php
│ │ │ │ │ ├── ExampleTag.php
│ │ │ │ │ ├── LinkTag.php
│ │ │ │ │ ├── MethodTag.php
│ │ │ │ │ ├── ParamTag.php
│ │ │ │ │ ├── PropertyReadTag.php
│ │ │ │ │ ├── PropertyTag.php
│ │ │ │ │ ├── PropertyWriteTag.php
│ │ │ │ │ ├── ReturnTag.php
│ │ │ │ │ ├── SeeTag.php
│ │ │ │ │ ├── SinceTag.php
│ │ │ │ │ ├── SourceTag.php
│ │ │ │ │ ├── ThrowsTag.php
│ │ │ │ │ ├── UsesTag.php
│ │ │ │ │ ├── VarTag.php
│ │ │ │ │ └── VersionTag.php
│ │ │ │ ├── Tag.php
│ │ │ │ └── Type
│ │ │ │ └── Collection.php
│ │ │ └── DocBlock.php
│ │ └── tests
│ │ └── phpDocumentor
│ │ └── Reflection
│ │ ├── DocBlock
│ │ │ ├── DescriptionTest.php
│ │ │ ├── Tag
│ │ │ │ ├── CoversTagTest.php
│ │ │ │ ├── DeprecatedTagTest.php
│ │ │ │ ├── ExampleTagTest.php
│ │ │ │ ├── LinkTagTest.php
│ │ │ │ ├── MethodTagTest.php
│ │ │ │ ├── ParamTagTest.php
│ │ │ │ ├── ReturnTagTest.php
│ │ │ │ ├── SeeTagTest.php
│ │ │ │ ├── SinceTagTest.php
│ │ │ │ ├── SourceTagTest.php
│ │ │ │ ├── ThrowsTagTest.php
│ │ │ │ ├── UsesTagTest.php
│ │ │ │ ├── VarTagTest.php
│ │ │ │ └── VersionTagTest.php
│ │ │ ├── TagTest.php
│ │ │ └── Type
│ │ │ └── CollectionTest.php
│ │ └── DocBlockTest.php
│ ├── phpspec
│ │ └── prophecy
│ │ ├── CHANGES.md
│ │ ├── composer.json
│ │ ├── composer.lock
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── spec
│ │ │ └── Prophecy
│ │ │ ├── Argument
│ │ │ │ ├── ArgumentsWildcardSpec.php
│ │ │ │ └── Token
│ │ │ │ ├── AnyValuesTokenSpec.php
│ │ │ │ ├── AnyValueTokenSpec.php
│ │ │ │ ├── ApproximateValueTokenSpec.php
│ │ │ │ ├── ArrayCountTokenSpec.php
│ │ │ │ ├── ArrayEntryTokenSpec.php
│ │ │ │ ├── ArrayEveryEntryTokenSpec.php
│ │ │ │ ├── CallbackTokenSpec.php
│ │ │ │ ├── ExactValueTokenSpec.php
│ │ │ │ ├── IdenticalValueTokenSpec.php
│ │ │ │ ├── LogicalAndTokenSpec.php
│ │ │ │ ├── LogicalNotTokenSpec.php
│ │ │ │ ├── ObjectStateTokenSpec.php
│ │ │ │ ├── StringContainsTokenSpec.php
│ │ │ │ └── TypeTokenSpec.php
│ │ │ ├── ArgumentSpec.php
│ │ │ ├── Call
│ │ │ │ ├── CallCenterSpec.php
│ │ │ │ └── CallSpec.php
│ │ │ ├── Comparator
│ │ │ │ ├── ClosureComparatorSpec.php
│ │ │ │ ├── FactorySpec.php
│ │ │ │ └── ProphecyComparatorSpec.php
│ │ │ ├── Doubler
│ │ │ │ ├── ClassPatch
│ │ │ │ │ ├── DisableConstructorPatchSpec.php
│ │ │ │ │ ├── HhvmExceptionPatchSpec.php
│ │ │ │ │ ├── KeywordPatchSpec.php
│ │ │ │ │ ├── MagicCallPatchSpec.php
│ │ │ │ │ ├── ProphecySubjectPatchSpec.php
│ │ │ │ │ ├── ReflectionClassNewInstancePatchSpec.php
│ │ │ │ │ ├── SplFileInfoPatchSpec.php
│ │ │ │ │ └── TraversablePatchSpec.php
│ │ │ │ ├── DoublerSpec.php
│ │ │ │ ├── Generator
│ │ │ │ │ ├── ClassCodeGeneratorSpec.php
│ │ │ │ │ ├── ClassCreatorSpec.php
│ │ │ │ │ ├── ClassMirrorSpec.php
│ │ │ │ │ └── Node
│ │ │ │ │ ├── ArgumentNodeSpec.php
│ │ │ │ │ ├── ClassNodeSpec.php
│ │ │ │ │ └── MethodNodeSpec.php
│ │ │ │ ├── LazyDoubleSpec.php
│ │ │ │ └── NameGeneratorSpec.php
│ │ │ ├── Exception
│ │ │ │ ├── Call
│ │ │ │ │ └── UnexpectedCallExceptionSpec.php
│ │ │ │ ├── Doubler
│ │ │ │ │ ├── ClassCreatorExceptionSpec.php
│ │ │ │ │ ├── ClassMirrorExceptionSpec.php
│ │ │ │ │ ├── ClassNotFoundExceptionSpec.php
│ │ │ │ │ ├── DoubleExceptionSpec.php
│ │ │ │ │ ├── InterfaceNotFoundExceptionSpec.php
│ │ │ │ │ ├── MethodNotExtendableExceptionSpec.php
│ │ │ │ │ └── MethodNotFoundExceptionSpec.php
│ │ │ │ ├── Prediction
│ │ │ │ │ ├── AggregateExceptionSpec.php
│ │ │ │ │ ├── NoCallsExceptionSpec.php
│ │ │ │ │ ├── UnexpectedCallsCountExceptionSpec.php
│ │ │ │ │ └── UnexpectedCallsExceptionSpec.php
│ │ │ │ └── Prophecy
│ │ │ │ ├── MethodProphecyExceptionSpec.php
│ │ │ │ └── ObjectProphecyExceptionSpec.php
│ │ │ ├── Prediction
│ │ │ │ ├── CallbackPredictionSpec.php
│ │ │ │ ├── CallPredictionSpec.php
│ │ │ │ ├── CallTimesPredictionSpec.php
│ │ │ │ └── NoCallsPredictionSpec.php
│ │ │ ├── Promise
│ │ │ │ ├── CallbackPromiseSpec.php
│ │ │ │ ├── ReturnArgumentPromiseSpec.php
│ │ │ │ ├── ReturnPromiseSpec.php
│ │ │ │ └── ThrowPromiseSpec.php
│ │ │ ├── Prophecy
│ │ │ │ ├── MethodProphecySpec.php
│ │ │ │ ├── ObjectProphecySpec.php
│ │ │ │ └── RevealerSpec.php
│ │ │ ├── ProphetSpec.php
│ │ │ └── Util
│ │ │ └── StringUtilSpec.php
│ │ └── src
│ │ └── Prophecy
│ │ ├── Argument
│ │ │ ├── ArgumentsWildcard.php
│ │ │ └── Token
│ │ │ ├── AnyValuesToken.php
│ │ │ ├── AnyValueToken.php
│ │ │ ├── ApproximateValueToken.php
│ │ │ ├── ArrayCountToken.php
│ │ │ ├── ArrayEntryToken.php
│ │ │ ├── ArrayEveryEntryToken.php
│ │ │ ├── CallbackToken.php
│ │ │ ├── ExactValueToken.php
│ │ │ ├── IdenticalValueToken.php
│ │ │ ├── LogicalAndToken.php
│ │ │ ├── LogicalNotToken.php
│ │ │ ├── ObjectStateToken.php
│ │ │ ├── StringContainsToken.php
│ │ │ ├── TokenInterface.php
│ │ │ └── TypeToken.php
│ │ ├── Argument.php
│ │ ├── Call
│ │ │ ├── CallCenter.php
│ │ │ └── Call.php
│ │ ├── Comparator
│ │ │ ├── ClosureComparator.php
│ │ │ ├── Factory.php
│ │ │ └── ProphecyComparator.php
│ │ ├── Doubler
│ │ │ ├── CachedDoubler.php
│ │ │ ├── ClassPatch
│ │ │ │ ├── ClassPatchInterface.php
│ │ │ │ ├── DisableConstructorPatch.php
│ │ │ │ ├── HhvmExceptionPatch.php
│ │ │ │ ├── KeywordPatch.php
│ │ │ │ ├── MagicCallPatch.php
│ │ │ │ ├── ProphecySubjectPatch.php
│ │ │ │ ├── ReflectionClassNewInstancePatch.php
│ │ │ │ ├── SplFileInfoPatch.php
│ │ │ │ └── TraversablePatch.php
│ │ │ ├── DoubleInterface.php
│ │ │ ├── Doubler.php
│ │ │ ├── Generator
│ │ │ │ ├── ClassCodeGenerator.php
│ │ │ │ ├── ClassCreator.php
│ │ │ │ ├── ClassMirror.php
│ │ │ │ ├── Node
│ │ │ │ │ ├── ArgumentNode.php
│ │ │ │ │ ├── ClassNode.php
│ │ │ │ │ └── MethodNode.php
│ │ │ │ └── ReflectionInterface.php
│ │ │ ├── LazyDouble.php
│ │ │ └── NameGenerator.php
│ │ ├── Exception
│ │ │ ├── Call
│ │ │ │ └── UnexpectedCallException.php
│ │ │ ├── Doubler
│ │ │ │ ├── ClassCreatorException.php
│ │ │ │ ├── ClassMirrorException.php
│ │ │ │ ├── ClassNotFoundException.php
│ │ │ │ ├── DoubleException.php
│ │ │ │ ├── DoublerException.php
│ │ │ │ ├── InterfaceNotFoundException.php
│ │ │ │ ├── MethodNotExtendableException.php
│ │ │ │ ├── MethodNotFoundException.php
│ │ │ │ └── ReturnByReferenceException.php
│ │ │ ├── Exception.php
│ │ │ ├── InvalidArgumentException.php
│ │ │ ├── Prediction
│ │ │ │ ├── AggregateException.php
│ │ │ │ ├── FailedPredictionException.php
│ │ │ │ ├── NoCallsException.php
│ │ │ │ ├── PredictionException.php
│ │ │ │ ├── UnexpectedCallsCountException.php
│ │ │ │ └── UnexpectedCallsException.php
│ │ │ └── Prophecy
│ │ │ ├── MethodProphecyException.php
│ │ │ ├── ObjectProphecyException.php
│ │ │ └── ProphecyException.php
│ │ ├── Prediction
│ │ │ ├── CallbackPrediction.php
│ │ │ ├── CallPrediction.php
│ │ │ ├── CallTimesPrediction.php
│ │ │ ├── NoCallsPrediction.php
│ │ │ └── PredictionInterface.php
│ │ ├── Promise
│ │ │ ├── CallbackPromise.php
│ │ │ ├── PromiseInterface.php
│ │ │ ├── ReturnArgumentPromise.php
│ │ │ ├── ReturnPromise.php
│ │ │ └── ThrowPromise.php
│ │ ├── Prophecy
│ │ │ ├── MethodProphecy.php
│ │ │ ├── ObjectProphecy.php
│ │ │ ├── ProphecyInterface.php
│ │ │ ├── ProphecySubjectInterface.php
│ │ │ ├── RevealerInterface.php
│ │ │ └── Revealer.php
│ │ ├── Prophet.php
│ │ └── Util
│ │ ├── ExportUtil.php
│ │ └── StringUtil.php
│ ├── phpunit
│ │ ├── php-code-coverage
│ │ │ ├── build
│ │ │ │ └── travis-ci.xml
│ │ │ ├── build.xml
│ │ │ ├── ChangeLog-2.2.md
│ │ │ ├── composer.json
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── scripts
│ │ │ │ ├── auto_append.php
│ │ │ │ └── auto_prepend.php
│ │ │ ├── src
│ │ │ │ ├── CodeCoverage
│ │ │ │ │ ├── Driver
│ │ │ │ │ │ ├── HHVM.php
│ │ │ │ │ │ ├── PHPDBG.php
│ │ │ │ │ │ └── Xdebug.php
│ │ │ │ │ ├── Driver.php
│ │ │ │ │ ├── Exception
│ │ │ │ │ │ └── UnintentionallyCoveredCode.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── Filter.php
│ │ │ │ │ ├── Report
│ │ │ │ │ │ ├── Clover.php
│ │ │ │ │ │ ├── Crap4j.php
│ │ │ │ │ │ ├── Factory.php
│ │ │ │ │ │ ├── HTML
│ │ │ │ │ │ │ ├── Renderer
│ │ │ │ │ │ │ │ ├── Dashboard.php
│ │ │ │ │ │ │ │ ├── Directory.php
│ │ │ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ │ │ └── Template
│ │ │ │ │ │ │ │ ├── coverage_bar.html.dist
│ │ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ │ │ │ │ ├── nv.d3.min.css
│ │ │ │ │ │ │ │ │ └── style.css
│ │ │ │ │ │ │ │ ├── dashboard.html.dist
│ │ │ │ │ │ │ │ ├── directory.html.dist
│ │ │ │ │ │ │ │ ├── directory_item.html.dist
│ │ │ │ │ │ │ │ ├── file.html.dist
│ │ │ │ │ │ │ │ ├── file_item.html.dist
│ │ │ │ │ │ │ │ ├── fonts
│ │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ │ │ │ │ │ ├── js
│ │ │ │ │ │ │ │ │ ├── bootstrap.min.js
│ │ │ │ │ │ │ │ │ ├── d3.min.js
│ │ │ │ │ │ │ │ │ ├── holder.min.js
│ │ │ │ │ │ │ │ │ ├── html5shiv.min.js
│ │ │ │ │ │ │ │ │ ├── jquery.min.js
│ │ │ │ │ │ │ │ │ ├── nv.d3.min.js
│ │ │ │ │ │ │ │ │ └── respond.min.js
│ │ │ │ │ │ │ │ └── method_item.html.dist
│ │ │ │ │ │ │ └── Renderer.php
│ │ │ │ │ │ ├── HTML.php
│ │ │ │ │ │ ├── Node
│ │ │ │ │ │ │ ├── Directory.php
│ │ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ │ └── Iterator.php
│ │ │ │ │ │ ├── Node.php
│ │ │ │ │ │ ├── PHP.php
│ │ │ │ │ │ ├── Text.php
│ │ │ │ │ │ ├── XML
│ │ │ │ │ │ │ ├── Directory.php
│ │ │ │ │ │ │ ├── File
│ │ │ │ │ │ │ │ ├── Coverage.php
│ │ │ │ │ │ │ │ ├── Method.php
│ │ │ │ │ │ │ │ ├── Report.php
│ │ │ │ │ │ │ │ └── Unit.php
│ │ │ │ │ │ │ ├── File.php
│ │ │ │ │ │ │ ├── Node.php
│ │ │ │ │ │ │ ├── Project.php
│ │ │ │ │ │ │ ├── Tests.php
│ │ │ │ │ │ │ └── Totals.php
│ │ │ │ │ │ └── XML.php
│ │ │ │ │ ├── Util
│ │ │ │ │ │ └── InvalidArgumentHelper.php
│ │ │ │ │ └── Util.php
│ │ │ │ └── CodeCoverage.php
│ │ │ └── tests
│ │ │ ├── _files
│ │ │ │ ├── BankAccount-clover.xml
│ │ │ │ ├── BankAccount.php
│ │ │ │ ├── BankAccountTest.php
│ │ │ │ ├── class-with-anonymous-function-clover.xml
│ │ │ │ ├── CoverageClassExtendedTest.php
│ │ │ │ ├── CoverageClassTest.php
│ │ │ │ ├── CoverageFunctionParenthesesTest.php
│ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php
│ │ │ │ ├── CoverageFunctionTest.php
│ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php
│ │ │ │ ├── CoverageMethodParenthesesTest.php
│ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php
│ │ │ │ ├── CoverageMethodTest.php
│ │ │ │ ├── CoverageNoneTest.php
│ │ │ │ ├── CoverageNothingTest.php
│ │ │ │ ├── CoverageNotPrivateTest.php
│ │ │ │ ├── CoverageNotProtectedTest.php
│ │ │ │ ├── CoverageNotPublicTest.php
│ │ │ │ ├── CoveragePrivateTest.php
│ │ │ │ ├── CoverageProtectedTest.php
│ │ │ │ ├── CoveragePublicTest.php
│ │ │ │ ├── CoverageTwoDefaultClassAnnotations.php
│ │ │ │ ├── CoveredClass.php
│ │ │ │ ├── CoveredFunction.php
│ │ │ │ ├── ignored-lines-clover.xml
│ │ │ │ ├── NamespaceCoverageClassExtendedTest.php
│ │ │ │ ├── NamespaceCoverageClassTest.php
│ │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php
│ │ │ │ ├── NamespaceCoverageCoversClassTest.php
│ │ │ │ ├── NamespaceCoverageMethodTest.php
│ │ │ │ ├── NamespaceCoverageNotPrivateTest.php
│ │ │ │ ├── NamespaceCoverageNotProtectedTest.php
│ │ │ │ ├── NamespaceCoverageNotPublicTest.php
│ │ │ │ ├── NamespaceCoveragePrivateTest.php
│ │ │ │ ├── NamespaceCoverageProtectedTest.php
│ │ │ │ ├── NamespaceCoveragePublicTest.php
│ │ │ │ ├── NamespaceCoveredClass.php
│ │ │ │ ├── NotExistingCoveredElementTest.php
│ │ │ │ ├── source_with_class_and_anonymous_function.php
│ │ │ │ ├── source_with_ignore.php
│ │ │ │ ├── source_with_namespace.php
│ │ │ │ ├── source_with_oneline_annotations.php
│ │ │ │ ├── source_without_ignore.php
│ │ │ │ └── source_without_namespace.php
│ │ │ ├── PHP
│ │ │ │ ├── CodeCoverage
│ │ │ │ │ ├── FilterTest.php
│ │ │ │ │ ├── Report
│ │ │ │ │ │ ├── CloverTest.php
│ │ │ │ │ │ └── FactoryTest.php
│ │ │ │ │ └── UtilTest.php
│ │ │ │ └── CodeCoverageTest.php
│ │ │ └── TestCase.php
│ │ ├── php-file-iterator
│ │ │ ├── ChangeLog.md
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── Facade.php
│ │ │ ├── Factory.php
│ │ │ └── Iterator.php
│ │ ├── php-text-template
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ └── Template.php
│ │ ├── php-timer
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ └── Timer.php
│ │ │ └── tests
│ │ │ └── TimerTest.php
│ │ ├── php-token-stream
│ │ │ ├── build
│ │ │ │ └── phpunit.xml
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── Token
│ │ │ │ │ ├── Stream
│ │ │ │ │ │ └── CachingFactory.php
│ │ │ │ │ └── Stream.php
│ │ │ │ └── Token.php
│ │ │ └── tests
│ │ │ ├── bootstrap.php
│ │ │ ├── _fixture
│ │ │ │ ├── classExtendsNamespacedClass.php
│ │ │ │ ├── classInNamespace.php
│ │ │ │ ├── classInScopedNamespace.php
│ │ │ │ ├── class_with_method_that_declares_anonymous_class2.php
│ │ │ │ ├── class_with_method_that_declares_anonymous_class.php
│ │ │ │ ├── closure.php
│ │ │ │ ├── issue19.php
│ │ │ │ ├── issue30.php
│ │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php
│ │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php
│ │ │ │ ├── source2.php
│ │ │ │ ├── source3.php
│ │ │ │ ├── source4.php
│ │ │ │ ├── source5.php
│ │ │ │ └── source.php
│ │ │ ├── Token
│ │ │ │ ├── ClassTest.php
│ │ │ │ ├── ClosureTest.php
│ │ │ │ ├── FunctionTest.php
│ │ │ │ ├── IncludeTest.php
│ │ │ │ ├── InterfaceTest.php
│ │ │ │ └── NamespaceTest.php
│ │ │ └── TokenTest.php
│ │ ├── phpunit
│ │ │ ├── build
│ │ │ │ ├── binary-phar-autoload.php.in
│ │ │ │ ├── ca.pem
│ │ │ │ ├── library-phar-autoload.php.in
│ │ │ │ ├── phar-manifest.php
│ │ │ │ ├── phar-version.php
│ │ │ │ ├── tools
│ │ │ │ │ ├── composer
│ │ │ │ │ └── phpab
│ │ │ │ └── travis-ci-fail.xml
│ │ │ ├── build.xml
│ │ │ ├── ChangeLog-4.0.md
│ │ │ ├── ChangeLog-4.1.md
│ │ │ ├── ChangeLog-4.2.md
│ │ │ ├── ChangeLog-4.3.md
│ │ │ ├── ChangeLog-4.4.md
│ │ │ ├── ChangeLog-4.5.md
│ │ │ ├── ChangeLog-4.6.md
│ │ │ ├── ChangeLog-4.7.md
│ │ │ ├── ChangeLog-4.8.md
│ │ │ ├── CODE_OF_CONDUCT.md
│ │ │ ├── composer.json
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── LICENSE
│ │ │ ├── phpunit
│ │ │ ├── phpunit.xml
│ │ │ ├── phpunit.xsd
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── Exception.php
│ │ │ │ ├── Extensions
│ │ │ │ │ ├── GroupTestSuite.php
│ │ │ │ │ ├── PhptTestCase.php
│ │ │ │ │ ├── PhptTestSuite.php
│ │ │ │ │ ├── RepeatedTest.php
│ │ │ │ │ ├── TestDecorator.php
│ │ │ │ │ └── TicketListener.php
│ │ │ │ ├── Framework
│ │ │ │ │ ├── Assert
│ │ │ │ │ │ └── Functions.php
│ │ │ │ │ ├── AssertionFailedError.php
│ │ │ │ │ ├── Assert.php
│ │ │ │ │ ├── BaseTestListener.php
│ │ │ │ │ ├── CodeCoverageException.php
│ │ │ │ │ ├── Constraint
│ │ │ │ │ │ ├── And.php
│ │ │ │ │ │ ├── ArrayHasKey.php
│ │ │ │ │ │ ├── ArraySubset.php
│ │ │ │ │ │ ├── Attribute.php
│ │ │ │ │ │ ├── Callback.php
│ │ │ │ │ │ ├── ClassHasAttribute.php
│ │ │ │ │ │ ├── ClassHasStaticAttribute.php
│ │ │ │ │ │ ├── Composite.php
│ │ │ │ │ │ ├── Count.php
│ │ │ │ │ │ ├── ExceptionCode.php
│ │ │ │ │ │ ├── ExceptionMessage.php
│ │ │ │ │ │ ├── ExceptionMessageRegExp.php
│ │ │ │ │ │ ├── Exception.php
│ │ │ │ │ │ ├── FileExists.php
│ │ │ │ │ │ ├── GreaterThan.php
│ │ │ │ │ │ ├── IsAnything.php
│ │ │ │ │ │ ├── IsEmpty.php
│ │ │ │ │ │ ├── IsEqual.php
│ │ │ │ │ │ ├── IsFalse.php
│ │ │ │ │ │ ├── IsIdentical.php
│ │ │ │ │ │ ├── IsInstanceOf.php
│ │ │ │ │ │ ├── IsJson.php
│ │ │ │ │ │ ├── IsNull.php
│ │ │ │ │ │ ├── IsTrue.php
│ │ │ │ │ │ ├── IsType.php
│ │ │ │ │ │ ├── JsonMatches
│ │ │ │ │ │ │ └── ErrorMessageProvider.php
│ │ │ │ │ │ ├── JsonMatches.php
│ │ │ │ │ │ ├── LessThan.php
│ │ │ │ │ │ ├── Not.php
│ │ │ │ │ │ ├── ObjectHasAttribute.php
│ │ │ │ │ │ ├── Or.php
│ │ │ │ │ │ ├── PCREMatch.php
│ │ │ │ │ │ ├── SameSize.php
│ │ │ │ │ │ ├── StringContains.php
│ │ │ │ │ │ ├── StringEndsWith.php
│ │ │ │ │ │ ├── StringMatches.php
│ │ │ │ │ │ ├── StringStartsWith.php
│ │ │ │ │ │ ├── TraversableContainsOnly.php
│ │ │ │ │ │ ├── TraversableContains.php
│ │ │ │ │ │ └── Xor.php
│ │ │ │ │ ├── Constraint.php
│ │ │ │ │ ├── Error
│ │ │ │ │ │ ├── Deprecated.php
│ │ │ │ │ │ ├── Notice.php
│ │ │ │ │ │ └── Warning.php
│ │ │ │ │ ├── Error.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── ExceptionWrapper.php
│ │ │ │ │ ├── ExpectationFailedException.php
│ │ │ │ │ ├── IncompleteTestCase.php
│ │ │ │ │ ├── IncompleteTestError.php
│ │ │ │ │ ├── IncompleteTest.php
│ │ │ │ │ ├── InvalidCoversTargetError.php
│ │ │ │ │ ├── InvalidCoversTargetException.php
│ │ │ │ │ ├── OutputError.php
│ │ │ │ │ ├── RiskyTestError.php
│ │ │ │ │ ├── RiskyTest.php
│ │ │ │ │ ├── SelfDescribing.php
│ │ │ │ │ ├── SkippedTestCase.php
│ │ │ │ │ ├── SkippedTestError.php
│ │ │ │ │ ├── SkippedTest.php
│ │ │ │ │ ├── SkippedTestSuiteError.php
│ │ │ │ │ ├── SyntheticError.php
│ │ │ │ │ ├── TestCase.php
│ │ │ │ │ ├── TestFailure.php
│ │ │ │ │ ├── TestListener.php
│ │ │ │ │ ├── Test.php
│ │ │ │ │ ├── TestResult.php
│ │ │ │ │ ├── TestSuite
│ │ │ │ │ │ └── DataProvider.php
│ │ │ │ │ ├── TestSuite.php
│ │ │ │ │ ├── UnintentionallyCoveredCodeError.php
│ │ │ │ │ └── Warning.php
│ │ │ │ ├── Runner
│ │ │ │ │ ├── BaseTestRunner.php
│ │ │ │ │ ├── Exception.php
│ │ │ │ │ ├── Filter
│ │ │ │ │ │ ├── Factory.php
│ │ │ │ │ │ ├── Group
│ │ │ │ │ │ │ ├── Exclude.php
│ │ │ │ │ │ │ └── Include.php
│ │ │ │ │ │ ├── Group.php
│ │ │ │ │ │ └── Test.php
│ │ │ │ │ ├── StandardTestSuiteLoader.php
│ │ │ │ │ ├── TestSuiteLoader.php
│ │ │ │ │ └── Version.php
│ │ │ │ ├── TextUI
│ │ │ │ │ ├── Command.php
│ │ │ │ │ ├── ResultPrinter.php
│ │ │ │ │ └── TestRunner.php
│ │ │ │ └── Util
│ │ │ │ ├── Blacklist.php
│ │ │ │ ├── Configuration.php
│ │ │ │ ├── ErrorHandler.php
│ │ │ │ ├── Fileloader.php
│ │ │ │ ├── Filesystem.php
│ │ │ │ ├── Filter.php
│ │ │ │ ├── Getopt.php
│ │ │ │ ├── GlobalState.php
│ │ │ │ ├── InvalidArgumentHelper.php
│ │ │ │ ├── Log
│ │ │ │ │ ├── JSON.php
│ │ │ │ │ ├── JUnit.php
│ │ │ │ │ └── TAP.php
│ │ │ │ ├── PHP
│ │ │ │ │ ├── Default.php
│ │ │ │ │ ├── eval-stdin.php
│ │ │ │ │ ├── Template
│ │ │ │ │ │ └── TestCaseMethod.tpl.dist
│ │ │ │ │ └── Windows.php
│ │ │ │ ├── PHP.php
│ │ │ │ ├── Printer.php
│ │ │ │ ├── Regex.php
│ │ │ │ ├── String.php
│ │ │ │ ├── TestDox
│ │ │ │ │ ├── NamePrettifier.php
│ │ │ │ │ ├── ResultPrinter
│ │ │ │ │ │ ├── HTML.php
│ │ │ │ │ │ └── Text.php
│ │ │ │ │ └── ResultPrinter.php
│ │ │ │ ├── Test.php
│ │ │ │ ├── TestSuiteIterator.php
│ │ │ │ ├── Type.php
│ │ │ │ └── XML.php
│ │ │ └── tests
│ │ │ ├── bootstrap.php
│ │ │ ├── Extensions
│ │ │ │ ├── PhptTestCaseTest.php
│ │ │ │ └── RepeatedTestTest.php
│ │ │ ├── Fail
│ │ │ │ └── fail.phpt
│ │ │ ├── _files
│ │ │ │ ├── AbstractTest.php
│ │ │ │ ├── Author.php
│ │ │ │ ├── BankAccount.php
│ │ │ │ ├── BankAccountTest.php
│ │ │ │ ├── BankAccountTest.test.php
│ │ │ │ ├── bar.xml
│ │ │ │ ├── BaseTestListenerSample.php
│ │ │ │ ├── BeforeAndAfterTest.php
│ │ │ │ ├── BeforeClassAndAfterClassTest.php
│ │ │ │ ├── Book.php
│ │ │ │ ├── Calculator.php
│ │ │ │ ├── ChangeCurrentWorkingDirectoryTest.php
│ │ │ │ ├── ClassWithNonPublicAttributes.php
│ │ │ │ ├── ClassWithScalarTypeDeclarations.php
│ │ │ │ ├── ClassWithToString.php
│ │ │ │ ├── ConcreteTest.my.php
│ │ │ │ ├── ConcreteTest.php
│ │ │ │ ├── configuration.colors.empty.xml
│ │ │ │ ├── configuration.colors.false.xml
│ │ │ │ ├── configuration.colors.invalid.xml
│ │ │ │ ├── configuration.colors.true.xml
│ │ │ │ ├── configuration.custom-printer.xml
│ │ │ │ ├── configuration_empty.xml
│ │ │ │ ├── configuration_xinclude.xml
│ │ │ │ ├── configuration.xml
│ │ │ │ ├── CoverageClassExtendedTest.php
│ │ │ │ ├── CoverageClassTest.php
│ │ │ │ ├── CoverageFunctionParenthesesTest.php
│ │ │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php
│ │ │ │ ├── CoverageFunctionTest.php
│ │ │ │ ├── CoverageMethodOneLineAnnotationTest.php
│ │ │ │ ├── CoverageMethodParenthesesTest.php
│ │ │ │ ├── CoverageMethodParenthesesWhitespaceTest.php
│ │ │ │ ├── CoverageMethodTest.php
│ │ │ │ ├── CoverageNamespacedFunctionTest.php
│ │ │ │ ├── CoverageNoneTest.php
│ │ │ │ ├── CoverageNothingTest.php
│ │ │ │ ├── CoverageNotPrivateTest.php
│ │ │ │ ├── CoverageNotProtectedTest.php
│ │ │ │ ├── CoverageNotPublicTest.php
│ │ │ │ ├── CoveragePrivateTest.php
│ │ │ │ ├── CoverageProtectedTest.php
│ │ │ │ ├── CoveragePublicTest.php
│ │ │ │ ├── CoverageTwoDefaultClassAnnotations.php
│ │ │ │ ├── CoveredClass.php
│ │ │ │ ├── CoveredFunction.php
│ │ │ │ ├── CustomPrinter.php
│ │ │ │ ├── DataProviderDebugTest.php
│ │ │ │ ├── DataProviderFilterTest.php
│ │ │ │ ├── DataProviderIncompleteTest.php
│ │ │ │ ├── DataProviderSkippedTest.php
│ │ │ │ ├── DataProviderTest.php
│ │ │ │ ├── DependencyFailureTest.php
│ │ │ │ ├── DependencySuccessTest.php
│ │ │ │ ├── DependencyTestSuite.php
│ │ │ │ ├── DoubleTestCase.php
│ │ │ │ ├── DummyException.php
│ │ │ │ ├── EmptyTestCaseTest.php
│ │ │ │ ├── ExceptionInAssertPostConditionsTest.php
│ │ │ │ ├── ExceptionInAssertPreConditionsTest.php
│ │ │ │ ├── ExceptionInSetUpTest.php
│ │ │ │ ├── ExceptionInTearDownTest.php
│ │ │ │ ├── ExceptionInTest.php
│ │ │ │ ├── ExceptionNamespaceTest.php
│ │ │ │ ├── ExceptionStackTest.php
│ │ │ │ ├── ExceptionTest.php
│ │ │ │ ├── expectedFileFormat.txt
│ │ │ │ ├── Failure.php
│ │ │ │ ├── FailureTest.php
│ │ │ │ ├── FatalTest.php
│ │ │ │ ├── foo.xml
│ │ │ │ ├── IncompleteTest.php
│ │ │ │ ├── Inheritance
│ │ │ │ │ ├── InheritanceA.php
│ │ │ │ │ └── InheritanceB.php
│ │ │ │ ├── InheritedTestCase.php
│ │ │ │ ├── IniTest.php
│ │ │ │ ├── IsolationTest.php
│ │ │ │ ├── JsonData
│ │ │ │ │ ├── arrayObject.json
│ │ │ │ │ └── simpleObject.json
│ │ │ │ ├── MockRunner.php
│ │ │ │ ├── MultiDependencyTest.php
│ │ │ │ ├── NamespaceCoverageClassExtendedTest.php
│ │ │ │ ├── NamespaceCoverageClassTest.php
│ │ │ │ ├── NamespaceCoverageCoversClassPublicTest.php
│ │ │ │ ├── NamespaceCoverageCoversClassTest.php
│ │ │ │ ├── NamespaceCoverageMethodTest.php
│ │ │ │ ├── NamespaceCoverageNotPrivateTest.php
│ │ │ │ ├── NamespaceCoverageNotProtectedTest.php
│ │ │ │ ├── NamespaceCoverageNotPublicTest.php
│ │ │ │ ├── NamespaceCoveragePrivateTest.php
│ │ │ │ ├── NamespaceCoverageProtectedTest.php
│ │ │ │ ├── NamespaceCoveragePublicTest.php
│ │ │ │ ├── NamespaceCoveredClass.php
│ │ │ │ ├── NamespaceCoveredFunction.php
│ │ │ │ ├── NoArgTestCaseTest.php
│ │ │ │ ├── NonStatic.php
│ │ │ │ ├── NoTestCaseClass.php
│ │ │ │ ├── NoTestCases.php
│ │ │ │ ├── NotExistingCoveredElementTest.php
│ │ │ │ ├── NothingTest.php
│ │ │ │ ├── NotPublicTestCase.php
│ │ │ │ ├── NotVoidTestCase.php
│ │ │ │ ├── OneTestCase.php
│ │ │ │ ├── OutputTestCase.php
│ │ │ │ ├── OverrideTestCase.php
│ │ │ │ ├── RequirementsClassBeforeClassHookTest.php
│ │ │ │ ├── RequirementsClassDocBlockTest.php
│ │ │ │ ├── RequirementsTest.php
│ │ │ │ ├── SampleArrayAccess.php
│ │ │ │ ├── SampleClass.php
│ │ │ │ ├── Singleton.php
│ │ │ │ ├── StackTest.php
│ │ │ │ ├── Struct.php
│ │ │ │ ├── structureAttributesAreSameButValuesAreNot.xml
│ │ │ │ ├── structureExpected.xml
│ │ │ │ ├── structureIgnoreTextNodes.xml
│ │ │ │ ├── structureIsSameButDataIsNot.xml
│ │ │ │ ├── structureWrongNumberOfAttributes.xml
│ │ │ │ ├── structureWrongNumberOfNodes.xml
│ │ │ │ ├── Success.php
│ │ │ │ ├── TemplateMethodsTest.php
│ │ │ │ ├── TestIncomplete.php
│ │ │ │ ├── TestIterator2.php
│ │ │ │ ├── TestIterator.php
│ │ │ │ ├── TestSkipped.php
│ │ │ │ ├── TestTestError.php
│ │ │ │ ├── TestWithTest.php
│ │ │ │ ├── ThrowExceptionTestCase.php
│ │ │ │ ├── ThrowNoExceptionTestCase.php
│ │ │ │ └── WasRun.php
│ │ │ ├── Framework
│ │ │ │ ├── AssertTest.php
│ │ │ │ ├── BaseTestListenerTest.php
│ │ │ │ ├── Constraint
│ │ │ │ │ ├── CountTest.php
│ │ │ │ │ ├── ExceptionMessageRegExpTest.php
│ │ │ │ │ ├── ExceptionMessageTest.php
│ │ │ │ │ ├── JsonMatches
│ │ │ │ │ │ └── ErrorMessageProviderTest.php
│ │ │ │ │ └── JsonMatchesTest.php
│ │ │ │ ├── ConstraintTest.php
│ │ │ │ ├── SuiteTest.php
│ │ │ │ ├── TestCaseTest.php
│ │ │ │ ├── TestFailureTest.php
│ │ │ │ ├── TestImplementorTest.php
│ │ │ │ └── TestListenerTest.php
│ │ │ ├── Regression
│ │ │ │ ├── GitHub
│ │ │ │ │ ├── 1149
│ │ │ │ │ │ └── Issue1149Test.php
│ │ │ │ │ ├── 1149.phpt
│ │ │ │ │ ├── 1216
│ │ │ │ │ │ ├── bootstrap1216.php
│ │ │ │ │ │ ├── Issue1216Test.php
│ │ │ │ │ │ └── phpunit1216.xml
│ │ │ │ │ ├── 1216.phpt
│ │ │ │ │ ├── 1265
│ │ │ │ │ │ ├── Issue1265Test.php
│ │ │ │ │ │ └── phpunit1265.xml
│ │ │ │ │ ├── 1265.phpt
│ │ │ │ │ ├── 1330
│ │ │ │ │ │ ├── Issue1330Test.php
│ │ │ │ │ │ └── phpunit1330.xml
│ │ │ │ │ ├── 1330.phpt
│ │ │ │ │ ├── 1335
│ │ │ │ │ │ ├── bootstrap1335.php
│ │ │ │ │ │ └── Issue1335Test.php
│ │ │ │ │ ├── 1335.phpt
│ │ │ │ │ ├── 1337
│ │ │ │ │ │ └── Issue1337Test.php
│ │ │ │ │ ├── 1337.phpt
│ │ │ │ │ ├── 1348
│ │ │ │ │ │ └── Issue1348Test.php
│ │ │ │ │ ├── 1348.phpt
│ │ │ │ │ ├── 1351
│ │ │ │ │ │ ├── ChildProcessClass1351.php
│ │ │ │ │ │ └── Issue1351Test.php
│ │ │ │ │ ├── 1351.phpt
│ │ │ │ │ ├── 1374
│ │ │ │ │ │ └── Issue1374Test.php
│ │ │ │ │ ├── 1374.phpt
│ │ │ │ │ ├── 1437
│ │ │ │ │ │ └── Issue1437Test.php
│ │ │ │ │ ├── 1437.phpt
│ │ │ │ │ ├── 1468
│ │ │ │ │ │ └── Issue1468Test.php
│ │ │ │ │ ├── 1468.phpt
│ │ │ │ │ ├── 1471
│ │ │ │ │ │ └── Issue1471Test.php
│ │ │ │ │ ├── 1471.phpt
│ │ │ │ │ ├── 1472
│ │ │ │ │ │ └── Issue1472Test.php
│ │ │ │ │ ├── 1472.phpt
│ │ │ │ │ ├── 1570
│ │ │ │ │ │ └── Issue1570Test.php
│ │ │ │ │ ├── 1570.phpt
│ │ │ │ │ ├── 2158
│ │ │ │ │ │ ├── constant.inc
│ │ │ │ │ │ └── Issue2158Test.php
│ │ │ │ │ ├── 2158.phpt
│ │ │ │ │ ├── 244
│ │ │ │ │ │ └── Issue244Test.php
│ │ │ │ │ ├── 244.phpt
│ │ │ │ │ ├── 322
│ │ │ │ │ │ ├── Issue322Test.php
│ │ │ │ │ │ └── phpunit322.xml
│ │ │ │ │ ├── 322.phpt
│ │ │ │ │ ├── 433
│ │ │ │ │ │ └── Issue433Test.php
│ │ │ │ │ ├── 433.phpt
│ │ │ │ │ ├── 445
│ │ │ │ │ │ └── Issue445Test.php
│ │ │ │ │ ├── 445.phpt
│ │ │ │ │ ├── 498
│ │ │ │ │ │ └── Issue498Test.php
│ │ │ │ │ ├── 498.phpt
│ │ │ │ │ ├── 503
│ │ │ │ │ │ └── Issue503Test.php
│ │ │ │ │ ├── 503.phpt
│ │ │ │ │ ├── 581
│ │ │ │ │ │ └── Issue581Test.php
│ │ │ │ │ ├── 581.phpt
│ │ │ │ │ ├── 74
│ │ │ │ │ │ ├── Issue74Test.php
│ │ │ │ │ │ └── NewException.php
│ │ │ │ │ ├── 74.phpt
│ │ │ │ │ ├── 765
│ │ │ │ │ │ └── Issue765Test.php
│ │ │ │ │ ├── 765.phpt
│ │ │ │ │ ├── 797
│ │ │ │ │ │ ├── bootstrap797.php
│ │ │ │ │ │ └── Issue797Test.php
│ │ │ │ │ ├── 797.phpt
│ │ │ │ │ ├── 863.phpt
│ │ │ │ │ ├── 873
│ │ │ │ │ │ └── Issue873Test.php
│ │ │ │ │ ├── 873-php5.phpt
│ │ │ │ │ └── 873-php7.phpt
│ │ │ │ └── Trac
│ │ │ │ ├── 1021
│ │ │ │ │ └── Issue1021Test.php
│ │ │ │ ├── 1021.phpt
│ │ │ │ ├── 523
│ │ │ │ │ └── Issue523Test.php
│ │ │ │ ├── 523.phpt
│ │ │ │ ├── 578
│ │ │ │ │ └── Issue578Test.php
│ │ │ │ ├── 578.phpt
│ │ │ │ ├── 684
│ │ │ │ │ └── Issue684Test.php
│ │ │ │ ├── 684.phpt
│ │ │ │ ├── 783
│ │ │ │ │ ├── ChildSuite.php
│ │ │ │ │ ├── OneTest.php
│ │ │ │ │ ├── ParentSuite.php
│ │ │ │ │ └── TwoTest.php
│ │ │ │ └── 783.phpt
│ │ │ ├── Runner
│ │ │ │ └── BaseTestRunnerTest.php
│ │ │ ├── TextUI
│ │ │ │ ├── abstract-test-class.phpt
│ │ │ │ ├── colors-always.phpt
│ │ │ │ ├── concrete-test-class.phpt
│ │ │ │ ├── custom-printer-debug.phpt
│ │ │ │ ├── custom-printer-verbose.phpt
│ │ │ │ ├── dataprovider-debug.phpt
│ │ │ │ ├── dataprovider-log-xml-isolation.phpt
│ │ │ │ ├── dataprovider-log-xml.phpt
│ │ │ │ ├── dataprovider-testdox.phpt
│ │ │ │ ├── debug.phpt
│ │ │ │ ├── default-isolation.phpt
│ │ │ │ ├── default.phpt
│ │ │ │ ├── dependencies2-isolation.phpt
│ │ │ │ ├── dependencies2.phpt
│ │ │ │ ├── dependencies3-isolation.phpt
│ │ │ │ ├── dependencies3.phpt
│ │ │ │ ├── dependencies-isolation.phpt
│ │ │ │ ├── dependencies.phpt
│ │ │ │ ├── empty-testcase.phpt
│ │ │ │ ├── exception-stack.phpt
│ │ │ │ ├── exclude-group-isolation.phpt
│ │ │ │ ├── exclude-group.phpt
│ │ │ │ ├── failure-isolation.phpt
│ │ │ │ ├── failure.phpt
│ │ │ │ ├── fatal-isolation.phpt
│ │ │ │ ├── filter-class-isolation.phpt
│ │ │ │ ├── filter-class.phpt
│ │ │ │ ├── filter-dataprovider-by-classname-and-range-isolation.phpt
│ │ │ │ ├── filter-dataprovider-by-classname-and-range.phpt
│ │ │ │ ├── filter-dataprovider-by-number-isolation.phpt
│ │ │ │ ├── filter-dataprovider-by-number.phpt
│ │ │ │ ├── filter-dataprovider-by-only-range-isolation.phpt
│ │ │ │ ├── filter-dataprovider-by-only-range.phpt
│ │ │ │ ├── filter-dataprovider-by-only-regexp-isolation.phpt
│ │ │ │ ├── filter-dataprovider-by-only-regexp.phpt
│ │ │ │ ├── filter-dataprovider-by-only-string-isolation.phpt
│ │ │ │ ├── filter-dataprovider-by-only-string.phpt
│ │ │ │ ├── filter-dataprovider-by-range-isolation.phpt
│ │ │ │ ├── filter-dataprovider-by-range.phpt
│ │ │ │ ├── filter-dataprovider-by-regexp-isolation.phpt
│ │ │ │ ├── filter-dataprovider-by-regexp.phpt
│ │ │ │ ├── filter-dataprovider-by-string-isolation.phpt
│ │ │ │ ├── filter-dataprovider-by-string.phpt
│ │ │ │ ├── filter-method-case-insensitive.phpt
│ │ │ │ ├── filter-method-case-sensitive-no-result.phpt
│ │ │ │ ├── filter-method-isolation.phpt
│ │ │ │ ├── filter-method.phpt
│ │ │ │ ├── filter-no-results.phpt
│ │ │ │ ├── group-isolation.phpt
│ │ │ │ ├── group.phpt
│ │ │ │ ├── help2.phpt
│ │ │ │ ├── help.phpt
│ │ │ │ ├── ini-isolation.phpt
│ │ │ │ ├── list-groups.phpt
│ │ │ │ ├── log-json-no-pretty-print.phpt
│ │ │ │ ├── log-json-post-66021.phpt
│ │ │ │ ├── log-json-pre-66021.phpt
│ │ │ │ ├── log-tap.phpt
│ │ │ │ ├── log-xml.phpt
│ │ │ │ ├── options-after-arguments.phpt
│ │ │ │ ├── output-isolation.phpt
│ │ │ │ ├── repeat.phpt
│ │ │ │ ├── report-useless-tests-incomplete.phpt
│ │ │ │ ├── report-useless-tests-isolation.phpt
│ │ │ │ ├── report-useless-tests.phpt
│ │ │ │ ├── tap.phpt
│ │ │ │ ├── testdox-html.phpt
│ │ │ │ ├── testdox.phpt
│ │ │ │ ├── testdox-text.phpt
│ │ │ │ ├── test-suffix-multiple.phpt
│ │ │ │ └── test-suffix-single.phpt
│ │ │ └── Util
│ │ │ ├── ConfigurationTest.php
│ │ │ ├── GetoptTest.php
│ │ │ ├── GlobalStateTest.php
│ │ │ ├── RegexTest.php
│ │ │ ├── TestDox
│ │ │ │ └── NamePrettifierTest.php
│ │ │ ├── TestTest.php
│ │ │ └── XMLTest.php
│ │ └── phpunit-mock-objects
│ │ ├── build
│ │ │ └── travis-ci.xml
│ │ ├── build.xml
│ │ ├── composer.json
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ └── Framework
│ │ │ └── MockObject
│ │ │ ├── Builder
│ │ │ │ ├── Identity.php
│ │ │ │ ├── InvocationMocker.php
│ │ │ │ ├── Match.php
│ │ │ │ ├── MethodNameMatch.php
│ │ │ │ ├── Namespace.php
│ │ │ │ ├── ParametersMatch.php
│ │ │ │ └── Stub.php
│ │ │ ├── Exception
│ │ │ │ ├── BadMethodCallException.php
│ │ │ │ ├── Exception.php
│ │ │ │ └── RuntimeException.php
│ │ │ ├── Generator
│ │ │ │ ├── mocked_class_method.tpl.dist
│ │ │ │ ├── mocked_class.tpl.dist
│ │ │ │ ├── mocked_clone.tpl.dist
│ │ │ │ ├── mocked_method.tpl.dist
│ │ │ │ ├── mocked_static_method.tpl.dist
│ │ │ │ ├── proxied_method.tpl.dist
│ │ │ │ ├── trait_class.tpl.dist
│ │ │ │ ├── unmocked_clone.tpl.dist
│ │ │ │ ├── wsdl_class.tpl.dist
│ │ │ │ └── wsdl_method.tpl.dist
│ │ │ ├── Generator.php
│ │ │ ├── Invocation
│ │ │ │ ├── Object.php
│ │ │ │ └── Static.php
│ │ │ ├── InvocationMocker.php
│ │ │ ├── Invocation.php
│ │ │ ├── Invokable.php
│ │ │ ├── Matcher
│ │ │ │ ├── AnyInvokedCount.php
│ │ │ │ ├── AnyParameters.php
│ │ │ │ ├── ConsecutiveParameters.php
│ │ │ │ ├── Invocation.php
│ │ │ │ ├── InvokedAtIndex.php
│ │ │ │ ├── InvokedAtLeastCount.php
│ │ │ │ ├── InvokedAtLeastOnce.php
│ │ │ │ ├── InvokedAtMostCount.php
│ │ │ │ ├── InvokedCount.php
│ │ │ │ ├── InvokedRecorder.php
│ │ │ │ ├── MethodName.php
│ │ │ │ ├── Parameters.php
│ │ │ │ └── StatelessInvocation.php
│ │ │ ├── Matcher.php
│ │ │ ├── MockBuilder.php
│ │ │ ├── MockObject.php
│ │ │ ├── Stub
│ │ │ │ ├── ConsecutiveCalls.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── MatcherCollection.php
│ │ │ │ ├── ReturnArgument.php
│ │ │ │ ├── ReturnCallback.php
│ │ │ │ ├── Return.php
│ │ │ │ ├── ReturnSelf.php
│ │ │ │ └── ReturnValueMap.php
│ │ │ ├── Stub.php
│ │ │ └── Verifiable.php
│ │ └── tests
│ │ ├── bootstrap.php
│ │ ├── _fixture
│ │ │ ├── AbstractMockTestClass.php
│ │ │ ├── AbstractTrait.php
│ │ │ ├── AnInterface.php
│ │ │ ├── AnotherInterface.php
│ │ │ ├── Bar.php
│ │ │ ├── ClassThatImplementsSerializable.php
│ │ │ ├── ClassWithStaticMethod.php
│ │ │ ├── Foo.php
│ │ │ ├── FunctionCallback.php
│ │ │ ├── GoogleSearch.wsdl
│ │ │ ├── InterfaceWithStaticMethod.php
│ │ │ ├── MethodCallbackByReference.php
│ │ │ ├── MethodCallback.php
│ │ │ ├── Mockable.php
│ │ │ ├── MockTestInterface.php
│ │ │ ├── PartialMockTestClass.php
│ │ │ ├── SingletonClass.php
│ │ │ ├── SomeClass.php
│ │ │ ├── StaticMockTestClass.php
│ │ │ └── TraversableMockTestInterface.php
│ │ ├── GeneratorTest.php
│ │ ├── MockBuilderTest.php
│ │ ├── MockObject
│ │ │ ├── 232.phpt
│ │ │ ├── abstract_class.phpt
│ │ │ ├── class_call_parent_clone.phpt
│ │ │ ├── class_call_parent_constructor.phpt
│ │ │ ├── class_dont_call_parent_clone.phpt
│ │ │ ├── class_dont_call_parent_constructor.phpt
│ │ │ ├── class_implementing_interface_call_parent_constructor.phpt
│ │ │ ├── class_implementing_interface_dont_call_parent_constructor.phpt
│ │ │ ├── class_partial.phpt
│ │ │ ├── class.phpt
│ │ │ ├── class_with_method_named_method.phpt
│ │ │ ├── class_with_method_with_variadic_arguments.phpt
│ │ │ ├── interface.phpt
│ │ │ ├── Invocation
│ │ │ │ ├── ObjectTest.php
│ │ │ │ └── StaticTest.php
│ │ │ ├── invocation_object_clone_object.phpt
│ │ │ ├── Matcher
│ │ │ │ └── ConsecutiveParametersTest.php
│ │ │ ├── namespaced_class_call_parent_clone.phpt
│ │ │ ├── namespaced_class_call_parent_constructor.phpt
│ │ │ ├── namespaced_class_dont_call_parent_clone.phpt
│ │ │ ├── namespaced_class_dont_call_parent_constructor.phpt
│ │ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt
│ │ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt
│ │ │ ├── namespaced_class_partial.phpt
│ │ │ ├── namespaced_class.phpt
│ │ │ ├── namespaced_interface.phpt
│ │ │ ├── nonexistent_class.phpt
│ │ │ ├── nonexistent_class_with_namespace.phpt
│ │ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt
│ │ │ ├── proxy.phpt
│ │ │ ├── scalar_type_declarations.phpt
│ │ │ ├── wsdl_class_namespace.phpt
│ │ │ ├── wsdl_class_partial.phpt
│ │ │ └── wsdl_class.phpt
│ │ ├── MockObjectTest.php
│ │ └── ProxyObjectTest.php
│ ├── psr
│ │ ├── http-message
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── MessageInterface.php
│ │ │ ├── RequestInterface.php
│ │ │ ├── ResponseInterface.php
│ │ │ ├── ServerRequestInterface.php
│ │ │ ├── StreamInterface.php
│ │ │ ├── UploadedFileInterface.php
│ │ │ └── UriInterface.php
│ │ └── log
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── Psr
│ │ │ └── Log
│ │ │ ├── AbstractLogger.php
│ │ │ ├── InvalidArgumentException.php
│ │ │ ├── LoggerAwareInterface.php
│ │ │ ├── LoggerAwareTrait.php
│ │ │ ├── LoggerInterface.php
│ │ │ ├── LoggerTrait.php
│ │ │ ├── LogLevel.php
│ │ │ ├── NullLogger.php
│ │ │ └── Test
│ │ │ └── LoggerInterfaceTest.php
│ │ └── README.md
│ ├── psy
│ │ └── psysh
│ │ ├── bin
│ │ │ ├── build
│ │ │ ├── build-manual
│ │ │ ├── build-phar
│ │ │ ├── build-vendor
│ │ │ └── psysh
│ │ ├── composer.json
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── phpcs.xml
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── src
│ │ │ └── Psy
│ │ │ ├── Autoloader.php
│ │ │ ├── CodeCleaner
│ │ │ │ ├── AbstractClassPass.php
│ │ │ │ ├── AssignThisVariablePass.php
│ │ │ │ ├── CalledClassPass.php
│ │ │ │ ├── CallTimePassByReferencePass.php
│ │ │ │ ├── CodeCleanerPass.php
│ │ │ │ ├── ExitPass.php
│ │ │ │ ├── FunctionReturnInWriteContextPass.php
│ │ │ │ ├── ImplicitReturnPass.php
│ │ │ │ ├── InstanceOfPass.php
│ │ │ │ ├── LeavePsyshAlonePass.php
│ │ │ │ ├── LegacyEmptyPass.php
│ │ │ │ ├── MagicConstantsPass.php
│ │ │ │ ├── NamespaceAwarePass.php
│ │ │ │ ├── NamespacePass.php
│ │ │ │ ├── StaticConstructorPass.php
│ │ │ │ ├── StrictTypesPass.php
│ │ │ │ ├── UseStatementPass.php
│ │ │ │ ├── ValidClassNamePass.php
│ │ │ │ ├── ValidConstantPass.php
│ │ │ │ └── ValidFunctionNamePass.php
│ │ │ ├── CodeCleaner.php
│ │ │ ├── Command
│ │ │ │ ├── BufferCommand.php
│ │ │ │ ├── ClearCommand.php
│ │ │ │ ├── Command.php
│ │ │ │ ├── DocCommand.php
│ │ │ │ ├── DumpCommand.php
│ │ │ │ ├── ExitCommand.php
│ │ │ │ ├── HelpCommand.php
│ │ │ │ ├── HistoryCommand.php
│ │ │ │ ├── ListCommand
│ │ │ │ │ ├── ClassConstantEnumerator.php
│ │ │ │ │ ├── ClassEnumerator.php
│ │ │ │ │ ├── ConstantEnumerator.php
│ │ │ │ │ ├── Enumerator.php
│ │ │ │ │ ├── FunctionEnumerator.php
│ │ │ │ │ ├── GlobalVariableEnumerator.php
│ │ │ │ │ ├── InterfaceEnumerator.php
│ │ │ │ │ ├── MethodEnumerator.php
│ │ │ │ │ ├── PropertyEnumerator.php
│ │ │ │ │ ├── TraitEnumerator.php
│ │ │ │ │ └── VariableEnumerator.php
│ │ │ │ ├── ListCommand.php
│ │ │ │ ├── ParseCommand.php
│ │ │ │ ├── PsyVersionCommand.php
│ │ │ │ ├── ReflectingCommand.php
│ │ │ │ ├── ShowCommand.php
│ │ │ │ ├── ThrowUpCommand.php
│ │ │ │ ├── TraceCommand.php
│ │ │ │ ├── WhereamiCommand.php
│ │ │ │ └── WtfCommand.php
│ │ │ ├── Compiler.php
│ │ │ ├── ConfigPaths.php
│ │ │ ├── Configuration.php
│ │ │ ├── ConsoleColorFactory.php
│ │ │ ├── ContextAware.php
│ │ │ ├── Context.php
│ │ │ ├── Exception
│ │ │ │ ├── BreakException.php
│ │ │ │ ├── DeprecatedException.php
│ │ │ │ ├── ErrorException.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── FatalErrorException.php
│ │ │ │ ├── ParseErrorException.php
│ │ │ │ ├── RuntimeException.php
│ │ │ │ ├── ThrowUpException.php
│ │ │ │ └── TypeErrorException.php
│ │ │ ├── ExecutionLoop
│ │ │ │ ├── ForkingLoop.php
│ │ │ │ └── Loop.php
│ │ │ ├── Formatter
│ │ │ │ ├── CodeFormatter.php
│ │ │ │ ├── DocblockFormatter.php
│ │ │ │ ├── Formatter.php
│ │ │ │ └── SignatureFormatter.php
│ │ │ ├── functions.php
│ │ │ ├── Output
│ │ │ │ ├── OutputPager.php
│ │ │ │ ├── PassthruPager.php
│ │ │ │ ├── ProcOutputPager.php
│ │ │ │ └── ShellOutput.php
│ │ │ ├── ParserFactory.php
│ │ │ ├── Readline
│ │ │ │ ├── GNUReadline.php
│ │ │ │ ├── Libedit.php
│ │ │ │ ├── Readline.php
│ │ │ │ └── Transient.php
│ │ │ ├── Reflection
│ │ │ │ └── ReflectionConstant.php
│ │ │ ├── Shell.php
│ │ │ ├── TabCompletion
│ │ │ │ ├── AutoCompleter.php
│ │ │ │ └── Matcher
│ │ │ │ ├── AbstractContextAwareMatcher.php
│ │ │ │ ├── AbstractMatcher.php
│ │ │ │ ├── ClassAttributesMatcher.php
│ │ │ │ ├── ClassMethodsMatcher.php
│ │ │ │ ├── ClassNamesMatcher.php
│ │ │ │ ├── CommandsMatcher.php
│ │ │ │ ├── ConstantsMatcher.php
│ │ │ │ ├── FunctionsMatcher.php
│ │ │ │ ├── KeywordsMatcher.php
│ │ │ │ ├── MongoClientMatcher.php
│ │ │ │ ├── MongoDatabaseMatcher.php
│ │ │ │ ├── ObjectAttributesMatcher.php
│ │ │ │ ├── ObjectMethodsMatcher.php
│ │ │ │ └── VariablesMatcher.php
│ │ │ ├── Util
│ │ │ │ ├── Docblock.php
│ │ │ │ ├── Json.php
│ │ │ │ ├── Mirror.php
│ │ │ │ └── Str.php
│ │ │ └── VarDumper
│ │ │ ├── Cloner.php
│ │ │ ├── Dumper.php
│ │ │ ├── PresenterAware.php
│ │ │ └── Presenter.php
│ │ └── test
│ │ ├── fixtures
│ │ │ ├── config.php
│ │ │ ├── default
│ │ │ ├── empty.php
│ │ │ ├── legacy
│ │ │ ├── mixed
│ │ │ ├── project
│ │ │ └── unvis_fixtures.json
│ │ ├── Psy
│ │ │ └── Test
│ │ │ ├── AutoloaderTest.php
│ │ │ ├── CodeCleaner
│ │ │ │ ├── AbstractClassPassTest.php
│ │ │ │ ├── AssignThisVariablePassTest.php
│ │ │ │ ├── CalledClassPassTest.php
│ │ │ │ ├── CallTimePassByReferencePassTest.php
│ │ │ │ ├── CodeCleanerTestCase.php
│ │ │ │ ├── ExitPassTest.php
│ │ │ │ ├── Fixtures
│ │ │ │ │ ├── ClassWithCallStatic.php
│ │ │ │ │ └── ClassWithStatic.php
│ │ │ │ ├── FunctionReturnInWriteContextPassTest.php
│ │ │ │ ├── ImplicitReturnPassTest.php
│ │ │ │ ├── InstanceOfPassTest.php
│ │ │ │ ├── LeavePsyshAlonePassTest.php
│ │ │ │ ├── LegacyEmptyPassTest.php
│ │ │ │ ├── MagicConstantsPassTest.php
│ │ │ │ ├── NamespacePassTest.php
│ │ │ │ ├── StaticConstructorPassTest.php
│ │ │ │ ├── StrictTypesPassTest.php
│ │ │ │ ├── UseStatementPassTest.php
│ │ │ │ ├── ValidClassNamePassTest.php
│ │ │ │ ├── ValidConstantPassTest.php
│ │ │ │ └── ValidFunctionNamePassTest.php
│ │ │ ├── CodeCleanerTest.php
│ │ │ ├── ConfigurationTest.php
│ │ │ ├── ConsoleColorFactoryTest.php
│ │ │ ├── Exception
│ │ │ │ ├── BreakExceptionTest.php
│ │ │ │ ├── ErrorExceptionTest.php
│ │ │ │ ├── FatalErrorExceptionTest.php
│ │ │ │ ├── ParseErrorExceptionTest.php
│ │ │ │ └── RuntimeExceptionTest.php
│ │ │ ├── Formatter
│ │ │ │ ├── CodeFormatterTest.php
│ │ │ │ ├── DocblockFormatterTest.php
│ │ │ │ └── SignatureFormatterTest.php
│ │ │ ├── Readline
│ │ │ │ ├── GNUReadlineTest.php
│ │ │ │ ├── LibeditTest.php
│ │ │ │ └── TransientTest.php
│ │ │ ├── Reflection
│ │ │ │ └── ReflectionConstantTest.php
│ │ │ ├── ShellTest.php
│ │ │ ├── TabCompletion
│ │ │ │ ├── AutoCompleterTest.php
│ │ │ │ └── StaticSample.php
│ │ │ └── Util
│ │ │ ├── DocblockTest.php
│ │ │ ├── MirrorTest.php
│ │ │ └── StrTest.php
│ │ └── tools
│ │ ├── gen_unvis_fixtures.py
│ │ └── vis.py
│ ├── sebastian
│ │ ├── comparator
│ │ │ ├── build
│ │ │ │ └── travis-ci.xml
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── ArrayComparator.php
│ │ │ │ ├── Comparator.php
│ │ │ │ ├── ComparisonFailure.php
│ │ │ │ ├── DateTimeComparator.php
│ │ │ │ ├── DOMNodeComparator.php
│ │ │ │ ├── DoubleComparator.php
│ │ │ │ ├── ExceptionComparator.php
│ │ │ │ ├── Factory.php
│ │ │ │ ├── MockObjectComparator.php
│ │ │ │ ├── NumericComparator.php
│ │ │ │ ├── ObjectComparator.php
│ │ │ │ ├── ResourceComparator.php
│ │ │ │ ├── ScalarComparator.php
│ │ │ │ ├── SplObjectStorageComparator.php
│ │ │ │ └── TypeComparator.php
│ │ │ └── tests
│ │ │ ├── ArrayComparatorTest.php
│ │ │ ├── autoload.php
│ │ │ ├── bootstrap.php
│ │ │ ├── DateTimeComparatorTest.php
│ │ │ ├── DOMNodeComparatorTest.php
│ │ │ ├── DoubleComparatorTest.php
│ │ │ ├── ExceptionComparatorTest.php
│ │ │ ├── FactoryTest.php
│ │ │ ├── _files
│ │ │ │ ├── Author.php
│ │ │ │ ├── Book.php
│ │ │ │ ├── ClassWithToString.php
│ │ │ │ ├── SampleClass.php
│ │ │ │ ├── Struct.php
│ │ │ │ ├── TestClassComparator.php
│ │ │ │ └── TestClass.php
│ │ │ ├── MockObjectComparatorTest.php
│ │ │ ├── NumericComparatorTest.php
│ │ │ ├── ObjectComparatorTest.php
│ │ │ ├── ResourceComparatorTest.php
│ │ │ ├── ScalarComparatorTest.php
│ │ │ ├── SplObjectStorageComparatorTest.php
│ │ │ └── TypeComparatorTest.php
│ │ ├── diff
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── Chunk.php
│ │ │ │ ├── Differ.php
│ │ │ │ ├── Diff.php
│ │ │ │ ├── LCS
│ │ │ │ │ ├── LongestCommonSubsequence.php
│ │ │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php
│ │ │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php
│ │ │ │ ├── Line.php
│ │ │ │ └── Parser.php
│ │ │ └── tests
│ │ │ ├── DifferTest.php
│ │ │ ├── fixtures
│ │ │ │ ├── patch2.txt
│ │ │ │ └── patch.txt
│ │ │ ├── LCS
│ │ │ │ └── TimeEfficientImplementationTest.php
│ │ │ └── ParserTest.php
│ │ ├── environment
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── Console.php
│ │ │ │ └── Runtime.php
│ │ │ └── tests
│ │ │ ├── ConsoleTest.php
│ │ │ └── RuntimeTest.php
│ │ ├── exporter
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ └── Exporter.php
│ │ │ └── tests
│ │ │ └── ExporterTest.php
│ │ ├── global-state
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── Blacklist.php
│ │ │ │ ├── CodeExporter.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── Restorer.php
│ │ │ │ ├── RuntimeException.php
│ │ │ │ └── Snapshot.php
│ │ │ └── tests
│ │ │ ├── BlacklistTest.php
│ │ │ ├── _fixture
│ │ │ │ ├── BlacklistedChildClass.php
│ │ │ │ ├── BlacklistedClass.php
│ │ │ │ ├── BlacklistedImplementor.php
│ │ │ │ ├── BlacklistedInterface.php
│ │ │ │ ├── SnapshotClass.php
│ │ │ │ ├── SnapshotDomDocument.php
│ │ │ │ ├── SnapshotFunctions.php
│ │ │ │ └── SnapshotTrait.php
│ │ │ └── SnapshotTest.php
│ │ ├── recursion-context
│ │ │ ├── build.xml
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── Context.php
│ │ │ │ ├── Exception.php
│ │ │ │ └── InvalidArgumentException.php
│ │ │ └── tests
│ │ │ └── ContextTest.php
│ │ └── version
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── src
│ │ └── Version.php
│ ├── swiftmailer
│ │ └── swiftmailer
│ │ ├── CHANGES
│ │ ├── composer.json
│ │ ├── doc
│ │ │ ├── headers.rst
│ │ │ ├── help-resources.rst
│ │ │ ├── including-the-files.rst
│ │ │ ├── index.rst
│ │ │ ├── installing.rst
│ │ │ ├── introduction.rst
│ │ │ ├── japanese.rst
│ │ │ ├── messages.rst
│ │ │ ├── overview.rst
│ │ │ ├── plugins.rst
│ │ │ ├── sending.rst
│ │ │ └── uml
│ │ │ ├── Encoders.graffle
│ │ │ ├── Mime.graffle
│ │ │ └── Transports.graffle
│ │ ├── lib
│ │ │ ├── classes
│ │ │ │ ├── Swift
│ │ │ │ │ ├── Attachment.php
│ │ │ │ │ ├── ByteStream
│ │ │ │ │ │ ├── AbstractFilterableInputStream.php
│ │ │ │ │ │ ├── ArrayByteStream.php
│ │ │ │ │ │ ├── FileByteStream.php
│ │ │ │ │ │ └── TemporaryFileByteStream.php
│ │ │ │ │ ├── CharacterReader
│ │ │ │ │ │ ├── GenericFixedWidthReader.php
│ │ │ │ │ │ ├── UsAsciiReader.php
│ │ │ │ │ │ └── Utf8Reader.php
│ │ │ │ │ ├── CharacterReaderFactory
│ │ │ │ │ │ └── SimpleCharacterReaderFactory.php
│ │ │ │ │ ├── CharacterReaderFactory.php
│ │ │ │ │ ├── CharacterReader.php
│ │ │ │ │ ├── CharacterStream
│ │ │ │ │ │ ├── ArrayCharacterStream.php
│ │ │ │ │ │ └── NgCharacterStream.php
│ │ │ │ │ ├── CharacterStream.php
│ │ │ │ │ ├── ConfigurableSpool.php
│ │ │ │ │ ├── DependencyContainer.php
│ │ │ │ │ ├── DependencyException.php
│ │ │ │ │ ├── EmbeddedFile.php
│ │ │ │ │ ├── Encoder
│ │ │ │ │ │ ├── Base64Encoder.php
│ │ │ │ │ │ ├── QpEncoder.php
│ │ │ │ │ │ └── Rfc2231Encoder.php
│ │ │ │ │ ├── Encoder.php
│ │ │ │ │ ├── Encoding.php
│ │ │ │ │ ├── Events
│ │ │ │ │ │ ├── CommandEvent.php
│ │ │ │ │ │ ├── CommandListener.php
│ │ │ │ │ │ ├── EventDispatcher.php
│ │ │ │ │ │ ├── EventListener.php
│ │ │ │ │ │ ├── EventObject.php
│ │ │ │ │ │ ├── Event.php
│ │ │ │ │ │ ├── ResponseEvent.php
│ │ │ │ │ │ ├── ResponseListener.php
│ │ │ │ │ │ ├── SendEvent.php
│ │ │ │ │ │ ├── SendListener.php
│ │ │ │ │ │ ├── SimpleEventDispatcher.php
│ │ │ │ │ │ ├── TransportChangeEvent.php
│ │ │ │ │ │ ├── TransportChangeListener.php
│ │ │ │ │ │ ├── TransportExceptionEvent.php
│ │ │ │ │ │ └── TransportExceptionListener.php
│ │ │ │ │ ├── FailoverTransport.php
│ │ │ │ │ ├── FileSpool.php
│ │ │ │ │ ├── FileStream.php
│ │ │ │ │ ├── Filterable.php
│ │ │ │ │ ├── Image.php
│ │ │ │ │ ├── InputByteStream.php
│ │ │ │ │ ├── IoException.php
│ │ │ │ │ ├── KeyCache
│ │ │ │ │ │ ├── ArrayKeyCache.php
│ │ │ │ │ │ ├── DiskKeyCache.php
│ │ │ │ │ │ ├── KeyCacheInputStream.php
│ │ │ │ │ │ ├── NullKeyCache.php
│ │ │ │ │ │ └── SimpleKeyCacheInputStream.php
│ │ │ │ │ ├── KeyCache.php
│ │ │ │ │ ├── LoadBalancedTransport.php
│ │ │ │ │ ├── Mailer
│ │ │ │ │ │ ├── ArrayRecipientIterator.php
│ │ │ │ │ │ └── RecipientIterator.php
│ │ │ │ │ ├── Mailer.php
│ │ │ │ │ ├── MailTransport.php
│ │ │ │ │ ├── MemorySpool.php
│ │ │ │ │ ├── Message.php
│ │ │ │ │ ├── Mime
│ │ │ │ │ │ ├── Attachment.php
│ │ │ │ │ │ ├── CharsetObserver.php
│ │ │ │ │ │ ├── ContentEncoder
│ │ │ │ │ │ │ ├── Base64ContentEncoder.php
│ │ │ │ │ │ │ ├── NativeQpContentEncoder.php
│ │ │ │ │ │ │ ├── PlainContentEncoder.php
│ │ │ │ │ │ │ ├── QpContentEncoder.php
│ │ │ │ │ │ │ ├── QpContentEncoderProxy.php
│ │ │ │ │ │ │ └── RawContentEncoder.php
│ │ │ │ │ │ ├── ContentEncoder.php
│ │ │ │ │ │ ├── EmbeddedFile.php
│ │ │ │ │ │ ├── EncodingObserver.php
│ │ │ │ │ │ ├── Grammar.php
│ │ │ │ │ │ ├── HeaderEncoder
│ │ │ │ │ │ │ ├── Base64HeaderEncoder.php
│ │ │ │ │ │ │ └── QpHeaderEncoder.php
│ │ │ │ │ │ ├── HeaderEncoder.php
│ │ │ │ │ │ ├── HeaderFactory.php
│ │ │ │ │ │ ├── Header.php
│ │ │ │ │ │ ├── Headers
│ │ │ │ │ │ │ ├── AbstractHeader.php
│ │ │ │ │ │ │ ├── DateHeader.php
│ │ │ │ │ │ │ ├── IdentificationHeader.php
│ │ │ │ │ │ │ ├── MailboxHeader.php
│ │ │ │ │ │ │ ├── OpenDKIMHeader.php
│ │ │ │ │ │ │ ├── ParameterizedHeader.php
│ │ │ │ │ │ │ ├── PathHeader.php
│ │ │ │ │ │ │ └── UnstructuredHeader.php
│ │ │ │ │ │ ├── HeaderSet.php
│ │ │ │ │ │ ├── Message.php
│ │ │ │ │ │ ├── MimeEntity.php
│ │ │ │ │ │ ├── MimePart.php
│ │ │ │ │ │ ├── ParameterizedHeader.php
│ │ │ │ │ │ ├── SimpleHeaderFactory.php
│ │ │ │ │ │ ├── SimpleHeaderSet.php
│ │ │ │ │ │ ├── SimpleMessage.php
│ │ │ │ │ │ └── SimpleMimeEntity.php
│ │ │ │ │ ├── MimePart.php
│ │ │ │ │ ├── NullTransport.php
│ │ │ │ │ ├── OutputByteStream.php
│ │ │ │ │ ├── Plugins
│ │ │ │ │ │ ├── AntiFloodPlugin.php
│ │ │ │ │ │ ├── BandwidthMonitorPlugin.php
│ │ │ │ │ │ ├── Decorator
│ │ │ │ │ │ │ └── Replacements.php
│ │ │ │ │ │ ├── DecoratorPlugin.php
│ │ │ │ │ │ ├── ImpersonatePlugin.php
│ │ │ │ │ │ ├── Logger.php
│ │ │ │ │ │ ├── LoggerPlugin.php
│ │ │ │ │ │ ├── Loggers
│ │ │ │ │ │ │ ├── ArrayLogger.php
│ │ │ │ │ │ │ └── EchoLogger.php
│ │ │ │ │ │ ├── MessageLogger.php
│ │ │ │ │ │ ├── Pop
│ │ │ │ │ │ │ ├── Pop3Connection.php
│ │ │ │ │ │ │ └── Pop3Exception.php
│ │ │ │ │ │ ├── PopBeforeSmtpPlugin.php
│ │ │ │ │ │ ├── RedirectingPlugin.php
│ │ │ │ │ │ ├── Reporter.php
│ │ │ │ │ │ ├── ReporterPlugin.php
│ │ │ │ │ │ ├── Reporters
│ │ │ │ │ │ │ ├── HitReporter.php
│ │ │ │ │ │ │ └── HtmlReporter.php
│ │ │ │ │ │ ├── Sleeper.php
│ │ │ │ │ │ ├── ThrottlerPlugin.php
│ │ │ │ │ │ └── Timer.php
│ │ │ │ │ ├── Preferences.php
│ │ │ │ │ ├── ReplacementFilterFactory.php
│ │ │ │ │ ├── RfcComplianceException.php
│ │ │ │ │ ├── SendmailTransport.php
│ │ │ │ │ ├── SignedMessage.php
│ │ │ │ │ ├── Signer.php
│ │ │ │ │ ├── Signers
│ │ │ │ │ │ ├── BodySigner.php
│ │ │ │ │ │ ├── DKIMSigner.php
│ │ │ │ │ │ ├── DomainKeySigner.php
│ │ │ │ │ │ ├── HeaderSigner.php
│ │ │ │ │ │ ├── OpenDKIMSigner.php
│ │ │ │ │ │ └── SMimeSigner.php
│ │ │ │ │ ├── SmtpTransport.php
│ │ │ │ │ ├── Spool.php
│ │ │ │ │ ├── SpoolTransport.php
│ │ │ │ │ ├── StreamFilter.php
│ │ │ │ │ ├── StreamFilters
│ │ │ │ │ │ ├── ByteArrayReplacementFilter.php
│ │ │ │ │ │ ├── StringReplacementFilterFactory.php
│ │ │ │ │ │ └── StringReplacementFilter.php
│ │ │ │ │ ├── SwiftException.php
│ │ │ │ │ ├── Transport
│ │ │ │ │ │ ├── AbstractSmtpTransport.php
│ │ │ │ │ │ ├── Esmtp
│ │ │ │ │ │ │ ├── Auth
│ │ │ │ │ │ │ │ ├── CramMd5Authenticator.php
│ │ │ │ │ │ │ │ ├── LoginAuthenticator.php
│ │ │ │ │ │ │ │ ├── NTLMAuthenticator.php
│ │ │ │ │ │ │ │ ├── PlainAuthenticator.php
│ │ │ │ │ │ │ │ └── XOAuth2Authenticator.php
│ │ │ │ │ │ │ ├── Authenticator.php
│ │ │ │ │ │ │ └── AuthHandler.php
│ │ │ │ │ │ ├── EsmtpHandler.php
│ │ │ │ │ │ ├── EsmtpTransport.php
│ │ │ │ │ │ ├── FailoverTransport.php
│ │ │ │ │ │ ├── IoBuffer.php
│ │ │ │ │ │ ├── LoadBalancedTransport.php
│ │ │ │ │ │ ├── MailInvoker.php
│ │ │ │ │ │ ├── MailTransport.php
│ │ │ │ │ │ ├── NullTransport.php
│ │ │ │ │ │ ├── SendmailTransport.php
│ │ │ │ │ │ ├── SimpleMailInvoker.php
│ │ │ │ │ │ ├── SmtpAgent.php
│ │ │ │ │ │ ├── SpoolTransport.php
│ │ │ │ │ │ └── StreamBuffer.php
│ │ │ │ │ ├── TransportException.php
│ │ │ │ │ ├── Transport.php
│ │ │ │ │ └── Validate.php
│ │ │ │ └── Swift.php
│ │ │ ├── dependency_maps
│ │ │ │ ├── cache_deps.php
│ │ │ │ ├── message_deps.php
│ │ │ │ ├── mime_deps.php
│ │ │ │ └── transport_deps.php
│ │ │ ├── mime_types.php
│ │ │ ├── preferences.php
│ │ │ ├── swift_init.php
│ │ │ ├── swiftmailer_generate_mimes_config.php
│ │ │ ├── swift_required_pear.php
│ │ │ └── swift_required.php
│ │ ├── LICENSE
│ │ ├── phpunit.xml.dist
│ │ ├── README
│ │ ├── tests
│ │ │ ├── acceptance
│ │ │ │ └── Swift
│ │ │ │ ├── AttachmentAcceptanceTest.php
│ │ │ │ ├── ByteStream
│ │ │ │ │ └── FileByteStreamAcceptanceTest.php
│ │ │ │ ├── CharacterReaderFactory
│ │ │ │ │ └── SimpleCharacterReaderFactoryAcceptanceTest.php
│ │ │ │ ├── DependencyContainerAcceptanceTest.php
│ │ │ │ ├── EmbeddedFileAcceptanceTest.php
│ │ │ │ ├── Encoder
│ │ │ │ │ ├── Base64EncoderAcceptanceTest.php
│ │ │ │ │ ├── QpEncoderAcceptanceTest.php
│ │ │ │ │ └── Rfc2231EncoderAcceptanceTest.php
│ │ │ │ ├── EncodingAcceptanceTest.php
│ │ │ │ ├── KeyCache
│ │ │ │ │ ├── ArrayKeyCacheAcceptanceTest.php
│ │ │ │ │ └── DiskKeyCacheAcceptanceTest.php
│ │ │ │ ├── MessageAcceptanceTest.php
│ │ │ │ ├── Mime
│ │ │ │ │ ├── AttachmentAcceptanceTest.php
│ │ │ │ │ ├── ContentEncoder
│ │ │ │ │ │ ├── Base64ContentEncoderAcceptanceTest.php
│ │ │ │ │ │ ├── NativeQpContentEncoderAcceptanceTest.php
│ │ │ │ │ │ ├── PlainContentEncoderAcceptanceTest.php
│ │ │ │ │ │ └── QpContentEncoderAcceptanceTest.php
│ │ │ │ │ ├── EmbeddedFileAcceptanceTest.php
│ │ │ │ │ ├── HeaderEncoder
│ │ │ │ │ │ └── Base64HeaderEncoderAcceptanceTest.php
│ │ │ │ │ ├── MimePartAcceptanceTest.php
│ │ │ │ │ └── SimpleMessageAcceptanceTest.php
│ │ │ │ ├── MimePartAcceptanceTest.php
│ │ │ │ └── Transport
│ │ │ │ └── StreamBuffer
│ │ │ │ ├── AbstractStreamBufferAcceptanceTest.php
│ │ │ │ ├── BasicSocketAcceptanceTest.php
│ │ │ │ ├── ProcessAcceptanceTest.php
│ │ │ │ ├── SocketTimeoutTest.php
│ │ │ │ ├── SslSocketAcceptanceTest.php
│ │ │ │ └── TlsSocketAcceptanceTest.php
│ │ │ ├── acceptance.conf.php.default
│ │ │ ├── bootstrap.php
│ │ │ ├── bug
│ │ │ │ └── Swift
│ │ │ │ ├── Bug111Test.php
│ │ │ │ ├── Bug118Test.php
│ │ │ │ ├── Bug206Test.php
│ │ │ │ ├── Bug274Test.php
│ │ │ │ ├── Bug34Test.php
│ │ │ │ ├── Bug35Test.php
│ │ │ │ ├── Bug38Test.php
│ │ │ │ ├── Bug518Test.php
│ │ │ │ ├── Bug51Test.php
│ │ │ │ ├── Bug534Test.php
│ │ │ │ ├── Bug71Test.php
│ │ │ │ ├── Bug76Test.php
│ │ │ │ └── BugFileByteStreamConsecutiveReadCallsTest.php
│ │ │ ├── fixtures
│ │ │ │ └── MimeEntityFixture.php
│ │ │ ├── IdenticalBinaryConstraint.php
│ │ │ ├── _samples
│ │ │ │ ├── charsets
│ │ │ │ │ ├── iso-2022-jp
│ │ │ │ │ │ └── one.txt
│ │ │ │ │ ├── iso-8859-1
│ │ │ │ │ │ └── one.txt
│ │ │ │ │ └── utf-8
│ │ │ │ │ ├── one.txt
│ │ │ │ │ ├── three.txt
│ │ │ │ │ └── two.txt
│ │ │ │ ├── dkim
│ │ │ │ │ ├── dkim.test.priv
│ │ │ │ │ └── dkim.test.pub
│ │ │ │ ├── files
│ │ │ │ │ ├── data.txt
│ │ │ │ │ ├── swiftmailer.png
│ │ │ │ │ └── textfile.zip
│ │ │ │ └── smime
│ │ │ │ ├── ca.crt
│ │ │ │ ├── ca.key
│ │ │ │ ├── CA.srl
│ │ │ │ ├── create-cert.sh
│ │ │ │ ├── encrypt2.crt
│ │ │ │ ├── encrypt2.key
│ │ │ │ ├── encrypt.crt
│ │ │ │ ├── encrypt.key
│ │ │ │ ├── intermediate.crt
│ │ │ │ ├── intermediate.key
│ │ │ │ ├── sign2.crt
│ │ │ │ ├── sign2.key
│ │ │ │ ├── sign.crt
│ │ │ │ └── sign.key
│ │ │ ├── smoke
│ │ │ │ └── Swift
│ │ │ │ └── Smoke
│ │ │ │ ├── AttachmentSmokeTest.php
│ │ │ │ ├── BasicSmokeTest.php
│ │ │ │ ├── HtmlWithAttachmentSmokeTest.php
│ │ │ │ └── InternationalSmokeTest.php
│ │ │ ├── smoke.conf.php.default
│ │ │ ├── StreamCollector.php
│ │ │ ├── SwiftMailerSmokeTestCase.php
│ │ │ ├── SwiftMailerTestCase.php
│ │ │ └── unit
│ │ │ └── Swift
│ │ │ ├── ByteStream
│ │ │ │ └── ArrayByteStreamTest.php
│ │ │ ├── CharacterReader
│ │ │ │ ├── GenericFixedWidthReaderTest.php
│ │ │ │ ├── UsAsciiReaderTest.php
│ │ │ │ └── Utf8ReaderTest.php
│ │ │ ├── CharacterStream
│ │ │ │ └── ArrayCharacterStreamTest.php
│ │ │ ├── DependencyContainerTest.php
│ │ │ ├── Encoder
│ │ │ │ ├── Base64EncoderTest.php
│ │ │ │ ├── QpEncoderTest.php
│ │ │ │ └── Rfc2231EncoderTest.php
│ │ │ ├── Events
│ │ │ │ ├── CommandEventTest.php
│ │ │ │ ├── EventObjectTest.php
│ │ │ │ ├── ResponseEventTest.php
│ │ │ │ ├── SendEventTest.php
│ │ │ │ ├── SimpleEventDispatcherTest.php
│ │ │ │ ├── TransportChangeEventTest.php
│ │ │ │ └── TransportExceptionEventTest.php
│ │ │ ├── KeyCache
│ │ │ │ ├── ArrayKeyCacheTest.php
│ │ │ │ └── SimpleKeyCacheInputStreamTest.php
│ │ │ ├── Mailer
│ │ │ │ └── ArrayRecipientIteratorTest.php
│ │ │ ├── MailerTest.php
│ │ │ ├── MessageTest.php
│ │ │ ├── Mime
│ │ │ │ ├── AbstractMimeEntityTest.php
│ │ │ │ ├── AttachmentTest.php
│ │ │ │ ├── ContentEncoder
│ │ │ │ │ ├── Base64ContentEncoderTest.php
│ │ │ │ │ ├── PlainContentEncoderTest.php
│ │ │ │ │ └── QpContentEncoderTest.php
│ │ │ │ ├── EmbeddedFileTest.php
│ │ │ │ ├── HeaderEncoder
│ │ │ │ │ ├── Base64HeaderEncoderTest.php
│ │ │ │ │ └── QpHeaderEncoderTest.php
│ │ │ │ ├── Headers
│ │ │ │ │ ├── DateHeaderTest.php
│ │ │ │ │ ├── IdentificationHeaderTest.php
│ │ │ │ │ ├── MailboxHeaderTest.php
│ │ │ │ │ ├── ParameterizedHeaderTest.php
│ │ │ │ │ ├── PathHeaderTest.php
│ │ │ │ │ └── UnstructuredHeaderTest.php
│ │ │ │ ├── MimePartTest.php
│ │ │ │ ├── SimpleHeaderFactoryTest.php
│ │ │ │ ├── SimpleHeaderSetTest.php
│ │ │ │ ├── SimpleMessageTest.php
│ │ │ │ └── SimpleMimeEntityTest.php
│ │ │ ├── Plugins
│ │ │ │ ├── AntiFloodPluginTest.php
│ │ │ │ ├── BandwidthMonitorPluginTest.php
│ │ │ │ ├── DecoratorPluginTest.php
│ │ │ │ ├── LoggerPluginTest.php
│ │ │ │ ├── Loggers
│ │ │ │ │ ├── ArrayLoggerTest.php
│ │ │ │ │ └── EchoLoggerTest.php
│ │ │ │ ├── PopBeforeSmtpPluginTest.php
│ │ │ │ ├── RedirectingPluginTest.php
│ │ │ │ ├── ReporterPluginTest.php
│ │ │ │ ├── Reporters
│ │ │ │ │ ├── HitReporterTest.php
│ │ │ │ │ └── HtmlReporterTest.php
│ │ │ │ └── ThrottlerPluginTest.php
│ │ │ ├── Signers
│ │ │ │ ├── DKIMSignerTest.php
│ │ │ │ ├── OpenDKIMSignerTest.php
│ │ │ │ └── SMimeSignerTest.php
│ │ │ ├── StreamFilters
│ │ │ │ ├── ByteArrayReplacementFilterTest.php
│ │ │ │ ├── StringReplacementFilterFactoryTest.php
│ │ │ │ └── StringReplacementFilterTest.php
│ │ │ └── Transport
│ │ │ ├── AbstractSmtpEventSupportTest.php
│ │ │ ├── AbstractSmtpTest.php
│ │ │ ├── Esmtp
│ │ │ │ ├── Auth
│ │ │ │ │ ├── CramMd5AuthenticatorTest.php
│ │ │ │ │ ├── LoginAuthenticatorTest.php
│ │ │ │ │ ├── NTLMAuthenticatorTest.php
│ │ │ │ │ └── PlainAuthenticatorTest.php
│ │ │ │ └── AuthHandlerTest.php
│ │ │ ├── EsmtpTransport
│ │ │ │ └── ExtensionSupportTest.php
│ │ │ ├── EsmtpTransportTest.php
│ │ │ ├── FailoverTransportTest.php
│ │ │ ├── LoadBalancedTransportTest.php
│ │ │ ├── MailTransportTest.php
│ │ │ ├── SendmailTransportTest.php
│ │ │ └── StreamBufferTest.php
│ │ └── VERSION
│ ├── symfony
│ │ ├── console
│ │ │ ├── Application.php
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Command
│ │ │ │ ├── Command.php
│ │ │ │ ├── HelpCommand.php
│ │ │ │ └── ListCommand.php
│ │ │ ├── composer.json
│ │ │ ├── ConsoleEvents.php
│ │ │ ├── Descriptor
│ │ │ │ ├── ApplicationDescription.php
│ │ │ │ ├── DescriptorInterface.php
│ │ │ │ ├── Descriptor.php
│ │ │ │ ├── JsonDescriptor.php
│ │ │ │ ├── MarkdownDescriptor.php
│ │ │ │ ├── TextDescriptor.php
│ │ │ │ └── XmlDescriptor.php
│ │ │ ├── Event
│ │ │ │ ├── ConsoleCommandEvent.php
│ │ │ │ ├── ConsoleEvent.php
│ │ │ │ ├── ConsoleExceptionEvent.php
│ │ │ │ └── ConsoleTerminateEvent.php
│ │ │ ├── Exception
│ │ │ │ ├── CommandNotFoundException.php
│ │ │ │ ├── ExceptionInterface.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ ├── InvalidOptionException.php
│ │ │ │ ├── LogicException.php
│ │ │ │ └── RuntimeException.php
│ │ │ ├── Formatter
│ │ │ │ ├── OutputFormatterInterface.php
│ │ │ │ ├── OutputFormatter.php
│ │ │ │ ├── OutputFormatterStyleInterface.php
│ │ │ │ ├── OutputFormatterStyle.php
│ │ │ │ └── OutputFormatterStyleStack.php
│ │ │ ├── Helper
│ │ │ │ ├── DebugFormatterHelper.php
│ │ │ │ ├── DescriptorHelper.php
│ │ │ │ ├── FormatterHelper.php
│ │ │ │ ├── HelperInterface.php
│ │ │ │ ├── Helper.php
│ │ │ │ ├── HelperSet.php
│ │ │ │ ├── InputAwareHelper.php
│ │ │ │ ├── ProcessHelper.php
│ │ │ │ ├── ProgressBar.php
│ │ │ │ ├── ProgressIndicator.php
│ │ │ │ ├── QuestionHelper.php
│ │ │ │ ├── SymfonyQuestionHelper.php
│ │ │ │ ├── TableCell.php
│ │ │ │ ├── Table.php
│ │ │ │ ├── TableSeparator.php
│ │ │ │ └── TableStyle.php
│ │ │ ├── Input
│ │ │ │ ├── ArgvInput.php
│ │ │ │ ├── ArrayInput.php
│ │ │ │ ├── InputArgument.php
│ │ │ │ ├── InputAwareInterface.php
│ │ │ │ ├── InputDefinition.php
│ │ │ │ ├── InputInterface.php
│ │ │ │ ├── InputOption.php
│ │ │ │ ├── Input.php
│ │ │ │ └── StringInput.php
│ │ │ ├── LICENSE
│ │ │ ├── Logger
│ │ │ │ └── ConsoleLogger.php
│ │ │ ├── Output
│ │ │ │ ├── BufferedOutput.php
│ │ │ │ ├── ConsoleOutputInterface.php
│ │ │ │ ├── ConsoleOutput.php
│ │ │ │ ├── NullOutput.php
│ │ │ │ ├── OutputInterface.php
│ │ │ │ ├── Output.php
│ │ │ │ └── StreamOutput.php
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── Question
│ │ │ │ ├── ChoiceQuestion.php
│ │ │ │ ├── ConfirmationQuestion.php
│ │ │ │ └── Question.php
│ │ │ ├── README.md
│ │ │ ├── Resources
│ │ │ │ └── bin
│ │ │ │ └── hiddeninput.exe
│ │ │ ├── Style
│ │ │ │ ├── OutputStyle.php
│ │ │ │ ├── StyleInterface.php
│ │ │ │ └── SymfonyStyle.php
│ │ │ ├── Tester
│ │ │ │ ├── ApplicationTester.php
│ │ │ │ └── CommandTester.php
│ │ │ └── Tests
│ │ │ ├── ApplicationTest.php
│ │ │ ├── Command
│ │ │ │ ├── CommandTest.php
│ │ │ │ ├── HelpCommandTest.php
│ │ │ │ └── ListCommandTest.php
│ │ │ ├── Descriptor
│ │ │ │ ├── AbstractDescriptorTest.php
│ │ │ │ ├── JsonDescriptorTest.php
│ │ │ │ ├── MarkdownDescriptorTest.php
│ │ │ │ ├── ObjectsProvider.php
│ │ │ │ ├── TextDescriptorTest.php
│ │ │ │ └── XmlDescriptorTest.php
│ │ │ ├── Fixtures
│ │ │ │ ├── application_1.json
│ │ │ │ ├── application_1.md
│ │ │ │ ├── application_1.txt
│ │ │ │ ├── application_1.xml
│ │ │ │ ├── application_2.json
│ │ │ │ ├── application_2.md
│ │ │ │ ├── application_2.txt
│ │ │ │ ├── application_2.xml
│ │ │ │ ├── application_astext1.txt
│ │ │ │ ├── application_astext2.txt
│ │ │ │ ├── application_gethelp.txt
│ │ │ │ ├── application_renderexception1.txt
│ │ │ │ ├── application_renderexception2.txt
│ │ │ │ ├── application_renderexception3decorated.txt
│ │ │ │ ├── application_renderexception3.txt
│ │ │ │ ├── application_renderexception4.txt
│ │ │ │ ├── application_renderexception_doublewidth1decorated.txt
│ │ │ │ ├── application_renderexception_doublewidth1.txt
│ │ │ │ ├── application_renderexception_doublewidth2.txt
│ │ │ │ ├── application_run1.txt
│ │ │ │ ├── application_run2.txt
│ │ │ │ ├── application_run3.txt
│ │ │ │ ├── application_run4.txt
│ │ │ │ ├── BarBucCommand.php
│ │ │ │ ├── command_1.json
│ │ │ │ ├── command_1.md
│ │ │ │ ├── command_1.txt
│ │ │ │ ├── command_1.xml
│ │ │ │ ├── command_2.json
│ │ │ │ ├── command_2.md
│ │ │ │ ├── command_2.txt
│ │ │ │ ├── command_2.xml
│ │ │ │ ├── command_astext.txt
│ │ │ │ ├── command_asxml.txt
│ │ │ │ ├── definition_astext.txt
│ │ │ │ ├── definition_asxml.txt
│ │ │ │ ├── DescriptorApplication1.php
│ │ │ │ ├── DescriptorApplication2.php
│ │ │ │ ├── DescriptorCommand1.php
│ │ │ │ ├── DescriptorCommand2.php
│ │ │ │ ├── DummyOutput.php
│ │ │ │ ├── Foo1Command.php
│ │ │ │ ├── Foo2Command.php
│ │ │ │ ├── Foo3Command.php
│ │ │ │ ├── Foo4Command.php
│ │ │ │ ├── Foo5Command.php
│ │ │ │ ├── Foo6Command.php
│ │ │ │ ├── FoobarCommand.php
│ │ │ │ ├── FooCommand.php
│ │ │ │ ├── FooSubnamespaced1Command.php
│ │ │ │ ├── FooSubnamespaced2Command.php
│ │ │ │ ├── input_argument_1.json
│ │ │ │ ├── input_argument_1.md
│ │ │ │ ├── input_argument_1.txt
│ │ │ │ ├── input_argument_1.xml
│ │ │ │ ├── input_argument_2.json
│ │ │ │ ├── input_argument_2.md
│ │ │ │ ├── input_argument_2.txt
│ │ │ │ ├── input_argument_2.xml
│ │ │ │ ├── input_argument_3.json
│ │ │ │ ├── input_argument_3.md
│ │ │ │ ├── input_argument_3.txt
│ │ │ │ ├── input_argument_3.xml
│ │ │ │ ├── input_argument_4.json
│ │ │ │ ├── input_argument_4.md
│ │ │ │ ├── input_argument_4.txt
│ │ │ │ ├── input_argument_4.xml
│ │ │ │ ├── input_definition_1.json
│ │ │ │ ├── input_definition_1.md
│ │ │ │ ├── input_definition_1.txt
│ │ │ │ ├── input_definition_1.xml
│ │ │ │ ├── input_definition_2.json
│ │ │ │ ├── input_definition_2.md
│ │ │ │ ├── input_definition_2.txt
│ │ │ │ ├── input_definition_2.xml
│ │ │ │ ├── input_definition_3.json
│ │ │ │ ├── input_definition_3.md
│ │ │ │ ├── input_definition_3.txt
│ │ │ │ ├── input_definition_3.xml
│ │ │ │ ├── input_definition_4.json
│ │ │ │ ├── input_definition_4.md
│ │ │ │ ├── input_definition_4.txt
│ │ │ │ ├── input_definition_4.xml
│ │ │ │ ├── input_option_1.json
│ │ │ │ ├── input_option_1.md
│ │ │ │ ├── input_option_1.txt
│ │ │ │ ├── input_option_1.xml
│ │ │ │ ├── input_option_2.json
│ │ │ │ ├── input_option_2.md
│ │ │ │ ├── input_option_2.txt
│ │ │ │ ├── input_option_2.xml
│ │ │ │ ├── input_option_3.json
│ │ │ │ ├── input_option_3.md
│ │ │ │ ├── input_option_3.txt
│ │ │ │ ├── input_option_3.xml
│ │ │ │ ├── input_option_4.json
│ │ │ │ ├── input_option_4.md
│ │ │ │ ├── input_option_4.txt
│ │ │ │ ├── input_option_4.xml
│ │ │ │ ├── input_option_5.json
│ │ │ │ ├── input_option_5.md
│ │ │ │ ├── input_option_5.txt
│ │ │ │ ├── input_option_5.xml
│ │ │ │ ├── input_option_6.json
│ │ │ │ ├── input_option_6.md
│ │ │ │ ├── input_option_6.txt
│ │ │ │ ├── input_option_6.xml
│ │ │ │ ├── Style
│ │ │ │ │ └── SymfonyStyle
│ │ │ │ │ ├── command
│ │ │ │ │ │ ├── command_0.php
│ │ │ │ │ │ ├── command_1.php
│ │ │ │ │ │ ├── command_2.php
│ │ │ │ │ │ ├── command_3.php
│ │ │ │ │ │ ├── command_4.php
│ │ │ │ │ │ ├── command_5.php
│ │ │ │ │ │ ├── command_6.php
│ │ │ │ │ │ ├── command_7.php
│ │ │ │ │ │ └── command_8.php
│ │ │ │ │ └── output
│ │ │ │ │ ├── output_0.txt
│ │ │ │ │ ├── output_1.txt
│ │ │ │ │ ├── output_2.txt
│ │ │ │ │ ├── output_3.txt
│ │ │ │ │ ├── output_4.txt
│ │ │ │ │ ├── output_5.txt
│ │ │ │ │ ├── output_6.txt
│ │ │ │ │ ├── output_7.txt
│ │ │ │ │ └── output_8.txt
│ │ │ │ └── TestCommand.php
│ │ │ ├── Formatter
│ │ │ │ ├── OutputFormatterStyleStackTest.php
│ │ │ │ ├── OutputFormatterStyleTest.php
│ │ │ │ └── OutputFormatterTest.php
│ │ │ ├── Helper
│ │ │ │ ├── FormatterHelperTest.php
│ │ │ │ ├── HelperSetTest.php
│ │ │ │ ├── HelperTest.php
│ │ │ │ ├── ProcessHelperTest.php
│ │ │ │ ├── ProgressBarTest.php
│ │ │ │ ├── ProgressIndicatorTest.php
│ │ │ │ ├── QuestionHelperTest.php
│ │ │ │ ├── TableStyleTest.php
│ │ │ │ └── TableTest.php
│ │ │ ├── Input
│ │ │ │ ├── ArgvInputTest.php
│ │ │ │ ├── ArrayInputTest.php
│ │ │ │ ├── InputArgumentTest.php
│ │ │ │ ├── InputDefinitionTest.php
│ │ │ │ ├── InputOptionTest.php
│ │ │ │ ├── InputTest.php
│ │ │ │ └── StringInputTest.php
│ │ │ ├── Logger
│ │ │ │ └── ConsoleLoggerTest.php
│ │ │ ├── Output
│ │ │ │ ├── ConsoleOutputTest.php
│ │ │ │ ├── NullOutputTest.php
│ │ │ │ ├── OutputTest.php
│ │ │ │ └── StreamOutputTest.php
│ │ │ ├── Style
│ │ │ │ └── SymfonyStyleTest.php
│ │ │ └── Tester
│ │ │ ├── ApplicationTesterTest.php
│ │ │ └── CommandTesterTest.php
│ │ ├── css-selector
│ │ │ ├── CHANGELOG.md
│ │ │ ├── composer.json
│ │ │ ├── CssSelectorConverter.php
│ │ │ ├── Exception
│ │ │ │ ├── ExceptionInterface.php
│ │ │ │ ├── ExpressionErrorException.php
│ │ │ │ ├── InternalErrorException.php
│ │ │ │ ├── ParseException.php
│ │ │ │ └── SyntaxErrorException.php
│ │ │ ├── LICENSE
│ │ │ ├── Node
│ │ │ │ ├── AbstractNode.php
│ │ │ │ ├── AttributeNode.php
│ │ │ │ ├── ClassNode.php
│ │ │ │ ├── CombinedSelectorNode.php
│ │ │ │ ├── ElementNode.php
│ │ │ │ ├── FunctionNode.php
│ │ │ │ ├── HashNode.php
│ │ │ │ ├── NegationNode.php
│ │ │ │ ├── NodeInterface.php
│ │ │ │ ├── PseudoNode.php
│ │ │ │ ├── SelectorNode.php
│ │ │ │ └── Specificity.php
│ │ │ ├── Parser
│ │ │ │ ├── Handler
│ │ │ │ │ ├── CommentHandler.php
│ │ │ │ │ ├── HandlerInterface.php
│ │ │ │ │ ├── HashHandler.php
│ │ │ │ │ ├── IdentifierHandler.php
│ │ │ │ │ ├── NumberHandler.php
│ │ │ │ │ ├── StringHandler.php
│ │ │ │ │ └── WhitespaceHandler.php
│ │ │ │ ├── ParserInterface.php
│ │ │ │ ├── Parser.php
│ │ │ │ ├── Reader.php
│ │ │ │ ├── Shortcut
│ │ │ │ │ ├── ClassParser.php
│ │ │ │ │ ├── ElementParser.php
│ │ │ │ │ ├── EmptyStringParser.php
│ │ │ │ │ └── HashParser.php
│ │ │ │ ├── Tokenizer
│ │ │ │ │ ├── TokenizerEscaping.php
│ │ │ │ │ ├── TokenizerPatterns.php
│ │ │ │ │ └── Tokenizer.php
│ │ │ │ ├── Token.php
│ │ │ │ └── TokenStream.php
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── Tests
│ │ │ │ ├── CssSelectorConverterTest.php
│ │ │ │ ├── Node
│ │ │ │ │ ├── AbstractNodeTest.php
│ │ │ │ │ ├── AttributeNodeTest.php
│ │ │ │ │ ├── ClassNodeTest.php
│ │ │ │ │ ├── CombinedSelectorNodeTest.php
│ │ │ │ │ ├── ElementNodeTest.php
│ │ │ │ │ ├── FunctionNodeTest.php
│ │ │ │ │ ├── HashNodeTest.php
│ │ │ │ │ ├── NegationNodeTest.php
│ │ │ │ │ ├── PseudoNodeTest.php
│ │ │ │ │ ├── SelectorNodeTest.php
│ │ │ │ │ └── SpecificityTest.php
│ │ │ │ ├── Parser
│ │ │ │ │ ├── Handler
│ │ │ │ │ │ ├── AbstractHandlerTest.php
│ │ │ │ │ │ ├── CommentHandlerTest.php
│ │ │ │ │ │ ├── HashHandlerTest.php
│ │ │ │ │ │ ├── IdentifierHandlerTest.php
│ │ │ │ │ │ ├── NumberHandlerTest.php
│ │ │ │ │ │ ├── StringHandlerTest.php
│ │ │ │ │ │ └── WhitespaceHandlerTest.php
│ │ │ │ │ ├── ParserTest.php
│ │ │ │ │ ├── ReaderTest.php
│ │ │ │ │ ├── Shortcut
│ │ │ │ │ │ ├── ClassParserTest.php
│ │ │ │ │ │ ├── ElementParserTest.php
│ │ │ │ │ │ ├── EmptyStringParserTest.php
│ │ │ │ │ │ └── HashParserTest.php
│ │ │ │ │ └── TokenStreamTest.php
│ │ │ │ └── XPath
│ │ │ │ ├── Fixtures
│ │ │ │ │ ├── ids.html
│ │ │ │ │ ├── lang.xml
│ │ │ │ │ └── shakespear.html
│ │ │ │ └── TranslatorTest.php
│ │ │ └── XPath
│ │ │ ├── Extension
│ │ │ │ ├── AbstractExtension.php
│ │ │ │ ├── AttributeMatchingExtension.php
│ │ │ │ ├── CombinationExtension.php
│ │ │ │ ├── ExtensionInterface.php
│ │ │ │ ├── FunctionExtension.php
│ │ │ │ ├── HtmlExtension.php
│ │ │ │ ├── NodeExtension.php
│ │ │ │ └── PseudoClassExtension.php
│ │ │ ├── TranslatorInterface.php
│ │ │ ├── Translator.php
│ │ │ └── XPathExpr.php
│ │ ├── debug
│ │ │ ├── BufferingLogger.php
│ │ │ ├── CHANGELOG.md
│ │ │ ├── composer.json
│ │ │ ├── DebugClassLoader.php
│ │ │ ├── Debug.php
│ │ │ ├── ErrorHandler.php
│ │ │ ├── Exception
│ │ │ │ ├── ClassNotFoundException.php
│ │ │ │ ├── ContextErrorException.php
│ │ │ │ ├── FatalErrorException.php
│ │ │ │ ├── FatalThrowableError.php
│ │ │ │ ├── FlattenException.php
│ │ │ │ ├── OutOfMemoryException.php
│ │ │ │ ├── UndefinedFunctionException.php
│ │ │ │ └── UndefinedMethodException.php
│ │ │ ├── ExceptionHandler.php
│ │ │ ├── FatalErrorHandler
│ │ │ │ ├── ClassNotFoundFatalErrorHandler.php
│ │ │ │ ├── FatalErrorHandlerInterface.php
│ │ │ │ ├── UndefinedFunctionFatalErrorHandler.php
│ │ │ │ └── UndefinedMethodFatalErrorHandler.php
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── Resources
│ │ │ │ └── ext
│ │ │ │ ├── config.m4
│ │ │ │ ├── config.w32
│ │ │ │ ├── php_symfony_debug.h
│ │ │ │ ├── README.md
│ │ │ │ ├── symfony_debug.c
│ │ │ │ └── tests
│ │ │ │ ├── 001.phpt
│ │ │ │ ├── 002_1.phpt
│ │ │ │ ├── 002.phpt
│ │ │ │ └── 003.phpt
│ │ │ └── Tests
│ │ │ ├── DebugClassLoaderTest.php
│ │ │ ├── ErrorHandlerTest.php
│ │ │ ├── Exception
│ │ │ │ └── FlattenExceptionTest.php
│ │ │ ├── ExceptionHandlerTest.php
│ │ │ ├── FatalErrorHandler
│ │ │ │ ├── ClassNotFoundFatalErrorHandlerTest.php
│ │ │ │ ├── UndefinedFunctionFatalErrorHandlerTest.php
│ │ │ │ └── UndefinedMethodFatalErrorHandlerTest.php
│ │ │ ├── Fixtures
│ │ │ │ ├── casemismatch.php
│ │ │ │ ├── ClassAlias.php
│ │ │ │ ├── DeprecatedClass.php
│ │ │ │ ├── DeprecatedInterface.php
│ │ │ │ ├── NonDeprecatedInterface.php
│ │ │ │ ├── notPsr0Bis.php
│ │ │ │ ├── PEARClass.php
│ │ │ │ ├── psr4
│ │ │ │ │ └── Psr4CaseMismatch.php
│ │ │ │ ├── reallyNotPsr0.php
│ │ │ │ └── ToStringThrower.php
│ │ │ ├── Fixtures2
│ │ │ │ └── RequiredTwice.php
│ │ │ ├── HeaderMock.php
│ │ │ └── MockExceptionHandler.php
│ │ ├── dom-crawler
│ │ │ ├── CHANGELOG.md
│ │ │ ├── composer.json
│ │ │ ├── Crawler.php
│ │ │ ├── Field
│ │ │ │ ├── ChoiceFormField.php
│ │ │ │ ├── FileFormField.php
│ │ │ │ ├── FormField.php
│ │ │ │ ├── InputFormField.php
│ │ │ │ └── TextareaFormField.php
│ │ │ ├── FormFieldRegistry.php
│ │ │ ├── Form.php
│ │ │ ├── LICENSE
│ │ │ ├── Link.php
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ └── Tests
│ │ │ ├── CrawlerTest.php
│ │ │ ├── Field
│ │ │ │ ├── ChoiceFormFieldTest.php
│ │ │ │ ├── FileFormFieldTest.php
│ │ │ │ ├── FormFieldTestCase.php
│ │ │ │ ├── FormFieldTest.php
│ │ │ │ ├── InputFormFieldTest.php
│ │ │ │ └── TextareaFormFieldTest.php
│ │ │ ├── Fixtures
│ │ │ │ ├── no-extension
│ │ │ │ └── windows-1250.html
│ │ │ ├── FormTest.php
│ │ │ └── LinkTest.php
│ │ ├── event-dispatcher
│ │ │ ├── CHANGELOG.md
│ │ │ ├── composer.json
│ │ │ ├── ContainerAwareEventDispatcher.php
│ │ │ ├── Debug
│ │ │ │ ├── TraceableEventDispatcherInterface.php
│ │ │ │ ├── TraceableEventDispatcher.php
│ │ │ │ └── WrappedListener.php
│ │ │ ├── DependencyInjection
│ │ │ │ └── RegisterListenersPass.php
│ │ │ ├── EventDispatcherInterface.php
│ │ │ ├── EventDispatcher.php
│ │ │ ├── Event.php
│ │ │ ├── EventSubscriberInterface.php
│ │ │ ├── GenericEvent.php
│ │ │ ├── ImmutableEventDispatcher.php
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ └── Tests
│ │ │ ├── AbstractEventDispatcherTest.php
│ │ │ ├── ContainerAwareEventDispatcherTest.php
│ │ │ ├── Debug
│ │ │ │ └── TraceableEventDispatcherTest.php
│ │ │ ├── DependencyInjection
│ │ │ │ └── RegisterListenersPassTest.php
│ │ │ ├── EventDispatcherTest.php
│ │ │ ├── EventTest.php
│ │ │ ├── GenericEventTest.php
│ │ │ └── ImmutableEventDispatcherTest.php
│ │ ├── finder
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Comparator
│ │ │ │ ├── Comparator.php
│ │ │ │ ├── DateComparator.php
│ │ │ │ └── NumberComparator.php
│ │ │ ├── composer.json
│ │ │ ├── Exception
│ │ │ │ ├── AccessDeniedException.php
│ │ │ │ └── ExceptionInterface.php
│ │ │ ├── Finder.php
│ │ │ ├── Glob.php
│ │ │ ├── Iterator
│ │ │ │ ├── CustomFilterIterator.php
│ │ │ │ ├── DateRangeFilterIterator.php
│ │ │ │ ├── DepthRangeFilterIterator.php
│ │ │ │ ├── ExcludeDirectoryFilterIterator.php
│ │ │ │ ├── FilecontentFilterIterator.php
│ │ │ │ ├── FilenameFilterIterator.php
│ │ │ │ ├── FileTypeFilterIterator.php
│ │ │ │ ├── FilterIterator.php
│ │ │ │ ├── MultiplePcreFilterIterator.php
│ │ │ │ ├── PathFilterIterator.php
│ │ │ │ ├── RecursiveDirectoryIterator.php
│ │ │ │ ├── SizeRangeFilterIterator.php
│ │ │ │ └── SortableIterator.php
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── SplFileInfo.php
│ │ │ └── Tests
│ │ │ ├── Comparator
│ │ │ │ ├── ComparatorTest.php
│ │ │ │ ├── DateComparatorTest.php
│ │ │ │ └── NumberComparatorTest.php
│ │ │ ├── FinderTest.php
│ │ │ ├── Fixtures
│ │ │ │ ├── A
│ │ │ │ │ ├── a.dat
│ │ │ │ │ └── B
│ │ │ │ │ ├── ab.dat
│ │ │ │ │ └── C
│ │ │ │ │ └── abc.dat
│ │ │ │ ├── copy
│ │ │ │ │ └── A
│ │ │ │ │ ├── a.dat.copy
│ │ │ │ │ └── B
│ │ │ │ │ ├── ab.dat.copy
│ │ │ │ │ └── C
│ │ │ │ │ └── abc.dat.copy
│ │ │ │ ├── dolor.txt
│ │ │ │ ├── ipsum.txt
│ │ │ │ ├── lorem.txt
│ │ │ │ ├── one
│ │ │ │ │ ├── a
│ │ │ │ │ └── b
│ │ │ │ │ ├── c.neon
│ │ │ │ │ └── d.neon
│ │ │ │ ├── r+e.gex[c]a(r)s
│ │ │ │ │ └── dir
│ │ │ │ │ └── bar.dat
│ │ │ │ └── with space
│ │ │ │ └── foo.txt
│ │ │ ├── GlobTest.php
│ │ │ └── Iterator
│ │ │ ├── CustomFilterIteratorTest.php
│ │ │ ├── DateRangeFilterIteratorTest.php
│ │ │ ├── DepthRangeFilterIteratorTest.php
│ │ │ ├── ExcludeDirectoryFilterIteratorTest.php
│ │ │ ├── FilecontentFilterIteratorTest.php
│ │ │ ├── FilenameFilterIteratorTest.php
│ │ │ ├── FileTypeFilterIteratorTest.php
│ │ │ ├── FilterIteratorTest.php
│ │ │ ├── Iterator.php
│ │ │ ├── IteratorTestCase.php
│ │ │ ├── MockFileListIterator.php
│ │ │ ├── MockSplFileInfo.php
│ │ │ ├── MultiplePcreFilterIteratorTest.php
│ │ │ ├── PathFilterIteratorTest.php
│ │ │ ├── RealIteratorTestCase.php
│ │ │ ├── RecursiveDirectoryIteratorTest.php
│ │ │ ├── SizeRangeFilterIteratorTest.php
│ │ │ └── SortableIteratorTest.php
│ │ ├── http-foundation
│ │ │ ├── AcceptHeaderItem.php
│ │ │ ├── AcceptHeader.php
│ │ │ ├── ApacheRequest.php
│ │ │ ├── BinaryFileResponse.php
│ │ │ ├── CHANGELOG.md
│ │ │ ├── composer.json
│ │ │ ├── Cookie.php
│ │ │ ├── ExpressionRequestMatcher.php
│ │ │ ├── File
│ │ │ │ ├── Exception
│ │ │ │ │ ├── AccessDeniedException.php
│ │ │ │ │ ├── FileException.php
│ │ │ │ │ ├── FileNotFoundException.php
│ │ │ │ │ ├── UnexpectedTypeException.php
│ │ │ │ │ └── UploadException.php
│ │ │ │ ├── File.php
│ │ │ │ ├── MimeType
│ │ │ │ │ ├── ExtensionGuesserInterface.php
│ │ │ │ │ ├── ExtensionGuesser.php
│ │ │ │ │ ├── FileBinaryMimeTypeGuesser.php
│ │ │ │ │ ├── FileinfoMimeTypeGuesser.php
│ │ │ │ │ ├── MimeTypeExtensionGuesser.php
│ │ │ │ │ ├── MimeTypeGuesserInterface.php
│ │ │ │ │ └── MimeTypeGuesser.php
│ │ │ │ └── UploadedFile.php
│ │ │ ├── FileBag.php
│ │ │ ├── HeaderBag.php
│ │ │ ├── IpUtils.php
│ │ │ ├── JsonResponse.php
│ │ │ ├── LICENSE
│ │ │ ├── ParameterBag.php
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── RedirectResponse.php
│ │ │ ├── RequestMatcherInterface.php
│ │ │ ├── RequestMatcher.php
│ │ │ ├── Request.php
│ │ │ ├── RequestStack.php
│ │ │ ├── ResponseHeaderBag.php
│ │ │ ├── Response.php
│ │ │ ├── ServerBag.php
│ │ │ ├── Session
│ │ │ │ ├── Attribute
│ │ │ │ │ ├── AttributeBagInterface.php
│ │ │ │ │ ├── AttributeBag.php
│ │ │ │ │ └── NamespacedAttributeBag.php
│ │ │ │ ├── Flash
│ │ │ │ │ ├── AutoExpireFlashBag.php
│ │ │ │ │ ├── FlashBagInterface.php
│ │ │ │ │ └── FlashBag.php
│ │ │ │ ├── SessionBagInterface.php
│ │ │ │ ├── SessionInterface.php
│ │ │ │ ├── Session.php
│ │ │ │ └── Storage
│ │ │ │ ├── Handler
│ │ │ │ │ ├── MemcachedSessionHandler.php
│ │ │ │ │ ├── MemcacheSessionHandler.php
│ │ │ │ │ ├── MongoDbSessionHandler.php
│ │ │ │ │ ├── NativeFileSessionHandler.php
│ │ │ │ │ ├── NativeSessionHandler.php
│ │ │ │ │ ├── NullSessionHandler.php
│ │ │ │ │ ├── PdoSessionHandler.php
│ │ │ │ │ └── WriteCheckSessionHandler.php
│ │ │ │ ├── MetadataBag.php
│ │ │ │ ├── MockArraySessionStorage.php
│ │ │ │ ├── MockFileSessionStorage.php
│ │ │ │ ├── NativeSessionStorage.php
│ │ │ │ ├── PhpBridgeSessionStorage.php
│ │ │ │ ├── Proxy
│ │ │ │ │ ├── AbstractProxy.php
│ │ │ │ │ ├── NativeProxy.php
│ │ │ │ │ └── SessionHandlerProxy.php
│ │ │ │ └── SessionStorageInterface.php
│ │ │ ├── StreamedResponse.php
│ │ │ └── Tests
│ │ │ ├── AcceptHeaderItemTest.php
│ │ │ ├── AcceptHeaderTest.php
│ │ │ ├── ApacheRequestTest.php
│ │ │ ├── BinaryFileResponseTest.php
│ │ │ ├── CookieTest.php
│ │ │ ├── ExpressionRequestMatcherTest.php
│ │ │ ├── File
│ │ │ │ ├── FakeFile.php
│ │ │ │ ├── FileTest.php
│ │ │ │ ├── Fixtures
│ │ │ │ │ ├── directory
│ │ │ │ │ ├── other-file.example
│ │ │ │ │ ├── test
│ │ │ │ │ └── test.gif
│ │ │ │ ├── MimeType
│ │ │ │ │ └── MimeTypeTest.php
│ │ │ │ └── UploadedFileTest.php
│ │ │ ├── FileBagTest.php
│ │ │ ├── HeaderBagTest.php
│ │ │ ├── IpUtilsTest.php
│ │ │ ├── JsonResponseTest.php
│ │ │ ├── ParameterBagTest.php
│ │ │ ├── RedirectResponseTest.php
│ │ │ ├── RequestMatcherTest.php
│ │ │ ├── RequestStackTest.php
│ │ │ ├── RequestTest.php
│ │ │ ├── ResponseHeaderBagTest.php
│ │ │ ├── ResponseTestCase.php
│ │ │ ├── ResponseTest.php
│ │ │ ├── ServerBagTest.php
│ │ │ ├── Session
│ │ │ │ ├── Attribute
│ │ │ │ │ ├── AttributeBagTest.php
│ │ │ │ │ └── NamespacedAttributeBagTest.php
│ │ │ │ ├── Flash
│ │ │ │ │ ├── AutoExpireFlashBagTest.php
│ │ │ │ │ └── FlashBagTest.php
│ │ │ │ ├── SessionTest.php
│ │ │ │ └── Storage
│ │ │ │ ├── Handler
│ │ │ │ │ ├── MemcachedSessionHandlerTest.php
│ │ │ │ │ ├── MemcacheSessionHandlerTest.php
│ │ │ │ │ ├── MongoDbSessionHandlerTest.php
│ │ │ │ │ ├── NativeFileSessionHandlerTest.php
│ │ │ │ │ ├── NativeSessionHandlerTest.php
│ │ │ │ │ ├── NullSessionHandlerTest.php
│ │ │ │ │ ├── PdoSessionHandlerTest.php
│ │ │ │ │ └── WriteCheckSessionHandlerTest.php
│ │ │ │ ├── MetadataBagTest.php
│ │ │ │ ├── MockArraySessionStorageTest.php
│ │ │ │ ├── MockFileSessionStorageTest.php
│ │ │ │ ├── NativeSessionStorageTest.php
│ │ │ │ ├── PhpBridgeSessionStorageTest.php
│ │ │ │ └── Proxy
│ │ │ │ ├── AbstractProxyTest.php
│ │ │ │ ├── NativeProxyTest.php
│ │ │ │ └── SessionHandlerProxyTest.php
│ │ │ └── StreamedResponseTest.php
│ │ ├── http-kernel
│ │ │ ├── Bundle
│ │ │ │ ├── BundleInterface.php
│ │ │ │ └── Bundle.php
│ │ │ ├── CacheClearer
│ │ │ │ ├── CacheClearerInterface.php
│ │ │ │ └── ChainCacheClearer.php
│ │ │ ├── CacheWarmer
│ │ │ │ ├── CacheWarmerAggregate.php
│ │ │ │ ├── CacheWarmerInterface.php
│ │ │ │ ├── CacheWarmer.php
│ │ │ │ └── WarmableInterface.php
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Client.php
│ │ │ ├── composer.json
│ │ │ ├── Config
│ │ │ │ ├── EnvParametersResource.php
│ │ │ │ └── FileLocator.php
│ │ │ ├── Controller
│ │ │ │ ├── ControllerReference.php
│ │ │ │ ├── ControllerResolverInterface.php
│ │ │ │ ├── ControllerResolver.php
│ │ │ │ └── TraceableControllerResolver.php
│ │ │ ├── DataCollector
│ │ │ │ ├── AjaxDataCollector.php
│ │ │ │ ├── ConfigDataCollector.php
│ │ │ │ ├── DataCollectorInterface.php
│ │ │ │ ├── DataCollector.php
│ │ │ │ ├── DumpDataCollector.php
│ │ │ │ ├── EventDataCollector.php
│ │ │ │ ├── ExceptionDataCollector.php
│ │ │ │ ├── LateDataCollectorInterface.php
│ │ │ │ ├── LoggerDataCollector.php
│ │ │ │ ├── MemoryDataCollector.php
│ │ │ │ ├── RequestDataCollector.php
│ │ │ │ ├── RouterDataCollector.php
│ │ │ │ ├── TimeDataCollector.php
│ │ │ │ └── Util
│ │ │ │ └── ValueExporter.php
│ │ │ ├── Debug
│ │ │ │ └── TraceableEventDispatcher.php
│ │ │ ├── DependencyInjection
│ │ │ │ ├── AddClassesToCachePass.php
│ │ │ │ ├── ConfigurableExtension.php
│ │ │ │ ├── Extension.php
│ │ │ │ ├── FragmentRendererPass.php
│ │ │ │ ├── LazyLoadingFragmentHandler.php
│ │ │ │ └── MergeExtensionConfigurationPass.php
│ │ │ ├── Event
│ │ │ │ ├── FilterControllerEvent.php
│ │ │ │ ├── FilterResponseEvent.php
│ │ │ │ ├── FinishRequestEvent.php
│ │ │ │ ├── GetResponseEvent.php
│ │ │ │ ├── GetResponseForControllerResultEvent.php
│ │ │ │ ├── GetResponseForExceptionEvent.php
│ │ │ │ ├── KernelEvent.php
│ │ │ │ └── PostResponseEvent.php
│ │ │ ├── EventListener
│ │ │ │ ├── AddRequestFormatsListener.php
│ │ │ │ ├── DebugHandlersListener.php
│ │ │ │ ├── DumpListener.php
│ │ │ │ ├── ExceptionListener.php
│ │ │ │ ├── FragmentListener.php
│ │ │ │ ├── LocaleListener.php
│ │ │ │ ├── ProfilerListener.php
│ │ │ │ ├── ResponseListener.php
│ │ │ │ ├── RouterListener.php
│ │ │ │ ├── SaveSessionListener.php
│ │ │ │ ├── SessionListener.php
│ │ │ │ ├── StreamedResponseListener.php
│ │ │ │ ├── SurrogateListener.php
│ │ │ │ ├── TestSessionListener.php
│ │ │ │ └── TranslatorListener.php
│ │ │ ├── Exception
│ │ │ │ ├── AccessDeniedHttpException.php
│ │ │ │ ├── BadRequestHttpException.php
│ │ │ │ ├── ConflictHttpException.php
│ │ │ │ ├── GoneHttpException.php
│ │ │ │ ├── HttpExceptionInterface.php
│ │ │ │ ├── HttpException.php
│ │ │ │ ├── LengthRequiredHttpException.php
│ │ │ │ ├── MethodNotAllowedHttpException.php
│ │ │ │ ├── NotAcceptableHttpException.php
│ │ │ │ ├── NotFoundHttpException.php
│ │ │ │ ├── PreconditionFailedHttpException.php
│ │ │ │ ├── PreconditionRequiredHttpException.php
│ │ │ │ ├── ServiceUnavailableHttpException.php
│ │ │ │ ├── TooManyRequestsHttpException.php
│ │ │ │ ├── UnauthorizedHttpException.php
│ │ │ │ ├── UnprocessableEntityHttpException.php
│ │ │ │ └── UnsupportedMediaTypeHttpException.php
│ │ │ ├── Fragment
│ │ │ │ ├── AbstractSurrogateFragmentRenderer.php
│ │ │ │ ├── EsiFragmentRenderer.php
│ │ │ │ ├── FragmentHandler.php
│ │ │ │ ├── FragmentRendererInterface.php
│ │ │ │ ├── HIncludeFragmentRenderer.php
│ │ │ │ ├── InlineFragmentRenderer.php
│ │ │ │ ├── RoutableFragmentRenderer.php
│ │ │ │ └── SsiFragmentRenderer.php
│ │ │ ├── HttpCache
│ │ │ │ ├── Esi.php
│ │ │ │ ├── HttpCache.php
│ │ │ │ ├── ResponseCacheStrategyInterface.php
│ │ │ │ ├── ResponseCacheStrategy.php
│ │ │ │ ├── Ssi.php
│ │ │ │ ├── StoreInterface.php
│ │ │ │ ├── Store.php
│ │ │ │ └── SurrogateInterface.php
│ │ │ ├── HttpKernelInterface.php
│ │ │ ├── HttpKernel.php
│ │ │ ├── KernelEvents.php
│ │ │ ├── KernelInterface.php
│ │ │ ├── Kernel.php
│ │ │ ├── LICENSE
│ │ │ ├── Log
│ │ │ │ └── DebugLoggerInterface.php
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── Profiler
│ │ │ │ ├── FileProfilerStorage.php
│ │ │ │ ├── Profile.php
│ │ │ │ ├── Profiler.php
│ │ │ │ └── ProfilerStorageInterface.php
│ │ │ ├── README.md
│ │ │ ├── TerminableInterface.php
│ │ │ ├── Tests
│ │ │ │ ├── Bundle
│ │ │ │ │ └── BundleTest.php
│ │ │ │ ├── CacheClearer
│ │ │ │ │ └── ChainCacheClearerTest.php
│ │ │ │ ├── CacheWarmer
│ │ │ │ │ ├── CacheWarmerAggregateTest.php
│ │ │ │ │ └── CacheWarmerTest.php
│ │ │ │ ├── ClientTest.php
│ │ │ │ ├── Config
│ │ │ │ │ ├── EnvParametersResourceTest.php
│ │ │ │ │ └── FileLocatorTest.php
│ │ │ │ ├── Controller
│ │ │ │ │ └── ControllerResolverTest.php
│ │ │ │ ├── DataCollector
│ │ │ │ │ ├── ConfigDataCollectorTest.php
│ │ │ │ │ ├── DumpDataCollectorTest.php
│ │ │ │ │ ├── ExceptionDataCollectorTest.php
│ │ │ │ │ ├── LoggerDataCollectorTest.php
│ │ │ │ │ ├── MemoryDataCollectorTest.php
│ │ │ │ │ ├── RequestDataCollectorTest.php
│ │ │ │ │ ├── TimeDataCollectorTest.php
│ │ │ │ │ └── Util
│ │ │ │ │ └── ValueExporterTest.php
│ │ │ │ ├── Debug
│ │ │ │ │ └── TraceableEventDispatcherTest.php
│ │ │ │ ├── DependencyInjection
│ │ │ │ │ ├── FragmentRendererPassTest.php
│ │ │ │ │ ├── LazyLoadingFragmentHandlerTest.php
│ │ │ │ │ └── MergeExtensionConfigurationPassTest.php
│ │ │ │ ├── EventListener
│ │ │ │ │ ├── AddRequestFormatsListenerTest.php
│ │ │ │ │ ├── DebugHandlersListenerTest.php
│ │ │ │ │ ├── DumpListenerTest.php
│ │ │ │ │ ├── ExceptionListenerTest.php
│ │ │ │ │ ├── FragmentListenerTest.php
│ │ │ │ │ ├── LocaleListenerTest.php
│ │ │ │ │ ├── ProfilerListenerTest.php
│ │ │ │ │ ├── ResponseListenerTest.php
│ │ │ │ │ ├── RouterListenerTest.php
│ │ │ │ │ ├── SurrogateListenerTest.php
│ │ │ │ │ ├── TestSessionListenerTest.php
│ │ │ │ │ └── TranslatorListenerTest.php
│ │ │ │ ├── Fixtures
│ │ │ │ │ ├── BaseBundle
│ │ │ │ │ │ └── Resources
│ │ │ │ │ │ ├── foo.txt
│ │ │ │ │ │ └── hide.txt
│ │ │ │ │ ├── Bundle1Bundle
│ │ │ │ │ │ ├── bar.txt
│ │ │ │ │ │ ├── foo.txt
│ │ │ │ │ │ └── Resources
│ │ │ │ │ │ └── foo.txt
│ │ │ │ │ ├── Bundle2Bundle
│ │ │ │ │ │ └── foo.txt
│ │ │ │ │ ├── ChildBundle
│ │ │ │ │ │ └── Resources
│ │ │ │ │ │ ├── foo.txt
│ │ │ │ │ │ └── hide.txt
│ │ │ │ │ ├── Controller
│ │ │ │ │ │ └── VariadicController.php
│ │ │ │ │ ├── ExtensionAbsentBundle
│ │ │ │ │ │ └── ExtensionAbsentBundle.php
│ │ │ │ │ ├── ExtensionLoadedBundle
│ │ │ │ │ │ ├── DependencyInjection
│ │ │ │ │ │ │ └── ExtensionLoadedExtension.php
│ │ │ │ │ │ └── ExtensionLoadedBundle.php
│ │ │ │ │ ├── ExtensionNotValidBundle
│ │ │ │ │ │ ├── DependencyInjection
│ │ │ │ │ │ │ └── ExtensionNotValidExtension.php
│ │ │ │ │ │ └── ExtensionNotValidBundle.php
│ │ │ │ │ ├── ExtensionPresentBundle
│ │ │ │ │ │ ├── Command
│ │ │ │ │ │ │ ├── BarCommand.php
│ │ │ │ │ │ │ └── FooCommand.php
│ │ │ │ │ │ ├── DependencyInjection
│ │ │ │ │ │ │ └── ExtensionPresentExtension.php
│ │ │ │ │ │ └── ExtensionPresentBundle.php
│ │ │ │ │ ├── KernelForOverrideName.php
│ │ │ │ │ ├── KernelForTest.php
│ │ │ │ │ ├── Resources
│ │ │ │ │ │ ├── BaseBundle
│ │ │ │ │ │ │ └── hide.txt
│ │ │ │ │ │ ├── Bundle1Bundle
│ │ │ │ │ │ │ └── foo.txt
│ │ │ │ │ │ ├── ChildBundle
│ │ │ │ │ │ │ └── foo.txt
│ │ │ │ │ │ └── FooBundle
│ │ │ │ │ │ └── foo.txt
│ │ │ │ │ ├── TestClient.php
│ │ │ │ │ └── TestEventDispatcher.php
│ │ │ │ ├── Fragment
│ │ │ │ │ ├── EsiFragmentRendererTest.php
│ │ │ │ │ ├── FragmentHandlerTest.php
│ │ │ │ │ ├── HIncludeFragmentRendererTest.php
│ │ │ │ │ ├── InlineFragmentRendererTest.php
│ │ │ │ │ └── RoutableFragmentRendererTest.php
│ │ │ │ ├── HttpCache
│ │ │ │ │ ├── EsiTest.php
│ │ │ │ │ ├── HttpCacheTestCase.php
│ │ │ │ │ ├── HttpCacheTest.php
│ │ │ │ │ ├── ResponseCacheStrategyTest.php
│ │ │ │ │ ├── SsiTest.php
│ │ │ │ │ ├── StoreTest.php
│ │ │ │ │ ├── TestHttpKernel.php
│ │ │ │ │ └── TestMultipleHttpKernel.php
│ │ │ │ ├── HttpKernelTest.php
│ │ │ │ ├── KernelTest.php
│ │ │ │ ├── Logger.php
│ │ │ │ ├── Profiler
│ │ │ │ │ ├── FileProfilerStorageTest.php
│ │ │ │ │ └── ProfilerTest.php
│ │ │ │ ├── TestHttpKernel.php
│ │ │ │ └── UriSignerTest.php
│ │ │ └── UriSigner.php
│ │ ├── polyfill-mbstring
│ │ │ ├── bootstrap.php
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── Mbstring.php
│ │ │ ├── README.md
│ │ │ └── Resources
│ │ │ └── unidata
│ │ │ ├── lowerCase.php
│ │ │ └── upperCase.php
│ │ ├── polyfill-php56
│ │ │ ├── bootstrap.php
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── Php56.php
│ │ │ └── README.md
│ │ ├── polyfill-util
│ │ │ ├── BinaryNoFuncOverload.php
│ │ │ ├── BinaryOnFuncOverload.php
│ │ │ ├── Binary.php
│ │ │ ├── composer.json
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ └── TestListener.php
│ │ ├── process
│ │ │ ├── CHANGELOG.md
│ │ │ ├── composer.json
│ │ │ ├── Exception
│ │ │ │ ├── ExceptionInterface.php
│ │ │ │ ├── InvalidArgumentException.php
│ │ │ │ ├── LogicException.php
│ │ │ │ ├── ProcessFailedException.php
│ │ │ │ ├── ProcessTimedOutException.php
│ │ │ │ └── RuntimeException.php
│ │ │ ├── ExecutableFinder.php
│ │ │ ├── LICENSE
│ │ │ ├── PhpExecutableFinder.php
│ │ │ ├── PhpProcess.php
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── Pipes
│ │ │ │ ├── AbstractPipes.php
│ │ │ │ ├── PipesInterface.php
│ │ │ │ ├── UnixPipes.php
│ │ │ │ └── WindowsPipes.php
│ │ │ ├── ProcessBuilder.php
│ │ │ ├── Process.php
│ │ │ ├── ProcessUtils.php
│ │ │ ├── README.md
│ │ │ └── Tests
│ │ │ ├── ExecutableFinderTest.php
│ │ │ ├── NonStopableProcess.php
│ │ │ ├── PhpExecutableFinderTest.php
│ │ │ ├── PhpProcessTest.php
│ │ │ ├── PipeStdinInStdoutStdErrStreamSelect.php
│ │ │ ├── ProcessBuilderTest.php
│ │ │ ├── ProcessFailedExceptionTest.php
│ │ │ ├── ProcessTest.php
│ │ │ ├── ProcessUtilsTest.php
│ │ │ └── SignalListener.php
│ │ ├── routing
│ │ │ ├── Annotation
│ │ │ │ └── Route.php
│ │ │ ├── CHANGELOG.md
│ │ │ ├── CompiledRoute.php
│ │ │ ├── composer.json
│ │ │ ├── Exception
│ │ │ │ ├── ExceptionInterface.php
│ │ │ │ ├── InvalidParameterException.php
│ │ │ │ ├── MethodNotAllowedException.php
│ │ │ │ ├── MissingMandatoryParametersException.php
│ │ │ │ ├── ResourceNotFoundException.php
│ │ │ │ └── RouteNotFoundException.php
│ │ │ ├── Generator
│ │ │ │ ├── ConfigurableRequirementsInterface.php
│ │ │ │ ├── Dumper
│ │ │ │ │ ├── GeneratorDumperInterface.php
│ │ │ │ │ ├── GeneratorDumper.php
│ │ │ │ │ └── PhpGeneratorDumper.php
│ │ │ │ ├── UrlGeneratorInterface.php
│ │ │ │ └── UrlGenerator.php
│ │ │ ├── LICENSE
│ │ │ ├── Loader
│ │ │ │ ├── AnnotationClassLoader.php
│ │ │ │ ├── AnnotationDirectoryLoader.php
│ │ │ │ ├── AnnotationFileLoader.php
│ │ │ │ ├── ClosureLoader.php
│ │ │ │ ├── DependencyInjection
│ │ │ │ │ └── ServiceRouterLoader.php
│ │ │ │ ├── DirectoryLoader.php
│ │ │ │ ├── ObjectRouteLoader.php
│ │ │ │ ├── PhpFileLoader.php
│ │ │ │ ├── schema
│ │ │ │ │ └── routing
│ │ │ │ │ └── routing-1.0.xsd
│ │ │ │ ├── XmlFileLoader.php
│ │ │ │ └── YamlFileLoader.php
│ │ │ ├── Matcher
│ │ │ │ ├── Dumper
│ │ │ │ │ ├── DumperCollection.php
│ │ │ │ │ ├── DumperPrefixCollection.php
│ │ │ │ │ ├── DumperRoute.php
│ │ │ │ │ ├── MatcherDumperInterface.php
│ │ │ │ │ ├── MatcherDumper.php
│ │ │ │ │ └── PhpMatcherDumper.php
│ │ │ │ ├── RedirectableUrlMatcherInterface.php
│ │ │ │ ├── RedirectableUrlMatcher.php
│ │ │ │ ├── RequestMatcherInterface.php
│ │ │ │ ├── TraceableUrlMatcher.php
│ │ │ │ ├── UrlMatcherInterface.php
│ │ │ │ └── UrlMatcher.php
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── RequestContextAwareInterface.php
│ │ │ ├── RequestContext.php
│ │ │ ├── RouteCollectionBuilder.php
│ │ │ ├── RouteCollection.php
│ │ │ ├── RouteCompilerInterface.php
│ │ │ ├── RouteCompiler.php
│ │ │ ├── Route.php
│ │ │ ├── RouterInterface.php
│ │ │ ├── Router.php
│ │ │ └── Tests
│ │ │ ├── Annotation
│ │ │ │ └── RouteTest.php
│ │ │ ├── CompiledRouteTest.php
│ │ │ ├── Fixtures
│ │ │ │ ├── AnnotatedClasses
│ │ │ │ │ ├── AbstractClass.php
│ │ │ │ │ ├── BarClass.php
│ │ │ │ │ └── FooClass.php
│ │ │ │ ├── annotated.php
│ │ │ │ ├── bad_format.yml
│ │ │ │ ├── bar.xml
│ │ │ │ ├── CustomXmlFileLoader.php
│ │ │ │ ├── directory
│ │ │ │ │ ├── recurse
│ │ │ │ │ │ ├── routes1.yml
│ │ │ │ │ │ └── routes2.yml
│ │ │ │ │ └── routes3.yml
│ │ │ │ ├── directory_import
│ │ │ │ │ └── import.yml
│ │ │ │ ├── dumper
│ │ │ │ │ ├── url_matcher1.apache
│ │ │ │ │ ├── url_matcher1.php
│ │ │ │ │ ├── url_matcher2.apache
│ │ │ │ │ ├── url_matcher2.php
│ │ │ │ │ └── url_matcher3.php
│ │ │ │ ├── empty.yml
│ │ │ │ ├── file_resource.yml
│ │ │ │ ├── foo1.xml
│ │ │ │ ├── foo.xml
│ │ │ │ ├── incomplete.yml
│ │ │ │ ├── missing_id.xml
│ │ │ │ ├── missing_path.xml
│ │ │ │ ├── namespaceprefix.xml
│ │ │ │ ├── nonesense_resource_plus_path.yml
│ │ │ │ ├── nonesense_type_without_resource.yml
│ │ │ │ ├── nonvalid2.yml
│ │ │ │ ├── nonvalidkeys.yml
│ │ │ │ ├── nonvalidnode.xml
│ │ │ │ ├── nonvalidroute.xml
│ │ │ │ ├── nonvalid.xml
│ │ │ │ ├── nonvalid.yml
│ │ │ │ ├── null_values.xml
│ │ │ │ ├── OtherAnnotatedClasses
│ │ │ │ │ └── VariadicClass.php
│ │ │ │ ├── RedirectableUrlMatcher.php
│ │ │ │ ├── special_route_name.yml
│ │ │ │ ├── validpattern.php
│ │ │ │ ├── validpattern.xml
│ │ │ │ ├── validpattern.yml
│ │ │ │ ├── validresource.php
│ │ │ │ ├── validresource.xml
│ │ │ │ ├── validresource.yml
│ │ │ │ ├── with_define_path_variable.php
│ │ │ │ └── withdoctype.xml
│ │ │ ├── Generator
│ │ │ │ ├── Dumper
│ │ │ │ │ └── PhpGeneratorDumperTest.php
│ │ │ │ └── UrlGeneratorTest.php
│ │ │ ├── Loader
│ │ │ │ ├── AbstractAnnotationLoaderTest.php
│ │ │ │ ├── AnnotationClassLoaderTest.php
│ │ │ │ ├── AnnotationDirectoryLoaderTest.php
│ │ │ │ ├── AnnotationFileLoaderTest.php
│ │ │ │ ├── ClosureLoaderTest.php
│ │ │ │ ├── DirectoryLoaderTest.php
│ │ │ │ ├── ObjectRouteLoaderTest.php
│ │ │ │ ├── PhpFileLoaderTest.php
│ │ │ │ ├── XmlFileLoaderTest.php
│ │ │ │ └── YamlFileLoaderTest.php
│ │ │ ├── Matcher
│ │ │ │ ├── Dumper
│ │ │ │ │ ├── DumperCollectionTest.php
│ │ │ │ │ ├── DumperPrefixCollectionTest.php
│ │ │ │ │ └── PhpMatcherDumperTest.php
│ │ │ │ ├── RedirectableUrlMatcherTest.php
│ │ │ │ ├── TraceableUrlMatcherTest.php
│ │ │ │ └── UrlMatcherTest.php
│ │ │ ├── RequestContextTest.php
│ │ │ ├── RouteCollectionBuilderTest.php
│ │ │ ├── RouteCollectionTest.php
│ │ │ ├── RouteCompilerTest.php
│ │ │ ├── RouterTest.php
│ │ │ └── RouteTest.php
│ │ ├── translation
│ │ │ ├── Catalogue
│ │ │ │ ├── AbstractOperation.php
│ │ │ │ ├── MergeOperation.php
│ │ │ │ ├── OperationInterface.php
│ │ │ │ └── TargetOperation.php
│ │ │ ├── CHANGELOG.md
│ │ │ ├── composer.json
│ │ │ ├── DataCollector
│ │ │ │ └── TranslationDataCollector.php
│ │ │ ├── DataCollectorTranslator.php
│ │ │ ├── Dumper
│ │ │ │ ├── CsvFileDumper.php
│ │ │ │ ├── DumperInterface.php
│ │ │ │ ├── FileDumper.php
│ │ │ │ ├── IcuResFileDumper.php
│ │ │ │ ├── IniFileDumper.php
│ │ │ │ ├── JsonFileDumper.php
│ │ │ │ ├── MoFileDumper.php
│ │ │ │ ├── PhpFileDumper.php
│ │ │ │ ├── PoFileDumper.php
│ │ │ │ ├── QtFileDumper.php
│ │ │ │ ├── XliffFileDumper.php
│ │ │ │ └── YamlFileDumper.php
│ │ │ ├── Exception
│ │ │ │ ├── ExceptionInterface.php
│ │ │ │ ├── InvalidResourceException.php
│ │ │ │ └── NotFoundResourceException.php
│ │ │ ├── Extractor
│ │ │ │ ├── AbstractFileExtractor.php
│ │ │ │ ├── ChainExtractor.php
│ │ │ │ └── ExtractorInterface.php
│ │ │ ├── IdentityTranslator.php
│ │ │ ├── Interval.php
│ │ │ ├── LICENSE
│ │ │ ├── Loader
│ │ │ │ ├── ArrayLoader.php
│ │ │ │ ├── CsvFileLoader.php
│ │ │ │ ├── FileLoader.php
│ │ │ │ ├── IcuDatFileLoader.php
│ │ │ │ ├── IcuResFileLoader.php
│ │ │ │ ├── IniFileLoader.php
│ │ │ │ ├── JsonFileLoader.php
│ │ │ │ ├── LoaderInterface.php
│ │ │ │ ├── MoFileLoader.php
│ │ │ │ ├── PhpFileLoader.php
│ │ │ │ ├── PoFileLoader.php
│ │ │ │ ├── QtFileLoader.php
│ │ │ │ ├── schema
│ │ │ │ │ └── dic
│ │ │ │ │ └── xliff-core
│ │ │ │ │ ├── xliff-core-1.2-strict.xsd
│ │ │ │ │ ├── xliff-core-2.0.xsd
│ │ │ │ │ └── xml.xsd
│ │ │ │ ├── XliffFileLoader.php
│ │ │ │ └── YamlFileLoader.php
│ │ │ ├── LoggingTranslator.php
│ │ │ ├── MessageCatalogueInterface.php
│ │ │ ├── MessageCatalogue.php
│ │ │ ├── MessageSelector.php
│ │ │ ├── MetadataAwareInterface.php
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── PluralizationRules.php
│ │ │ ├── README.md
│ │ │ ├── Tests
│ │ │ │ ├── Catalogue
│ │ │ │ │ ├── AbstractOperationTest.php
│ │ │ │ │ ├── MergeOperationTest.php
│ │ │ │ │ └── TargetOperationTest.php
│ │ │ │ ├── DataCollector
│ │ │ │ │ └── TranslationDataCollectorTest.php
│ │ │ │ ├── DataCollectorTranslatorTest.php
│ │ │ │ ├── Dumper
│ │ │ │ │ ├── CsvFileDumperTest.php
│ │ │ │ │ ├── FileDumperTest.php
│ │ │ │ │ ├── IcuResFileDumperTest.php
│ │ │ │ │ ├── IniFileDumperTest.php
│ │ │ │ │ ├── JsonFileDumperTest.php
│ │ │ │ │ ├── MoFileDumperTest.php
│ │ │ │ │ ├── PhpFileDumperTest.php
│ │ │ │ │ ├── PoFileDumperTest.php
│ │ │ │ │ ├── QtFileDumperTest.php
│ │ │ │ │ ├── XliffFileDumperTest.php
│ │ │ │ │ └── YamlFileDumperTest.php
│ │ │ │ ├── fixtures
│ │ │ │ │ ├── empty.csv
│ │ │ │ │ ├── empty.ini
│ │ │ │ │ ├── empty.json
│ │ │ │ │ ├── empty.mo
│ │ │ │ │ ├── empty.po
│ │ │ │ │ ├── empty-translation.mo
│ │ │ │ │ ├── empty-translation.po
│ │ │ │ │ ├── empty.xlf
│ │ │ │ │ ├── empty.yml
│ │ │ │ │ ├── encoding.xlf
│ │ │ │ │ ├── escaped-id-plurals.po
│ │ │ │ │ ├── escaped-id.po
│ │ │ │ │ ├── fuzzy-translations.po
│ │ │ │ │ ├── invalid-xml-resources.xlf
│ │ │ │ │ ├── malformed.json
│ │ │ │ │ ├── messages_linear.yml
│ │ │ │ │ ├── messages.yml
│ │ │ │ │ ├── non-valid.xlf
│ │ │ │ │ ├── non-valid.yml
│ │ │ │ │ ├── plurals.mo
│ │ │ │ │ ├── plurals.po
│ │ │ │ │ ├── resname.xlf
│ │ │ │ │ ├── resourcebundle
│ │ │ │ │ │ ├── corrupted
│ │ │ │ │ │ │ └── resources.dat
│ │ │ │ │ │ ├── dat
│ │ │ │ │ │ │ ├── en.res
│ │ │ │ │ │ │ ├── en.txt
│ │ │ │ │ │ │ ├── fr.res
│ │ │ │ │ │ │ ├── fr.txt
│ │ │ │ │ │ │ ├── packagelist.txt
│ │ │ │ │ │ │ └── resources.dat
│ │ │ │ │ │ └── res
│ │ │ │ │ │ └── en.res
│ │ │ │ │ ├── resources-2.0-clean.xlf
│ │ │ │ │ ├── resources-2.0.xlf
│ │ │ │ │ ├── resources-clean.xlf
│ │ │ │ │ ├── resources.csv
│ │ │ │ │ ├── resources.dump.json
│ │ │ │ │ ├── resources.ini
│ │ │ │ │ ├── resources.json
│ │ │ │ │ ├── resources.mo
│ │ │ │ │ ├── resources.php
│ │ │ │ │ ├── resources.po
│ │ │ │ │ ├── resources-target-attributes.xlf
│ │ │ │ │ ├── resources-tool-info.xlf
│ │ │ │ │ ├── resources.ts
│ │ │ │ │ ├── resources.xlf
│ │ │ │ │ ├── resources.yml
│ │ │ │ │ ├── valid.csv
│ │ │ │ │ ├── with-attributes.xlf
│ │ │ │ │ ├── withdoctype.xlf
│ │ │ │ │ └── withnote.xlf
│ │ │ │ ├── IdentityTranslatorTest.php
│ │ │ │ ├── IntervalTest.php
│ │ │ │ ├── Loader
│ │ │ │ │ ├── CsvFileLoaderTest.php
│ │ │ │ │ ├── IcuDatFileLoaderTest.php
│ │ │ │ │ ├── IcuResFileLoaderTest.php
│ │ │ │ │ ├── IniFileLoaderTest.php
│ │ │ │ │ ├── JsonFileLoaderTest.php
│ │ │ │ │ ├── LocalizedTestCase.php
│ │ │ │ │ ├── MoFileLoaderTest.php
│ │ │ │ │ ├── PhpFileLoaderTest.php
│ │ │ │ │ ├── PoFileLoaderTest.php
│ │ │ │ │ ├── QtFileLoaderTest.php
│ │ │ │ │ ├── XliffFileLoaderTest.php
│ │ │ │ │ └── YamlFileLoaderTest.php
│ │ │ │ ├── LoggingTranslatorTest.php
│ │ │ │ ├── MessageCatalogueTest.php
│ │ │ │ ├── MessageSelectorTest.php
│ │ │ │ ├── PluralizationRulesTest.php
│ │ │ │ ├── TranslatorCacheTest.php
│ │ │ │ ├── TranslatorTest.php
│ │ │ │ ├── Util
│ │ │ │ │ └── ArrayConverterTest.php
│ │ │ │ └── Writer
│ │ │ │ └── TranslationWriterTest.php
│ │ │ ├── TranslatorBagInterface.php
│ │ │ ├── TranslatorInterface.php
│ │ │ ├── Translator.php
│ │ │ ├── Util
│ │ │ │ └── ArrayConverter.php
│ │ │ └── Writer
│ │ │ └── TranslationWriter.php
│ │ ├── var-dumper
│ │ │ ├── Caster
│ │ │ │ ├── AmqpCaster.php
│ │ │ │ ├── Caster.php
│ │ │ │ ├── ConstStub.php
│ │ │ │ ├── CutArrayStub.php
│ │ │ │ ├── CutStub.php
│ │ │ │ ├── DoctrineCaster.php
│ │ │ │ ├── DOMCaster.php
│ │ │ │ ├── EnumStub.php
│ │ │ │ ├── ExceptionCaster.php
│ │ │ │ ├── FrameStub.php
│ │ │ │ ├── MongoCaster.php
│ │ │ │ ├── PdoCaster.php
│ │ │ │ ├── PgSqlCaster.php
│ │ │ │ ├── ReflectionCaster.php
│ │ │ │ ├── ResourceCaster.php
│ │ │ │ ├── SplCaster.php
│ │ │ │ ├── StubCaster.php
│ │ │ │ ├── TraceStub.php
│ │ │ │ └── XmlResourceCaster.php
│ │ │ ├── CHANGELOG.md
│ │ │ ├── Cloner
│ │ │ │ ├── AbstractCloner.php
│ │ │ │ ├── ClonerInterface.php
│ │ │ │ ├── Cursor.php
│ │ │ │ ├── Data.php
│ │ │ │ ├── DumperInterface.php
│ │ │ │ ├── Stub.php
│ │ │ │ └── VarCloner.php
│ │ │ ├── composer.json
│ │ │ ├── Dumper
│ │ │ │ ├── AbstractDumper.php
│ │ │ │ ├── CliDumper.php
│ │ │ │ ├── DataDumperInterface.php
│ │ │ │ └── HtmlDumper.php
│ │ │ ├── Exception
│ │ │ │ └── ThrowingCasterException.php
│ │ │ ├── LICENSE
│ │ │ ├── phpunit.xml.dist
│ │ │ ├── README.md
│ │ │ ├── Resources
│ │ │ │ └── functions
│ │ │ │ └── dump.php
│ │ │ ├── Test
│ │ │ │ └── VarDumperTestTrait.php
│ │ │ ├── Tests
│ │ │ │ ├── Caster
│ │ │ │ │ ├── CasterTest.php
│ │ │ │ │ ├── PdoCasterTest.php
│ │ │ │ │ ├── ReflectionCasterTest.php
│ │ │ │ │ └── SplCasterTest.php
│ │ │ │ ├── CliDumperTest.php
│ │ │ │ ├── Fixtures
│ │ │ │ │ ├── dumb-var.php
│ │ │ │ │ ├── GeneratorDemo.php
│ │ │ │ │ ├── NotLoadableClass.php
│ │ │ │ │ └── Twig.php
│ │ │ │ ├── HtmlDumperTest.php
│ │ │ │ ├── Test
│ │ │ │ │ └── VarDumperTestTraitTest.php
│ │ │ │ └── VarClonerTest.php
│ │ │ └── VarDumper.php
│ │ └── yaml
│ │ ├── CHANGELOG.md
│ │ ├── composer.json
│ │ ├── Dumper.php
│ │ ├── Escaper.php
│ │ ├── Exception
│ │ │ ├── DumpException.php
│ │ │ ├── ExceptionInterface.php
│ │ │ ├── ParseException.php
│ │ │ └── RuntimeException.php
│ │ ├── Inline.php
│ │ ├── LICENSE
│ │ ├── Parser.php
│ │ ├── phpunit.xml.dist
│ │ ├── README.md
│ │ ├── Tests
│ │ │ ├── DumperTest.php
│ │ │ ├── Fixtures
│ │ │ │ ├── arrow.gif
│ │ │ │ ├── embededPhp.yml
│ │ │ │ ├── escapedCharacters.yml
│ │ │ │ ├── index.yml
│ │ │ │ ├── multiple_lines_as_literal_block.yml
│ │ │ │ ├── sfComments.yml
│ │ │ │ ├── sfCompact.yml
│ │ │ │ ├── sfMergeKey.yml
│ │ │ │ ├── sfObjects.yml
│ │ │ │ ├── sfQuotes.yml
│ │ │ │ ├── sfTests.yml
│ │ │ │ ├── unindentedCollections.yml
│ │ │ │ ├── YtsAnchorAlias.yml
│ │ │ │ ├── YtsBasicTests.yml
│ │ │ │ ├── YtsBlockMapping.yml
│ │ │ │ ├── YtsDocumentSeparator.yml
│ │ │ │ ├── YtsErrorTests.yml
│ │ │ │ ├── YtsFlowCollections.yml
│ │ │ │ ├── YtsFoldedScalars.yml
│ │ │ │ ├── YtsNullsAndEmpties.yml
│ │ │ │ ├── YtsSpecificationExamples.yml
│ │ │ │ └── YtsTypeTransfers.yml
│ │ │ ├── InlineTest.php
│ │ │ ├── ParseExceptionTest.php
│ │ │ ├── ParserTest.php
│ │ │ └── YamlTest.php
│ │ ├── Unescaper.php
│ │ └── Yaml.php
│ ├── toplan
│ │ └── filter-manager
│ │ ├── composer.json
│ │ ├── demo_temp_for_laravel.blade.php
│ │ ├── fm-demo2.png
│ │ ├── fm-demo.png
│ │ ├── README_CN.md
│ │ ├── README.md
│ │ └── src
│ │ └── FilterManager
│ │ ├── Facades
│ │ │ └── FilterManager.php
│ │ ├── FilterManagerException.php
│ │ ├── FilterManager.php
│ │ └── FilterManagerServiceProvider.php
│ ├── twbs
│ │ └── bootstrap
│ │ ├── bower.json
│ │ ├── CHANGELOG.md
│ │ ├── CNAME
│ │ ├── composer.json
│ │ ├── _config.yml
│ │ ├── CONTRIBUTING.md
│ │ ├── dist
│ │ │ ├── css
│ │ │ │ ├── bootstrap.css
│ │ │ │ ├── bootstrap.css.map
│ │ │ │ ├── bootstrap.min.css
│ │ │ │ ├── bootstrap.min.css.map
│ │ │ │ ├── bootstrap-theme.css
│ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ └── bootstrap-theme.min.css.map
│ │ │ ├── fonts
│ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ └── js
│ │ │ ├── bootstrap.js
│ │ │ ├── bootstrap.min.js
│ │ │ └── npm.js
│ │ ├── docs
│ │ │ ├── about.html
│ │ │ ├── apple-touch-icon.png
│ │ │ ├── assets
│ │ │ │ ├── brand
│ │ │ │ │ ├── bootstrap-outline.svg
│ │ │ │ │ ├── bootstrap-punchout.svg
│ │ │ │ │ └── bootstrap-solid.svg
│ │ │ │ ├── css
│ │ │ │ │ ├── docs.min.css
│ │ │ │ │ ├── docs.min.css.map
│ │ │ │ │ ├── ie10-viewport-bug-workaround.css
│ │ │ │ │ └── src
│ │ │ │ │ ├── docs.css
│ │ │ │ │ └── pygments-manni.css
│ │ │ │ ├── flash
│ │ │ │ │ └── ZeroClipboard.swf
│ │ │ │ ├── img
│ │ │ │ │ ├── components.png
│ │ │ │ │ ├── devices.png
│ │ │ │ │ ├── expo-lyft.jpg
│ │ │ │ │ ├── expo-newsweek.jpg
│ │ │ │ │ ├── expo-riot.jpg
│ │ │ │ │ ├── expo-vogue.jpg
│ │ │ │ │ └── sass-less.png
│ │ │ │ └── js
│ │ │ │ ├── customize.min.js
│ │ │ │ ├── docs.min.js
│ │ │ │ ├── ie10-viewport-bug-workaround.js
│ │ │ │ ├── ie8-responsive-file-warning.js
│ │ │ │ ├── ie-emulation-modes-warning.js
│ │ │ │ ├── raw-files.min.js
│ │ │ │ ├── src
│ │ │ │ │ ├── application.js
│ │ │ │ │ └── customizer.js
│ │ │ │ └── vendor
│ │ │ │ ├── anchor.js
│ │ │ │ ├── autoprefixer.js
│ │ │ │ ├── Blob.js
│ │ │ │ ├── FileSaver.js
│ │ │ │ ├── holder.min.js
│ │ │ │ ├── jquery.min.js
│ │ │ │ ├── jszip.min.js
│ │ │ │ ├── less.min.js
│ │ │ │ ├── uglify.min.js
│ │ │ │ └── ZeroClipboard.min.js
│ │ │ ├── browser-bugs.html
│ │ │ ├── components.html
│ │ │ ├── css.html
│ │ │ ├── customize.html
│ │ │ ├── _data
│ │ │ │ ├── browser-bugs.yml
│ │ │ │ ├── core-team.yml
│ │ │ │ ├── glyphicons.yml
│ │ │ │ ├── sass-team.yml
│ │ │ │ ├── showcase.yml
│ │ │ │ └── translations.yml
│ │ │ ├── dist
│ │ │ │ ├── css
│ │ │ │ │ ├── bootstrap.css
│ │ │ │ │ ├── bootstrap.css.map
│ │ │ │ │ ├── bootstrap.min.css
│ │ │ │ │ ├── bootstrap.min.css.map
│ │ │ │ │ ├── bootstrap-theme.css
│ │ │ │ │ ├── bootstrap-theme.css.map
│ │ │ │ │ ├── bootstrap-theme.min.css
│ │ │ │ │ └── bootstrap-theme.min.css.map
│ │ │ │ ├── fonts
│ │ │ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ │ │ └── glyphicons-halflings-regular.woff2
│ │ │ │ └── js
│ │ │ │ ├── bootstrap.js
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ └── npm.js
│ │ │ ├── examples
│ │ │ │ ├── blog
│ │ │ │ │ ├── blog.css
│ │ │ │ │ └── index.html
│ │ │ │ ├── carousel
│ │ │ │ │ ├── carousel.css
│ │ │ │ │ └── index.html
│ │ │ │ ├── cover
│ │ │ │ │ ├── cover.css
│ │ │ │ │ └── index.html
│ │ │ │ ├── dashboard
│ │ │ │ │ ├── dashboard.css
│ │ │ │ │ └── index.html
│ │ │ │ ├── grid
│ │ │ │ │ ├── grid.css
│ │ │ │ │ └── index.html
│ │ │ │ ├── jumbotron
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── jumbotron.css
│ │ │ │ ├── jumbotron-narrow
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── jumbotron-narrow.css
│ │ │ │ ├── justified-nav
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── justified-nav.css
│ │ │ │ ├── navbar
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── navbar.css
│ │ │ │ ├── navbar-fixed-top
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── navbar-fixed-top.css
│ │ │ │ ├── navbar-static-top
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── navbar-static-top.css
│ │ │ │ ├── non-responsive
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── non-responsive.css
│ │ │ │ ├── offcanvas
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── offcanvas.css
│ │ │ │ │ └── offcanvas.js
│ │ │ │ ├── screenshots
│ │ │ │ │ ├── blog.jpg
│ │ │ │ │ ├── carousel.jpg
│ │ │ │ │ ├── cover.jpg
│ │ │ │ │ ├── dashboard.jpg
│ │ │ │ │ ├── equal-height-columns.jpg
│ │ │ │ │ ├── grid.jpg
│ │ │ │ │ ├── jumbotron.jpg
│ │ │ │ │ ├── jumbotron-narrow.jpg
│ │ │ │ │ ├── justified-nav.jpg
│ │ │ │ │ ├── navbar-fixed.jpg
│ │ │ │ │ ├── navbar.jpg
│ │ │ │ │ ├── navbar-static.jpg
│ │ │ │ │ ├── non-responsive.jpg
│ │ │ │ │ ├── offcanvas.jpg
│ │ │ │ │ ├── sign-in.jpg
│ │ │ │ │ ├── starter-template.jpg
│ │ │ │ │ ├── sticky-footer.jpg
│ │ │ │ │ ├── sticky-footer-navbar.jpg
│ │ │ │ │ └── theme.jpg
│ │ │ │ ├── signin
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── signin.css
│ │ │ │ ├── starter-template
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── starter-template.css
│ │ │ │ ├── sticky-footer
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── sticky-footer.css
│ │ │ │ ├── sticky-footer-navbar
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── sticky-footer-navbar.css
│ │ │ │ ├── theme
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── theme.css
│ │ │ │ └── tooltip-viewport
│ │ │ │ ├── index.html
│ │ │ │ ├── tooltip-viewport.css
│ │ │ │ └── tooltip-viewport.js
│ │ │ ├── favicon.ico
│ │ │ ├── getting-started.html
│ │ │ ├── _includes
│ │ │ │ ├── ads.html
│ │ │ │ ├── components
│ │ │ │ │ ├── alerts.html
│ │ │ │ │ ├── badges.html
│ │ │ │ │ ├── breadcrumbs.html
│ │ │ │ │ ├── button-dropdowns.html
│ │ │ │ │ ├── button-groups.html
│ │ │ │ │ ├── dropdowns.html
│ │ │ │ │ ├── glyphicons.html
│ │ │ │ │ ├── input-groups.html
│ │ │ │ │ ├── jumbotron.html
│ │ │ │ │ ├── labels.html
│ │ │ │ │ ├── list-group.html
│ │ │ │ │ ├── media.html
│ │ │ │ │ ├── navbar.html
│ │ │ │ │ ├── navs.html
│ │ │ │ │ ├── page-header.html
│ │ │ │ │ ├── pagination.html
│ │ │ │ │ ├── panels.html
│ │ │ │ │ ├── progress-bars.html
│ │ │ │ │ ├── responsive-embed.html
│ │ │ │ │ ├── thumbnails.html
│ │ │ │ │ └── wells.html
│ │ │ │ ├── css
│ │ │ │ │ ├── buttons.html
│ │ │ │ │ ├── code.html
│ │ │ │ │ ├── forms.html
│ │ │ │ │ ├── grid.html
│ │ │ │ │ ├── helpers.html
│ │ │ │ │ ├── images.html
│ │ │ │ │ ├── less.html
│ │ │ │ │ ├── overview.html
│ │ │ │ │ ├── responsive-utilities.html
│ │ │ │ │ ├── sass.html
│ │ │ │ │ ├── tables.html
│ │ │ │ │ └── type.html
│ │ │ │ ├── customizer-variables.html
│ │ │ │ ├── footer.html
│ │ │ │ ├── getting-started
│ │ │ │ │ ├── accessibility.html
│ │ │ │ │ ├── browser-device-support.html
│ │ │ │ │ ├── community.html
│ │ │ │ │ ├── disabling-responsiveness.html
│ │ │ │ │ ├── download.html
│ │ │ │ │ ├── examples.html
│ │ │ │ │ ├── grunt.html
│ │ │ │ │ ├── license.html
│ │ │ │ │ ├── template.html
│ │ │ │ │ ├── third-party-support.html
│ │ │ │ │ ├── tools.html
│ │ │ │ │ ├── translations.html
│ │ │ │ │ └── whats-included.html
│ │ │ │ ├── header.html
│ │ │ │ ├── js
│ │ │ │ │ ├── affix.html
│ │ │ │ │ ├── alerts.html
│ │ │ │ │ ├── buttons.html
│ │ │ │ │ ├── carousel.html
│ │ │ │ │ ├── collapse.html
│ │ │ │ │ ├── dropdowns.html
│ │ │ │ │ ├── modal.html
│ │ │ │ │ ├── overview.html
│ │ │ │ │ ├── popovers.html
│ │ │ │ │ ├── scrollspy.html
│ │ │ │ │ ├── tabs.html
│ │ │ │ │ ├── tooltips.html
│ │ │ │ │ └── transitions.html
│ │ │ │ └── nav
│ │ │ │ ├── about.html
│ │ │ │ ├── components.html
│ │ │ │ ├── css.html
│ │ │ │ ├── customize.html
│ │ │ │ ├── getting-started.html
│ │ │ │ ├── javascript.html
│ │ │ │ ├── main.html
│ │ │ │ └── migration.html
│ │ │ ├── index.html
│ │ │ ├── _jade
│ │ │ │ ├── customizer-nav.jade
│ │ │ │ └── customizer-variables.jade
│ │ │ ├── javascript.html
│ │ │ ├── _layouts
│ │ │ │ ├── default.html
│ │ │ │ └── home.html
│ │ │ ├── LICENSE
│ │ │ ├── migration.html
│ │ │ ├── _plugins
│ │ │ │ ├── bridge.rb
│ │ │ │ └── bugify.rb
│ │ │ ├── robots.txt
│ │ │ └── sitemap.xml
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ ├── grunt
│ │ │ ├── bs-commonjs-generator.js
│ │ │ ├── bs-glyphicons-data-generator.js
│ │ │ ├── bs-lessdoc-parser.js
│ │ │ ├── bs-raw-files-generator.js
│ │ │ ├── configBridge.json
│ │ │ └── sauce_browsers.yml
│ │ ├── Gruntfile.js
│ │ ├── js
│ │ │ ├── affix.js
│ │ │ ├── alert.js
│ │ │ ├── button.js
│ │ │ ├── carousel.js
│ │ │ ├── collapse.js
│ │ │ ├── dropdown.js
│ │ │ ├── modal.js
│ │ │ ├── popover.js
│ │ │ ├── scrollspy.js
│ │ │ ├── tab.js
│ │ │ ├── tests
│ │ │ │ ├── index.html
│ │ │ │ ├── README.md
│ │ │ │ ├── unit
│ │ │ │ │ ├── affix.js
│ │ │ │ │ ├── alert.js
│ │ │ │ │ ├── button.js
│ │ │ │ │ ├── carousel.js
│ │ │ │ │ ├── collapse.js
│ │ │ │ │ ├── dropdown.js
│ │ │ │ │ ├── modal.js
│ │ │ │ │ ├── phantom.js
│ │ │ │ │ ├── popover.js
│ │ │ │ │ ├── scrollspy.js
│ │ │ │ │ ├── tab.js
│ │ │ │ │ └── tooltip.js
│ │ │ │ ├── vendor
│ │ │ │ │ ├── jquery.min.js
│ │ │ │ │ ├── qunit.css
│ │ │ │ │ └── qunit.js
│ │ │ │ └── visual
│ │ │ │ ├── affix.html
│ │ │ │ ├── affix-with-sticky-footer.html
│ │ │ │ ├── alert.html
│ │ │ │ ├── button.html
│ │ │ │ ├── carousel.html
│ │ │ │ ├── collapse.html
│ │ │ │ ├── dropdown.html
│ │ │ │ ├── modal.html
│ │ │ │ ├── popover.html
│ │ │ │ ├── scrollspy.html
│ │ │ │ ├── tab.html
│ │ │ │ └── tooltip.html
│ │ │ ├── tooltip.js
│ │ │ └── transition.js
│ │ ├── less
│ │ │ ├── alerts.less
│ │ │ ├── badges.less
│ │ │ ├── bootstrap.less
│ │ │ ├── breadcrumbs.less
│ │ │ ├── button-groups.less
│ │ │ ├── buttons.less
│ │ │ ├── carousel.less
│ │ │ ├── close.less
│ │ │ ├── code.less
│ │ │ ├── component-animations.less
│ │ │ ├── dropdowns.less
│ │ │ ├── forms.less
│ │ │ ├── glyphicons.less
│ │ │ ├── grid.less
│ │ │ ├── input-groups.less
│ │ │ ├── jumbotron.less
│ │ │ ├── labels.less
│ │ │ ├── list-group.less
│ │ │ ├── media.less
│ │ │ ├── mixins
│ │ │ │ ├── alerts.less
│ │ │ │ ├── background-variant.less
│ │ │ │ ├── border-radius.less
│ │ │ │ ├── buttons.less
│ │ │ │ ├── center-block.less
│ │ │ │ ├── clearfix.less
│ │ │ │ ├── forms.less
│ │ │ │ ├── gradients.less
│ │ │ │ ├── grid-framework.less
│ │ │ │ ├── grid.less
│ │ │ │ ├── hide-text.less
│ │ │ │ ├── image.less
│ │ │ │ ├── labels.less
│ │ │ │ ├── list-group.less
│ │ │ │ ├── nav-divider.less
│ │ │ │ ├── nav-vertical-align.less
│ │ │ │ ├── opacity.less
│ │ │ │ ├── pagination.less
│ │ │ │ ├── panels.less
│ │ │ │ ├── progress-bar.less
│ │ │ │ ├── reset-filter.less
│ │ │ │ ├── reset-text.less
│ │ │ │ ├── resize.less
│ │ │ │ ├── responsive-visibility.less
│ │ │ │ ├── size.less
│ │ │ │ ├── tab-focus.less
│ │ │ │ ├── table-row.less
│ │ │ │ ├── text-emphasis.less
│ │ │ │ ├── text-overflow.less
│ │ │ │ └── vendor-prefixes.less
│ │ │ ├── mixins.less
│ │ │ ├── modals.less
│ │ │ ├── navbar.less
│ │ │ ├── navs.less
│ │ │ ├── normalize.less
│ │ │ ├── pager.less
│ │ │ ├── pagination.less
│ │ │ ├── panels.less
│ │ │ ├── popovers.less
│ │ │ ├── print.less
│ │ │ ├── progress-bars.less
│ │ │ ├── responsive-embed.less
│ │ │ ├── responsive-utilities.less
│ │ │ ├── scaffolding.less
│ │ │ ├── tables.less
│ │ │ ├── theme.less
│ │ │ ├── thumbnails.less
│ │ │ ├── tooltip.less
│ │ │ ├── type.less
│ │ │ ├── utilities.less
│ │ │ ├── variables.less
│ │ │ └── wells.less
│ │ ├── LICENSE
│ │ ├── nuget
│ │ │ ├── bootstrap.less.nuspec
│ │ │ ├── bootstrap.nuspec
│ │ │ └── MyGet.ps1
│ │ ├── package.js
│ │ ├── package.json
│ │ ├── README.md
│ │ └── test-infra
│ │ ├── npm-shrinkwrap.json
│ │ ├── README.md
│ │ ├── requirements.txt
│ │ ├── S3Cachefile.json
│ │ ├── s3_cache.py
│ │ └── uncached-npm-install.sh
│ ├── vlucas
│ │ └── phpdotenv
│ │ ├── composer.json
│ │ ├── LICENSE.txt
│ │ └── src
│ │ ├── Dotenv.php
│ │ ├── Exception
│ │ │ ├── ExceptionInterface.php
│ │ │ ├── InvalidCallbackException.php
│ │ │ ├── InvalidFileException.php
│ │ │ ├── InvalidPathException.php
│ │ │ └── ValidationException.php
│ │ ├── Loader.php
│ │ └── Validator.php
│ └── zizaco
│ └── entrust
│ ├── composer.json
│ ├── composer.lock
│ ├── docs.php
│ ├── LICENSE
│ ├── phpunit.xml
│ ├── README.md
│ ├── src
│ │ ├── commands
│ │ │ └── MigrationCommand.php
│ │ ├── config
│ │ │ └── config.php
│ │ ├── Entrust
│ │ │ ├── Contracts
│ │ │ │ ├── EntrustPermissionInterface.php
│ │ │ │ ├── EntrustRoleInterface.php
│ │ │ │ └── EntrustUserInterface.php
│ │ │ ├── EntrustFacade.php
│ │ │ ├── EntrustPermission.php
│ │ │ ├── Entrust.php
│ │ │ ├── EntrustRole.php
│ │ │ ├── EntrustServiceProvider.php
│ │ │ ├── Middleware
│ │ │ │ ├── EntrustAbility.php
│ │ │ │ ├── EntrustPermission.php
│ │ │ │ └── EntrustRole.php
│ │ │ └── Traits
│ │ │ ├── EntrustPermissionTrait.php
│ │ │ ├── EntrustRoleTrait.php
│ │ │ └── EntrustUserTrait.php
│ │ └── views
│ │ └── generators
│ │ └── migration.blade.php
│ └── tests
│ ├── EntrustTest.php
│ ├── EntrustUserTest.php
│ └── Middleware
│ ├── EntrustAbilityTest.php
│ ├── EntrustPermissionTest.php
│ ├── EntrustRoleTest.php
│ └── MiddlewareTest.php
└── readMe.txt
1460 directories, 8030 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论