在好例子网,分享、交流、成长!
您当前所在位置:首页PHP 开发实例PHP语言基础 → Laravel5.4快速开发简书网站

Laravel5.4快速开发简书网站

PHP语言基础

下载此实例
  • 开发语言:PHP
  • 实例大小:23.66M
  • 下载次数:14
  • 浏览次数:83
  • 发布时间:2022-03-11
  • 实例类别:PHP语言基础
  • 发 布 人:lqbank
  • 文件格式:.rar
  • 所需积分:10
 相关标签: laravel 5.4 快速 开发

实例介绍

【实例简介】Laravel5.4快速开发简书网站
【实例截图】

【核心代码】

.
├── Laravel5.4快速开发简书网站.rar
└── jianshu_Laravel_5.4
    └── c16nyr
        ├── app
        │   ├── Admin
        │   │   └── Controllers
        │   │       ├── Controller.php
        │   │       ├── HomeController.php
        │   │       ├── LoginController.php
        │   │       ├── NoticeController.php
        │   │       ├── PermissionController.php
        │   │       ├── PostController.php
        │   │       ├── RoleController.php
        │   │       ├── TopicController.php
        │   │       └── UserController.php
        │   ├── AdminPermission.php
        │   ├── AdminRole.php
        │   ├── AdminUser.php
        │   ├── Comment.php
        │   ├── Console
        │   │   ├── Commands
        │   │   │   └── ESInit.php
        │   │   └── Kernel.php
        │   ├── Exceptions
        │   │   └── Handler.php
        │   ├── Fan.php
        │   ├── Http
        │   │   ├── Controllers
        │   │   │   ├── Controller.php
        │   │   │   ├── LoginController.php
        │   │   │   ├── NoticeController.php
        │   │   │   ├── PostController.php
        │   │   │   ├── RegisterController.php
        │   │   │   ├── TopicController.php
        │   │   │   └── UserController.php
        │   │   ├── Kernel.php
        │   │   └── Middleware
        │   │       ├── EncryptCookies.php
        │   │       ├── RedirectIfAuthenticated.php
        │   │       ├── TrimStrings.php
        │   │       └── VerifyCsrfToken.php
        │   ├── Jobs
        │   │   └── SendMessage.php
        │   ├── Model.php
        │   ├── Notice.php
        │   ├── Policies
        │   │   └── PostPolicy.php
        │   ├── Post.php
        │   ├── PostTopic.php
        │   ├── Providers
        │   │   ├── AppServiceProvider.php
        │   │   ├── AuthServiceProvider.php
        │   │   ├── BroadcastServiceProvider.php
        │   │   ├── EventServiceProvider.php
        │   │   └── RouteServiceProvider.php
        │   ├── Topic.php
        │   ├── User.php
        │   └── Zan.php
        ├── artisan
        ├── bootstrap
        │   ├── app.php
        │   ├── autoload.php
        │   └── cache
        │       └── services.php
        ├── composer.json
        ├── composer.lock
        ├── config
        │   ├── app.php
        │   ├── auth.php
        │   ├── broadcasting.php
        │   ├── cache.php
        │   ├── database.php
        │   ├── debugbar.php
        │   ├── filesystems.php
        │   ├── mail.php
        │   ├── queue.php
        │   ├── scout.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
        │   │   ├── 2017_03_26_233534_create_posts_table.php
        │   │   ├── 2017_04_04_091147_create_comment_table.php
        │   │   ├── 2017_04_04_112227_create_zan_table.php
        │   │   ├── 2017_04_05_223606_create_fan_table.php
        │   │   ├── 2017_04_06_162830_create_topics_table.php
        │   │   ├── 2017_04_08_110156_create_admin_user_table.php
        │   │   ├── 2017_04_08_215943_alter_posts_table.php
        │   │   ├── 2017_04_09_100358_create_permission_and_roles.php
        │   │   ├── 2017_04_11_143417_create_notice_table.php
        │   │   ├── 2017_04_11_234527_create_jobs_table.php
        │   │   ├── 2017_04_11_234539_create_failed_jobs_table.php
        │   │   └── 2017_05_14_205043_alter_user_table_add_avatar.php
        │   └── seeds
        │       └── DatabaseSeeder.php
        ├── package.json
        ├── phpunit.xml
        ├── public
        │   ├── adminlte
        │   │   ├── Gruntfile.js
        │   │   ├── LICENSE
        │   │   ├── README.md
        │   │   ├── bootstrap
        │   │   │   ├── css
        │   │   │   │   ├── bootstrap-theme.css
        │   │   │   │   ├── bootstrap-theme.css.map
        │   │   │   │   ├── bootstrap-theme.min.css
        │   │   │   │   ├── bootstrap-theme.min.css.map
        │   │   │   │   ├── bootstrap.css
        │   │   │   │   ├── bootstrap.css.map
        │   │   │   │   ├── bootstrap.min.css
        │   │   │   │   └── bootstrap.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
        │   │   ├── bower.json
        │   │   ├── build
        │   │   │   ├── bootstrap-less
        │   │   │   │   ├── mixins
        │   │   │   │   ├── mixins.less
        │   │   │   │   └── variables.less
        │   │   │   └── less
        │   │   │       ├── 404_500_errors.less
        │   │   │       ├── AdminLTE-without-plugins.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
        │   │   │       ├── plugins.less
        │   │   │       ├── print.less
        │   │   │       ├── products.less
        │   │   │       ├── profile.less
        │   │   │       ├── progress-bars.less
        │   │   │       ├── select2.less
        │   │   │       ├── sidebar-mini.less
        │   │   │       ├── sidebar.less
        │   │   │       ├── skins
        │   │   │       ├── small-box.less
        │   │   │       ├── social-widgets.less
        │   │   │       ├── table.less
        │   │   │       ├── timeline.less
        │   │   │       ├── users-list.less
        │   │   │       └── variables.less
        │   │   ├── changelog.md
        │   │   ├── composer.json
        │   │   ├── dist
        │   │   │   ├── css
        │   │   │   │   ├── AdminLTE.css
        │   │   │   │   ├── AdminLTE.min.css
        │   │   │   │   ├── alt
        │   │   │   │   └── skins
        │   │   │   ├── img
        │   │   │   │   ├── avatar.png
        │   │   │   │   ├── avatar04.png
        │   │   │   │   ├── avatar2.png
        │   │   │   │   ├── avatar3.png
        │   │   │   │   ├── avatar5.png
        │   │   │   │   ├── boxed-bg.jpg
        │   │   │   │   ├── boxed-bg.png
        │   │   │   │   ├── credit
        │   │   │   │   ├── 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
        │   │   ├── documentation
        │   │   │   ├── build
        │   │   │   │   ├── include
        │   │   │   │   └── index.html
        │   │   │   ├── docs.js
        │   │   │   ├── index.html
        │   │   │   └── style.css
        │   │   ├── index.html
        │   │   ├── index2.html
        │   │   ├── package.json
        │   │   ├── pages
        │   │   │   ├── UI
        │   │   │   │   ├── buttons.html
        │   │   │   │   ├── general.html
        │   │   │   │   ├── icons.html
        │   │   │   │   ├── modals.html
        │   │   │   │   ├── sliders.html
        │   │   │   │   └── timeline.html
        │   │   │   ├── calendar.html
        │   │   │   ├── charts
        │   │   │   │   ├── chartjs.html
        │   │   │   │   ├── flot.html
        │   │   │   │   ├── inline.html
        │   │   │   │   └── morris.html
        │   │   │   ├── examples
        │   │   │   │   ├── 404.html
        │   │   │   │   ├── 500.html
        │   │   │   │   ├── blank.html
        │   │   │   │   ├── invoice-print.html
        │   │   │   │   ├── invoice.html
        │   │   │   │   ├── lockscreen.html
        │   │   │   │   ├── login.html
        │   │   │   │   ├── pace.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
        │   │   │   └── 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
        │   │   │   │   ├── CHANGES.md
        │   │   │   │   ├── LICENSE.md
        │   │   │   │   ├── README.md
        │   │   │   │   ├── adapters
        │   │   │   │   ├── build-config.js
        │   │   │   │   ├── ckeditor.js
        │   │   │   │   ├── config.js
        │   │   │   │   ├── contents.css
        │   │   │   │   ├── lang
        │   │   │   │   ├── plugins
        │   │   │   │   ├── samples
        │   │   │   │   ├── skins
        │   │   │   │   └── styles.js
        │   │   │   ├── colorpicker
        │   │   │   │   ├── bootstrap-colorpicker.css
        │   │   │   │   ├── bootstrap-colorpicker.js
        │   │   │   │   ├── bootstrap-colorpicker.min.css
        │   │   │   │   ├── bootstrap-colorpicker.min.js
        │   │   │   │   └── img
        │   │   │   ├── datatables
        │   │   │   │   ├── dataTables.bootstrap.css
        │   │   │   │   ├── dataTables.bootstrap.js
        │   │   │   │   ├── dataTables.bootstrap.min.js
        │   │   │   │   ├── extensions
        │   │   │   │   ├── images
        │   │   │   │   ├── 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
        │   │   │   ├── daterangepicker
        │   │   │   │   ├── daterangepicker.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
        │   │   │   │   ├── futurico
        │   │   │   │   ├── icheck.js
        │   │   │   │   ├── icheck.min.js
        │   │   │   │   ├── line
        │   │   │   │   ├── minimal
        │   │   │   │   ├── polaris
        │   │   │   │   └── square
        │   │   │   ├── 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
        │   │   │   ├── ionslider
        │   │   │   │   ├── img
        │   │   │   │   ├── ion.rangeSlider.css
        │   │   │   │   ├── ion.rangeSlider.min.js
        │   │   │   │   ├── ion.rangeSlider.skinFlat.css
        │   │   │   │   └── ion.rangeSlider.skinNice.css
        │   │   │   ├── jQuery
        │   │   │   │   └── jquery-2.2.3.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-usa-en.js
        │   │   │   │   └── jquery-jvectormap-world-mill-en.js
        │   │   │   ├── knob
        │   │   │   │   └── jquery.knob.js
        │   │   │   ├── morris
        │   │   │   │   ├── morris.css
        │   │   │   │   ├── morris.js
        │   │   │   │   └── morris.min.js
        │   │   │   ├── pace
        │   │   │   │   ├── pace.css
        │   │   │   │   ├── pace.js
        │   │   │   │   ├── pace.min.css
        │   │   │   │   └── pace.min.js
        │   │   │   ├── select2
        │   │   │   │   ├── i18n
        │   │   │   │   ├── 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
        │   │   ├── starter.html
        │   │   └── yarn.lock
        │   ├── css
        │   │   ├── app.css
        │   │   ├── blog.css
        │   │   └── wangEditor.min.css
        │   ├── favicon.ico
        │   ├── fonts
        │   │   ├── glyphicons-halflings-regular.eot
        │   │   ├── glyphicons-halflings-regular.svg
        │   │   ├── glyphicons-halflings-regular.ttf
        │   │   ├── glyphicons-halflings-regular.woff
        │   │   ├── glyphicons-halflings-regular.woff2
        │   │   ├── icomoon.eot
        │   │   ├── icomoon.svg
        │   │   ├── icomoon.ttf
        │   │   └── icomoon.woff
        │   ├── index.php
        │   ├── js
        │   │   ├── admin.js
        │   │   ├── app.js
        │   │   ├── lib
        │   │   │   ├── jquery-1.10.2.min.js
        │   │   │   └── jquery-2.2.1.js
        │   │   ├── wangEditor.js
        │   │   ├── wangEditor.min.js
        │   │   └── ylaravel.js
        │   ├── mix-manifest.json
        │   ├── robots.txt
        │   └── web.config
        ├── readme.md
        ├── resources
        │   ├── assets
        │   │   ├── js
        │   │   │   ├── admin.js
        │   │   │   ├── app.js
        │   │   │   ├── bootstrap.js
        │   │   │   ├── components
        │   │   │   │   └── Example.vue
        │   │   │   └── ylaravel.js
        │   │   └── sass
        │   │       ├── _variables.scss
        │   │       └── app.scss
        │   ├── lang
        │   │   ├── en
        │   │   │   ├── auth.php
        │   │   │   ├── pagination.php
        │   │   │   ├── passwords.php
        │   │   │   └── validation.php
        │   │   └── zh
        │   │       ├── auth.php
        │   │       ├── pagination.php
        │   │       ├── passwords.php
        │   │       └── validation.php
        │   └── views
        │       ├── admin
        │       │   ├── home
        │       │   │   └── index.blade.php
        │       │   ├── layout
        │       │   │   ├── error.blade.php
        │       │   │   ├── footer.blade.php
        │       │   │   ├── header.blade.php
        │       │   │   ├── main.blade.php
        │       │   │   └── sidebar.blade.php
        │       │   ├── login
        │       │   │   └── index.blade.php
        │       │   ├── notice
        │       │   │   ├── create.blade.php
        │       │   │   └── index.blade.php
        │       │   ├── permission
        │       │   │   ├── add.blade.php
        │       │   │   └── index.blade.php
        │       │   ├── post
        │       │   │   └── index.blade.php
        │       │   ├── role
        │       │   │   ├── add.blade.php
        │       │   │   ├── index.blade.php
        │       │   │   └── permission.blade.php
        │       │   ├── topic
        │       │   │   ├── create.blade.php
        │       │   │   └── index.blade.php
        │       │   └── user
        │       │       ├── add.blade.php
        │       │       ├── index.blade.php
        │       │       └── role.blade.php
        │       ├── layout
        │       │   ├── error.blade.php
        │       │   ├── footer.blade.php
        │       │   ├── main.blade.php
        │       │   ├── nav.blade.php
        │       │   └── sidebar.blade.php
        │       ├── login
        │       │   └── index.blade.php
        │       ├── notice
        │       │   └── index.blade.php
        │       ├── post
        │       │   ├── carousel.blade.php
        │       │   ├── create.blade.php
        │       │   ├── edit.blade.php
        │       │   ├── index.blade.php
        │       │   ├── search.blade.php
        │       │   └── show.blade.php
        │       ├── register
        │       │   └── index.blade.php
        │       ├── topic
        │       │   └── show.blade.php
        │       ├── user
        │       │   ├── badges
        │       │   │   └── like.blade.php
        │       │   ├── setting.blade.php
        │       │   └── show.blade.php
        │       ├── vendor
        │       │   ├── mail
        │       │   │   ├── html
        │       │   │   └── markdown
        │       │   ├── notifications
        │       │   │   └── email.blade.php
        │       │   └── pagination
        │       │       ├── bootstrap-4.blade.php
        │       │       ├── default.blade.php
        │       │       ├── simple-bootstrap-4.blade.php
        │       │       └── simple-default.blade.php
        │       └── welcome.blade.php
        ├── routes
        │   ├── admin.php
        │   ├── api.php
        │   ├── channels.php
        │   ├── console.php
        │   └── web.php
        ├── server.php
        ├── storage
        │   ├── app
        │   ├── debugbar
        │   ├── framework
        │   │   ├── cache
        │   │   ├── sessions
        │   │   │   └── n8ZWDBE0qYbrV8xNTuWfJqUzq3ptPmyL8EAbmq2X
        │   │   ├── testing
        │   │   └── views
        │   │       ├── 03e7ff8677b95215bfe709233dc51e43d9f359f8.php
        │   │       └── 4c6920258501bbd2b567356761ddb78770c7906f.php
        │   └── logs
        │       └── laravel.log
        ├── tests
        │   ├── CreatesApplication.php
        │   ├── Feature
        │   │   └── ExampleTest.php
        │   ├── TestCase.php
        │   └── Unit
        │       └── ExampleTest.php
        ├── vendor
        │   ├── almasaeed2010
        │   │   └── adminlte
        │   │       ├── Gruntfile.js
        │   │       ├── LICENSE
        │   │       ├── README.md
        │   │       ├── bootstrap
        │   │       │   ├── css
        │   │       │   ├── fonts
        │   │       │   └── js
        │   │       ├── bower.json
        │   │       ├── build
        │   │       │   ├── bootstrap-less
        │   │       │   └── less
        │   │       ├── changelog.md
        │   │       ├── composer.json
        │   │       ├── dist
        │   │       │   ├── css
        │   │       │   ├── img
        │   │       │   └── js
        │   │       ├── documentation
        │   │       │   ├── build
        │   │       │   ├── docs.js
        │   │       │   ├── index.html
        │   │       │   └── style.css
        │   │       ├── index.html
        │   │       ├── index2.html
        │   │       ├── package.json
        │   │       ├── pages
        │   │       │   ├── UI
        │   │       │   ├── calendar.html
        │   │       │   ├── charts
        │   │       │   ├── examples
        │   │       │   ├── forms
        │   │       │   ├── layout
        │   │       │   ├── mailbox
        │   │       │   ├── tables
        │   │       │   └── widgets.html
        │   │       ├── plugins
        │   │       │   ├── bootstrap-slider
        │   │       │   ├── bootstrap-wysihtml5
        │   │       │   ├── chartjs
        │   │       │   ├── ckeditor
        │   │       │   ├── colorpicker
        │   │       │   ├── datatables
        │   │       │   ├── datepicker
        │   │       │   ├── daterangepicker
        │   │       │   ├── fastclick
        │   │       │   ├── flot
        │   │       │   ├── fullcalendar
        │   │       │   ├── iCheck
        │   │       │   ├── input-mask
        │   │       │   ├── ionslider
        │   │       │   ├── jQuery
        │   │       │   ├── jQueryUI
        │   │       │   ├── jvectormap
        │   │       │   ├── knob
        │   │       │   ├── morris
        │   │       │   ├── pace
        │   │       │   ├── select2
        │   │       │   ├── slimScroll
        │   │       │   ├── sparkline
        │   │       │   └── timepicker
        │   │       ├── starter.html
        │   │       └── yarn.lock
        │   ├── autoload.php
        │   ├── barryvdh
        │   │   └── laravel-debugbar
        │   │       ├── LICENSE
        │   │       ├── changelog.md
        │   │       ├── composer.json
        │   │       ├── config
        │   │       │   └── debugbar.php
        │   │       ├── readme.md
        │   │       └── src
        │   │           ├── Console
        │   │           ├── Controllers
        │   │           ├── DataCollector
        │   │           ├── DataFormatter
        │   │           ├── Facade.php
        │   │           ├── JavascriptRenderer.php
        │   │           ├── LaravelDebugbar.php
        │   │           ├── LumenServiceProvider.php
        │   │           ├── Middleware
        │   │           ├── Resources
        │   │           ├── ServiceProvider.php
        │   │           ├── Storage
        │   │           ├── Support
        │   │           ├── SymfonyHttpDriver.php
        │   │           ├── Twig
        │   │           ├── helpers.php
        │   │           └── migrations
        │   ├── bin
        │   │   ├── php-parse
        │   │   ├── phpunit
        │   │   └── psysh
        │   ├── composer
        │   │   ├── ClassLoader.php
        │   │   ├── LICENSE
        │   │   ├── autoload_classmap.php
        │   │   ├── autoload_files.php
        │   │   ├── autoload_namespaces.php
        │   │   ├── autoload_psr4.php
        │   │   ├── autoload_real.php
        │   │   ├── autoload_static.php
        │   │   └── installed.json
        │   ├── dnoegel
        │   │   └── php-xdg-base-dir
        │   │       ├── LICENSE
        │   │       ├── README.md
        │   │       ├── composer.json
        │   │       ├── phpunit.xml.dist
        │   │       ├── src
        │   │       │   └── Xdg.php
        │   │       └── tests
        │   │           └── XdgTest.php
        │   ├── doctrine
        │   │   ├── inflector
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── composer.json
        │   │   │   ├── lib
        │   │   │   │   └── Doctrine
        │   │   │   ├── phpunit.xml.dist
        │   │   │   └── tests
        │   │   │       └── Doctrine
        │   │   └── instantiator
        │   │       ├── CONTRIBUTING.md
        │   │       ├── LICENSE
        │   │       ├── README.md
        │   │       ├── composer.json
        │   │       ├── phpmd.xml.dist
        │   │       ├── phpunit.xml.dist
        │   │       ├── src
        │   │       │   └── Doctrine
        │   │       └── tests
        │   │           └── DoctrineTest
        │   ├── elasticsearch
        │   │   └── elasticsearch
        │   │       ├── BREAKING_CHANGES.md
        │   │       ├── CHANGELOG.md
        │   │       ├── LICENSE
        │   │       ├── NOTICE
        │   │       ├── README.md
        │   │       ├── composer.json
        │   │       ├── docs
        │   │       │   ├── breaking-changes.asciidoc
        │   │       │   ├── build
        │   │       │   ├── community.asciidoc
        │   │       │   ├── configuration.asciidoc
        │   │       │   ├── connection-pool.asciidoc
        │   │       │   ├── crud.asciidoc
        │   │       │   ├── futures.asciidoc
        │   │       │   ├── index-operations.asciidoc
        │   │       │   ├── index.asciidoc
        │   │       │   ├── installation.asciidoc
        │   │       │   ├── namespaces.asciidoc
        │   │       │   ├── overview.asciidoc
        │   │       │   ├── per-request-configuration.asciidoc
        │   │       │   ├── php-version-requirement.asciidoc
        │   │       │   ├── php_json_objects.asciidoc
        │   │       │   ├── quickstart.asciidoc
        │   │       │   ├── search-operations.asciidoc
        │   │       │   ├── security.asciidoc
        │   │       │   ├── selectors.asciidoc
        │   │       │   └── serializers.asciidoc
        │   │       ├── phpunit-integration.xml
        │   │       ├── phpunit.xml
        │   │       ├── src
        │   │       │   └── Elasticsearch
        │   │       ├── tests
        │   │       │   ├── Elasticsearch
        │   │       │   └── bootstrap.php
        │   │       ├── travis
        │   │       │   ├── download_and_run_es.sh
        │   │       │   └── generate_docs.sh
        │   │       └── util
        │   │           ├── EnsureClusterAlive.php
        │   │           ├── RestSpecRunner.php
        │   │           ├── SpecParser.php
        │   │           ├── docsConfig.php
        │   │           ├── docstheme
        │   │           └── templates
        │   ├── erusev
        │   │   └── parsedown
        │   │       ├── LICENSE.txt
        │   │       ├── Parsedown.php
        │   │       ├── README.md
        │   │       ├── composer.json
        │   │       ├── phpunit.xml.dist
        │   │       └── test
        │   │           ├── CommonMarkTest.php
        │   │           ├── ParsedownTest.php
        │   │           ├── TestParsedown.php
        │   │           ├── bootstrap.php
        │   │           └── data
        │   ├── fzaninotto
        │   │   └── faker
        │   │       ├── CHANGELOG.md
        │   │       ├── CONTRIBUTING.md
        │   │       ├── LICENSE
        │   │       ├── Makefile
        │   │       ├── composer.json
        │   │       ├── phpunit.xml.dist
        │   │       ├── readme.md
        │   │       ├── src
        │   │       │   ├── Faker
        │   │       │   └── autoload.php
        │   │       └── test
        │   │           ├── Faker
        │   │           ├── documentor.php
        │   │           └── test.php
        │   ├── guzzlehttp
        │   │   ├── guzzle
        │   │   │   ├── CHANGELOG.md
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── UPGRADING.md
        │   │   │   ├── composer.json
        │   │   │   └── src
        │   │   │       ├── Client.php
        │   │   │       ├── ClientInterface.php
        │   │   │       ├── Cookie
        │   │   │       ├── Exception
        │   │   │       ├── Handler
        │   │   │       ├── HandlerStack.php
        │   │   │       ├── MessageFormatter.php
        │   │   │       ├── Middleware.php
        │   │   │       ├── Pool.php
        │   │   │       ├── PrepareBodyMiddleware.php
        │   │   │       ├── RedirectMiddleware.php
        │   │   │       ├── RequestOptions.php
        │   │   │       ├── RetryMiddleware.php
        │   │   │       ├── TransferStats.php
        │   │   │       ├── UriTemplate.php
        │   │   │       ├── functions.php
        │   │   │       └── functions_include.php
        │   │   ├── promises
        │   │   │   ├── CHANGELOG.md
        │   │   │   ├── LICENSE
        │   │   │   ├── Makefile
        │   │   │   ├── README.md
        │   │   │   ├── composer.json
        │   │   │   └── src
        │   │   │       ├── AggregateException.php
        │   │   │       ├── CancellationException.php
        │   │   │       ├── Coroutine.php
        │   │   │       ├── EachPromise.php
        │   │   │       ├── FulfilledPromise.php
        │   │   │       ├── Promise.php
        │   │   │       ├── PromiseInterface.php
        │   │   │       ├── PromisorInterface.php
        │   │   │       ├── RejectedPromise.php
        │   │   │       ├── RejectionException.php
        │   │   │       ├── TaskQueue.php
        │   │   │       ├── TaskQueueInterface.php
        │   │   │       ├── functions.php
        │   │   │       └── functions_include.php
        │   │   ├── psr7
        │   │   │   ├── CHANGELOG.md
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── composer.json
        │   │   │   └── src
        │   │   │       ├── AppendStream.php
        │   │   │       ├── BufferStream.php
        │   │   │       ├── CachingStream.php
        │   │   │       ├── DroppingStream.php
        │   │   │       ├── FnStream.php
        │   │   │       ├── InflateStream.php
        │   │   │       ├── LazyOpenStream.php
        │   │   │       ├── LimitStream.php
        │   │   │       ├── MessageTrait.php
        │   │   │       ├── MultipartStream.php
        │   │   │       ├── NoSeekStream.php
        │   │   │       ├── PumpStream.php
        │   │   │       ├── Request.php
        │   │   │       ├── Response.php
        │   │   │       ├── ServerRequest.php
        │   │   │       ├── Stream.php
        │   │   │       ├── StreamDecoratorTrait.php
        │   │   │       ├── StreamWrapper.php
        │   │   │       ├── UploadedFile.php
        │   │   │       ├── Uri.php
        │   │   │       ├── UriNormalizer.php
        │   │   │       ├── UriResolver.php
        │   │   │       ├── functions.php
        │   │   │       └── functions_include.php
        │   │   ├── ringphp
        │   │   │   ├── CHANGELOG.md
        │   │   │   ├── LICENSE
        │   │   │   ├── Makefile
        │   │   │   ├── README.rst
        │   │   │   ├── composer.json
        │   │   │   ├── docs
        │   │   │   │   ├── Makefile
        │   │   │   │   ├── client_handlers.rst
        │   │   │   │   ├── client_middleware.rst
        │   │   │   │   ├── conf.py
        │   │   │   │   ├── futures.rst
        │   │   │   │   ├── index.rst
        │   │   │   │   ├── requirements.txt
        │   │   │   │   ├── spec.rst
        │   │   │   │   └── testing.rst
        │   │   │   ├── phpunit.xml.dist
        │   │   │   ├── src
        │   │   │   │   ├── Client
        │   │   │   │   ├── Core.php
        │   │   │   │   ├── Exception
        │   │   │   │   └── Future
        │   │   │   └── tests
        │   │   │       ├── Client
        │   │   │       ├── CoreTest.php
        │   │   │       ├── Future
        │   │   │       └── bootstrap.php
        │   │   └── streams
        │   │       ├── CHANGELOG.rst
        │   │       ├── LICENSE
        │   │       ├── Makefile
        │   │       ├── README.rst
        │   │       ├── composer.json
        │   │       ├── phpunit.xml.dist
        │   │       ├── src
        │   │       │   ├── AppendStream.php
        │   │       │   ├── AsyncReadStream.php
        │   │       │   ├── BufferStream.php
        │   │       │   ├── CachingStream.php
        │   │       │   ├── DroppingStream.php
        │   │       │   ├── Exception
        │   │       │   ├── FnStream.php
        │   │       │   ├── GuzzleStreamWrapper.php
        │   │       │   ├── InflateStream.php
        │   │       │   ├── LazyOpenStream.php
        │   │       │   ├── LimitStream.php
        │   │       │   ├── MetadataStreamInterface.php
        │   │       │   ├── NoSeekStream.php
        │   │       │   ├── NullStream.php
        │   │       │   ├── PumpStream.php
        │   │       │   ├── Stream.php
        │   │       │   ├── StreamDecoratorTrait.php
        │   │       │   ├── StreamInterface.php
        │   │       │   └── Utils.php
        │   │       └── tests
        │   │           ├── AppendStreamTest.php
        │   │           ├── AsyncReadStreamTest.php
        │   │           ├── BufferStreamTest.php
        │   │           ├── CachingStreamTest.php
        │   │           ├── DroppingStreamTest.php
        │   │           ├── Exception
        │   │           ├── FnStreamTest.php
        │   │           ├── GuzzleStreamWrapperTest.php
        │   │           ├── InflateStreamTest.php
        │   │           ├── LazyOpenStreamTest.php
        │   │           ├── LimitStreamTest.php
        │   │           ├── NoSeekStreamTest.php
        │   │           ├── NullStreamTest.php
        │   │           ├── PumpStreamTest.php
        │   │           ├── StreamDecoratorTraitTest.php
        │   │           ├── StreamTest.php
        │   │           └── UtilsTest.php
        │   ├── hamcrest
        │   │   └── hamcrest-php
        │   │       ├── CHANGES.txt
        │   │       ├── LICENSE.txt
        │   │       ├── README.md
        │   │       ├── TODO.txt
        │   │       ├── composer.json
        │   │       ├── generator
        │   │       │   ├── FactoryCall.php
        │   │       │   ├── FactoryClass.php
        │   │       │   ├── FactoryFile.php
        │   │       │   ├── FactoryGenerator.php
        │   │       │   ├── FactoryMethod.php
        │   │       │   ├── FactoryParameter.php
        │   │       │   ├── GlobalFunctionFile.php
        │   │       │   ├── StaticMethodFile.php
        │   │       │   ├── parts
        │   │       │   └── run.php
        │   │       ├── hamcrest
        │   │       │   ├── Hamcrest
        │   │       │   └── Hamcrest.php
        │   │       └── tests
        │   │           ├── Hamcrest
        │   │           ├── bootstrap.php
        │   │           └── phpunit.xml.dist
        │   ├── jakub-onderka
        │   │   ├── php-console-color
        │   │   │   ├── build.xml
        │   │   │   ├── composer.json
        │   │   │   ├── example.php
        │   │   │   ├── phpunit.xml
        │   │   │   ├── src
        │   │   │   │   └── JakubOnderka
        │   │   │   └── tests
        │   │   │       ├── JakubOnderka
        │   │   │       └── bootstrap.php
        │   │   └── php-console-highlighter
        │   │       ├── LICENSE
        │   │       ├── README.md
        │   │       ├── build.xml
        │   │       ├── composer.json
        │   │       ├── examples
        │   │       │   ├── snippet.php
        │   │       │   ├── whole_file.php
        │   │       │   └── whole_file_line_numbers.php
        │   │       ├── phpunit.xml
        │   │       ├── src
        │   │       │   └── JakubOnderka
        │   │       └── tests
        │   │           ├── JakubOnderka
        │   │           └── bootstrap.php
        │   ├── laravel
        │   │   ├── framework
        │   │   │   ├── LICENSE.md
        │   │   │   ├── README.md
        │   │   │   ├── composer.json
        │   │   │   └── src
        │   │   │       └── Illuminate
        │   │   ├── scout
        │   │   │   ├── LICENSE.txt
        │   │   │   ├── composer.json
        │   │   │   ├── config
        │   │   │   │   └── scout.php
        │   │   │   ├── readme.md
        │   │   │   └── src
        │   │   │       ├── Builder.php
        │   │   │       ├── Console
        │   │   │       ├── EngineManager.php
        │   │   │       ├── Engines
        │   │   │       ├── Events
        │   │   │       ├── Jobs
        │   │   │       ├── ModelObserver.php
        │   │   │       ├── ScoutServiceProvider.php
        │   │   │       ├── Searchable.php
        │   │   │       └── SearchableScope.php
        │   │   └── tinker
        │   │       ├── LICENSE.txt
        │   │       ├── README.md
        │   │       ├── composer.json
        │   │       └── src
        │   │           ├── Console
        │   │           ├── TinkerCaster.php
        │   │           └── TinkerServiceProvider.php
        │   ├── league
        │   │   └── flysystem
        │   │       ├── LICENSE
        │   │       ├── composer.json
        │   │       ├── docs
        │   │       │   ├── CNAME
        │   │       │   ├── _data
        │   │       │   ├── _layouts
        │   │       │   ├── adapter
        │   │       │   ├── api.md
        │   │       │   ├── caching.md
        │   │       │   ├── core-concepts.md
        │   │       │   ├── creating-an-adapter.md
        │   │       │   ├── index.md
        │   │       │   ├── installation.md
        │   │       │   ├── integrations.md
        │   │       │   ├── mount-manager.md
        │   │       │   ├── performance.md
        │   │       │   ├── plugins.md
        │   │       │   ├── recipes.md
        │   │       │   └── upgrade-to-1.0.0.md
        │   │       └── src
        │   │           ├── Adapter
        │   │           ├── AdapterInterface.php
        │   │           ├── Config.php
        │   │           ├── ConfigAwareTrait.php
        │   │           ├── Directory.php
        │   │           ├── Exception.php
        │   │           ├── File.php
        │   │           ├── FileExistsException.php
        │   │           ├── FileNotFoundException.php
        │   │           ├── Filesystem.php
        │   │           ├── FilesystemInterface.php
        │   │           ├── FilesystemNotFoundException.php
        │   │           ├── Handler.php
        │   │           ├── MountManager.php
        │   │           ├── NotSupportedException.php
        │   │           ├── Plugin
        │   │           ├── PluginInterface.php
        │   │           ├── ReadInterface.php
        │   │           ├── RootViolationException.php
        │   │           ├── SafeStorage.php
        │   │           ├── UnreadableFileException.php
        │   │           ├── Util
        │   │           └── Util.php
        │   ├── maximebf
        │   │   └── debugbar
        │   │       ├── LICENSE
        │   │       ├── composer.json
        │   │       └── src
        │   │           └── DebugBar
        │   ├── mockery
        │   │   └── mockery
        │   │       ├── CHANGELOG.md
        │   │       ├── CONTRIBUTING.md
        │   │       ├── LICENSE
        │   │       ├── README.md
        │   │       ├── composer.json
        │   │       ├── docs
        │   │       │   ├── Makefile
        │   │       │   ├── README.md
        │   │       │   ├── conf.py
        │   │       │   ├── cookbook
        │   │       │   ├── getting_started
        │   │       │   ├── index.rst
        │   │       │   └── reference
        │   │       ├── examples
        │   │       │   └── starship
        │   │       ├── library
        │   │       │   ├── Mockery
        │   │       │   └── Mockery.php
        │   │       ├── package.xml
        │   │       ├── phpunit.xml.dist
        │   │       ├── tests
        │   │       │   ├── Bootstrap.php
        │   │       │   └── Mockery
        │   │       └── travis
        │   │           ├── after_success.sh
        │   │           ├── before_script.sh
        │   │           ├── extra.ini
        │   │           ├── install.sh
        │   │           └── script.sh
        │   ├── monolog
        │   │   └── monolog
        │   │       ├── CHANGELOG.md
        │   │       ├── LICENSE
        │   │       ├── README.md
        │   │       ├── composer.json
        │   │       ├── doc
        │   │       │   ├── 01-usage.md
        │   │       │   ├── 02-handlers-formatters-processors.md
        │   │       │   ├── 03-utilities.md
        │   │       │   ├── 04-extending.md
        │   │       │   └── sockets.md
        │   │       ├── phpunit.xml.dist
        │   │       ├── src
        │   │       │   └── Monolog
        │   │       └── tests
        │   │           └── Monolog
        │   ├── mtdowling
        │   │   └── cron-expression
        │   │       ├── CHANGELOG.md
        │   │       ├── LICENSE
        │   │       ├── README.md
        │   │       ├── composer.json
        │   │       ├── src
        │   │       │   └── Cron
        │   │       └── tests
        │   │           └── Cron
        │   ├── myclabs
        │   │   └── deep-copy
        │   │       ├── LICENSE
        │   │       ├── README.md
        │   │       ├── composer.json
        │   │       ├── doc
        │   │       │   ├── clone.png
        │   │       │   ├── deep-clone.png
        │   │       │   ├── deep-copy.png
        │   │       │   └── graph.png
        │   │       └── src
        │   │           └── DeepCopy
        │   ├── nesbot
        │   │   └── carbon
        │   │       ├── LICENSE
        │   │       ├── composer.json
        │   │       ├── readme.md
        │   │       └── src
        │   │           └── Carbon
        │   ├── nikic
        │   │   └── php-parser
        │   │       ├── CHANGELOG.md
        │   │       ├── LICENSE
        │   │       ├── README.md
        │   │       ├── UPGRADE-1.0.md
        │   │       ├── UPGRADE-2.0.md
        │   │       ├── UPGRADE-3.0.md
        │   │       ├── bin
        │   │       │   └── php-parse
        │   │       ├── composer.json
        │   │       ├── doc
        │   │       │   ├── 0_Introduction.markdown
        │   │       │   ├── 2_Usage_of_basic_components.markdown
        │   │       │   ├── 3_Other_node_tree_representations.markdown
        │   │       │   ├── 4_Code_generation.markdown
        │   │       │   └── component
        │   │       ├── grammar
        │   │       │   ├── README.md
        │   │       │   ├── parser.template
        │   │       │   ├── php5.y
        │   │       │   ├── php7.y
        │   │       │   ├── rebuildParsers.php
        │   │       │   ├── tokens.template
        │   │       │   └── tokens.y
        │   │       ├── lib
        │   │       │   ├── PhpParser
        │   │       │   └── bootstrap.php
        │   │       ├── phpunit.xml.dist
        │   │       ├── test
        │   │       │   ├── PhpParser
        │   │       │   ├── bootstrap.php
        │   │       │   └── code
        │   │       └── test_old
        │   │           ├── run-php-src.sh
        │   │           └── run.php
        │   ├── paragonie
        │   │   └── random_compat
        │   │       ├── LICENSE
        │   │       ├── build-phar.sh
        │   │       ├── composer.json
        │   │       ├── dist
        │   │       │   ├── random_compat.phar.pubkey
        │   │       │   └── random_compat.phar.pubkey.asc
        │   │       ├── lib
        │   │       │   ├── byte_safe_strings.php
        │   │       │   ├── cast_to_int.php
        │   │       │   ├── error_polyfill.php
        │   │       │   ├── random.php
        │   │       │   ├── random_bytes_com_dotnet.php
        │   │       │   ├── random_bytes_dev_urandom.php
        │   │       │   ├── random_bytes_libsodium.php
        │   │       │   ├── random_bytes_libsodium_legacy.php
        │   │       │   ├── random_bytes_mcrypt.php
        │   │       │   └── random_int.php
        │   │       ├── other
        │   │       │   └── build_phar.php
        │   │       ├── psalm-autoload.php
        │   │       └── psalm.xml
        │   ├── phpdocumentor
        │   │   ├── reflection-common
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── composer.json
        │   │   │   ├── composer.lock
        │   │   │   ├── phpunit.xml.dist
        │   │   │   ├── src
        │   │   │   │   ├── Element.php
        │   │   │   │   ├── File.php
        │   │   │   │   ├── Fqsen.php
        │   │   │   │   ├── Location.php
        │   │   │   │   ├── Project.php
        │   │   │   │   └── ProjectFactory.php
        │   │   │   └── tests
        │   │   │       ├── common
        │   │   │       └── unit
        │   │   ├── reflection-docblock
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── composer.json
        │   │   │   ├── composer.lock
        │   │   │   ├── examples
        │   │   │   │   ├── 01-interpreting-a-simple-docblock.php
        │   │   │   │   ├── 02-interpreting-tags.php
        │   │   │   │   ├── 03-reconstituting-a-docblock.php
        │   │   │   │   ├── 04-adding-your-own-tag.php
        │   │   │   │   └── playing-with-descriptions
        │   │   │   ├── phpmd.xml.dist
        │   │   │   ├── phpunit.xml.dist
        │   │   │   ├── src
        │   │   │   │   ├── DocBlock
        │   │   │   │   ├── DocBlock.php
        │   │   │   │   ├── DocBlockFactory.php
        │   │   │   │   └── DocBlockFactoryInterface.php
        │   │   │   └── tests
        │   │   │       ├── integration
        │   │   │       └── unit
        │   │   └── type-resolver
        │   │       ├── LICENSE
        │   │       ├── README.md
        │   │       ├── composer.json
        │   │       ├── examples
        │   │       │   ├── 01-resolving-simple-types.php
        │   │       │   ├── 02-resolving-classes.php
        │   │       │   ├── 03-resolving-all-elements.php
        │   │       │   ├── 04-discovering-the-context-using-class-reflection.php
        │   │       │   ├── 05-discovering-the-context-using-method-reflection.php
        │   │       │   ├── 06-discovering-the-context-using-file-contents.php
        │   │       │   └── Classy.php
        │   │       ├── phpmd.xml.dist
        │   │       ├── phpunit.xml.dist
        │   │       ├── src
        │   │       │   ├── FqsenResolver.php
        │   │       │   ├── Type.php
        │   │       │   ├── TypeResolver.php
        │   │       │   └── Types
        │   │       └── tests
        │   │           └── unit
        │   ├── phpspec
        │   │   └── prophecy
        │   │       ├── CHANGES.md
        │   │       ├── CONTRIBUTING.md
        │   │       ├── LICENSE
        │   │       ├── README.md
        │   │       ├── composer.json
        │   │       ├── fixtures
        │   │       │   ├── EmptyClass.php
        │   │       │   ├── EmptyInterface.php
        │   │       │   ├── FinalClass.php
        │   │       │   ├── ModifierInterface.php
        │   │       │   ├── Named.php
        │   │       │   ├── OptionalDepsClass.php
        │   │       │   ├── SpecialMethods.php
        │   │       │   ├── WithArguments.php
        │   │       │   ├── WithCallableArgument.php
        │   │       │   ├── WithFinalMethod.php
        │   │       │   ├── WithFinalVirtuallyPrivateMethod.php
        │   │       │   ├── WithProtectedAbstractMethod.php
        │   │       │   ├── WithReferences.php
        │   │       │   ├── WithReturnTypehints.php
        │   │       │   ├── WithStaticMethod.php
        │   │       │   ├── WithTypehintedVariadicArgument.php
        │   │       │   ├── WithVariadicArgument.php
        │   │       │   └── WithVirtuallyPrivateMethod.php
        │   │       ├── phpunit.xml.dist
        │   │       ├── spec
        │   │       │   └── Prophecy
        │   │       ├── src
        │   │       │   └── Prophecy
        │   │       └── tests
        │   │           └── Doubler
        │   ├── phpunit
        │   │   ├── php-code-coverage
        │   │   │   ├── ChangeLog-2.2.md
        │   │   │   ├── ChangeLog-3.0.md
        │   │   │   ├── ChangeLog-3.1.md
        │   │   │   ├── ChangeLog-3.2.md
        │   │   │   ├── ChangeLog-3.3.md
        │   │   │   ├── ChangeLog-4.0.md
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── build.xml
        │   │   │   ├── composer.json
        │   │   │   ├── phpunit.xml
        │   │   │   ├── src
        │   │   │   │   ├── CodeCoverage.php
        │   │   │   │   ├── Driver
        │   │   │   │   ├── Exception
        │   │   │   │   ├── Filter.php
        │   │   │   │   ├── Node
        │   │   │   │   ├── Report
        │   │   │   │   └── Util.php
        │   │   │   └── tests
        │   │   │       ├── TestCase.php
        │   │   │       ├── _files
        │   │   │       ├── bootstrap.php
        │   │   │       └── tests
        │   │   ├── php-file-iterator
        │   │   │   ├── ChangeLog.md
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── composer.json
        │   │   │   └── src
        │   │   │       ├── Facade.php
        │   │   │       ├── Factory.php
        │   │   │       └── Iterator.php
        │   │   ├── php-text-template
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── composer.json
        │   │   │   └── src
        │   │   │       └── Template.php
        │   │   ├── php-timer
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── composer.json
        │   │   │   ├── phpunit.xml
        │   │   │   ├── src
        │   │   │   │   └── Timer.php
        │   │   │   └── tests
        │   │   │       └── TimerTest.php
        │   │   ├── php-token-stream
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── build
        │   │   │   │   └── phpunit.xml
        │   │   │   ├── build.xml
        │   │   │   ├── composer.json
        │   │   │   ├── src
        │   │   │   │   ├── Token
        │   │   │   │   └── Token.php
        │   │   │   └── tests
        │   │   │       ├── Token
        │   │   │       ├── TokenTest.php
        │   │   │       ├── _fixture
        │   │   │       └── bootstrap.php
        │   │   ├── phpunit
        │   │   │   ├── 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
        │   │   │   ├── ChangeLog-5.0.md
        │   │   │   ├── ChangeLog-5.1.md
        │   │   │   ├── ChangeLog-5.2.md
        │   │   │   ├── ChangeLog-5.3.md
        │   │   │   ├── ChangeLog-5.4.md
        │   │   │   ├── ChangeLog-5.5.md
        │   │   │   ├── ChangeLog-5.6.md
        │   │   │   ├── ChangeLog-5.7.md
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── build.xml
        │   │   │   ├── composer.json
        │   │   │   ├── phpunit
        │   │   │   ├── phpunit.xml
        │   │   │   ├── phpunit.xsd
        │   │   │   ├── src
        │   │   │   │   ├── Exception.php
        │   │   │   │   ├── Extensions
        │   │   │   │   ├── ForwardCompatibility
        │   │   │   │   ├── Framework
        │   │   │   │   ├── Runner
        │   │   │   │   ├── TextUI
        │   │   │   │   └── Util
        │   │   │   └── tests
        │   │   │       ├── Extensions
        │   │   │       ├── Fail
        │   │   │       ├── Framework
        │   │   │       ├── Regression
        │   │   │       ├── Runner
        │   │   │       ├── TextUI
        │   │   │       ├── Util
        │   │   │       ├── _files
        │   │   │       └── bootstrap.php
        │   │   └── phpunit-mock-objects
        │   │       ├── CONTRIBUTING.md
        │   │       ├── LICENSE
        │   │       ├── README.md
        │   │       ├── build
        │   │       │   └── travis-ci.xml
        │   │       ├── build.xml
        │   │       ├── composer.json
        │   │       ├── phpunit.xml
        │   │       ├── src
        │   │       │   └── Framework
        │   │       └── tests
        │   │           ├── GeneratorTest.php
        │   │           ├── MockBuilderTest.php
        │   │           ├── MockObject
        │   │           ├── MockObjectTest.php
        │   │           ├── ProxyObjectTest.php
        │   │           ├── _fixture
        │   │           └── bootstrap.php
        │   ├── psr
        │   │   ├── http-message
        │   │   │   ├── CHANGELOG.md
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── composer.json
        │   │   │   └── src
        │   │   │       ├── MessageInterface.php
        │   │   │       ├── RequestInterface.php
        │   │   │       ├── ResponseInterface.php
        │   │   │       ├── ServerRequestInterface.php
        │   │   │       ├── StreamInterface.php
        │   │   │       ├── UploadedFileInterface.php
        │   │   │       └── UriInterface.php
        │   │   └── log
        │   │       ├── LICENSE
        │   │       ├── Psr
        │   │       │   └── Log
        │   │       ├── README.md
        │   │       └── composer.json
        │   ├── psy
        │   │   └── psysh
        │   │       ├── CONTRIBUTING.md
        │   │       ├── LICENSE
        │   │       ├── README.md
        │   │       ├── bin
        │   │       │   ├── build
        │   │       │   ├── build-manual
        │   │       │   ├── build-phar
        │   │       │   ├── build-vendor
        │   │       │   ├── build-vendor-compat
        │   │       │   ├── package
        │   │       │   └── psysh
        │   │       ├── composer.json
        │   │       ├── phpunit.xml.dist
        │   │       ├── src
        │   │       │   └── Psy
        │   │       └── test
        │   │           ├── Psy
        │   │           ├── fixtures
        │   │           └── tools
        │   ├── ramsey
        │   │   └── uuid
        │   │       ├── CHANGELOG.md
        │   │       ├── CODE_OF_CONDUCT.md
        │   │       ├── CONTRIBUTING.md
        │   │       ├── LICENSE
        │   │       ├── README.md
        │   │       ├── composer.json
        │   │       └── src
        │   │           ├── BinaryUtils.php
        │   │           ├── Builder
        │   │           ├── Codec
        │   │           ├── Converter
        │   │           ├── DegradedUuid.php
        │   │           ├── Exception
        │   │           ├── FeatureSet.php
        │   │           ├── Generator
        │   │           ├── Provider
        │   │           ├── Uuid.php
        │   │           ├── UuidFactory.php
        │   │           ├── UuidFactoryInterface.php
        │   │           └── UuidInterface.php
        │   ├── react
        │   │   └── promise
        │   │       ├── CHANGELOG.md
        │   │       ├── LICENSE
        │   │       ├── README.md
        │   │       ├── composer.json
        │   │       ├── phpunit.xml.dist
        │   │       ├── src
        │   │       │   ├── CancellablePromiseInterface.php
        │   │       │   ├── CancellationQueue.php
        │   │       │   ├── Deferred.php
        │   │       │   ├── Exception
        │   │       │   ├── ExtendedPromiseInterface.php
        │   │       │   ├── FulfilledPromise.php
        │   │       │   ├── LazyPromise.php
        │   │       │   ├── Promise.php
        │   │       │   ├── PromiseInterface.php
        │   │       │   ├── PromisorInterface.php
        │   │       │   ├── RejectedPromise.php
        │   │       │   ├── UnhandledRejectionException.php
        │   │       │   ├── functions.php
        │   │       │   └── functions_include.php
        │   │       └── tests
        │   │           ├── CancellationQueueTest.php
        │   │           ├── DeferredTest.php
        │   │           ├── FulfilledPromiseTest.php
        │   │           ├── FunctionAllTest.php
        │   │           ├── FunctionAnyTest.php
        │   │           ├── FunctionCheckTypehintTest.php
        │   │           ├── FunctionMapTest.php
        │   │           ├── FunctionRaceTest.php
        │   │           ├── FunctionReduceTest.php
        │   │           ├── FunctionRejectTest.php
        │   │           ├── FunctionResolveTest.php
        │   │           ├── FunctionSomeTest.php
        │   │           ├── LazyPromiseTest.php
        │   │           ├── PromiseAdapter
        │   │           ├── PromiseTest
        │   │           ├── PromiseTest.php
        │   │           ├── RejectedPromiseTest.php
        │   │           ├── Stub
        │   │           ├── TestCase.php
        │   │           ├── bootstrap.php
        │   │           └── fixtures
        │   ├── sebastian
        │   │   ├── code-unit-reverse-lookup
        │   │   │   ├── ChangeLog.md
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── build.xml
        │   │   │   ├── composer.json
        │   │   │   ├── phpunit.xml
        │   │   │   ├── src
        │   │   │   │   └── Wizard.php
        │   │   │   └── tests
        │   │   │       └── WizardTest.php
        │   │   ├── comparator
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── build
        │   │   │   │   └── travis-ci.xml
        │   │   │   ├── build.xml
        │   │   │   ├── composer.json
        │   │   │   ├── phpunit.xml.dist
        │   │   │   ├── src
        │   │   │   │   ├── ArrayComparator.php
        │   │   │   │   ├── Comparator.php
        │   │   │   │   ├── ComparisonFailure.php
        │   │   │   │   ├── DOMNodeComparator.php
        │   │   │   │   ├── DateTimeComparator.php
        │   │   │   │   ├── DoubleComparator.php
        │   │   │   │   ├── ExceptionComparator.php
        │   │   │   │   ├── Factory.php
        │   │   │   │   ├── MockObjectComparator.php
        │   │   │   │   ├── NumericComparator.php
        │   │   │   │   ├── ObjectComparator.php
        │   │   │   │   ├── ResourceComparator.php
        │   │   │   │   ├── ScalarComparator.php
        │   │   │   │   ├── SplObjectStorageComparator.php
        │   │   │   │   └── TypeComparator.php
        │   │   │   └── tests
        │   │   │       ├── ArrayComparatorTest.php
        │   │   │       ├── DOMNodeComparatorTest.php
        │   │   │       ├── DateTimeComparatorTest.php
        │   │   │       ├── DoubleComparatorTest.php
        │   │   │       ├── ExceptionComparatorTest.php
        │   │   │       ├── FactoryTest.php
        │   │   │       ├── MockObjectComparatorTest.php
        │   │   │       ├── NumericComparatorTest.php
        │   │   │       ├── ObjectComparatorTest.php
        │   │   │       ├── ResourceComparatorTest.php
        │   │   │       ├── ScalarComparatorTest.php
        │   │   │       ├── SplObjectStorageComparatorTest.php
        │   │   │       ├── TypeComparatorTest.php
        │   │   │       ├── _files
        │   │   │       ├── autoload.php
        │   │   │       └── bootstrap.php
        │   │   ├── diff
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── build.xml
        │   │   │   ├── composer.json
        │   │   │   ├── phpunit.xml
        │   │   │   ├── src
        │   │   │   │   ├── Chunk.php
        │   │   │   │   ├── Diff.php
        │   │   │   │   ├── Differ.php
        │   │   │   │   ├── LCS
        │   │   │   │   ├── Line.php
        │   │   │   │   └── Parser.php
        │   │   │   └── tests
        │   │   │       ├── ChunkTest.php
        │   │   │       ├── DiffTest.php
        │   │   │       ├── DifferTest.php
        │   │   │       ├── LCS
        │   │   │       ├── LineTest.php
        │   │   │       ├── ParserTest.php
        │   │   │       └── fixtures
        │   │   ├── environment
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── build.xml
        │   │   │   ├── composer.json
        │   │   │   ├── phpunit.xml
        │   │   │   ├── src
        │   │   │   │   ├── Console.php
        │   │   │   │   └── Runtime.php
        │   │   │   └── tests
        │   │   │       ├── ConsoleTest.php
        │   │   │       └── RuntimeTest.php
        │   │   ├── exporter
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── build.xml
        │   │   │   ├── composer.json
        │   │   │   ├── phpunit.xml.dist
        │   │   │   ├── src
        │   │   │   │   └── Exporter.php
        │   │   │   └── tests
        │   │   │       └── ExporterTest.php
        │   │   ├── global-state
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── build.xml
        │   │   │   ├── composer.json
        │   │   │   ├── phpunit.xml.dist
        │   │   │   ├── src
        │   │   │   │   ├── Blacklist.php
        │   │   │   │   ├── CodeExporter.php
        │   │   │   │   ├── Exception.php
        │   │   │   │   ├── Restorer.php
        │   │   │   │   ├── RuntimeException.php
        │   │   │   │   └── Snapshot.php
        │   │   │   └── tests
        │   │   │       ├── BlacklistTest.php
        │   │   │       ├── SnapshotTest.php
        │   │   │       └── _fixture
        │   │   ├── object-enumerator
        │   │   │   ├── ChangeLog.md
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── build.xml
        │   │   │   ├── composer.json
        │   │   │   ├── phpunit.xml
        │   │   │   ├── src
        │   │   │   │   ├── Enumerator.php
        │   │   │   │   ├── Exception.php
        │   │   │   │   └── InvalidArgumentException.php
        │   │   │   └── tests
        │   │   │       ├── EnumeratorTest.php
        │   │   │       └── Fixtures
        │   │   ├── recursion-context
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── build.xml
        │   │   │   ├── composer.json
        │   │   │   ├── phpunit.xml.dist
        │   │   │   ├── src
        │   │   │   │   ├── Context.php
        │   │   │   │   ├── Exception.php
        │   │   │   │   └── InvalidArgumentException.php
        │   │   │   └── tests
        │   │   │       └── ContextTest.php
        │   │   ├── resource-operations
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── build
        │   │   │   │   └── generate.php
        │   │   │   ├── build.xml
        │   │   │   ├── composer.json
        │   │   │   └── src
        │   │   │       └── ResourceOperations.php
        │   │   └── version
        │   │       ├── LICENSE
        │   │       ├── README.md
        │   │       ├── composer.json
        │   │       └── src
        │   │           └── Version.php
        │   ├── swiftmailer
        │   │   └── swiftmailer
        │   │       ├── CHANGES
        │   │       ├── LICENSE
        │   │       ├── README
        │   │       ├── VERSION
        │   │       ├── 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
        │   │       ├── lib
        │   │       │   ├── classes
        │   │       │   ├── dependency_maps
        │   │       │   ├── mime_types.php
        │   │       │   ├── preferences.php
        │   │       │   ├── swift_init.php
        │   │       │   ├── swift_required.php
        │   │       │   ├── swift_required_pear.php
        │   │       │   └── swiftmailer_generate_mimes_config.php
        │   │       ├── phpunit.xml.dist
        │   │       └── tests
        │   │           ├── IdenticalBinaryConstraint.php
        │   │           ├── StreamCollector.php
        │   │           ├── SwiftMailerSmokeTestCase.php
        │   │           ├── SwiftMailerTestCase.php
        │   │           ├── _samples
        │   │           ├── acceptance
        │   │           ├── acceptance.conf.php.default
        │   │           ├── bootstrap.php
        │   │           ├── bug
        │   │           ├── fixtures
        │   │           ├── smoke
        │   │           ├── smoke.conf.php.default
        │   │           └── unit
        │   ├── symfony
        │   │   ├── console
        │   │   │   ├── Application.php
        │   │   │   ├── CHANGELOG.md
        │   │   │   ├── Command
        │   │   │   │   ├── Command.php
        │   │   │   │   ├── HelpCommand.php
        │   │   │   │   ├── ListCommand.php
        │   │   │   │   └── LockableTrait.php
        │   │   │   ├── ConsoleEvents.php
        │   │   │   ├── DependencyInjection
        │   │   │   │   └── AddConsoleCommandPass.php
        │   │   │   ├── Descriptor
        │   │   │   │   ├── ApplicationDescription.php
        │   │   │   │   ├── Descriptor.php
        │   │   │   │   ├── DescriptorInterface.php
        │   │   │   │   ├── JsonDescriptor.php
        │   │   │   │   ├── MarkdownDescriptor.php
        │   │   │   │   ├── TextDescriptor.php
        │   │   │   │   └── XmlDescriptor.php
        │   │   │   ├── Event
        │   │   │   │   ├── ConsoleCommandEvent.php
        │   │   │   │   ├── ConsoleErrorEvent.php
        │   │   │   │   ├── ConsoleEvent.php
        │   │   │   │   ├── ConsoleExceptionEvent.php
        │   │   │   │   └── ConsoleTerminateEvent.php
        │   │   │   ├── EventListener
        │   │   │   │   └── ErrorListener.php
        │   │   │   ├── Exception
        │   │   │   │   ├── CommandNotFoundException.php
        │   │   │   │   ├── ExceptionInterface.php
        │   │   │   │   ├── InvalidArgumentException.php
        │   │   │   │   ├── InvalidOptionException.php
        │   │   │   │   ├── LogicException.php
        │   │   │   │   └── RuntimeException.php
        │   │   │   ├── Formatter
        │   │   │   │   ├── OutputFormatter.php
        │   │   │   │   ├── OutputFormatterInterface.php
        │   │   │   │   ├── OutputFormatterStyle.php
        │   │   │   │   ├── OutputFormatterStyleInterface.php
        │   │   │   │   └── OutputFormatterStyleStack.php
        │   │   │   ├── Helper
        │   │   │   │   ├── DebugFormatterHelper.php
        │   │   │   │   ├── DescriptorHelper.php
        │   │   │   │   ├── FormatterHelper.php
        │   │   │   │   ├── Helper.php
        │   │   │   │   ├── HelperInterface.php
        │   │   │   │   ├── HelperSet.php
        │   │   │   │   ├── InputAwareHelper.php
        │   │   │   │   ├── ProcessHelper.php
        │   │   │   │   ├── ProgressBar.php
        │   │   │   │   ├── ProgressIndicator.php
        │   │   │   │   ├── QuestionHelper.php
        │   │   │   │   ├── SymfonyQuestionHelper.php
        │   │   │   │   ├── Table.php
        │   │   │   │   ├── TableCell.php
        │   │   │   │   ├── TableSeparator.php
        │   │   │   │   └── TableStyle.php
        │   │   │   ├── Input
        │   │   │   │   ├── ArgvInput.php
        │   │   │   │   ├── ArrayInput.php
        │   │   │   │   ├── Input.php
        │   │   │   │   ├── InputArgument.php
        │   │   │   │   ├── InputAwareInterface.php
        │   │   │   │   ├── InputDefinition.php
        │   │   │   │   ├── InputInterface.php
        │   │   │   │   ├── InputOption.php
        │   │   │   │   ├── StreamableInputInterface.php
        │   │   │   │   └── StringInput.php
        │   │   │   ├── LICENSE
        │   │   │   ├── Logger
        │   │   │   │   └── ConsoleLogger.php
        │   │   │   ├── Output
        │   │   │   │   ├── BufferedOutput.php
        │   │   │   │   ├── ConsoleOutput.php
        │   │   │   │   ├── ConsoleOutputInterface.php
        │   │   │   │   ├── NullOutput.php
        │   │   │   │   ├── Output.php
        │   │   │   │   ├── OutputInterface.php
        │   │   │   │   └── StreamOutput.php
        │   │   │   ├── Question
        │   │   │   │   ├── ChoiceQuestion.php
        │   │   │   │   ├── ConfirmationQuestion.php
        │   │   │   │   └── Question.php
        │   │   │   ├── README.md
        │   │   │   ├── Resources
        │   │   │   │   └── bin
        │   │   │   ├── Style
        │   │   │   │   ├── OutputStyle.php
        │   │   │   │   ├── StyleInterface.php
        │   │   │   │   └── SymfonyStyle.php
        │   │   │   ├── Terminal.php
        │   │   │   ├── Tester
        │   │   │   │   ├── ApplicationTester.php
        │   │   │   │   └── CommandTester.php
        │   │   │   ├── Tests
        │   │   │   │   ├── ApplicationTest.php
        │   │   │   │   ├── Command
        │   │   │   │   ├── DependencyInjection
        │   │   │   │   ├── Descriptor
        │   │   │   │   ├── EventListener
        │   │   │   │   ├── Fixtures
        │   │   │   │   ├── Formatter
        │   │   │   │   ├── Helper
        │   │   │   │   ├── Input
        │   │   │   │   ├── Logger
        │   │   │   │   ├── Output
        │   │   │   │   ├── Style
        │   │   │   │   ├── TerminalTest.php
        │   │   │   │   └── Tester
        │   │   │   ├── composer.json
        │   │   │   └── phpunit.xml.dist
        │   │   ├── css-selector
        │   │   │   ├── CHANGELOG.md
        │   │   │   ├── 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
        │   │   │   │   ├── Parser.php
        │   │   │   │   ├── ParserInterface.php
        │   │   │   │   ├── Reader.php
        │   │   │   │   ├── Shortcut
        │   │   │   │   ├── Token.php
        │   │   │   │   ├── TokenStream.php
        │   │   │   │   └── Tokenizer
        │   │   │   ├── README.md
        │   │   │   ├── Tests
        │   │   │   │   ├── CssSelectorConverterTest.php
        │   │   │   │   ├── Node
        │   │   │   │   ├── Parser
        │   │   │   │   └── XPath
        │   │   │   ├── XPath
        │   │   │   │   ├── Extension
        │   │   │   │   ├── Translator.php
        │   │   │   │   ├── TranslatorInterface.php
        │   │   │   │   └── XPathExpr.php
        │   │   │   ├── composer.json
        │   │   │   └── phpunit.xml.dist
        │   │   ├── debug
        │   │   │   ├── BufferingLogger.php
        │   │   │   ├── CHANGELOG.md
        │   │   │   ├── Debug.php
        │   │   │   ├── DebugClassLoader.php
        │   │   │   ├── ErrorHandler.php
        │   │   │   ├── Exception
        │   │   │   │   ├── ClassNotFoundException.php
        │   │   │   │   ├── ContextErrorException.php
        │   │   │   │   ├── FatalErrorException.php
        │   │   │   │   ├── FatalThrowableError.php
        │   │   │   │   ├── FlattenException.php
        │   │   │   │   ├── OutOfMemoryException.php
        │   │   │   │   ├── SilencedErrorContext.php
        │   │   │   │   ├── UndefinedFunctionException.php
        │   │   │   │   └── UndefinedMethodException.php
        │   │   │   ├── ExceptionHandler.php
        │   │   │   ├── FatalErrorHandler
        │   │   │   │   ├── ClassNotFoundFatalErrorHandler.php
        │   │   │   │   ├── FatalErrorHandlerInterface.php
        │   │   │   │   ├── UndefinedFunctionFatalErrorHandler.php
        │   │   │   │   └── UndefinedMethodFatalErrorHandler.php
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── Resources
        │   │   │   │   └── ext
        │   │   │   ├── Tests
        │   │   │   │   ├── DebugClassLoaderTest.php
        │   │   │   │   ├── ErrorHandlerTest.php
        │   │   │   │   ├── Exception
        │   │   │   │   ├── ExceptionHandlerTest.php
        │   │   │   │   ├── FatalErrorHandler
        │   │   │   │   ├── Fixtures
        │   │   │   │   ├── Fixtures2
        │   │   │   │   ├── HeaderMock.php
        │   │   │   │   └── MockExceptionHandler.php
        │   │   │   ├── composer.json
        │   │   │   └── phpunit.xml.dist
        │   │   ├── event-dispatcher
        │   │   │   ├── CHANGELOG.md
        │   │   │   ├── ContainerAwareEventDispatcher.php
        │   │   │   ├── Debug
        │   │   │   │   ├── TraceableEventDispatcher.php
        │   │   │   │   ├── TraceableEventDispatcherInterface.php
        │   │   │   │   └── WrappedListener.php
        │   │   │   ├── DependencyInjection
        │   │   │   │   └── RegisterListenersPass.php
        │   │   │   ├── Event.php
        │   │   │   ├── EventDispatcher.php
        │   │   │   ├── EventDispatcherInterface.php
        │   │   │   ├── EventSubscriberInterface.php
        │   │   │   ├── GenericEvent.php
        │   │   │   ├── ImmutableEventDispatcher.php
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── Tests
        │   │   │   │   ├── AbstractEventDispatcherTest.php
        │   │   │   │   ├── ContainerAwareEventDispatcherTest.php
        │   │   │   │   ├── Debug
        │   │   │   │   ├── DependencyInjection
        │   │   │   │   ├── EventDispatcherTest.php
        │   │   │   │   ├── EventTest.php
        │   │   │   │   ├── GenericEventTest.php
        │   │   │   │   └── ImmutableEventDispatcherTest.php
        │   │   │   ├── composer.json
        │   │   │   └── phpunit.xml.dist
        │   │   ├── finder
        │   │   │   ├── CHANGELOG.md
        │   │   │   ├── Comparator
        │   │   │   │   ├── Comparator.php
        │   │   │   │   ├── DateComparator.php
        │   │   │   │   └── NumberComparator.php
        │   │   │   ├── Exception
        │   │   │   │   ├── AccessDeniedException.php
        │   │   │   │   └── ExceptionInterface.php
        │   │   │   ├── Finder.php
        │   │   │   ├── Glob.php
        │   │   │   ├── Iterator
        │   │   │   │   ├── CustomFilterIterator.php
        │   │   │   │   ├── DateRangeFilterIterator.php
        │   │   │   │   ├── DepthRangeFilterIterator.php
        │   │   │   │   ├── ExcludeDirectoryFilterIterator.php
        │   │   │   │   ├── FileTypeFilterIterator.php
        │   │   │   │   ├── FilecontentFilterIterator.php
        │   │   │   │   ├── FilenameFilterIterator.php
        │   │   │   │   ├── FilterIterator.php
        │   │   │   │   ├── MultiplePcreFilterIterator.php
        │   │   │   │   ├── PathFilterIterator.php
        │   │   │   │   ├── RecursiveDirectoryIterator.php
        │   │   │   │   ├── SizeRangeFilterIterator.php
        │   │   │   │   └── SortableIterator.php
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── SplFileInfo.php
        │   │   │   ├── Tests
        │   │   │   │   ├── Comparator
        │   │   │   │   ├── FinderTest.php
        │   │   │   │   ├── Fixtures
        │   │   │   │   ├── GlobTest.php
        │   │   │   │   └── Iterator
        │   │   │   ├── composer.json
        │   │   │   └── phpunit.xml.dist
        │   │   ├── http-foundation
        │   │   │   ├── AcceptHeader.php
        │   │   │   ├── AcceptHeaderItem.php
        │   │   │   ├── ApacheRequest.php
        │   │   │   ├── BinaryFileResponse.php
        │   │   │   ├── CHANGELOG.md
        │   │   │   ├── Cookie.php
        │   │   │   ├── Exception
        │   │   │   │   ├── ConflictingHeadersException.php
        │   │   │   │   ├── RequestExceptionInterface.php
        │   │   │   │   └── SuspiciousOperationException.php
        │   │   │   ├── ExpressionRequestMatcher.php
        │   │   │   ├── File
        │   │   │   │   ├── Exception
        │   │   │   │   ├── File.php
        │   │   │   │   ├── MimeType
        │   │   │   │   ├── Stream.php
        │   │   │   │   └── UploadedFile.php
        │   │   │   ├── FileBag.php
        │   │   │   ├── HeaderBag.php
        │   │   │   ├── IpUtils.php
        │   │   │   ├── JsonResponse.php
        │   │   │   ├── LICENSE
        │   │   │   ├── ParameterBag.php
        │   │   │   ├── README.md
        │   │   │   ├── RedirectResponse.php
        │   │   │   ├── Request.php
        │   │   │   ├── RequestMatcher.php
        │   │   │   ├── RequestMatcherInterface.php
        │   │   │   ├── RequestStack.php
        │   │   │   ├── Response.php
        │   │   │   ├── ResponseHeaderBag.php
        │   │   │   ├── ServerBag.php
        │   │   │   ├── Session
        │   │   │   │   ├── Attribute
        │   │   │   │   ├── Flash
        │   │   │   │   ├── Session.php
        │   │   │   │   ├── SessionBagInterface.php
        │   │   │   │   ├── SessionInterface.php
        │   │   │   │   └── Storage
        │   │   │   ├── StreamedResponse.php
        │   │   │   ├── Tests
        │   │   │   │   ├── AcceptHeaderItemTest.php
        │   │   │   │   ├── AcceptHeaderTest.php
        │   │   │   │   ├── ApacheRequestTest.php
        │   │   │   │   ├── BinaryFileResponseTest.php
        │   │   │   │   ├── CookieTest.php
        │   │   │   │   ├── ExpressionRequestMatcherTest.php
        │   │   │   │   ├── File
        │   │   │   │   ├── FileBagTest.php
        │   │   │   │   ├── HeaderBagTest.php
        │   │   │   │   ├── IpUtilsTest.php
        │   │   │   │   ├── JsonResponseTest.php
        │   │   │   │   ├── ParameterBagTest.php
        │   │   │   │   ├── RedirectResponseTest.php
        │   │   │   │   ├── RequestMatcherTest.php
        │   │   │   │   ├── RequestStackTest.php
        │   │   │   │   ├── RequestTest.php
        │   │   │   │   ├── ResponseHeaderBagTest.php
        │   │   │   │   ├── ResponseTest.php
        │   │   │   │   ├── ResponseTestCase.php
        │   │   │   │   ├── ServerBagTest.php
        │   │   │   │   ├── Session
        │   │   │   │   ├── StreamedResponseTest.php
        │   │   │   │   └── schema
        │   │   │   ├── composer.json
        │   │   │   └── phpunit.xml.dist
        │   │   ├── http-kernel
        │   │   │   ├── Bundle
        │   │   │   │   ├── Bundle.php
        │   │   │   │   └── BundleInterface.php
        │   │   │   ├── CHANGELOG.md
        │   │   │   ├── CacheClearer
        │   │   │   │   ├── CacheClearerInterface.php
        │   │   │   │   ├── ChainCacheClearer.php
        │   │   │   │   └── Psr6CacheClearer.php
        │   │   │   ├── CacheWarmer
        │   │   │   │   ├── CacheWarmer.php
        │   │   │   │   ├── CacheWarmerAggregate.php
        │   │   │   │   ├── CacheWarmerInterface.php
        │   │   │   │   └── WarmableInterface.php
        │   │   │   ├── Client.php
        │   │   │   ├── Config
        │   │   │   │   ├── EnvParametersResource.php
        │   │   │   │   └── FileLocator.php
        │   │   │   ├── Controller
        │   │   │   │   ├── ArgumentResolver
        │   │   │   │   ├── ArgumentResolver.php
        │   │   │   │   ├── ArgumentResolverInterface.php
        │   │   │   │   ├── ArgumentValueResolverInterface.php
        │   │   │   │   ├── ContainerControllerResolver.php
        │   │   │   │   ├── ControllerReference.php
        │   │   │   │   ├── ControllerResolver.php
        │   │   │   │   ├── ControllerResolverInterface.php
        │   │   │   │   ├── TraceableArgumentResolver.php
        │   │   │   │   └── TraceableControllerResolver.php
        │   │   │   ├── ControllerMetadata
        │   │   │   │   ├── ArgumentMetadata.php
        │   │   │   │   ├── ArgumentMetadataFactory.php
        │   │   │   │   └── ArgumentMetadataFactoryInterface.php
        │   │   │   ├── DataCollector
        │   │   │   │   ├── AjaxDataCollector.php
        │   │   │   │   ├── ConfigDataCollector.php
        │   │   │   │   ├── DataCollector.php
        │   │   │   │   ├── DataCollectorInterface.php
        │   │   │   │   ├── DumpDataCollector.php
        │   │   │   │   ├── EventDataCollector.php
        │   │   │   │   ├── ExceptionDataCollector.php
        │   │   │   │   ├── LateDataCollectorInterface.php
        │   │   │   │   ├── LoggerDataCollector.php
        │   │   │   │   ├── MemoryDataCollector.php
        │   │   │   │   ├── RequestDataCollector.php
        │   │   │   │   ├── RouterDataCollector.php
        │   │   │   │   ├── TimeDataCollector.php
        │   │   │   │   └── Util
        │   │   │   ├── Debug
        │   │   │   │   ├── FileLinkFormatter.php
        │   │   │   │   └── TraceableEventDispatcher.php
        │   │   │   ├── DependencyInjection
        │   │   │   │   ├── AddAnnotatedClassesToCachePass.php
        │   │   │   │   ├── AddClassesToCachePass.php
        │   │   │   │   ├── ConfigurableExtension.php
        │   │   │   │   ├── ControllerArgumentValueResolverPass.php
        │   │   │   │   ├── Extension.php
        │   │   │   │   ├── FragmentRendererPass.php
        │   │   │   │   ├── LazyLoadingFragmentHandler.php
        │   │   │   │   ├── MergeExtensionConfigurationPass.php
        │   │   │   │   ├── RegisterControllerArgumentLocatorsPass.php
        │   │   │   │   └── RemoveEmptyControllerArgumentLocatorsPass.php
        │   │   │   ├── Event
        │   │   │   │   ├── FilterControllerArgumentsEvent.php
        │   │   │   │   ├── FilterControllerEvent.php
        │   │   │   │   ├── FilterResponseEvent.php
        │   │   │   │   ├── FinishRequestEvent.php
        │   │   │   │   ├── GetResponseEvent.php
        │   │   │   │   ├── GetResponseForControllerResultEvent.php
        │   │   │   │   ├── GetResponseForExceptionEvent.php
        │   │   │   │   ├── KernelEvent.php
        │   │   │   │   └── PostResponseEvent.php
        │   │   │   ├── EventListener
        │   │   │   │   ├── AbstractSessionListener.php
        │   │   │   │   ├── AbstractTestSessionListener.php
        │   │   │   │   ├── 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
        │   │   │   │   └── ValidateRequestListener.php
        │   │   │   ├── Exception
        │   │   │   │   ├── AccessDeniedHttpException.php
        │   │   │   │   ├── BadRequestHttpException.php
        │   │   │   │   ├── ConflictHttpException.php
        │   │   │   │   ├── GoneHttpException.php
        │   │   │   │   ├── HttpException.php
        │   │   │   │   ├── HttpExceptionInterface.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
        │   │   │   │   ├── AbstractSurrogate.php
        │   │   │   │   ├── Esi.php
        │   │   │   │   ├── HttpCache.php
        │   │   │   │   ├── ResponseCacheStrategy.php
        │   │   │   │   ├── ResponseCacheStrategyInterface.php
        │   │   │   │   ├── Ssi.php
        │   │   │   │   ├── Store.php
        │   │   │   │   ├── StoreInterface.php
        │   │   │   │   └── SurrogateInterface.php
        │   │   │   ├── HttpKernel.php
        │   │   │   ├── HttpKernelInterface.php
        │   │   │   ├── Kernel.php
        │   │   │   ├── KernelEvents.php
        │   │   │   ├── KernelInterface.php
        │   │   │   ├── LICENSE
        │   │   │   ├── Log
        │   │   │   │   └── DebugLoggerInterface.php
        │   │   │   ├── Profiler
        │   │   │   │   ├── FileProfilerStorage.php
        │   │   │   │   ├── Profile.php
        │   │   │   │   ├── Profiler.php
        │   │   │   │   └── ProfilerStorageInterface.php
        │   │   │   ├── README.md
        │   │   │   ├── TerminableInterface.php
        │   │   │   ├── Tests
        │   │   │   │   ├── Bundle
        │   │   │   │   ├── CacheClearer
        │   │   │   │   ├── CacheWarmer
        │   │   │   │   ├── ClientTest.php
        │   │   │   │   ├── Config
        │   │   │   │   ├── Controller
        │   │   │   │   ├── ControllerMetadata
        │   │   │   │   ├── DataCollector
        │   │   │   │   ├── Debug
        │   │   │   │   ├── DependencyInjection
        │   │   │   │   ├── Event
        │   │   │   │   ├── EventListener
        │   │   │   │   ├── Exception
        │   │   │   │   ├── Fixtures
        │   │   │   │   ├── Fragment
        │   │   │   │   ├── HttpCache
        │   │   │   │   ├── HttpKernelTest.php
        │   │   │   │   ├── KernelTest.php
        │   │   │   │   ├── Logger.php
        │   │   │   │   ├── Profiler
        │   │   │   │   ├── TestHttpKernel.php
        │   │   │   │   └── UriSignerTest.php
        │   │   │   ├── UriSigner.php
        │   │   │   ├── composer.json
        │   │   │   └── phpunit.xml.dist
        │   │   ├── polyfill-mbstring
        │   │   │   ├── LICENSE
        │   │   │   ├── Mbstring.php
        │   │   │   ├── README.md
        │   │   │   ├── Resources
        │   │   │   │   └── unidata
        │   │   │   ├── bootstrap.php
        │   │   │   └── composer.json
        │   │   ├── process
        │   │   │   ├── CHANGELOG.md
        │   │   │   ├── Exception
        │   │   │   │   ├── ExceptionInterface.php
        │   │   │   │   ├── InvalidArgumentException.php
        │   │   │   │   ├── LogicException.php
        │   │   │   │   ├── ProcessFailedException.php
        │   │   │   │   ├── ProcessTimedOutException.php
        │   │   │   │   └── RuntimeException.php
        │   │   │   ├── ExecutableFinder.php
        │   │   │   ├── InputStream.php
        │   │   │   ├── LICENSE
        │   │   │   ├── PhpExecutableFinder.php
        │   │   │   ├── PhpProcess.php
        │   │   │   ├── Pipes
        │   │   │   │   ├── AbstractPipes.php
        │   │   │   │   ├── PipesInterface.php
        │   │   │   │   ├── UnixPipes.php
        │   │   │   │   └── WindowsPipes.php
        │   │   │   ├── Process.php
        │   │   │   ├── ProcessBuilder.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
        │   │   │   ├── composer.json
        │   │   │   └── phpunit.xml.dist
        │   │   ├── routing
        │   │   │   ├── Annotation
        │   │   │   │   └── Route.php
        │   │   │   ├── CHANGELOG.md
        │   │   │   ├── CompiledRoute.php
        │   │   │   ├── DependencyInjection
        │   │   │   │   └── RoutingResolverPass.php
        │   │   │   ├── Exception
        │   │   │   │   ├── ExceptionInterface.php
        │   │   │   │   ├── InvalidParameterException.php
        │   │   │   │   ├── MethodNotAllowedException.php
        │   │   │   │   ├── MissingMandatoryParametersException.php
        │   │   │   │   ├── ResourceNotFoundException.php
        │   │   │   │   └── RouteNotFoundException.php
        │   │   │   ├── Generator
        │   │   │   │   ├── ConfigurableRequirementsInterface.php
        │   │   │   │   ├── Dumper
        │   │   │   │   ├── UrlGenerator.php
        │   │   │   │   └── UrlGeneratorInterface.php
        │   │   │   ├── LICENSE
        │   │   │   ├── Loader
        │   │   │   │   ├── AnnotationClassLoader.php
        │   │   │   │   ├── AnnotationDirectoryLoader.php
        │   │   │   │   ├── AnnotationFileLoader.php
        │   │   │   │   ├── ClosureLoader.php
        │   │   │   │   ├── DependencyInjection
        │   │   │   │   ├── DirectoryLoader.php
        │   │   │   │   ├── ObjectRouteLoader.php
        │   │   │   │   ├── PhpFileLoader.php
        │   │   │   │   ├── XmlFileLoader.php
        │   │   │   │   ├── YamlFileLoader.php
        │   │   │   │   └── schema
        │   │   │   ├── Matcher
        │   │   │   │   ├── Dumper
        │   │   │   │   ├── RedirectableUrlMatcher.php
        │   │   │   │   ├── RedirectableUrlMatcherInterface.php
        │   │   │   │   ├── RequestMatcherInterface.php
        │   │   │   │   ├── TraceableUrlMatcher.php
        │   │   │   │   ├── UrlMatcher.php
        │   │   │   │   └── UrlMatcherInterface.php
        │   │   │   ├── README.md
        │   │   │   ├── RequestContext.php
        │   │   │   ├── RequestContextAwareInterface.php
        │   │   │   ├── Route.php
        │   │   │   ├── RouteCollection.php
        │   │   │   ├── RouteCollectionBuilder.php
        │   │   │   ├── RouteCompiler.php
        │   │   │   ├── RouteCompilerInterface.php
        │   │   │   ├── Router.php
        │   │   │   ├── RouterInterface.php
        │   │   │   ├── Tests
        │   │   │   │   ├── Annotation
        │   │   │   │   ├── CompiledRouteTest.php
        │   │   │   │   ├── DependencyInjection
        │   │   │   │   ├── Fixtures
        │   │   │   │   ├── Generator
        │   │   │   │   ├── Loader
        │   │   │   │   ├── Matcher
        │   │   │   │   ├── RequestContextTest.php
        │   │   │   │   ├── RouteCollectionBuilderTest.php
        │   │   │   │   ├── RouteCollectionTest.php
        │   │   │   │   ├── RouteCompilerTest.php
        │   │   │   │   ├── RouteTest.php
        │   │   │   │   └── RouterTest.php
        │   │   │   ├── composer.json
        │   │   │   └── phpunit.xml.dist
        │   │   ├── translation
        │   │   │   ├── CHANGELOG.md
        │   │   │   ├── Catalogue
        │   │   │   │   ├── AbstractOperation.php
        │   │   │   │   ├── MergeOperation.php
        │   │   │   │   ├── OperationInterface.php
        │   │   │   │   └── TargetOperation.php
        │   │   │   ├── Command
        │   │   │   │   └── XliffLintCommand.php
        │   │   │   ├── 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
        │   │   │   │   ├── InvalidArgumentException.php
        │   │   │   │   ├── InvalidResourceException.php
        │   │   │   │   ├── LogicException.php
        │   │   │   │   ├── NotFoundResourceException.php
        │   │   │   │   └── RuntimeException.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
        │   │   │   │   ├── XliffFileLoader.php
        │   │   │   │   ├── YamlFileLoader.php
        │   │   │   │   └── schema
        │   │   │   ├── LoggingTranslator.php
        │   │   │   ├── MessageCatalogue.php
        │   │   │   ├── MessageCatalogueInterface.php
        │   │   │   ├── MessageSelector.php
        │   │   │   ├── MetadataAwareInterface.php
        │   │   │   ├── PluralizationRules.php
        │   │   │   ├── README.md
        │   │   │   ├── Resources
        │   │   │   │   └── schemas
        │   │   │   ├── Tests
        │   │   │   │   ├── Catalogue
        │   │   │   │   ├── DataCollector
        │   │   │   │   ├── DataCollectorTranslatorTest.php
        │   │   │   │   ├── Dumper
        │   │   │   │   ├── IdentityTranslatorTest.php
        │   │   │   │   ├── IntervalTest.php
        │   │   │   │   ├── Loader
        │   │   │   │   ├── LoggingTranslatorTest.php
        │   │   │   │   ├── MessageCatalogueTest.php
        │   │   │   │   ├── MessageSelectorTest.php
        │   │   │   │   ├── PluralizationRulesTest.php
        │   │   │   │   ├── TranslatorCacheTest.php
        │   │   │   │   ├── TranslatorTest.php
        │   │   │   │   ├── Util
        │   │   │   │   ├── Writer
        │   │   │   │   └── fixtures
        │   │   │   ├── Translator.php
        │   │   │   ├── TranslatorBagInterface.php
        │   │   │   ├── TranslatorInterface.php
        │   │   │   ├── Util
        │   │   │   │   └── ArrayConverter.php
        │   │   │   ├── Writer
        │   │   │   │   └── TranslationWriter.php
        │   │   │   ├── composer.json
        │   │   │   └── phpunit.xml.dist
        │   │   ├── var-dumper
        │   │   │   ├── CHANGELOG.md
        │   │   │   ├── Caster
        │   │   │   │   ├── AmqpCaster.php
        │   │   │   │   ├── ArgsStub.php
        │   │   │   │   ├── Caster.php
        │   │   │   │   ├── ClassStub.php
        │   │   │   │   ├── ConstStub.php
        │   │   │   │   ├── CutArrayStub.php
        │   │   │   │   ├── CutStub.php
        │   │   │   │   ├── DOMCaster.php
        │   │   │   │   ├── DoctrineCaster.php
        │   │   │   │   ├── EnumStub.php
        │   │   │   │   ├── ExceptionCaster.php
        │   │   │   │   ├── FrameStub.php
        │   │   │   │   ├── LinkStub.php
        │   │   │   │   ├── MongoCaster.php
        │   │   │   │   ├── PdoCaster.php
        │   │   │   │   ├── PgSqlCaster.php
        │   │   │   │   ├── RedisCaster.php
        │   │   │   │   ├── ReflectionCaster.php
        │   │   │   │   ├── ResourceCaster.php
        │   │   │   │   ├── SplCaster.php
        │   │   │   │   ├── StubCaster.php
        │   │   │   │   ├── SymfonyCaster.php
        │   │   │   │   ├── TraceStub.php
        │   │   │   │   ├── XmlReaderCaster.php
        │   │   │   │   └── XmlResourceCaster.php
        │   │   │   ├── Cloner
        │   │   │   │   ├── AbstractCloner.php
        │   │   │   │   ├── ClonerInterface.php
        │   │   │   │   ├── Cursor.php
        │   │   │   │   ├── Data.php
        │   │   │   │   ├── DumperInterface.php
        │   │   │   │   ├── Stub.php
        │   │   │   │   └── VarCloner.php
        │   │   │   ├── Dumper
        │   │   │   │   ├── AbstractDumper.php
        │   │   │   │   ├── CliDumper.php
        │   │   │   │   ├── DataDumperInterface.php
        │   │   │   │   └── HtmlDumper.php
        │   │   │   ├── Exception
        │   │   │   │   └── ThrowingCasterException.php
        │   │   │   ├── LICENSE
        │   │   │   ├── README.md
        │   │   │   ├── Resources
        │   │   │   │   └── functions
        │   │   │   ├── Test
        │   │   │   │   └── VarDumperTestTrait.php
        │   │   │   ├── Tests
        │   │   │   │   ├── Caster
        │   │   │   │   ├── Cloner
        │   │   │   │   ├── Dumper
        │   │   │   │   ├── Fixtures
        │   │   │   │   └── Test
        │   │   │   ├── VarDumper.php
        │   │   │   ├── composer.json
        │   │   │   └── phpunit.xml.dist
        │   │   └── yaml
        │   │       ├── CHANGELOG.md
        │   │       ├── Command
        │   │       │   └── LintCommand.php
        │   │       ├── Dumper.php
        │   │       ├── Escaper.php
        │   │       ├── Exception
        │   │       │   ├── DumpException.php
        │   │       │   ├── ExceptionInterface.php
        │   │       │   ├── ParseException.php
        │   │       │   └── RuntimeException.php
        │   │       ├── Inline.php
        │   │       ├── LICENSE
        │   │       ├── Parser.php
        │   │       ├── README.md
        │   │       ├── Tag
        │   │       │   └── TaggedValue.php
        │   │       ├── Tests
        │   │       │   ├── Command
        │   │       │   ├── DumperTest.php
        │   │       │   ├── Fixtures
        │   │       │   ├── InlineTest.php
        │   │       │   ├── ParseExceptionTest.php
        │   │       │   ├── ParserTest.php
        │   │       │   └── YamlTest.php
        │   │       ├── Unescaper.php
        │   │       ├── Yaml.php
        │   │       ├── composer.json
        │   │       └── phpunit.xml.dist
        │   ├── tamayo
        │   │   └── laravel-scout-elastic
        │   │       ├── LICENSE
        │   │       ├── README.md
        │   │       ├── composer.json
        │   │       ├── phpunit.xml.dist
        │   │       ├── src
        │   │       │   ├── ElasticsearchEngine.php
        │   │       │   └── ElasticsearchProvider.php
        │   │       └── tests
        │   │           └── ElasticsearchEngineTest.php
        │   ├── tijsverkoyen
        │   │   └── css-to-inline-styles
        │   │       ├── LICENSE.md
        │   │       ├── composer.json
        │   │       ├── phpunit.xml.dist
        │   │       └── src
        │   │           ├── Css
        │   │           └── CssToInlineStyles.php
        │   ├── vlucas
        │   │   └── phpdotenv
        │   │       ├── LICENSE.txt
        │   │       ├── composer.json
        │   │       └── src
        │   │           ├── Dotenv.php
        │   │           ├── Exception
        │   │           ├── Loader.php
        │   │           └── Validator.php
        │   └── webmozart
        │       └── assert
        │           ├── CHANGELOG.md
        │           ├── LICENSE
        │           ├── README.md
        │           ├── appveyor.yml
        │           ├── composer.json
        │           ├── phpunit.xml.dist
        │           ├── src
        │           │   └── Assert.php
        │           └── tests
        │               └── AssertTest.php
        └── webpack.mix.js

731 directories, 1819 files



标签: laravel 5.4 快速 开发

实例下载地址

Laravel5.4快速开发简书网站

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警