├── .gitattributes ├── .gitignore ├── LICENSE ├── app ├── Console │ ├── Commands │ │ └── Inspire.php │ └── Kernel.php ├── CustomTraits │ ├── AuthenticatesAndRegistersUsers.php │ └── AuthenticatesUsers.php ├── Events │ └── Event.php ├── Exceptions │ └── Handler.php ├── Helpers │ ├── BencodeHelper.php │ ├── BitTorrent.php │ └── StringHelper.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── AdminController.php │ │ │ └── CategoriesController.php │ │ ├── Announce │ │ │ └── AnnounceController.php │ │ ├── Auth │ │ │ ├── AuthController.php │ │ │ └── PasswordController.php │ │ ├── Controller.php │ │ └── Torrents │ │ │ └── TorrentsController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── VerifyCsrfToken.php │ │ └── WebMiddleware.php │ ├── Requests │ │ ├── Admin │ │ │ └── Categories │ │ │ │ └── CreateCategoryRequest.php │ │ ├── Request.php │ │ └── TorrentUploadRequest.php │ ├── ViewComposers │ │ └── GlobalComposer.php │ └── routes.php ├── Jobs │ └── Job.php ├── Listeners │ └── .gitkeep ├── Models │ ├── Category.php │ ├── Peer.php │ ├── PeerTorrent.php │ ├── Torrent.php │ ├── User.php │ └── UserPasskey.php ├── Policies │ └── .gitkeep └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── ComposerServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── composer.phar ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── compile.php ├── database.php ├── filesystems.php ├── mail.php ├── queue.php ├── rooles.php ├── services.php ├── session.php ├── settings.php └── view.php ├── database ├── .gitignore ├── factories │ └── ModelFactory.php ├── migrations │ ├── .gitkeep │ ├── 2015_12_18_140725_create_user_table.php │ ├── 2015_12_18_175242_create_torrent_table.php │ ├── 2016_06_11_033040_create_categories_table.php │ ├── 2016_06_11_033848_create_peers_table.php │ ├── 2016_06_11_034411_create_peer_torrent_table.php │ ├── 2016_06_11_040406_create_user_passkeys_table.php │ └── 2016_06_12_034437_add_role_column_to_user.php └── seeds │ ├── .gitkeep │ └── DatabaseSeeder.php ├── gulpfile.js ├── package.json ├── phpspec.yml ├── phpunit.xml ├── public ├── .htaccess ├── bower_components │ └── AdminLTE │ │ ├── .bower.json │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── bower.json │ │ ├── build │ │ ├── bootstrap-less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── reset-text.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ └── variables.less │ │ └── less │ │ │ ├── .csslintrc │ │ │ ├── 404_500_errors.less │ │ │ ├── AdminLTE.less │ │ │ ├── alerts.less │ │ │ ├── bootstrap-social.less │ │ │ ├── boxes.less │ │ │ ├── buttons.less │ │ │ ├── callout.less │ │ │ ├── carousel.less │ │ │ ├── control-sidebar.less │ │ │ ├── core.less │ │ │ ├── direct-chat.less │ │ │ ├── dropdown.less │ │ │ ├── forms.less │ │ │ ├── fullcalendar.less │ │ │ ├── header.less │ │ │ ├── info-box.less │ │ │ ├── invoice.less │ │ │ ├── labels.less │ │ │ ├── lockscreen.less │ │ │ ├── login_and_register.less │ │ │ ├── mailbox.less │ │ │ ├── miscellaneous.less │ │ │ ├── mixins.less │ │ │ ├── modal.less │ │ │ ├── navs.less │ │ │ ├── print.less │ │ │ ├── products.less │ │ │ ├── profile.less │ │ │ ├── progress-bars.less │ │ │ ├── select2.less │ │ │ ├── sidebar-mini.less │ │ │ ├── sidebar.less │ │ │ ├── skins │ │ │ ├── _all-skins.less │ │ │ ├── skin-black-light.less │ │ │ ├── skin-black.less │ │ │ ├── skin-blue-light.less │ │ │ ├── skin-blue.less │ │ │ ├── skin-green-light.less │ │ │ ├── skin-green.less │ │ │ ├── skin-purple-light.less │ │ │ ├── skin-purple.less │ │ │ ├── skin-red-light.less │ │ │ ├── skin-red.less │ │ │ ├── skin-yellow-light.less │ │ │ └── skin-yellow.less │ │ │ ├── small-box.less │ │ │ ├── social-widgets.less │ │ │ ├── table.less │ │ │ ├── timeline.less │ │ │ ├── users-list.less │ │ │ └── variables.less │ │ ├── changelog │ │ ├── dist │ │ ├── css │ │ │ ├── AdminLTE.css │ │ │ ├── AdminLTE.min.css │ │ │ ├── custom.css │ │ │ └── skins │ │ │ │ ├── _all-skins.css │ │ │ │ ├── _all-skins.min.css │ │ │ │ ├── skin-black-light.css │ │ │ │ ├── skin-black-light.min.css │ │ │ │ ├── skin-black.css │ │ │ │ ├── skin-black.min.css │ │ │ │ ├── skin-blue-light.css │ │ │ │ ├── skin-blue-light.min.css │ │ │ │ ├── skin-blue.css │ │ │ │ ├── skin-blue.min.css │ │ │ │ ├── skin-green-light.css │ │ │ │ ├── skin-green-light.min.css │ │ │ │ ├── skin-green.css │ │ │ │ ├── skin-green.min.css │ │ │ │ ├── skin-purple-light.css │ │ │ │ ├── skin-purple-light.min.css │ │ │ │ ├── skin-purple.css │ │ │ │ ├── skin-purple.min.css │ │ │ │ ├── skin-red-light.css │ │ │ │ ├── skin-red-light.min.css │ │ │ │ ├── skin-red.css │ │ │ │ ├── skin-red.min.css │ │ │ │ ├── skin-yellow-light.css │ │ │ │ ├── skin-yellow-light.min.css │ │ │ │ ├── skin-yellow.css │ │ │ │ └── skin-yellow.min.css │ │ ├── img │ │ │ ├── avatar.png │ │ │ ├── avatar04.png │ │ │ ├── avatar2.png │ │ │ ├── avatar3.png │ │ │ ├── avatar5.png │ │ │ ├── boxed-bg.jpg │ │ │ ├── boxed-bg.png │ │ │ ├── credit │ │ │ │ ├── american-express.png │ │ │ │ ├── cirrus.png │ │ │ │ ├── mastercard.png │ │ │ │ ├── mestro.png │ │ │ │ ├── paypal.png │ │ │ │ ├── paypal2.png │ │ │ │ └── visa.png │ │ │ ├── default-50x50.gif │ │ │ ├── icons.png │ │ │ ├── photo1.png │ │ │ ├── photo2.png │ │ │ ├── photo3.jpg │ │ │ ├── photo4.jpg │ │ │ ├── user1-128x128.jpg │ │ │ ├── user2-160x160.jpg │ │ │ ├── user3-128x128.jpg │ │ │ ├── user4-128x128.jpg │ │ │ ├── user5-128x128.jpg │ │ │ ├── user6-128x128.jpg │ │ │ ├── user7-128x128.jpg │ │ │ └── user8-128x128.jpg │ │ └── js │ │ │ ├── app.js │ │ │ ├── app.min.js │ │ │ ├── demo.js │ │ │ └── pages │ │ │ ├── dashboard.js │ │ │ └── dashboard2.js │ │ ├── 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 │ │ │ │ └── jquery.js │ │ │ ├── build-config.js │ │ │ ├── ckeditor.js │ │ │ ├── config.js │ │ │ ├── contents.css │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── a11yhelp │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── clipboard │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── paste.js │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ ├── fakeobjects │ │ │ │ │ └── images │ │ │ │ │ │ └── spacer.gif │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── image │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── link │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ └── icon.png │ │ │ │ ├── pastefromword │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── scayt │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ ├── specialchar │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ └── specialchar.js │ │ │ │ ├── table │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── table.js │ │ │ │ ├── tabletools │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ └── wsc │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmp.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ ├── skins │ │ │ │ └── moono │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── dialog_opera.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ │ └── readme.md │ │ │ └── styles.js │ │ ├── colorpicker │ │ │ ├── bootstrap-colorpicker.css │ │ │ ├── bootstrap-colorpicker.js │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ └── img │ │ │ │ ├── alpha-horizontal.png │ │ │ │ ├── alpha.png │ │ │ │ ├── hue-horizontal.png │ │ │ │ ├── hue.png │ │ │ │ └── saturation.png │ │ ├── datatables │ │ │ ├── dataTables.bootstrap.css │ │ │ ├── dataTables.bootstrap.js │ │ │ ├── dataTables.bootstrap.min.js │ │ │ ├── extensions │ │ │ │ ├── AutoFill │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ │ │ └── dataTables.autoFill.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── columns.html │ │ │ │ │ │ ├── complete-callback.html │ │ │ │ │ │ ├── fill-both.html │ │ │ │ │ │ ├── fill-horizontal.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ └── step-callback.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── filler.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ │ │ └── dataTables.autoFill.min.js │ │ │ │ ├── ColReorder │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ │ │ └── dataTables.colReorder.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── alt_insert.html │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ ├── fixedcolumns.html │ │ │ │ │ │ ├── fixedheader.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ ├── predefined.html │ │ │ │ │ │ ├── realtime.html │ │ │ │ │ │ ├── reset.html │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ ├── server_side.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ └── state_save.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── insert.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ │ │ └── dataTables.colReorder.min.js │ │ │ │ ├── ColVis │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.colVis.css │ │ │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── button_order.html │ │ │ │ │ │ ├── exclude_columns.html │ │ │ │ │ │ ├── group_columns.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ ├── mouseover.html │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ ├── restore.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ ├── text.html │ │ │ │ │ │ ├── title_callback.html │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ └── two_tables_identical.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.colVis.js │ │ │ │ │ │ └── dataTables.colVis.min.js │ │ │ │ ├── FixedColumns │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ ├── css_size.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index_column.html │ │ │ │ │ │ ├── left_right_columns.html │ │ │ │ │ │ ├── right_column.html │ │ │ │ │ │ ├── rowspan.html │ │ │ │ │ │ ├── server-side-processing.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ ├── size_fixed.html │ │ │ │ │ │ ├── size_fluid.html │ │ │ │ │ │ └── two_columns.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ │ │ └── dataTables.fixedColumns.min.js │ │ │ │ ├── FixedHeader │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── header_footer.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ ├── top_left_right.html │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ └── zIndexes.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ │ │ └── dataTables.fixedHeader.min.js │ │ │ │ ├── KeyTable │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ │ │ └── dataTables.keyTable.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── events.html │ │ │ │ │ │ ├── html.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ └── simple.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ │ │ └── dataTables.keyTable.min.js │ │ │ │ ├── Responsive │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.responsive.css │ │ │ │ │ │ └── dataTables.responsive.scss │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── child-rows │ │ │ │ │ │ │ ├── column-control.html │ │ │ │ │ │ │ ├── custom-renderer.html │ │ │ │ │ │ │ ├── disable-child-rows.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── right-column.html │ │ │ │ │ │ │ └── whole-row-control.html │ │ │ │ │ │ ├── display-control │ │ │ │ │ │ │ ├── auto.html │ │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ │ ├── complexHeader.html │ │ │ │ │ │ │ ├── fixedHeader.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── init-classes.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── initialisation │ │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ │ ├── className.html │ │ │ │ │ │ │ ├── default.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── new.html │ │ │ │ │ │ │ └── option.html │ │ │ │ │ │ └── styling │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ ├── compact.html │ │ │ │ │ │ │ ├── foundation.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── scrolling.html │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ │ │ └── dataTables.responsive.min.js │ │ │ │ ├── Scroller │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── css │ │ │ │ │ │ ├── dataTables.scroller.css │ │ │ │ │ │ └── dataTables.scroller.min.css │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── api_scrolling.html │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ │ └── ssp.php │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── large_js_source.html │ │ │ │ │ │ ├── server-side_processing.html │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ └── state_saving.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ │ └── dataTables.scroller.min.js │ │ │ │ └── TableTools │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.tableTools.css │ │ │ │ │ └── dataTables.tableTools.min.css │ │ │ │ │ ├── examples │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── alter_buttons.html │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── button_text.html │ │ │ │ │ ├── collection.html │ │ │ │ │ ├── defaults.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ ├── multi_instance.html │ │ │ │ │ ├── multiple_tables.html │ │ │ │ │ ├── new_init.html │ │ │ │ │ ├── pdf_message.html │ │ │ │ │ ├── plug-in.html │ │ │ │ │ ├── select_column.html │ │ │ │ │ ├── select_multi.html │ │ │ │ │ ├── select_os.html │ │ │ │ │ ├── select_single.html │ │ │ │ │ ├── simple.html │ │ │ │ │ └── swf_path.html │ │ │ │ │ ├── images │ │ │ │ │ ├── collection.png │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ ├── csv.png │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ ├── print.png │ │ │ │ │ ├── print_hover.png │ │ │ │ │ ├── psd │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ └── printer.psd │ │ │ │ │ ├── xls.png │ │ │ │ │ └── xls_hover.png │ │ │ │ │ ├── js │ │ │ │ │ ├── dataTables.tableTools.js │ │ │ │ │ └── dataTables.tableTools.min.js │ │ │ │ │ └── swf │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ ├── images │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ └── sort_desc_disabled.png │ │ │ ├── jquery.dataTables.css │ │ │ ├── jquery.dataTables.js │ │ │ ├── jquery.dataTables.min.css │ │ │ ├── jquery.dataTables.min.js │ │ │ └── jquery.dataTables_themeroller.css │ │ ├── datepicker │ │ │ ├── bootstrap-datepicker.js │ │ │ ├── datepicker3.css │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ ├── bootstrap-datepicker.az.js │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── daterangepicker │ │ │ ├── daterangepicker-bs3.css │ │ │ ├── daterangepicker.js │ │ │ ├── moment.js │ │ │ └── moment.min.js │ │ ├── fastclick │ │ │ ├── fastclick.js │ │ │ └── fastclick.min.js │ │ ├── flot │ │ │ ├── excanvas.js │ │ │ ├── excanvas.min.js │ │ │ ├── jquery.colorhelpers.js │ │ │ ├── jquery.colorhelpers.min.js │ │ │ ├── jquery.flot.canvas.js │ │ │ ├── jquery.flot.canvas.min.js │ │ │ ├── jquery.flot.categories.js │ │ │ ├── jquery.flot.categories.min.js │ │ │ ├── jquery.flot.crosshair.js │ │ │ ├── jquery.flot.crosshair.min.js │ │ │ ├── jquery.flot.errorbars.js │ │ │ ├── jquery.flot.errorbars.min.js │ │ │ ├── jquery.flot.fillbetween.js │ │ │ ├── jquery.flot.fillbetween.min.js │ │ │ ├── jquery.flot.image.js │ │ │ ├── jquery.flot.image.min.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.min.js │ │ │ ├── jquery.flot.navigate.js │ │ │ ├── jquery.flot.navigate.min.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.pie.min.js │ │ │ ├── jquery.flot.resize.js │ │ │ ├── jquery.flot.resize.min.js │ │ │ ├── jquery.flot.selection.js │ │ │ ├── jquery.flot.selection.min.js │ │ │ ├── jquery.flot.stack.js │ │ │ ├── jquery.flot.stack.min.js │ │ │ ├── jquery.flot.symbol.js │ │ │ ├── jquery.flot.symbol.min.js │ │ │ ├── jquery.flot.threshold.js │ │ │ ├── jquery.flot.threshold.min.js │ │ │ ├── jquery.flot.time.js │ │ │ └── jquery.flot.time.min.js │ │ ├── fullcalendar │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.css │ │ │ ├── fullcalendar.min.js │ │ │ └── fullcalendar.print.css │ │ ├── iCheck │ │ │ ├── all.css │ │ │ ├── flat │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── flat.css │ │ │ │ ├── flat.png │ │ │ │ ├── flat@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ │ ├── futurico.css │ │ │ │ ├── futurico.png │ │ │ │ └── futurico@2x.png │ │ │ ├── icheck.js │ │ │ ├── icheck.min.js │ │ │ ├── line │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── blue.css │ │ │ │ ├── green.css │ │ │ │ ├── grey.css │ │ │ │ ├── line.css │ │ │ │ ├── line.png │ │ │ │ ├── line@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── pink.css │ │ │ │ ├── purple.css │ │ │ │ ├── red.css │ │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.css │ │ │ │ ├── minimal.png │ │ │ │ ├── minimal@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ │ ├── polaris.css │ │ │ │ ├── polaris.png │ │ │ │ └── polaris@2x.png │ │ │ └── square │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── square.css │ │ │ │ ├── square.png │ │ │ │ ├── square@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ ├── input-mask │ │ │ ├── jquery.inputmask.date.extensions.js │ │ │ ├── jquery.inputmask.extensions.js │ │ │ ├── jquery.inputmask.js │ │ │ ├── jquery.inputmask.numeric.extensions.js │ │ │ ├── jquery.inputmask.phone.extensions.js │ │ │ ├── jquery.inputmask.regex.extensions.js │ │ │ └── phone-codes │ │ │ │ ├── phone-be.json │ │ │ │ ├── phone-codes.json │ │ │ │ └── readme.txt │ │ ├── ionslider │ │ │ ├── img │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ └── sprite-skin-nice.png │ │ │ ├── ion.rangeSlider.css │ │ │ ├── ion.rangeSlider.min.js │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ └── ion.rangeSlider.skinNice.css │ │ ├── jQuery │ │ │ └── jQuery-2.1.4.min.js │ │ ├── jQueryUI │ │ │ ├── jquery-ui.js │ │ │ └── jquery-ui.min.js │ │ ├── jvectormap │ │ │ ├── jquery-jvectormap-1.2.2.css │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ ├── jquery-jvectormap-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 │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ ├── select2.css │ │ │ ├── select2.full.js │ │ │ ├── select2.full.min.js │ │ │ ├── select2.js │ │ │ ├── select2.min.css │ │ │ └── select2.min.js │ │ ├── slimScroll │ │ │ ├── jquery.slimscroll.js │ │ │ └── jquery.slimscroll.min.js │ │ ├── sparkline │ │ │ ├── jquery.sparkline.js │ │ │ └── jquery.sparkline.min.js │ │ └── timepicker │ │ │ ├── bootstrap-timepicker.css │ │ │ ├── bootstrap-timepicker.js │ │ │ ├── bootstrap-timepicker.min.css │ │ │ └── bootstrap-timepicker.min.js │ │ └── starter.html ├── favicon.ico ├── files │ └── torrents │ │ └── a9f926a9cfd872b79fd17241ac5f5c8f.torrent ├── images │ ├── categories │ │ ├── blank.gif │ │ └── cats.png │ └── icons │ │ └── ttableicons.gif ├── index.php ├── robots.txt └── tmp │ ├── 8fc47defd0987224834ebb629118ad63_33d3e1667cafb061b5388192f94d900c44a0599c.torrent │ └── 8fc47defd0987224834ebb629118ad63_e6ea76f5b027651878eefabad717f016.torrent ├── readme.md ├── resources ├── assets │ └── sass │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── messages.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── admin │ ├── categories │ │ ├── create.blade.php │ │ └── index.blade.php │ └── index.blade.php │ ├── admin_template.blade.php │ ├── auth │ ├── login.blade.php │ └── register.blade.php │ ├── errors │ ├── 403.blade.php │ └── 503.blade.php │ ├── index │ └── index.blade.php │ ├── layouts │ └── adminlte │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── master.blade.php │ │ └── sidebar.blade.php │ ├── torrents │ ├── index.blade.php │ ├── upload.blade.php │ └── view.blade.php │ └── vendor │ └── .gitkeep ├── server.php ├── storage ├── app │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore ├── logs │ └── .gitignore └── sql │ └── schema.sql ├── test.php ├── tests ├── ExampleTest.php └── TestCase.php └── vendor ├── autoload.php ├── bin ├── php-parse ├── php-parse.bat ├── phpspec ├── phpspec.bat ├── phpunit ├── phpunit.bat ├── psysh └── psysh.bat ├── classpreloader └── classpreloader │ ├── LICENSE │ ├── composer.json │ └── src │ ├── ClassList.php │ ├── ClassLoader.php │ ├── ClassNode.php │ ├── ClassPreloader.php │ ├── Config.php │ ├── Exceptions │ ├── DirConstantException.php │ ├── FileConstantException.php │ ├── StrictTypesException.php │ └── VisitorExceptionInterface.php │ ├── Factory.php │ └── Parser │ ├── AbstractNodeVisitor.php │ ├── DirVisitor.php │ ├── FileVisitor.php │ ├── NodeTraverser.php │ └── StrictTypesVisitor.php ├── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php └── installed.json ├── dnoegel └── php-xdg-base-dir │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ └── Xdg.php │ └── tests │ └── XdgTest.php ├── doctrine ├── inflector │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── lib │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Inflector │ │ │ └── Inflector.php │ ├── phpunit.xml.dist │ └── tests │ │ └── Doctrine │ │ └── Tests │ │ ├── Common │ │ └── Inflector │ │ │ └── InflectorTest.php │ │ ├── DoctrineTestCase.php │ │ └── TestInit.php └── instantiator │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.install.sh │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpmd.xml.dist │ ├── phpunit.xml.dist │ ├── src │ └── Doctrine │ │ └── Instantiator │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ └── UnexpectedValueException.php │ │ ├── Instantiator.php │ │ └── InstantiatorInterface.php │ └── tests │ └── DoctrineTest │ ├── InstantiatorPerformance │ └── InstantiatorPerformanceEvent.php │ ├── InstantiatorTest │ ├── Exception │ │ ├── InvalidArgumentExceptionTest.php │ │ └── UnexpectedValueExceptionTest.php │ └── InstantiatorTest.php │ └── InstantiatorTestAsset │ ├── AbstractClassAsset.php │ ├── ArrayObjectAsset.php │ ├── ExceptionAsset.php │ ├── FinalExceptionAsset.php │ ├── PharAsset.php │ ├── PharExceptionAsset.php │ ├── SerializableArrayObjectAsset.php │ ├── SimpleSerializableAsset.php │ ├── SimpleTraitAsset.php │ ├── UnCloneableAsset.php │ ├── UnserializeExceptionArrayObjectAsset.php │ ├── WakeUpNoticesAsset.php │ └── XMLReaderAsset.php ├── fzaninotto └── faker │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── composer.json │ ├── phpunit.xml.dist │ ├── readme.md │ ├── src │ ├── Faker │ │ ├── Calculator │ │ │ └── Luhn.php │ │ ├── DefaultGenerator.php │ │ ├── Documentor.php │ │ ├── Factory.php │ │ ├── Generator.php │ │ ├── Guesser │ │ │ └── Name.php │ │ ├── ORM │ │ │ ├── CakePHP │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ ├── Doctrine │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ ├── Mandango │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ └── Propel │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ ├── Provider │ │ │ ├── Address.php │ │ │ ├── Barcode.php │ │ │ ├── Base.php │ │ │ ├── Biased.php │ │ │ ├── Color.php │ │ │ ├── Company.php │ │ │ ├── DateTime.php │ │ │ ├── File.php │ │ │ ├── Image.php │ │ │ ├── Internet.php │ │ │ ├── Lorem.php │ │ │ ├── Miscellaneous.php │ │ │ ├── Payment.php │ │ │ ├── Person.php │ │ │ ├── PhoneNumber.php │ │ │ ├── Text.php │ │ │ ├── UserAgent.php │ │ │ ├── Uuid.php │ │ │ ├── ar_JO │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── Text.php │ │ │ ├── at_AT │ │ │ │ └── Payment.php │ │ │ ├── be_BE │ │ │ │ └── Payment.php │ │ │ ├── bg_BG │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── bn_BD │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Utils.php │ │ │ ├── cs_CZ │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── da_DK │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── de_AT │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── de_DE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── el_GR │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_AU │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_CA │ │ │ │ ├── Address.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_GB │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_NZ │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_PH │ │ │ │ └── Address.php │ │ │ ├── en_UG │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_US │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── en_ZA │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── es_AR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── es_ES │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── es_PE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── es_VE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── fa_IR │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── Text.php │ │ │ ├── fi_FI │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── fr_BE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── fr_CA │ │ │ │ ├── Address.php │ │ │ │ └── Person.php │ │ │ ├── fr_FR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── hu_HU │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── hy_AM │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── id_ID │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── is_IS │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── it_IT │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── ja_JP │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── ka_GE │ │ │ │ ├── Person.php │ │ │ │ └── Text.php │ │ │ ├── kk_KZ │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── ko_KR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── lv_LV │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── me_ME │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── ne_NP │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── nl_BE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── nl_NL │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── no_NO │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── pl_PL │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── pt_BR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── check_digit.php │ │ │ ├── pt_PT │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── ro_MD │ │ │ │ ├── Address.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── ro_RO │ │ │ │ ├── Address.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── ru_RU │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── sk_SK │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── sl_SI │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── sr_Cyrl_RS │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ └── Person.php │ │ │ ├── sr_Latn_RS │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ └── Person.php │ │ │ ├── sr_RS │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ └── Person.php │ │ │ ├── sv_SE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── tr_TR │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── uk_UA │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── vi_VN │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── zh_CN │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ └── zh_TW │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ └── UniqueGenerator.php │ └── autoload.php │ └── test │ ├── Faker │ ├── Calculator │ │ └── LuhnTest.php │ ├── DefaultGeneratorTest.php │ ├── GeneratorTest.php │ └── Provider │ │ ├── AddressTest.php │ │ ├── BarcodeTest.php │ │ ├── BaseTest.php │ │ ├── BiasedTest.php │ │ ├── ColorTest.php │ │ ├── DateTimeTest.php │ │ ├── ImageTest.php │ │ ├── InternetTest.php │ │ ├── LocalizationTest.php │ │ ├── LoremTest.php │ │ ├── MiscellaneousTest.php │ │ ├── PaymentTest.php │ │ ├── PersonTest.php │ │ ├── ProviderOverrideTest.php │ │ ├── TextTest.php │ │ ├── UserAgentTest.php │ │ ├── UuidTest.php │ │ ├── at_AT │ │ └── PaymentTest.php │ │ ├── be_BE │ │ └── PaymentTest.php │ │ ├── bg_BG │ │ └── PaymentTest.php │ │ ├── de_AT │ │ ├── InternetTest.php │ │ └── PhoneNumberTest.php │ │ ├── fr_FR │ │ └── CompanyTest.php │ │ ├── id_ID │ │ └── PersonTest.php │ │ ├── ja_JP │ │ └── PersonTest.php │ │ ├── pt_BR │ │ ├── CompanyTest.php │ │ └── PersonTest.php │ │ ├── pt_PT │ │ ├── AddressTest.php │ │ ├── PersonTest.php │ │ └── PhoneNumberTest.php │ │ ├── ro_RO │ │ ├── PersonTest.php │ │ └── PhoneNumberTest.php │ │ ├── sv_SE │ │ └── PersonTest.php │ │ └── uk_UA │ │ ├── AddressTest.php │ │ └── PhoneNumberTest.php │ ├── documentor.php │ └── test.php ├── hamcrest └── hamcrest-php │ ├── .coveralls.yml │ ├── .gitignore │ ├── .gush.yml │ ├── .travis.yml │ ├── 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 │ │ ├── file_header.txt │ │ ├── functions_footer.txt │ │ ├── functions_header.txt │ │ ├── functions_imports.txt │ │ ├── matchers_footer.txt │ │ ├── matchers_header.txt │ │ └── matchers_imports.txt │ └── run.php │ ├── hamcrest │ ├── Hamcrest.php │ └── Hamcrest │ │ ├── Arrays │ │ ├── IsArray.php │ │ ├── IsArrayContaining.php │ │ ├── IsArrayContainingInAnyOrder.php │ │ ├── IsArrayContainingInOrder.php │ │ ├── IsArrayContainingKey.php │ │ ├── IsArrayContainingKeyValuePair.php │ │ ├── IsArrayWithSize.php │ │ ├── MatchingOnce.php │ │ └── SeriesMatchingOnce.php │ │ ├── AssertionError.php │ │ ├── BaseDescription.php │ │ ├── BaseMatcher.php │ │ ├── Collection │ │ ├── IsEmptyTraversable.php │ │ └── IsTraversableWithSize.php │ │ ├── Core │ │ ├── AllOf.php │ │ ├── AnyOf.php │ │ ├── CombinableMatcher.php │ │ ├── DescribedAs.php │ │ ├── Every.php │ │ ├── HasToString.php │ │ ├── Is.php │ │ ├── IsAnything.php │ │ ├── IsCollectionContaining.php │ │ ├── IsEqual.php │ │ ├── IsIdentical.php │ │ ├── IsInstanceOf.php │ │ ├── IsNot.php │ │ ├── IsNull.php │ │ ├── IsSame.php │ │ ├── IsTypeOf.php │ │ ├── Set.php │ │ └── ShortcutCombination.php │ │ ├── Description.php │ │ ├── DiagnosingMatcher.php │ │ ├── FeatureMatcher.php │ │ ├── Internal │ │ └── SelfDescribingValue.php │ │ ├── Matcher.php │ │ ├── MatcherAssert.php │ │ ├── Matchers.php │ │ ├── NullDescription.php │ │ ├── Number │ │ ├── IsCloseTo.php │ │ └── OrderingComparison.php │ │ ├── SelfDescribing.php │ │ ├── StringDescription.php │ │ ├── Text │ │ ├── IsEmptyString.php │ │ ├── IsEqualIgnoringCase.php │ │ ├── IsEqualIgnoringWhiteSpace.php │ │ ├── MatchesPattern.php │ │ ├── StringContains.php │ │ ├── StringContainsIgnoringCase.php │ │ ├── StringContainsInOrder.php │ │ ├── StringEndsWith.php │ │ ├── StringStartsWith.php │ │ └── SubstringMatcher.php │ │ ├── Type │ │ ├── IsArray.php │ │ ├── IsBoolean.php │ │ ├── IsCallable.php │ │ ├── IsDouble.php │ │ ├── IsInteger.php │ │ ├── IsNumeric.php │ │ ├── IsObject.php │ │ ├── IsResource.php │ │ ├── IsScalar.php │ │ └── IsString.php │ │ ├── TypeSafeDiagnosingMatcher.php │ │ ├── TypeSafeMatcher.php │ │ ├── Util.php │ │ └── Xml │ │ └── HasXPath.php │ └── tests │ ├── Hamcrest │ ├── AbstractMatcherTest.php │ ├── Array │ │ ├── IsArrayContainingInAnyOrderTest.php │ │ ├── IsArrayContainingInOrderTest.php │ │ ├── IsArrayContainingKeyTest.php │ │ ├── IsArrayContainingKeyValuePairTest.php │ │ ├── IsArrayContainingTest.php │ │ ├── IsArrayTest.php │ │ └── IsArrayWithSizeTest.php │ ├── BaseMatcherTest.php │ ├── Collection │ │ ├── IsEmptyTraversableTest.php │ │ └── IsTraversableWithSizeTest.php │ ├── Core │ │ ├── AllOfTest.php │ │ ├── AnyOfTest.php │ │ ├── CombinableMatcherTest.php │ │ ├── DescribedAsTest.php │ │ ├── EveryTest.php │ │ ├── HasToStringTest.php │ │ ├── IsAnythingTest.php │ │ ├── IsCollectionContainingTest.php │ │ ├── IsEqualTest.php │ │ ├── IsIdenticalTest.php │ │ ├── IsInstanceOfTest.php │ │ ├── IsNotTest.php │ │ ├── IsNullTest.php │ │ ├── IsSameTest.php │ │ ├── IsTest.php │ │ ├── IsTypeOfTest.php │ │ ├── SampleBaseClass.php │ │ ├── SampleSubClass.php │ │ └── SetTest.php │ ├── FeatureMatcherTest.php │ ├── MatcherAssertTest.php │ ├── Number │ │ ├── IsCloseToTest.php │ │ └── OrderingComparisonTest.php │ ├── StringDescriptionTest.php │ ├── Text │ │ ├── IsEmptyStringTest.php │ │ ├── IsEqualIgnoringCaseTest.php │ │ ├── IsEqualIgnoringWhiteSpaceTest.php │ │ ├── MatchesPatternTest.php │ │ ├── StringContainsIgnoringCaseTest.php │ │ ├── StringContainsInOrderTest.php │ │ ├── StringContainsTest.php │ │ ├── StringEndsWithTest.php │ │ └── StringStartsWithTest.php │ ├── Type │ │ ├── IsArrayTest.php │ │ ├── IsBooleanTest.php │ │ ├── IsCallableTest.php │ │ ├── IsDoubleTest.php │ │ ├── IsIntegerTest.php │ │ ├── IsNumericTest.php │ │ ├── IsObjectTest.php │ │ ├── IsResourceTest.php │ │ ├── IsScalarTest.php │ │ └── IsStringTest.php │ ├── UtilTest.php │ └── Xml │ │ └── HasXPathTest.php │ ├── bootstrap.php │ └── phpunit.xml.dist ├── jakub-onderka ├── php-console-color │ ├── .gitignore │ ├── .travis.yml │ ├── build.xml │ ├── composer.json │ ├── example.php │ ├── phpunit.xml │ ├── src │ │ └── JakubOnderka │ │ │ └── PhpConsoleColor │ │ │ ├── ConsoleColor.php │ │ │ └── InvalidStyleException.php │ └── tests │ │ ├── JakubOnderka │ │ └── PhpConsoleColor │ │ │ └── ConsoleColorTest.php │ │ └── bootstrap.php └── php-console-highlighter │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── examples │ ├── snippet.php │ ├── whole_file.php │ └── whole_file_line_numbers.php │ ├── phpunit.xml │ ├── src │ └── JakubOnderka │ │ └── PhpConsoleHighlighter │ │ └── Highlighter.php │ └── tests │ ├── JakubOnderka │ └── PhpConsoleHighligter │ │ └── HigligterTest.php │ └── bootstrap.php ├── jeremeamia └── SuperClosure │ ├── LICENSE.md │ ├── composer.json │ └── src │ ├── Analyzer │ ├── AstAnalyzer.php │ ├── ClosureAnalyzer.php │ ├── Token.php │ ├── TokenAnalyzer.php │ └── Visitor │ │ ├── ClosureLocatorVisitor.php │ │ ├── MagicConstantVisitor.php │ │ └── ThisDetectorVisitor.php │ ├── Exception │ ├── ClosureAnalysisException.php │ ├── ClosureUnserializationException.php │ └── SuperClosureException.php │ ├── SerializableClosure.php │ ├── Serializer.php │ └── SerializerInterface.php ├── laracasts └── generators │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── composer.json │ ├── composer.lock │ ├── phpspec.yml │ ├── readme.md │ ├── spec │ └── Migrations │ │ ├── NameParserSpec.php │ │ ├── SchemaParserSpec.php │ │ └── SyntaxBuilderSpec.php │ └── src │ ├── Commands │ ├── MigrationMakeCommand.php │ ├── PivotMigrationMakeCommand.php │ └── SeedMakeCommand.php │ ├── GeneratorException.php │ ├── GeneratorsServiceProvider.php │ ├── Migrations │ ├── NameParser.php │ ├── SchemaParser.php │ └── SyntaxBuilder.php │ └── stubs │ ├── migration.stub │ ├── pivot.stub │ ├── schema-change.stub │ ├── schema-create.stub │ └── seed.stub ├── laravel └── framework │ ├── CONTRIBUTING.md │ ├── LICENSE.txt │ ├── composer.json │ ├── readme.md │ └── src │ └── Illuminate │ ├── Auth │ ├── Access │ │ ├── AuthorizationException.php │ │ ├── Gate.php │ │ ├── HandlesAuthorization.php │ │ └── Response.php │ ├── AuthManager.php │ ├── AuthServiceProvider.php │ ├── Authenticatable.php │ ├── Console │ │ ├── ClearResetsCommand.php │ │ ├── MakeAuthCommand.php │ │ └── stubs │ │ │ └── make │ │ │ ├── controllers │ │ │ └── HomeController.stub │ │ │ ├── routes.stub │ │ │ └── views │ │ │ ├── auth │ │ │ ├── emails │ │ │ │ └── password.stub │ │ │ ├── login.stub │ │ │ ├── passwords │ │ │ │ ├── email.stub │ │ │ │ └── reset.stub │ │ │ └── register.stub │ │ │ ├── home.stub │ │ │ ├── layouts │ │ │ └── app.stub │ │ │ └── welcome.stub │ ├── CreatesUserProviders.php │ ├── DatabaseUserProvider.php │ ├── EloquentUserProvider.php │ ├── Events │ │ ├── Attempting.php │ │ ├── Login.php │ │ └── Logout.php │ ├── GenericUser.php │ ├── GuardHelpers.php │ ├── Middleware │ │ └── AuthenticateWithBasicAuth.php │ ├── Passwords │ │ ├── CanResetPassword.php │ │ ├── DatabaseTokenRepository.php │ │ ├── PasswordBroker.php │ │ ├── PasswordBrokerManager.php │ │ ├── PasswordResetServiceProvider.php │ │ └── TokenRepositoryInterface.php │ ├── RequestGuard.php │ ├── SessionGuard.php │ ├── TokenGuard.php │ └── composer.json │ ├── Broadcasting │ ├── BroadcastEvent.php │ ├── BroadcastManager.php │ ├── BroadcastServiceProvider.php │ ├── Broadcasters │ │ ├── LogBroadcaster.php │ │ ├── PusherBroadcaster.php │ │ └── RedisBroadcaster.php │ └── composer.json │ ├── Bus │ ├── BusServiceProvider.php │ ├── Dispatcher.php │ ├── Queueable.php │ └── composer.json │ ├── Cache │ ├── ApcStore.php │ ├── ApcWrapper.php │ ├── ArrayStore.php │ ├── CacheManager.php │ ├── CacheServiceProvider.php │ ├── Console │ │ ├── CacheTableCommand.php │ │ ├── ClearCommand.php │ │ └── stubs │ │ │ └── cache.stub │ ├── DatabaseStore.php │ ├── Events │ │ ├── CacheHit.php │ │ ├── CacheMissed.php │ │ ├── KeyForgotten.php │ │ └── KeyWritten.php │ ├── FileStore.php │ ├── MemcachedConnector.php │ ├── MemcachedStore.php │ ├── NullStore.php │ ├── RateLimiter.php │ ├── RedisStore.php │ ├── RedisTaggedCache.php │ ├── Repository.php │ ├── RetrievesMultipleKeys.php │ ├── TagSet.php │ ├── TaggableStore.php │ ├── TaggedCache.php │ └── composer.json │ ├── Config │ ├── Repository.php │ └── composer.json │ ├── Console │ ├── AppNamespaceDetectorTrait.php │ ├── Application.php │ ├── Command.php │ ├── ConfirmableTrait.php │ ├── Events │ │ └── ArtisanStarting.php │ ├── GeneratorCommand.php │ ├── OutputStyle.php │ ├── Parser.php │ ├── ScheduleServiceProvider.php │ ├── Scheduling │ │ ├── CallbackEvent.php │ │ ├── Event.php │ │ ├── Schedule.php │ │ └── ScheduleRunCommand.php │ └── composer.json │ ├── Container │ ├── Container.php │ ├── ContextualBindingBuilder.php │ └── composer.json │ ├── Contracts │ ├── Auth │ │ ├── Access │ │ │ ├── Authorizable.php │ │ │ └── Gate.php │ │ ├── Authenticatable.php │ │ ├── CanResetPassword.php │ │ ├── Factory.php │ │ ├── Guard.php │ │ ├── PasswordBroker.php │ │ ├── PasswordBrokerFactory.php │ │ ├── Registrar.php │ │ ├── StatefulGuard.php │ │ ├── SupportsBasicAuth.php │ │ └── UserProvider.php │ ├── Broadcasting │ │ ├── Broadcaster.php │ │ ├── Factory.php │ │ ├── ShouldBroadcast.php │ │ └── ShouldBroadcastNow.php │ ├── Bus │ │ ├── Dispatcher.php │ │ ├── QueueingDispatcher.php │ │ └── SelfHandling.php │ ├── Cache │ │ ├── Factory.php │ │ ├── Repository.php │ │ └── Store.php │ ├── Config │ │ └── Repository.php │ ├── Console │ │ ├── Application.php │ │ └── Kernel.php │ ├── Container │ │ ├── BindingResolutionException.php │ │ ├── Container.php │ │ └── ContextualBindingBuilder.php │ ├── Cookie │ │ ├── Factory.php │ │ └── QueueingFactory.php │ ├── Database │ │ ├── ModelIdentifier.php │ │ └── Scope.php │ ├── Debug │ │ └── ExceptionHandler.php │ ├── Encryption │ │ ├── DecryptException.php │ │ ├── EncryptException.php │ │ └── Encrypter.php │ ├── Events │ │ └── Dispatcher.php │ ├── Filesystem │ │ ├── Cloud.php │ │ ├── Factory.php │ │ ├── FileNotFoundException.php │ │ └── Filesystem.php │ ├── Foundation │ │ └── Application.php │ ├── Hashing │ │ └── Hasher.php │ ├── Http │ │ └── Kernel.php │ ├── Logging │ │ └── Log.php │ ├── Mail │ │ ├── MailQueue.php │ │ └── Mailer.php │ ├── Pagination │ │ ├── LengthAwarePaginator.php │ │ ├── Paginator.php │ │ └── Presenter.php │ ├── Pipeline │ │ ├── Hub.php │ │ └── Pipeline.php │ ├── Queue │ │ ├── EntityNotFoundException.php │ │ ├── EntityResolver.php │ │ ├── Factory.php │ │ ├── Job.php │ │ ├── Monitor.php │ │ ├── Queue.php │ │ ├── QueueableEntity.php │ │ └── ShouldQueue.php │ ├── Redis │ │ └── Database.php │ ├── Routing │ │ ├── Registrar.php │ │ ├── ResponseFactory.php │ │ ├── UrlGenerator.php │ │ └── UrlRoutable.php │ ├── Support │ │ ├── Arrayable.php │ │ ├── Htmlable.php │ │ ├── Jsonable.php │ │ ├── MessageBag.php │ │ ├── MessageProvider.php │ │ └── Renderable.php │ ├── Validation │ │ ├── Factory.php │ │ ├── UnauthorizedException.php │ │ ├── ValidatesWhenResolved.php │ │ ├── ValidationException.php │ │ └── Validator.php │ ├── View │ │ ├── Factory.php │ │ └── View.php │ └── composer.json │ ├── Cookie │ ├── CookieJar.php │ ├── CookieServiceProvider.php │ ├── Middleware │ │ ├── AddQueuedCookiesToResponse.php │ │ └── EncryptCookies.php │ └── composer.json │ ├── Database │ ├── Capsule │ │ └── Manager.php │ ├── Connection.php │ ├── ConnectionInterface.php │ ├── ConnectionResolver.php │ ├── ConnectionResolverInterface.php │ ├── Connectors │ │ ├── ConnectionFactory.php │ │ ├── Connector.php │ │ ├── ConnectorInterface.php │ │ ├── MySqlConnector.php │ │ ├── PostgresConnector.php │ │ ├── SQLiteConnector.php │ │ └── SqlServerConnector.php │ ├── Console │ │ ├── Migrations │ │ │ ├── BaseCommand.php │ │ │ ├── InstallCommand.php │ │ │ ├── MigrateCommand.php │ │ │ ├── MigrateMakeCommand.php │ │ │ ├── RefreshCommand.php │ │ │ ├── ResetCommand.php │ │ │ ├── RollbackCommand.php │ │ │ └── StatusCommand.php │ │ └── Seeds │ │ │ ├── SeedCommand.php │ │ │ ├── SeederMakeCommand.php │ │ │ └── stubs │ │ │ └── seeder.stub │ ├── DatabaseManager.php │ ├── DatabaseServiceProvider.php │ ├── DetectsLostConnections.php │ ├── Eloquent │ │ ├── Builder.php │ │ ├── Collection.php │ │ ├── Factory.php │ │ ├── FactoryBuilder.php │ │ ├── MassAssignmentException.php │ │ ├── Model.php │ │ ├── ModelNotFoundException.php │ │ ├── QueueEntityResolver.php │ │ ├── Relations │ │ │ ├── BelongsTo.php │ │ │ ├── BelongsToMany.php │ │ │ ├── HasMany.php │ │ │ ├── HasManyThrough.php │ │ │ ├── HasOne.php │ │ │ ├── HasOneOrMany.php │ │ │ ├── MorphMany.php │ │ │ ├── MorphOne.php │ │ │ ├── MorphOneOrMany.php │ │ │ ├── MorphPivot.php │ │ │ ├── MorphTo.php │ │ │ ├── MorphToMany.php │ │ │ ├── Pivot.php │ │ │ └── Relation.php │ │ ├── Scope.php │ │ ├── ScopeInterface.php │ │ ├── SoftDeletes.php │ │ └── SoftDeletingScope.php │ ├── Events │ │ ├── ConnectionEvent.php │ │ ├── QueryExecuted.php │ │ ├── TransactionBeginning.php │ │ ├── TransactionCommitted.php │ │ └── TransactionRolledBack.php │ ├── Grammar.php │ ├── MigrationServiceProvider.php │ ├── Migrations │ │ ├── DatabaseMigrationRepository.php │ │ ├── Migration.php │ │ ├── MigrationCreator.php │ │ ├── MigrationRepositoryInterface.php │ │ ├── Migrator.php │ │ └── stubs │ │ │ ├── blank.stub │ │ │ ├── create.stub │ │ │ └── update.stub │ ├── MySqlConnection.php │ ├── PostgresConnection.php │ ├── Query │ │ ├── Builder.php │ │ ├── Expression.php │ │ ├── Grammars │ │ │ ├── Grammar.php │ │ │ ├── MySqlGrammar.php │ │ │ ├── PostgresGrammar.php │ │ │ ├── SQLiteGrammar.php │ │ │ └── SqlServerGrammar.php │ │ ├── JoinClause.php │ │ └── Processors │ │ │ ├── MySqlProcessor.php │ │ │ ├── PostgresProcessor.php │ │ │ ├── Processor.php │ │ │ ├── SQLiteProcessor.php │ │ │ └── SqlServerProcessor.php │ ├── QueryException.php │ ├── README.md │ ├── SQLiteConnection.php │ ├── Schema │ │ ├── Blueprint.php │ │ ├── Builder.php │ │ ├── Grammars │ │ │ ├── Grammar.php │ │ │ ├── MySqlGrammar.php │ │ │ ├── PostgresGrammar.php │ │ │ ├── SQLiteGrammar.php │ │ │ └── SqlServerGrammar.php │ │ └── MySqlBuilder.php │ ├── SeedServiceProvider.php │ ├── Seeder.php │ ├── SqlServerConnection.php │ └── composer.json │ ├── Encryption │ ├── BaseEncrypter.php │ ├── Encrypter.php │ ├── EncryptionServiceProvider.php │ ├── McryptEncrypter.php │ └── composer.json │ ├── Events │ ├── CallQueuedHandler.php │ ├── Dispatcher.php │ ├── EventServiceProvider.php │ └── composer.json │ ├── Filesystem │ ├── ClassFinder.php │ ├── Filesystem.php │ ├── FilesystemAdapter.php │ ├── FilesystemManager.php │ ├── FilesystemServiceProvider.php │ └── composer.json │ ├── Foundation │ ├── AliasLoader.php │ ├── Application.php │ ├── Auth │ │ ├── Access │ │ │ ├── Authorizable.php │ │ │ └── AuthorizesRequests.php │ │ ├── AuthenticatesAndRegistersUsers.php │ │ ├── AuthenticatesUsers.php │ │ ├── RedirectsUsers.php │ │ ├── RegistersUsers.php │ │ ├── ResetsPasswords.php │ │ ├── ThrottlesLogins.php │ │ └── User.php │ ├── Bootstrap │ │ ├── BootProviders.php │ │ ├── ConfigureLogging.php │ │ ├── DetectEnvironment.php │ │ ├── HandleExceptions.php │ │ ├── LoadConfiguration.php │ │ ├── RegisterFacades.php │ │ ├── RegisterProviders.php │ │ └── SetRequestForConsole.php │ ├── Bus │ │ └── DispatchesJobs.php │ ├── Console │ │ ├── AppNameCommand.php │ │ ├── ClearCompiledCommand.php │ │ ├── ConfigCacheCommand.php │ │ ├── ConfigClearCommand.php │ │ ├── ConsoleMakeCommand.php │ │ ├── DownCommand.php │ │ ├── EnvironmentCommand.php │ │ ├── EventGenerateCommand.php │ │ ├── EventMakeCommand.php │ │ ├── IlluminateCaster.php │ │ ├── JobMakeCommand.php │ │ ├── Kernel.php │ │ ├── KeyGenerateCommand.php │ │ ├── ListenerMakeCommand.php │ │ ├── ModelMakeCommand.php │ │ ├── Optimize │ │ │ └── config.php │ │ ├── OptimizeCommand.php │ │ ├── PolicyMakeCommand.php │ │ ├── ProviderMakeCommand.php │ │ ├── QueuedJob.php │ │ ├── RequestMakeCommand.php │ │ ├── RouteCacheCommand.php │ │ ├── RouteClearCommand.php │ │ ├── RouteListCommand.php │ │ ├── ServeCommand.php │ │ ├── TestMakeCommand.php │ │ ├── TinkerCommand.php │ │ ├── UpCommand.php │ │ ├── VendorPublishCommand.php │ │ ├── ViewClearCommand.php │ │ └── stubs │ │ │ ├── console.stub │ │ │ ├── event-handler-queued.stub │ │ │ ├── event-handler.stub │ │ │ ├── event.stub │ │ │ ├── job-queued.stub │ │ │ ├── job.stub │ │ │ ├── listener-queued.stub │ │ │ ├── listener.stub │ │ │ ├── model.stub │ │ │ ├── policy.stub │ │ │ ├── provider.stub │ │ │ ├── request.stub │ │ │ ├── routes.stub │ │ │ └── test.stub │ ├── EnvironmentDetector.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── FormRequest.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── CheckForMaintenanceMode.php │ │ │ ├── VerifyCsrfToken.php │ │ │ └── VerifyPostSize.php │ ├── Inspiring.php │ ├── ProviderRepository.php │ ├── Providers │ │ ├── ArtisanServiceProvider.php │ │ ├── ComposerServiceProvider.php │ │ ├── ConsoleSupportServiceProvider.php │ │ └── FoundationServiceProvider.php │ ├── Support │ │ └── Providers │ │ │ ├── AuthServiceProvider.php │ │ │ ├── EventServiceProvider.php │ │ │ └── RouteServiceProvider.php │ ├── Testing │ │ ├── Concerns │ │ │ ├── ImpersonatesUsers.php │ │ │ ├── InteractsWithConsole.php │ │ │ ├── InteractsWithContainer.php │ │ │ ├── InteractsWithDatabase.php │ │ │ ├── InteractsWithPages.php │ │ │ ├── InteractsWithSession.php │ │ │ ├── MakesHttpRequests.php │ │ │ └── MocksApplicationServices.php │ │ ├── DatabaseMigrations.php │ │ ├── DatabaseTransactions.php │ │ ├── HttpException.php │ │ ├── TestCase.php │ │ ├── WithoutEvents.php │ │ └── WithoutMiddleware.php │ ├── Validation │ │ ├── ValidatesRequests.php │ │ └── ValidationException.php │ └── helpers.php │ ├── Hashing │ ├── BcryptHasher.php │ ├── HashServiceProvider.php │ └── composer.json │ ├── Http │ ├── Exception │ │ ├── HttpResponseException.php │ │ └── PostTooLargeException.php │ ├── JsonResponse.php │ ├── Middleware │ │ ├── CheckResponseForModifications.php │ │ └── FrameGuard.php │ ├── RedirectResponse.php │ ├── Request.php │ ├── Response.php │ ├── ResponseTrait.php │ └── composer.json │ ├── Log │ ├── Writer.php │ └── composer.json │ ├── Mail │ ├── Events │ │ └── MessageSending.php │ ├── MailServiceProvider.php │ ├── Mailer.php │ ├── Message.php │ ├── Transport │ │ ├── LogTransport.php │ │ ├── MailgunTransport.php │ │ ├── MandrillTransport.php │ │ ├── SesTransport.php │ │ └── Transport.php │ ├── TransportManager.php │ └── composer.json │ ├── Pagination │ ├── AbstractPaginator.php │ ├── BootstrapThreeNextPreviousButtonRendererTrait.php │ ├── BootstrapThreePresenter.php │ ├── LengthAwarePaginator.php │ ├── PaginationServiceProvider.php │ ├── Paginator.php │ ├── SimpleBootstrapThreePresenter.php │ ├── UrlWindow.php │ ├── UrlWindowPresenterTrait.php │ └── composer.json │ ├── Pipeline │ ├── Hub.php │ ├── Pipeline.php │ ├── PipelineServiceProvider.php │ └── composer.json │ ├── Queue │ ├── BeanstalkdQueue.php │ ├── CallQueuedHandler.php │ ├── Capsule │ │ └── Manager.php │ ├── Connectors │ │ ├── BeanstalkdConnector.php │ │ ├── ConnectorInterface.php │ │ ├── DatabaseConnector.php │ │ ├── NullConnector.php │ │ ├── RedisConnector.php │ │ ├── SqsConnector.php │ │ └── SyncConnector.php │ ├── Console │ │ ├── FailedTableCommand.php │ │ ├── FlushFailedCommand.php │ │ ├── ForgetFailedCommand.php │ │ ├── ListFailedCommand.php │ │ ├── ListenCommand.php │ │ ├── RestartCommand.php │ │ ├── RetryCommand.php │ │ ├── TableCommand.php │ │ ├── WorkCommand.php │ │ └── stubs │ │ │ ├── failed_jobs.stub │ │ │ └── jobs.stub │ ├── ConsoleServiceProvider.php │ ├── DatabaseQueue.php │ ├── Events │ │ ├── JobFailed.php │ │ ├── JobProcessed.php │ │ └── WorkerStopping.php │ ├── Failed │ │ ├── DatabaseFailedJobProvider.php │ │ ├── FailedJobProviderInterface.php │ │ └── NullFailedJobProvider.php │ ├── IlluminateQueueClosure.php │ ├── InteractsWithQueue.php │ ├── Jobs │ │ ├── BeanstalkdJob.php │ │ ├── DatabaseJob.php │ │ ├── Job.php │ │ ├── RedisJob.php │ │ ├── SqsJob.php │ │ └── SyncJob.php │ ├── Listener.php │ ├── NullQueue.php │ ├── Queue.php │ ├── QueueManager.php │ ├── QueueServiceProvider.php │ ├── README.md │ ├── RedisQueue.php │ ├── SerializesModels.php │ ├── SqsQueue.php │ ├── SyncQueue.php │ ├── Worker.php │ └── composer.json │ ├── Redis │ ├── Database.php │ ├── RedisServiceProvider.php │ └── composer.json │ ├── Routing │ ├── Console │ │ ├── ControllerMakeCommand.php │ │ ├── MiddlewareMakeCommand.php │ │ └── stubs │ │ │ ├── controller.plain.stub │ │ │ ├── controller.stub │ │ │ └── middleware.stub │ ├── Controller.php │ ├── ControllerDispatcher.php │ ├── ControllerInspector.php │ ├── Events │ │ └── RouteMatched.php │ ├── Exceptions │ │ └── UrlGenerationException.php │ ├── Matching │ │ ├── HostValidator.php │ │ ├── MethodValidator.php │ │ ├── SchemeValidator.php │ │ ├── UriValidator.php │ │ └── ValidatorInterface.php │ ├── Middleware │ │ └── ThrottleRequests.php │ ├── Pipeline.php │ ├── Redirector.php │ ├── ResourceRegistrar.php │ ├── ResponseFactory.php │ ├── Route.php │ ├── RouteCollection.php │ ├── RouteDependencyResolverTrait.php │ ├── Router.php │ ├── RoutingServiceProvider.php │ ├── UrlGenerator.php │ └── composer.json │ ├── Session │ ├── CacheBasedSessionHandler.php │ ├── Console │ │ ├── SessionTableCommand.php │ │ └── stubs │ │ │ └── database.stub │ ├── CookieSessionHandler.php │ ├── DatabaseSessionHandler.php │ ├── EncryptedStore.php │ ├── ExistenceAwareInterface.php │ ├── FileSessionHandler.php │ ├── LegacyDatabaseSessionHandler.php │ ├── Middleware │ │ └── StartSession.php │ ├── SessionInterface.php │ ├── SessionManager.php │ ├── SessionServiceProvider.php │ ├── Store.php │ ├── TokenMismatchException.php │ └── composer.json │ ├── Support │ ├── AggregateServiceProvider.php │ ├── Arr.php │ ├── ClassLoader.php │ ├── Collection.php │ ├── Composer.php │ ├── Debug │ │ ├── Dumper.php │ │ └── HtmlDumper.php │ ├── Facades │ │ ├── App.php │ │ ├── Artisan.php │ │ ├── Auth.php │ │ ├── Blade.php │ │ ├── Bus.php │ │ ├── Cache.php │ │ ├── Config.php │ │ ├── Cookie.php │ │ ├── Crypt.php │ │ ├── DB.php │ │ ├── Event.php │ │ ├── Facade.php │ │ ├── File.php │ │ ├── Gate.php │ │ ├── Hash.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Log.php │ │ ├── Mail.php │ │ ├── Password.php │ │ ├── Queue.php │ │ ├── Redirect.php │ │ ├── Redis.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Route.php │ │ ├── Schema.php │ │ ├── Session.php │ │ ├── Storage.php │ │ ├── URL.php │ │ ├── Validator.php │ │ └── View.php │ ├── Fluent.php │ ├── HtmlString.php │ ├── Manager.php │ ├── MessageBag.php │ ├── NamespacedItemResolver.php │ ├── Pluralizer.php │ ├── ServiceProvider.php │ ├── Str.php │ ├── Traits │ │ ├── CapsuleManagerTrait.php │ │ └── Macroable.php │ ├── ViewErrorBag.php │ ├── composer.json │ └── helpers.php │ ├── Translation │ ├── ArrayLoader.php │ ├── FileLoader.php │ ├── LoaderInterface.php │ ├── TranslationServiceProvider.php │ ├── Translator.php │ └── composer.json │ ├── Validation │ ├── DatabasePresenceVerifier.php │ ├── Factory.php │ ├── PresenceVerifierInterface.php │ ├── ValidatesWhenResolvedTrait.php │ ├── ValidationServiceProvider.php │ ├── Validator.php │ └── composer.json │ └── View │ ├── Compilers │ ├── BladeCompiler.php │ ├── Compiler.php │ └── CompilerInterface.php │ ├── Engines │ ├── CompilerEngine.php │ ├── Engine.php │ ├── EngineInterface.php │ ├── EngineResolver.php │ └── PhpEngine.php │ ├── Expression.php │ ├── Factory.php │ ├── FileViewFinder.php │ ├── Middleware │ └── ShareErrorsFromSession.php │ ├── View.php │ ├── ViewFinderInterface.php │ ├── ViewServiceProvider.php │ └── composer.json ├── laravelcollective └── html │ ├── CONTRIBUTING.md │ ├── LICENSE.txt │ ├── composer.json │ ├── readme.md │ └── src │ ├── Componentable.php │ ├── Eloquent │ └── FormAccessible.php │ ├── FormBuilder.php │ ├── FormFacade.php │ ├── HtmlBuilder.php │ ├── HtmlFacade.php │ ├── HtmlServiceProvider.php │ └── helpers.php ├── league └── flysystem │ ├── LICENSE │ ├── composer.json │ └── src │ ├── Adapter │ ├── AbstractAdapter.php │ ├── AbstractFtpAdapter.php │ ├── Ftp.php │ ├── Ftpd.php │ ├── Local.php │ ├── NullAdapter.php │ ├── Polyfill │ │ ├── NotSupportingVisibilityTrait.php │ │ ├── StreamedCopyTrait.php │ │ ├── StreamedReadingTrait.php │ │ ├── StreamedTrait.php │ │ └── StreamedWritingTrait.php │ └── SynologyFtp.php │ ├── AdapterInterface.php │ ├── Config.php │ ├── ConfigAwareTrait.php │ ├── Directory.php │ ├── Exception.php │ ├── File.php │ ├── FileExistsException.php │ ├── FileNotFoundException.php │ ├── Filesystem.php │ ├── FilesystemInterface.php │ ├── Handler.php │ ├── MountManager.php │ ├── NotSupportedException.php │ ├── Plugin │ ├── AbstractPlugin.php │ ├── EmptyDir.php │ ├── GetWithMetadata.php │ ├── ListFiles.php │ ├── ListPaths.php │ ├── ListWith.php │ ├── PluggableTrait.php │ └── PluginNotFoundException.php │ ├── PluginInterface.php │ ├── ReadInterface.php │ ├── RootViolationException.php │ ├── UnreadableFileException.php │ ├── Util.php │ └── Util │ ├── ContentListingFormatter.php │ └── MimeType.php ├── micc83 └── rooles │ ├── .editorconfig │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── composer.json │ ├── phpunit.xml │ ├── readme.md │ ├── src │ ├── BaseMiddleware.php │ ├── Contracts │ │ ├── Permissions.php │ │ ├── Role.php │ │ └── RoleRepository.php │ ├── ForbiddenHttpException.php │ ├── Helpers.php │ ├── PermissionQuery.php │ ├── Permissions.php │ ├── PermsMiddleware.php │ ├── Role.php │ ├── RoleManager.php │ ├── RoleMiddleware.php │ ├── RoolesServiceProvider.php │ ├── Traits │ │ └── UserRole.php │ └── assets │ │ ├── config.php │ │ ├── migration.php │ │ └── views │ │ └── 403.blade.php │ └── tests │ ├── BaseCase.php │ ├── PermissionsTest.php │ ├── PermsMiddlewareTest.php │ ├── RoleMiddlewareTest.php │ ├── RoleRepoTest.php │ ├── RoleTest.php │ ├── RoolesServiceProviderTest.php │ ├── UserRoleTest.php │ └── mocks │ └── UserMock.php ├── mockery └── mockery │ ├── .coveralls.yml │ ├── .gitignore │ ├── .php_cs │ ├── .scrutinizer.yml │ ├── .styleci.yml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── docs │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── conf.py │ ├── cookbook │ │ ├── default_expectations.rst │ │ ├── detecting_mock_objects.rst │ │ ├── index.rst │ │ ├── map.rst.inc │ │ └── mocking_hard_dependencies.rst │ ├── getting_started │ │ ├── index.rst │ │ ├── installation.rst │ │ ├── map.rst.inc │ │ ├── simple_example.rst │ │ └── upgrading.rst │ ├── index.rst │ └── reference │ │ ├── argument_validation.rst │ │ ├── demeter_chains.rst │ │ ├── expectations.rst │ │ ├── final_methods_classes.rst │ │ ├── index.rst │ │ ├── instance_mocking.rst │ │ ├── magic_methods.rst │ │ ├── map.rst.inc │ │ ├── mockery │ │ ├── configuration.rst │ │ ├── exceptions.rst │ │ ├── gotchas.rst │ │ ├── index.rst │ │ └── reserved_method_names.rst │ │ ├── object_recording.rst │ │ ├── partial_mocks.rst │ │ ├── pass_by_reference_behaviours.rst │ │ ├── phpunit_integration.rst │ │ ├── public_properties.rst │ │ ├── public_static_properties.rst │ │ ├── quick_examples.rst │ │ └── startup_methods.rst │ ├── examples │ └── starship │ │ ├── Bootstrap.php │ │ ├── Starship.php │ │ ├── StarshipTest.php │ │ └── phpunit.xml │ ├── library │ ├── Mockery.php │ └── Mockery │ │ ├── Adapter │ │ └── Phpunit │ │ │ ├── MockeryPHPUnitIntegration.php │ │ │ ├── MockeryTestCase.php │ │ │ └── TestListener.php │ │ ├── CompositeExpectation.php │ │ ├── Configuration.php │ │ ├── Container.php │ │ ├── CountValidator │ │ ├── AtLeast.php │ │ ├── AtMost.php │ │ ├── CountValidatorAbstract.php │ │ ├── Exact.php │ │ └── Exception.php │ │ ├── Exception.php │ │ ├── Exception │ │ ├── InvalidCountException.php │ │ ├── InvalidOrderException.php │ │ ├── NoMatchingExpectationException.php │ │ └── RuntimeException.php │ │ ├── Expectation.php │ │ ├── ExpectationDirector.php │ │ ├── ExpectationInterface.php │ │ ├── Generator │ │ ├── CachingGenerator.php │ │ ├── DefinedTargetClass.php │ │ ├── Generator.php │ │ ├── Method.php │ │ ├── MockConfiguration.php │ │ ├── MockConfigurationBuilder.php │ │ ├── MockDefinition.php │ │ ├── Parameter.php │ │ ├── StringManipulation │ │ │ └── Pass │ │ │ │ ├── CallTypeHintPass.php │ │ │ │ ├── ClassNamePass.php │ │ │ │ ├── ClassPass.php │ │ │ │ ├── InstanceMockPass.php │ │ │ │ ├── InterfacePass.php │ │ │ │ ├── MethodDefinitionPass.php │ │ │ │ ├── Pass.php │ │ │ │ ├── RemoveBuiltinMethodsThatAreFinalPass.php │ │ │ │ └── RemoveUnserializeForInternalSerializableClassesPass.php │ │ ├── StringManipulationGenerator.php │ │ ├── TargetClass.php │ │ └── UndefinedTargetClass.php │ │ ├── Instantiator.php │ │ ├── Loader.php │ │ ├── Loader │ │ ├── EvalLoader.php │ │ ├── Loader.php │ │ └── RequireLoader.php │ │ ├── Matcher │ │ ├── Any.php │ │ ├── AnyOf.php │ │ ├── Closure.php │ │ ├── Contains.php │ │ ├── Ducktype.php │ │ ├── HasKey.php │ │ ├── HasValue.php │ │ ├── MatcherAbstract.php │ │ ├── MustBe.php │ │ ├── Not.php │ │ ├── NotAnyOf.php │ │ ├── Subset.php │ │ └── Type.php │ │ ├── MethodCall.php │ │ ├── Mock.php │ │ ├── MockInterface.php │ │ ├── ReceivedMethodCalls.php │ │ ├── Recorder.php │ │ ├── Undefined.php │ │ ├── VerificationDirector.php │ │ └── VerificationExpectation.php │ ├── package.xml │ ├── phpunit.xml.dist │ ├── tests │ ├── Bootstrap.php │ └── Mockery │ │ ├── AdhocTest.php │ │ ├── ContainerTest.php │ │ ├── DemeterChainTest.php │ │ ├── ExpectationTest.php │ │ ├── Generator │ │ ├── DefinedTargetClassTest.php │ │ ├── MockConfigurationTest.php │ │ └── StringManipulation │ │ │ └── Pass │ │ │ ├── CallTypeHintPassTest.php │ │ │ ├── ClassNamePassTest.php │ │ │ ├── InstanceMockPassTest.php │ │ │ └── InterfacePassTest.php │ │ ├── HamcrestExpectationTest.php │ │ ├── Loader │ │ ├── EvalLoaderTest.php │ │ ├── LoaderTestCase.php │ │ └── RequireLoaderTest.php │ │ ├── LoaderTest.php │ │ ├── MockClassWithFinalWakeupTest.php │ │ ├── MockClassWithUnknownTypeHintTest.php │ │ ├── MockTest.php │ │ ├── MockeryCanMockMultipleInterfacesWhichOverlapTest.php │ │ ├── MockingProtectedMethodsTest.php │ │ ├── MockingVariadicArgumentsTest.php │ │ ├── NamedMockTest.php │ │ ├── RecorderTest.php │ │ ├── SpyTest.php │ │ ├── Test │ │ └── Generator │ │ │ └── MockConfigurationBuilderTest.php │ │ ├── WithFormatterExpectationTest.php │ │ └── _files │ │ └── file.txt │ └── travis │ ├── after_script.sh │ ├── before_script.sh │ ├── extra.ini │ ├── install.sh │ └── script.sh ├── monolog └── monolog │ ├── .php_cs │ ├── CHANGELOG.mdown │ ├── LICENSE │ ├── README.mdown │ ├── composer.json │ ├── doc │ ├── 01-usage.md │ ├── 02-handlers-formatters-processors.md │ ├── 03-utilities.md │ ├── 04-extending.md │ └── sockets.md │ ├── phpunit.xml.dist │ ├── src │ └── Monolog │ │ ├── ErrorHandler.php │ │ ├── Formatter │ │ ├── ChromePHPFormatter.php │ │ ├── ElasticaFormatter.php │ │ ├── FlowdockFormatter.php │ │ ├── FormatterInterface.php │ │ ├── GelfMessageFormatter.php │ │ ├── HtmlFormatter.php │ │ ├── JsonFormatter.php │ │ ├── LineFormatter.php │ │ ├── LogglyFormatter.php │ │ ├── LogstashFormatter.php │ │ ├── MongoDBFormatter.php │ │ ├── NormalizerFormatter.php │ │ ├── ScalarFormatter.php │ │ └── WildfireFormatter.php │ │ ├── Handler │ │ ├── AbstractHandler.php │ │ ├── AbstractProcessingHandler.php │ │ ├── AbstractSyslogHandler.php │ │ ├── AmqpHandler.php │ │ ├── BrowserConsoleHandler.php │ │ ├── BufferHandler.php │ │ ├── ChromePHPHandler.php │ │ ├── CouchDBHandler.php │ │ ├── CubeHandler.php │ │ ├── Curl │ │ │ └── Util.php │ │ ├── DoctrineCouchDBHandler.php │ │ ├── DynamoDbHandler.php │ │ ├── ElasticSearchHandler.php │ │ ├── ErrorLogHandler.php │ │ ├── FilterHandler.php │ │ ├── FingersCrossed │ │ │ ├── ActivationStrategyInterface.php │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ └── ErrorLevelActivationStrategy.php │ │ ├── FingersCrossedHandler.php │ │ ├── FirePHPHandler.php │ │ ├── FleepHookHandler.php │ │ ├── FlowdockHandler.php │ │ ├── GelfHandler.php │ │ ├── GroupHandler.php │ │ ├── HandlerInterface.php │ │ ├── HipChatHandler.php │ │ ├── IFTTTHandler.php │ │ ├── LogEntriesHandler.php │ │ ├── LogglyHandler.php │ │ ├── MailHandler.php │ │ ├── MandrillHandler.php │ │ ├── MissingExtensionException.php │ │ ├── MongoDBHandler.php │ │ ├── NativeMailerHandler.php │ │ ├── NewRelicHandler.php │ │ ├── NullHandler.php │ │ ├── PHPConsoleHandler.php │ │ ├── PsrHandler.php │ │ ├── PushoverHandler.php │ │ ├── RavenHandler.php │ │ ├── RedisHandler.php │ │ ├── RollbarHandler.php │ │ ├── RotatingFileHandler.php │ │ ├── SamplingHandler.php │ │ ├── SlackHandler.php │ │ ├── SocketHandler.php │ │ ├── StreamHandler.php │ │ ├── SwiftMailerHandler.php │ │ ├── SyslogHandler.php │ │ ├── SyslogUdp │ │ │ └── UdpSocket.php │ │ ├── SyslogUdpHandler.php │ │ ├── TestHandler.php │ │ ├── WhatFailureGroupHandler.php │ │ └── ZendMonitorHandler.php │ │ ├── Logger.php │ │ ├── Processor │ │ ├── GitProcessor.php │ │ ├── IntrospectionProcessor.php │ │ ├── MemoryPeakUsageProcessor.php │ │ ├── MemoryProcessor.php │ │ ├── MemoryUsageProcessor.php │ │ ├── ProcessIdProcessor.php │ │ ├── PsrLogMessageProcessor.php │ │ ├── TagProcessor.php │ │ ├── UidProcessor.php │ │ └── WebProcessor.php │ │ └── Registry.php │ └── tests │ └── Monolog │ ├── ErrorHandlerTest.php │ ├── Formatter │ ├── ChromePHPFormatterTest.php │ ├── ElasticaFormatterTest.php │ ├── FlowdockFormatterTest.php │ ├── GelfMessageFormatterTest.php │ ├── JsonFormatterTest.php │ ├── LineFormatterTest.php │ ├── LogglyFormatterTest.php │ ├── LogstashFormatterTest.php │ ├── MongoDBFormatterTest.php │ ├── NormalizerFormatterTest.php │ ├── ScalarFormatterTest.php │ └── WildfireFormatterTest.php │ ├── Handler │ ├── AbstractHandlerTest.php │ ├── AbstractProcessingHandlerTest.php │ ├── AmqpHandlerTest.php │ ├── BrowserConsoleHandlerTest.php │ ├── BufferHandlerTest.php │ ├── ChromePHPHandlerTest.php │ ├── CouchDBHandlerTest.php │ ├── DoctrineCouchDBHandlerTest.php │ ├── DynamoDbHandlerTest.php │ ├── ElasticSearchHandlerTest.php │ ├── ErrorLogHandlerTest.php │ ├── FilterHandlerTest.php │ ├── FingersCrossedHandlerTest.php │ ├── FirePHPHandlerTest.php │ ├── Fixtures │ │ └── .gitkeep │ ├── FleepHookHandlerTest.php │ ├── FlowdockHandlerTest.php │ ├── GelfHandlerLegacyTest.php │ ├── GelfHandlerTest.php │ ├── GelfMockMessagePublisher.php │ ├── GroupHandlerTest.php │ ├── HipChatHandlerTest.php │ ├── LogEntriesHandlerTest.php │ ├── MailHandlerTest.php │ ├── MockRavenClient.php │ ├── MongoDBHandlerTest.php │ ├── NativeMailerHandlerTest.php │ ├── NewRelicHandlerTest.php │ ├── NullHandlerTest.php │ ├── PHPConsoleHandlerTest.php │ ├── PsrHandlerTest.php │ ├── PushoverHandlerTest.php │ ├── RavenHandlerTest.php │ ├── RedisHandlerTest.php │ ├── RotatingFileHandlerTest.php │ ├── SamplingHandlerTest.php │ ├── SlackHandlerTest.php │ ├── SocketHandlerTest.php │ ├── StreamHandlerTest.php │ ├── SwiftMailerHandlerTest.php │ ├── SyslogHandlerTest.php │ ├── SyslogUdpHandlerTest.php │ ├── TestHandlerTest.php │ ├── UdpSocketTest.php │ ├── WhatFailureGroupHandlerTest.php │ └── ZendMonitorHandlerTest.php │ ├── LoggerTest.php │ ├── Processor │ ├── GitProcessorTest.php │ ├── IntrospectionProcessorTest.php │ ├── MemoryPeakUsageProcessorTest.php │ ├── MemoryUsageProcessorTest.php │ ├── ProcessIdProcessorTest.php │ ├── PsrLogMessageProcessorTest.php │ ├── TagProcessorTest.php │ ├── UidProcessorTest.php │ └── WebProcessorTest.php │ ├── PsrLogCompatTest.php │ ├── RegistryTest.php │ └── TestCase.php ├── mtdowling └── cron-expression │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ └── Cron │ │ ├── AbstractField.php │ │ ├── CronExpression.php │ │ ├── DayOfMonthField.php │ │ ├── DayOfWeekField.php │ │ ├── FieldFactory.php │ │ ├── FieldInterface.php │ │ ├── HoursField.php │ │ ├── MinutesField.php │ │ ├── MonthField.php │ │ └── YearField.php │ └── tests │ └── Cron │ ├── AbstractFieldTest.php │ ├── CronExpressionTest.php │ ├── DayOfMonthFieldTest.php │ ├── DayOfWeekFieldTest.php │ ├── FieldFactoryTest.php │ ├── HoursFieldTest.php │ ├── MinutesFieldTest.php │ ├── MonthFieldTest.php │ └── YearFieldTest.php ├── nesbot └── carbon │ ├── LICENSE │ ├── composer.json │ ├── readme.md │ └── src │ └── Carbon │ ├── Carbon.php │ ├── CarbonInterval.php │ └── Lang │ ├── af.php │ ├── ar.php │ ├── az.php │ ├── bg.php │ ├── bn.php │ ├── ca.php │ ├── cs.php │ ├── da.php │ ├── de.php │ ├── el.php │ ├── en.php │ ├── eo.php │ ├── es.php │ ├── et.php │ ├── eu.php │ ├── fa.php │ ├── fi.php │ ├── fo.php │ ├── fr.php │ ├── he.php │ ├── hr.php │ ├── hu.php │ ├── id.php │ ├── it.php │ ├── ja.php │ ├── ko.php │ ├── lt.php │ ├── lv.php │ ├── ms.php │ ├── nl.php │ ├── no.php │ ├── pl.php │ ├── pt.php │ ├── pt_BR.php │ ├── ro.php │ ├── ru.php │ ├── sk.php │ ├── sl.php │ ├── sq.php │ ├── sr.php │ ├── sv.php │ ├── th.php │ ├── tr.php │ ├── uk.php │ ├── uz.php │ ├── vi.php │ ├── zh-TW.php │ └── zh.php ├── nikic └── php-parser │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── UPGRADE-1.0.md │ ├── UPGRADE-2.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 │ │ ├── Error.markdown │ │ └── Lexer.markdown │ ├── grammar │ ├── README.md │ ├── analyze.php │ ├── parser.template │ ├── php5.y │ ├── php7.y │ ├── rebuildParsers.php │ ├── tokens.template │ └── tokens.y │ ├── lib │ ├── PhpParser │ │ ├── Autoloader.php │ │ ├── Builder.php │ │ ├── Builder │ │ │ ├── Class_.php │ │ │ ├── Declaration.php │ │ │ ├── FunctionLike.php │ │ │ ├── Function_.php │ │ │ ├── Interface_.php │ │ │ ├── Method.php │ │ │ ├── Namespace_.php │ │ │ ├── Param.php │ │ │ ├── Property.php │ │ │ ├── Trait_.php │ │ │ └── Use_.php │ │ ├── BuilderAbstract.php │ │ ├── BuilderFactory.php │ │ ├── Comment.php │ │ ├── Comment │ │ │ └── Doc.php │ │ ├── Error.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ │ └── Emulative.php │ │ ├── Node.php │ │ ├── Node │ │ │ ├── Arg.php │ │ │ ├── Const_.php │ │ │ ├── Expr.php │ │ │ ├── Expr │ │ │ │ ├── ArrayDimFetch.php │ │ │ │ ├── ArrayItem.php │ │ │ │ ├── Array_.php │ │ │ │ ├── Assign.php │ │ │ │ ├── AssignOp.php │ │ │ │ ├── AssignOp │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ ├── Concat.php │ │ │ │ │ ├── Div.php │ │ │ │ │ ├── Minus.php │ │ │ │ │ ├── Mod.php │ │ │ │ │ ├── Mul.php │ │ │ │ │ ├── Plus.php │ │ │ │ │ ├── Pow.php │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ └── ShiftRight.php │ │ │ │ ├── AssignRef.php │ │ │ │ ├── BinaryOp.php │ │ │ │ ├── BinaryOp │ │ │ │ │ ├── BitwiseAnd.php │ │ │ │ │ ├── BitwiseOr.php │ │ │ │ │ ├── BitwiseXor.php │ │ │ │ │ ├── BooleanAnd.php │ │ │ │ │ ├── BooleanOr.php │ │ │ │ │ ├── Coalesce.php │ │ │ │ │ ├── Concat.php │ │ │ │ │ ├── Div.php │ │ │ │ │ ├── Equal.php │ │ │ │ │ ├── Greater.php │ │ │ │ │ ├── GreaterOrEqual.php │ │ │ │ │ ├── Identical.php │ │ │ │ │ ├── LogicalAnd.php │ │ │ │ │ ├── LogicalOr.php │ │ │ │ │ ├── LogicalXor.php │ │ │ │ │ ├── Minus.php │ │ │ │ │ ├── Mod.php │ │ │ │ │ ├── Mul.php │ │ │ │ │ ├── NotEqual.php │ │ │ │ │ ├── NotIdentical.php │ │ │ │ │ ├── Plus.php │ │ │ │ │ ├── Pow.php │ │ │ │ │ ├── ShiftLeft.php │ │ │ │ │ ├── ShiftRight.php │ │ │ │ │ ├── Smaller.php │ │ │ │ │ ├── SmallerOrEqual.php │ │ │ │ │ └── Spaceship.php │ │ │ │ ├── BitwiseNot.php │ │ │ │ ├── BooleanNot.php │ │ │ │ ├── Cast.php │ │ │ │ ├── Cast │ │ │ │ │ ├── Array_.php │ │ │ │ │ ├── Bool_.php │ │ │ │ │ ├── Double.php │ │ │ │ │ ├── Int_.php │ │ │ │ │ ├── Object_.php │ │ │ │ │ ├── String_.php │ │ │ │ │ └── Unset_.php │ │ │ │ ├── ClassConstFetch.php │ │ │ │ ├── Clone_.php │ │ │ │ ├── Closure.php │ │ │ │ ├── ClosureUse.php │ │ │ │ ├── ConstFetch.php │ │ │ │ ├── Empty_.php │ │ │ │ ├── ErrorSuppress.php │ │ │ │ ├── Eval_.php │ │ │ │ ├── Exit_.php │ │ │ │ ├── FuncCall.php │ │ │ │ ├── Include_.php │ │ │ │ ├── Instanceof_.php │ │ │ │ ├── Isset_.php │ │ │ │ ├── List_.php │ │ │ │ ├── MethodCall.php │ │ │ │ ├── New_.php │ │ │ │ ├── PostDec.php │ │ │ │ ├── PostInc.php │ │ │ │ ├── PreDec.php │ │ │ │ ├── PreInc.php │ │ │ │ ├── Print_.php │ │ │ │ ├── PropertyFetch.php │ │ │ │ ├── ShellExec.php │ │ │ │ ├── StaticCall.php │ │ │ │ ├── StaticPropertyFetch.php │ │ │ │ ├── Ternary.php │ │ │ │ ├── UnaryMinus.php │ │ │ │ ├── UnaryPlus.php │ │ │ │ ├── Variable.php │ │ │ │ ├── YieldFrom.php │ │ │ │ └── Yield_.php │ │ │ ├── FunctionLike.php │ │ │ ├── Name.php │ │ │ ├── Name │ │ │ │ ├── FullyQualified.php │ │ │ │ └── Relative.php │ │ │ ├── Param.php │ │ │ ├── Scalar.php │ │ │ ├── Scalar │ │ │ │ ├── DNumber.php │ │ │ │ ├── Encapsed.php │ │ │ │ ├── EncapsedStringPart.php │ │ │ │ ├── LNumber.php │ │ │ │ ├── MagicConst.php │ │ │ │ ├── MagicConst │ │ │ │ │ ├── Class_.php │ │ │ │ │ ├── Dir.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Function_.php │ │ │ │ │ ├── Line.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── Namespace_.php │ │ │ │ │ └── Trait_.php │ │ │ │ └── String_.php │ │ │ ├── Stmt.php │ │ │ └── Stmt │ │ │ │ ├── Break_.php │ │ │ │ ├── Case_.php │ │ │ │ ├── Catch_.php │ │ │ │ ├── ClassConst.php │ │ │ │ ├── ClassLike.php │ │ │ │ ├── ClassMethod.php │ │ │ │ ├── Class_.php │ │ │ │ ├── Const_.php │ │ │ │ ├── Continue_.php │ │ │ │ ├── DeclareDeclare.php │ │ │ │ ├── Declare_.php │ │ │ │ ├── Do_.php │ │ │ │ ├── Echo_.php │ │ │ │ ├── ElseIf_.php │ │ │ │ ├── Else_.php │ │ │ │ ├── For_.php │ │ │ │ ├── Foreach_.php │ │ │ │ ├── Function_.php │ │ │ │ ├── Global_.php │ │ │ │ ├── Goto_.php │ │ │ │ ├── GroupUse.php │ │ │ │ ├── HaltCompiler.php │ │ │ │ ├── If_.php │ │ │ │ ├── InlineHTML.php │ │ │ │ ├── Interface_.php │ │ │ │ ├── Label.php │ │ │ │ ├── Namespace_.php │ │ │ │ ├── Property.php │ │ │ │ ├── PropertyProperty.php │ │ │ │ ├── Return_.php │ │ │ │ ├── StaticVar.php │ │ │ │ ├── Static_.php │ │ │ │ ├── Switch_.php │ │ │ │ ├── Throw_.php │ │ │ │ ├── TraitUse.php │ │ │ │ ├── TraitUseAdaptation.php │ │ │ │ ├── TraitUseAdaptation │ │ │ │ ├── Alias.php │ │ │ │ └── Precedence.php │ │ │ │ ├── Trait_.php │ │ │ │ ├── TryCatch.php │ │ │ │ ├── Unset_.php │ │ │ │ ├── UseUse.php │ │ │ │ ├── Use_.php │ │ │ │ └── While_.php │ │ ├── NodeAbstract.php │ │ ├── NodeDumper.php │ │ ├── NodeTraverser.php │ │ ├── NodeTraverserInterface.php │ │ ├── NodeVisitor.php │ │ ├── NodeVisitor │ │ │ └── NameResolver.php │ │ ├── NodeVisitorAbstract.php │ │ ├── Parser.php │ │ ├── Parser │ │ │ ├── Multiple.php │ │ │ ├── Php5.php │ │ │ ├── Php7.php │ │ │ └── Tokens.php │ │ ├── ParserAbstract.php │ │ ├── ParserFactory.php │ │ ├── PrettyPrinter │ │ │ └── Standard.php │ │ ├── PrettyPrinterAbstract.php │ │ ├── Serializer.php │ │ ├── Serializer │ │ │ └── XML.php │ │ ├── Unserializer.php │ │ └── Unserializer │ │ │ └── XML.php │ └── bootstrap.php │ ├── phpunit.xml.dist │ ├── test │ ├── PhpParser │ │ ├── AutoloaderTest.php │ │ ├── Builder │ │ │ ├── ClassTest.php │ │ │ ├── FunctionTest.php │ │ │ ├── InterfaceTest.php │ │ │ ├── MethodTest.php │ │ │ ├── NamespaceTest.php │ │ │ ├── ParamTest.php │ │ │ ├── PropertyTest.php │ │ │ ├── TraitTest.php │ │ │ └── UseTest.php │ │ ├── BuilderFactoryTest.php │ │ ├── CodeParsingTest.php │ │ ├── CodeTestAbstract.php │ │ ├── CommentTest.php │ │ ├── ErrorTest.php │ │ ├── Lexer │ │ │ └── EmulativeTest.php │ │ ├── LexerTest.php │ │ ├── Node │ │ │ ├── NameTest.php │ │ │ ├── Scalar │ │ │ │ ├── MagicConstTest.php │ │ │ │ └── StringTest.php │ │ │ └── Stmt │ │ │ │ ├── ClassMethodTest.php │ │ │ │ ├── ClassTest.php │ │ │ │ ├── InterfaceTest.php │ │ │ │ └── PropertyTest.php │ │ ├── NodeAbstractTest.php │ │ ├── NodeDumperTest.php │ │ ├── NodeTraverserTest.php │ │ ├── NodeVisitor │ │ │ └── NameResolverTest.php │ │ ├── Parser │ │ │ ├── MultipleTest.php │ │ │ ├── Php5Test.php │ │ │ └── Php7Test.php │ │ ├── ParserFactoryTest.php │ │ ├── ParserTest.php │ │ ├── PrettyPrinterTest.php │ │ ├── Serializer │ │ │ └── XMLTest.php │ │ └── Unserializer │ │ │ └── XMLTest.php │ ├── bootstrap.php │ └── code │ │ ├── parser │ │ ├── errorHandling │ │ │ ├── eofError.test │ │ │ └── recovery.test │ │ ├── expr │ │ │ ├── arrayDef.test │ │ │ ├── assign.test │ │ │ ├── cast.test │ │ │ ├── clone.test │ │ │ ├── closure.test │ │ │ ├── comparison.test │ │ │ ├── constant_expr.test │ │ │ ├── errorSuppress.test │ │ │ ├── exit.test │ │ │ ├── fetchAndCall │ │ │ │ ├── args.test │ │ │ │ ├── constFetch.test │ │ │ │ ├── constantDeref.test │ │ │ │ ├── funcCall.test │ │ │ │ ├── newDeref.test │ │ │ │ ├── objectAccess.test │ │ │ │ ├── simpleArrayAccess.test │ │ │ │ ├── staticCall.test │ │ │ │ └── staticPropertyFetch.test │ │ │ ├── includeAndEval.test │ │ │ ├── issetAndEmpty.test │ │ │ ├── logic.test │ │ │ ├── math.test │ │ │ ├── new.test │ │ │ ├── newWithoutClass.test │ │ │ ├── print.test │ │ │ ├── shellExec.test │ │ │ ├── ternaryAndCoalesce.test │ │ │ ├── uvs │ │ │ │ ├── globalNonSimpleVarError.test │ │ │ │ ├── indirectCall.test │ │ │ │ ├── isset.test │ │ │ │ ├── misc.test │ │ │ │ ├── new.test │ │ │ │ └── staticProperty.test │ │ │ └── variable.test │ │ ├── scalar │ │ │ ├── constantString.test │ │ │ ├── docString.test │ │ │ ├── docStringNewlines.test │ │ │ ├── encapsedString.test │ │ │ ├── float.test │ │ │ ├── int.test │ │ │ ├── magicConst.test │ │ │ └── unicodeEscape.test │ │ ├── semiReserved.test │ │ └── stmt │ │ │ ├── blocklessStatement.test │ │ │ ├── class │ │ │ ├── abstract.test │ │ │ ├── anonymous.test │ │ │ ├── conditional.test │ │ │ ├── final.test │ │ │ ├── implicitPublic.test │ │ │ ├── interface.test │ │ │ ├── modifier.test │ │ │ ├── name.test │ │ │ ├── php4Style.test │ │ │ ├── simple.test │ │ │ ├── staticMethod.test │ │ │ └── trait.test │ │ │ ├── const.test │ │ │ ├── controlFlow.test │ │ │ ├── declare.test │ │ │ ├── echo.test │ │ │ ├── function │ │ │ ├── byRef.test │ │ │ ├── conditional.test │ │ │ ├── defaultValues.test │ │ │ ├── returnTypes.test │ │ │ ├── scalarTypeDeclarations.test │ │ │ ├── specialVars.test │ │ │ ├── typeDeclarations.test │ │ │ ├── variadic.test │ │ │ └── variadicDefaultValue.test │ │ │ ├── generator │ │ │ ├── basic.test │ │ │ ├── yieldPrecedence.test │ │ │ └── yieldUnaryPrecedence.test │ │ │ ├── haltCompiler.test │ │ │ ├── haltCompilerInvalidSyntax.test │ │ │ ├── haltCompilerOffset.test │ │ │ ├── haltCompilerOutermostScope.test │ │ │ ├── hashbang.test │ │ │ ├── if.test │ │ │ ├── inlineHTML.test │ │ │ ├── loop │ │ │ ├── do.test │ │ │ ├── for.test │ │ │ ├── foreach.test │ │ │ └── while.test │ │ │ ├── namespace │ │ │ ├── alias.test │ │ │ ├── braced.test │ │ │ ├── groupUse.test │ │ │ ├── groupUseErrors.test │ │ │ ├── invalidName.test │ │ │ ├── mix.test │ │ │ ├── name.test │ │ │ ├── nested.test │ │ │ ├── notBraced.test │ │ │ ├── outsideStmt.test │ │ │ └── outsideStmtInvalid.test │ │ │ ├── switch.test │ │ │ ├── tryCatch.test │ │ │ ├── tryWithoutCatch.test │ │ │ └── unset.test │ │ └── prettyPrinter │ │ ├── comments.test │ │ ├── expr │ │ ├── anonymousClass.test │ │ ├── call.test │ │ ├── closure.test │ │ ├── constant_deref.test │ │ ├── include.test │ │ ├── list.test │ │ ├── literals.test │ │ ├── numbers.test │ │ ├── operators.test │ │ ├── parentheses.test │ │ ├── shortArraySyntax.test │ │ ├── uvs.test │ │ └── variables.test │ │ ├── inlineHTMLandPHPtest.file-test │ │ ├── onlyInlineHTML.file-test │ │ ├── onlyPHP.file-test │ │ └── stmt │ │ ├── alias.test │ │ ├── break_continue.test │ │ ├── class.test │ │ ├── do_while.test │ │ ├── for.test │ │ ├── foreach.test │ │ ├── function_signatures.test │ │ ├── goto.test │ │ ├── groupUse.test │ │ ├── if.test │ │ ├── namespaces.test │ │ ├── switch.test │ │ ├── throw.test │ │ ├── traitUse.test │ │ ├── tryCatch.test │ │ └── while.test │ └── test_old │ └── run.php ├── paragonie └── random_compat │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── ERRATA.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── composer.json │ ├── 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_mcrypt.php │ ├── random_bytes_openssl.php │ └── random_int.php │ ├── phpunit.sh │ ├── phpunit.xml.dist │ └── tests │ ├── full │ ├── DieHardTest.php │ └── StatTest.php │ ├── specific │ ├── capicom.php │ ├── dev_urandom.php │ ├── libsodium.php │ ├── mcrypt.php │ └── openssl.php │ └── unit │ ├── RandomBytesTest.php │ ├── RandomIntTest.php │ └── UtilityTest.php ├── phpdocumentor └── reflection-docblock │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── phpunit.xml.dist │ ├── src │ └── phpDocumentor │ │ └── Reflection │ │ ├── DocBlock.php │ │ └── DocBlock │ │ ├── Context.php │ │ ├── Description.php │ │ ├── Location.php │ │ ├── Serializer.php │ │ ├── Tag.php │ │ ├── Tag │ │ ├── AuthorTag.php │ │ ├── CoversTag.php │ │ ├── DeprecatedTag.php │ │ ├── ExampleTag.php │ │ ├── LinkTag.php │ │ ├── MethodTag.php │ │ ├── ParamTag.php │ │ ├── PropertyReadTag.php │ │ ├── PropertyTag.php │ │ ├── PropertyWriteTag.php │ │ ├── ReturnTag.php │ │ ├── SeeTag.php │ │ ├── SinceTag.php │ │ ├── SourceTag.php │ │ ├── ThrowsTag.php │ │ ├── UsesTag.php │ │ ├── VarTag.php │ │ └── VersionTag.php │ │ └── Type │ │ └── Collection.php │ └── tests │ └── phpDocumentor │ └── Reflection │ ├── DocBlock │ ├── DescriptionTest.php │ ├── Tag │ │ ├── CoversTagTest.php │ │ ├── DeprecatedTagTest.php │ │ ├── ExampleTagTest.php │ │ ├── LinkTagTest.php │ │ ├── MethodTagTest.php │ │ ├── ParamTagTest.php │ │ ├── ReturnTagTest.php │ │ ├── SeeTagTest.php │ │ ├── SinceTagTest.php │ │ ├── SourceTagTest.php │ │ ├── ThrowsTagTest.php │ │ ├── UsesTagTest.php │ │ ├── VarTagTest.php │ │ └── VersionTagTest.php │ ├── TagTest.php │ └── Type │ │ └── CollectionTest.php │ └── DocBlockTest.php ├── phpspec ├── php-diff │ ├── README │ ├── composer.json │ ├── example │ │ ├── a.txt │ │ ├── b.txt │ │ ├── example.php │ │ └── styles.css │ └── lib │ │ ├── Diff.php │ │ └── Diff │ │ ├── Renderer │ │ ├── Abstract.php │ │ ├── Html │ │ │ ├── Array.php │ │ │ ├── Inline.php │ │ │ └── SideBySide.php │ │ └── Text │ │ │ ├── Context.php │ │ │ └── Unified.php │ │ └── SequenceMatcher.php ├── phpspec │ ├── .gitattributes │ ├── .gitignore │ ├── .phpspec │ │ ├── class.tpl │ │ └── interface.tpl │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── CHANGES.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── Makefile │ ├── README.rst │ ├── appveyor.yml │ ├── behat.yml.dist │ ├── bin │ │ └── phpspec │ ├── box.json │ ├── composer.json │ ├── features │ │ ├── bootstrap │ │ │ ├── ApplicationContext.php │ │ │ ├── Fake │ │ │ │ ├── Prompter.php │ │ │ │ └── ReRunner.php │ │ │ ├── FilesystemContext.php │ │ │ ├── IsolatedProcessContext.php │ │ │ ├── Matcher │ │ │ │ ├── ApplicationOutputMatcher.php │ │ │ │ ├── FileExistsMatcher.php │ │ │ │ ├── FileHasContentsMatcher.php │ │ │ │ └── ValidJUnitXmlMatcher.php │ │ │ └── autoloader │ │ │ │ └── autoload.php │ │ ├── code_generation │ │ │ ├── developer_generates_class.feature │ │ │ ├── developer_generates_collaborator.feature │ │ │ ├── developer_generates_collaborator_method.feature │ │ │ ├── developer_generates_method.feature │ │ │ ├── developer_generates_named_constructor.feature │ │ │ ├── developer_generates_return_constant.feature │ │ │ ├── developer_generates_spec.feature │ │ │ └── developer_reruns_features.feature │ │ ├── config │ │ │ └── developer_can_use_config_dir_in_paths.feature │ │ ├── construction │ │ │ └── developer_specifies_object_construction.feature │ │ ├── exception_handling │ │ │ ├── developer_defines_supporting_spec.feature │ │ │ ├── developer_is_notified_which_example_caused_a_fatal_error.feature │ │ │ ├── developer_is_shown_a_parse_error.feature │ │ │ └── developer_specifies_exceptions.feature │ │ ├── extensions │ │ │ └── developer_uses_extension.feature │ │ ├── formatter │ │ │ ├── developer_is_shown_diffs.feature │ │ │ ├── use_the_junit_formatter.feature │ │ │ └── use_the_tap_formatter.feature │ │ ├── invalid_usage │ │ │ └── developer_uses_unsupported_collaborator_type_hinting.feature │ │ ├── matchers │ │ │ ├── developer_uses_array_contain_matcher.feature │ │ │ ├── developer_uses_array_key_matcher.feature │ │ │ ├── developer_uses_array_key_value_matcher.feature │ │ │ ├── developer_uses_comparison_matcher.feature │ │ │ ├── developer_uses_count_matcher.feature │ │ │ ├── developer_uses_identity_matcher.feature │ │ │ ├── developer_uses_inline_matcher.feature │ │ │ ├── developer_uses_object_state_matcher.feature │ │ │ ├── developer_uses_scalar_matcher.feature │ │ │ ├── developer_uses_string_contain_matcher.feature │ │ │ ├── developer_uses_string_end_matcher.feature │ │ │ ├── developer_uses_string_regex_matcher.feature │ │ │ ├── developer_uses_string_start_matcher.feature │ │ │ ├── developer_uses_throw_matcher.feature │ │ │ └── developer_uses_type_matcher.feature │ │ ├── options │ │ │ ├── developer_chooses_no_code_generation.feature │ │ │ └── developer_chooses_stop_on_failure.feature │ │ └── runner │ │ │ ├── developer_is_told_about_pending_specs.feature │ │ │ ├── developer_runs_specs.feature │ │ │ ├── developer_runs_specs_with_bootstrap.feature │ │ │ ├── developer_runs_specs_with_spec_path.feature │ │ │ └── developer_skips_specs.feature │ ├── integration │ │ └── PhpSpec │ │ │ ├── Console │ │ │ └── Prompter │ │ │ │ ├── DialogTest.php │ │ │ │ ├── FactoryTest.php │ │ │ │ └── QuestionTest.php │ │ │ └── Loader │ │ │ ├── StreamWrapperTest.php │ │ │ └── examples │ │ │ └── ExampleSpec.php │ ├── phpunit.xml │ ├── spec │ │ └── PhpSpec │ │ │ ├── CodeAnalysis │ │ │ ├── MagicAwareAccessInspectorSpec.php │ │ │ ├── StaticRejectingNamespaceResolverSpec.php │ │ │ ├── TokenizedNamespaceResolverSpec.php │ │ │ ├── TokenizedTypeHintRewriterSpec.php │ │ │ └── VisibilityAccessInspectorSpec.php │ │ │ ├── CodeGenerator │ │ │ ├── Generator │ │ │ │ ├── ClassGeneratorSpec.php │ │ │ │ ├── MethodGeneratorSpec.php │ │ │ │ ├── NamedConstructorGeneratorSpec.php │ │ │ │ ├── NewFileNotifyingGeneratorSpec.php │ │ │ │ ├── ReturnConstantGeneratorSpec.php │ │ │ │ └── SpecificationGeneratorSpec.php │ │ │ ├── GeneratorManagerSpec.php │ │ │ ├── TemplateRendererSpec.php │ │ │ └── Writer │ │ │ │ └── TokenizedCodeWriterSpec.php │ │ │ ├── Config │ │ │ └── OptionsConfigSpec.php │ │ │ ├── Console │ │ │ ├── ApplicationSpec.php │ │ │ ├── IOSpec.php │ │ │ └── ResultConverterSpec.php │ │ │ ├── Event │ │ │ ├── ExampleEventSpec.php │ │ │ ├── ExpectationEventSpec.php │ │ │ ├── FileCreationEventSpec.php │ │ │ ├── MethodCallEventSpec.php │ │ │ ├── SpecificationEventSpec.php │ │ │ └── SuiteEventSpec.php │ │ │ ├── Exception │ │ │ ├── Example │ │ │ │ ├── NotEqualExceptionSpec.php │ │ │ │ └── StopOnFailureExceptionSpec.php │ │ │ ├── ExceptionFactorySpec.php │ │ │ ├── ExceptionSpec.php │ │ │ ├── Fracture │ │ │ │ ├── ClassNotFoundExceptionSpec.php │ │ │ │ ├── InterfaceNotImplementedExceptionSpec.php │ │ │ │ ├── MethodNotFoundExceptionSpec.php │ │ │ │ ├── MethodNotVisibleExceptionSpec.php │ │ │ │ ├── NamedConstructorNotFoundExceptionSpec.php │ │ │ │ └── PropertyNotFoundExceptionSpec.php │ │ │ └── Wrapper │ │ │ │ └── InvalidCollaboratorTypeExceptionSpec.php │ │ │ ├── Formatter │ │ │ ├── BasicFormatterSpec.php │ │ │ ├── DotFormatterSpec.php │ │ │ ├── Html │ │ │ │ ├── HtmlPresenterSpec.php │ │ │ │ ├── IOSpec.php │ │ │ │ ├── ReportFailedItemSpec.php │ │ │ │ ├── ReportItemFactorySpec.php │ │ │ │ ├── ReportPassedItemSpec.php │ │ │ │ ├── ReportPendingItemSpec.php │ │ │ │ └── TemplateSpec.php │ │ │ ├── HtmlFormatterSpec.php │ │ │ ├── JUnitFormatterSpec.php │ │ │ ├── Presenter │ │ │ │ ├── Differ │ │ │ │ │ ├── ArrayEngineSpec.php │ │ │ │ │ ├── DifferSpec.php │ │ │ │ │ ├── ObjectEngineSpec.php │ │ │ │ │ └── StringEngineSpec.php │ │ │ │ ├── Exception │ │ │ │ │ ├── CallArgumentsPresenterSpec.php │ │ │ │ │ ├── GenericPhpSpecExceptionPresenterSpec.php │ │ │ │ │ ├── HtmlPhpSpecExceptionPresenterSpec.php │ │ │ │ │ ├── SimpleExceptionElementPresenterSpec.php │ │ │ │ │ ├── SimpleExceptionPresenterSpec.php │ │ │ │ │ └── TaggingExceptionElementPresenterSpec.php │ │ │ │ ├── SimplePresenterSpec.php │ │ │ │ ├── StringPresenterSpec.php │ │ │ │ ├── TaggedPresenterSpec.php │ │ │ │ ├── TaggingPresenterSpec.php │ │ │ │ └── Value │ │ │ │ │ ├── ArrayTypePresenterSpec.php │ │ │ │ │ ├── BaseExceptionTypePresenterSpec.php │ │ │ │ │ ├── BooleanTypePresenterSpec.php │ │ │ │ │ ├── CallableTypePresenterSpec.php │ │ │ │ │ ├── ComposedValuePresenterSpec.php │ │ │ │ │ ├── NullTypePresenterSpec.php │ │ │ │ │ ├── ObjectTypePresenterSpec.php │ │ │ │ │ ├── QuotingStringTypePresenterSpec.php │ │ │ │ │ └── TruncatingStringTypePresenterSpec.php │ │ │ ├── ProgressFormatterSpec.php │ │ │ └── TapFormatterSpec.php │ │ │ ├── Listener │ │ │ ├── ClassNotFoundListenerSpec.php │ │ │ ├── CollaboratorMethodNotFoundListenerSpec.php │ │ │ ├── CollaboratorNotFoundListenerSpec.php │ │ │ ├── CurrentExampleListenerSpec.php │ │ │ ├── MethodNotFoundListenerSpec.php │ │ │ ├── MethodReturnedNullListenerSpec.php │ │ │ ├── NamedConstructorNotFoundListenerSpec.php │ │ │ ├── RerunListenerSpec.php │ │ │ ├── StatisticsCollectorSpec.php │ │ │ └── StopOnFailureListenerSpec.php │ │ │ ├── Loader │ │ │ ├── Node │ │ │ │ ├── ExampleNodeSpec.php │ │ │ │ └── SpecificationNodeSpec.php │ │ │ ├── SuiteSpec.php │ │ │ └── Transformer │ │ │ │ ├── InMemoryTypeHintIndexSpec.php │ │ │ │ └── TypeHintRewriterSpec.php │ │ │ ├── Locator │ │ │ ├── PSR0 │ │ │ │ ├── PSR0LocatorSpec.php │ │ │ │ └── PSR0ResourceSpec.php │ │ │ └── ResourceManagerSpec.php │ │ │ ├── Matcher │ │ │ ├── ArrayContainMatcherSpec.php │ │ │ ├── ArrayCountMatcherSpec.php │ │ │ ├── ArrayKeyMatcherSpec.php │ │ │ ├── ArrayKeyValueMatcherSpec.php │ │ │ ├── CallbackMatcherSpec.php │ │ │ ├── ComparisonMatcherSpec.php │ │ │ ├── IdentityMatcherSpec.php │ │ │ ├── ObjectStateMatcherSpec.php │ │ │ ├── StringContainMatcherSpec.php │ │ │ ├── StringEndMatcherSpec.php │ │ │ ├── StringRegexMatcherSpec.php │ │ │ ├── StringStartMatcherSpec.php │ │ │ ├── ThrowMatcherSpec.php │ │ │ └── TypeMatcherSpec.php │ │ │ ├── Message │ │ │ └── CurrentExampleTrackerSpec.php │ │ │ ├── Process │ │ │ ├── Context │ │ │ │ └── JsonExecutionContextSpec.php │ │ │ ├── Prerequisites │ │ │ │ └── SuitePrerequisitesSpec.php │ │ │ ├── ReRunner │ │ │ │ ├── CompositeReRunnerSpec.php │ │ │ │ ├── OptionalReRunnerSpec.php │ │ │ │ ├── PassthruRerunnerSpec.php │ │ │ │ ├── PcntlReRunnerSpec.php │ │ │ │ └── WindowsPassthruRerunnerSpec.php │ │ │ └── Shutdown │ │ │ │ ├── ShutdownSpec.php │ │ │ │ └── UpdateConsoleActionSpec.php │ │ │ ├── Runner │ │ │ ├── CollaboratorManagerSpec.php │ │ │ ├── ExampleRunnerSpec.php │ │ │ ├── Maintainer │ │ │ │ └── MatchersMaintainerSpec.php │ │ │ ├── MatcherManagerSpec.php │ │ │ ├── SpecificationRunnerSpec.php │ │ │ └── SuiteRunnerSpec.php │ │ │ ├── ServiceContainerSpec.php │ │ │ ├── Util │ │ │ ├── ClassFileAnalyserSpec.php │ │ │ ├── ExampleObjectUsingTrait.php │ │ │ ├── ExampleTrait.php │ │ │ ├── InstantiatorSpec.php │ │ │ └── MethodAnalyserSpec.php │ │ │ └── Wrapper │ │ │ ├── Subject │ │ │ ├── CallerSpec.php │ │ │ ├── Expectation │ │ │ │ ├── ConstructorDecoratorSpec.php │ │ │ │ ├── DecoratorSpec.php │ │ │ │ ├── DispatcherDecoratorSpec.php │ │ │ │ ├── NegativeSpec.php │ │ │ │ └── PositiveSpec.php │ │ │ ├── ExpectationFactorySpec.php │ │ │ └── WrappedObjectSpec.php │ │ │ └── SubjectSpec.php │ └── src │ │ └── PhpSpec │ │ ├── CodeAnalysis │ │ ├── AccessInspectorInterface.php │ │ ├── DisallowedScalarTypehintException.php │ │ ├── MagicAwareAccessInspector.php │ │ ├── NamespaceResolver.php │ │ ├── StaticRejectingNamespaceResolver.php │ │ ├── TokenizedNamespaceResolver.php │ │ ├── TokenizedTypeHintRewriter.php │ │ ├── TypeHintRewriter.php │ │ └── VisibilityAccessInspector.php │ │ ├── CodeGenerator │ │ ├── Generator │ │ │ ├── ClassGenerator.php │ │ │ ├── CreateObjectTemplate.php │ │ │ ├── ExistingConstructorTemplate.php │ │ │ ├── GeneratorInterface.php │ │ │ ├── InterfaceGenerator.php │ │ │ ├── MethodGenerator.php │ │ │ ├── MethodSignatureGenerator.php │ │ │ ├── NamedConstructorGenerator.php │ │ │ ├── NewFileNotifyingGenerator.php │ │ │ ├── PrivateConstructorGenerator.php │ │ │ ├── PromptingGenerator.php │ │ │ ├── ReturnConstantGenerator.php │ │ │ ├── SpecificationGenerator.php │ │ │ └── templates │ │ │ │ ├── class.template │ │ │ │ ├── interface.template │ │ │ │ ├── interface_method_signature.template │ │ │ │ ├── method.template │ │ │ │ ├── named_constructor_create_object.template │ │ │ │ ├── named_constructor_exception.template │ │ │ │ ├── private-constructor.template │ │ │ │ ├── returnconstant.template │ │ │ │ └── specification.template │ │ ├── GeneratorManager.php │ │ ├── TemplateRenderer.php │ │ └── Writer │ │ │ ├── CodeWriter.php │ │ │ └── TokenizedCodeWriter.php │ │ ├── Config │ │ └── OptionsConfig.php │ │ ├── Console │ │ ├── Application.php │ │ ├── Assembler │ │ │ └── PresenterAssembler.php │ │ ├── Command │ │ │ ├── DescribeCommand.php │ │ │ └── RunCommand.php │ │ ├── ContainerAssembler.php │ │ ├── Formatter.php │ │ ├── IO.php │ │ ├── Prompter.php │ │ ├── Prompter │ │ │ ├── Dialog.php │ │ │ ├── Factory.php │ │ │ └── Question.php │ │ └── ResultConverter.php │ │ ├── Event │ │ ├── EventInterface.php │ │ ├── ExampleEvent.php │ │ ├── ExpectationEvent.php │ │ ├── FileCreationEvent.php │ │ ├── MethodCallEvent.php │ │ ├── SpecificationEvent.php │ │ └── SuiteEvent.php │ │ ├── Exception │ │ ├── Example │ │ │ ├── ErrorException.php │ │ │ ├── ExampleException.php │ │ │ ├── FailureException.php │ │ │ ├── MatcherException.php │ │ │ ├── NotEqualException.php │ │ │ ├── PendingException.php │ │ │ ├── SkippingException.php │ │ │ └── StopOnFailureException.php │ │ ├── Exception.php │ │ ├── ExceptionFactory.php │ │ ├── Fracture │ │ │ ├── ClassNotFoundException.php │ │ │ ├── CollaboratorNotFoundException.php │ │ │ ├── FactoryDoesNotReturnObjectException.php │ │ │ ├── FractureException.php │ │ │ ├── InterfaceNotImplementedException.php │ │ │ ├── MethodInvocationException.php │ │ │ ├── MethodNotFoundException.php │ │ │ ├── MethodNotVisibleException.php │ │ │ ├── NamedConstructorNotFoundException.php │ │ │ └── PropertyNotFoundException.php │ │ ├── Generator │ │ │ ├── NamedMethodNotFoundException.php │ │ │ └── NoMethodFoundInClass.php │ │ ├── Locator │ │ │ └── ResourceCreationException.php │ │ └── Wrapper │ │ │ ├── CollaboratorException.php │ │ │ ├── InvalidCollaboratorTypeException.php │ │ │ ├── MatcherNotFoundException.php │ │ │ └── SubjectException.php │ │ ├── Extension │ │ └── ExtensionInterface.php │ │ ├── Factory │ │ └── ReflectionFactory.php │ │ ├── Formatter │ │ ├── BasicFormatter.php │ │ ├── ConsoleFormatter.php │ │ ├── DotFormatter.php │ │ ├── FatalPresenter.php │ │ ├── Html │ │ │ ├── HtmlPresenter.php │ │ │ ├── IO.php │ │ │ ├── InvalidExampleResultException.php │ │ │ ├── ReportFailedItem.php │ │ │ ├── ReportItem.php │ │ │ ├── ReportItemFactory.php │ │ │ ├── ReportPassedItem.php │ │ │ ├── ReportPendingItem.php │ │ │ ├── ReportSkippedItem.php │ │ │ ├── Template.php │ │ │ └── Template │ │ │ │ ├── ReportFailed.html │ │ │ │ ├── ReportFooter.html │ │ │ │ ├── ReportHeader.html │ │ │ │ ├── ReportLine.html │ │ │ │ ├── ReportPass.html │ │ │ │ ├── ReportPending.html │ │ │ │ ├── ReportRed.html │ │ │ │ ├── ReportSkipped.html │ │ │ │ ├── ReportSpecificationEnds.html │ │ │ │ ├── ReportSpecificationStarts.html │ │ │ │ └── ReportSummary.html │ │ ├── HtmlFormatter.php │ │ ├── JUnitFormatter.php │ │ ├── Presenter │ │ │ ├── Differ │ │ │ │ ├── ArrayEngine.php │ │ │ │ ├── Differ.php │ │ │ │ ├── EngineInterface.php │ │ │ │ ├── ObjectEngine.php │ │ │ │ └── StringEngine.php │ │ │ ├── Exception │ │ │ │ ├── AbstractPhpSpecExceptionPresenter.php │ │ │ │ ├── CallArgumentsPresenter.php │ │ │ │ ├── ExceptionElementPresenter.php │ │ │ │ ├── ExceptionPresenter.php │ │ │ │ ├── GenericPhpSpecExceptionPresenter.php │ │ │ │ ├── HtmlPhpSpecExceptionPresenter.php │ │ │ │ ├── PhpSpecExceptionPresenter.php │ │ │ │ ├── SimpleExceptionElementPresenter.php │ │ │ │ ├── SimpleExceptionPresenter.php │ │ │ │ └── TaggingExceptionElementPresenter.php │ │ │ ├── Presenter.php │ │ │ ├── PresenterInterface.php │ │ │ ├── SimplePresenter.php │ │ │ ├── StringPresenter.php │ │ │ ├── TaggedPresenter.php │ │ │ ├── TaggingPresenter.php │ │ │ └── Value │ │ │ │ ├── ArrayTypePresenter.php │ │ │ │ ├── BaseExceptionTypePresenter.php │ │ │ │ ├── BooleanTypePresenter.php │ │ │ │ ├── CallableTypePresenter.php │ │ │ │ ├── ComposedValuePresenter.php │ │ │ │ ├── ExceptionTypePresenter.php │ │ │ │ ├── NullTypePresenter.php │ │ │ │ ├── ObjectTypePresenter.php │ │ │ │ ├── QuotingStringTypePresenter.php │ │ │ │ ├── StringTypePresenter.php │ │ │ │ ├── TruncatingStringTypePresenter.php │ │ │ │ ├── TypePresenter.php │ │ │ │ └── ValuePresenter.php │ │ ├── PrettyFormatter.php │ │ ├── ProgressFormatter.php │ │ ├── TapFormatter.php │ │ └── Template.php │ │ ├── IO │ │ └── IOInterface.php │ │ ├── Listener │ │ ├── BootstrapListener.php │ │ ├── ClassNotFoundListener.php │ │ ├── CollaboratorMethodNotFoundListener.php │ │ ├── CollaboratorNotFoundListener.php │ │ ├── CurrentExampleListener.php │ │ ├── MethodNotFoundListener.php │ │ ├── MethodReturnedNullListener.php │ │ ├── NamedConstructorNotFoundListener.php │ │ ├── RerunListener.php │ │ ├── StatisticsCollector.php │ │ └── StopOnFailureListener.php │ │ ├── Loader │ │ ├── Node │ │ │ ├── ExampleNode.php │ │ │ └── SpecificationNode.php │ │ ├── ResourceLoader.php │ │ ├── SpecTransformer.php │ │ ├── StreamWrapper.php │ │ ├── Suite.php │ │ └── Transformer │ │ │ ├── InMemoryTypeHintIndex.php │ │ │ ├── TypeHintIndex.php │ │ │ └── TypeHintRewriter.php │ │ ├── Locator │ │ ├── PSR0 │ │ │ ├── PSR0Locator.php │ │ │ └── PSR0Resource.php │ │ ├── ResourceInterface.php │ │ ├── ResourceLocatorInterface.php │ │ ├── ResourceManager.php │ │ └── ResourceManagerInterface.php │ │ ├── Matcher │ │ ├── ArrayContainMatcher.php │ │ ├── ArrayCountMatcher.php │ │ ├── ArrayKeyMatcher.php │ │ ├── ArrayKeyValueMatcher.php │ │ ├── BasicMatcher.php │ │ ├── CallbackMatcher.php │ │ ├── ComparisonMatcher.php │ │ ├── IdentityMatcher.php │ │ ├── MatcherInterface.php │ │ ├── MatchersProviderInterface.php │ │ ├── ObjectStateMatcher.php │ │ ├── ScalarMatcher.php │ │ ├── StringContainMatcher.php │ │ ├── StringEndMatcher.php │ │ ├── StringRegexMatcher.php │ │ ├── StringStartMatcher.php │ │ ├── ThrowMatcher.php │ │ └── TypeMatcher.php │ │ ├── Message │ │ └── CurrentExampleTracker.php │ │ ├── ObjectBehavior.php │ │ ├── Process │ │ ├── Context │ │ │ ├── ExecutionContextInterface.php │ │ │ └── JsonExecutionContext.php │ │ ├── Prerequisites │ │ │ ├── PrerequisiteFailedException.php │ │ │ ├── SuitePrerequisites.php │ │ │ └── SuitePrerequisitesInterface.php │ │ ├── ReRunner.php │ │ ├── ReRunner │ │ │ ├── CompositeReRunner.php │ │ │ ├── OptionalReRunner.php │ │ │ ├── PassthruReRunner.php │ │ │ ├── PcntlReRunner.php │ │ │ ├── PhpExecutableReRunner.php │ │ │ ├── PlatformSpecificReRunner.php │ │ │ └── WindowsPassthruReRunner.php │ │ └── Shutdown │ │ │ ├── Shutdown.php │ │ │ ├── ShutdownActionInterface.php │ │ │ └── UpdateConsoleAction.php │ │ ├── Resources │ │ └── schema │ │ │ └── junit.xsd │ │ ├── Runner │ │ ├── CollaboratorManager.php │ │ ├── ExampleRunner.php │ │ ├── Maintainer │ │ │ ├── CollaboratorsMaintainer.php │ │ │ ├── ErrorMaintainer.php │ │ │ ├── LetAndLetgoMaintainer.php │ │ │ ├── MaintainerInterface.php │ │ │ ├── MatchersMaintainer.php │ │ │ └── SubjectMaintainer.php │ │ ├── MatcherManager.php │ │ ├── SpecificationRunner.php │ │ └── SuiteRunner.php │ │ ├── ServiceContainer.php │ │ ├── SpecificationInterface.php │ │ ├── Util │ │ ├── ClassFileAnalyser.php │ │ ├── Filesystem.php │ │ ├── Instantiator.php │ │ └── MethodAnalyser.php │ │ └── Wrapper │ │ ├── Collaborator.php │ │ ├── DelayedCall.php │ │ ├── Subject.php │ │ ├── Subject │ │ ├── Caller.php │ │ ├── Expectation │ │ │ ├── ConstructorDecorator.php │ │ │ ├── Decorator.php │ │ │ ├── DispatcherDecorator.php │ │ │ ├── DuringCall.php │ │ │ ├── ExpectationInterface.php │ │ │ ├── Negative.php │ │ │ ├── NegativeThrow.php │ │ │ ├── Positive.php │ │ │ ├── PositiveThrow.php │ │ │ ├── ThrowExpectation.php │ │ │ └── UnwrapDecorator.php │ │ ├── ExpectationFactory.php │ │ ├── SubjectWithArrayAccess.php │ │ └── WrappedObject.php │ │ ├── SubjectContainerInterface.php │ │ ├── Unwrapper.php │ │ ├── Wrapper.php │ │ └── WrapperInterface.php └── prophecy │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGES.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── spec │ └── Prophecy │ │ ├── Argument │ │ ├── ArgumentsWildcardSpec.php │ │ └── Token │ │ │ ├── AnyValueTokenSpec.php │ │ │ ├── AnyValuesTokenSpec.php │ │ │ ├── ArrayCountTokenSpec.php │ │ │ ├── ArrayEntryTokenSpec.php │ │ │ ├── ArrayEveryEntryTokenSpec.php │ │ │ ├── CallbackTokenSpec.php │ │ │ ├── ExactValueTokenSpec.php │ │ │ ├── IdenticalValueTokenSpec.php │ │ │ ├── LogicalAndTokenSpec.php │ │ │ ├── LogicalNotTokenSpec.php │ │ │ ├── ObjectStateTokenSpec.php │ │ │ ├── StringContainsTokenSpec.php │ │ │ └── TypeTokenSpec.php │ │ ├── ArgumentSpec.php │ │ ├── Call │ │ ├── CallCenterSpec.php │ │ └── CallSpec.php │ │ ├── Comparator │ │ ├── ClosureComparatorSpec.php │ │ └── FactorySpec.php │ │ ├── Doubler │ │ ├── ClassPatch │ │ │ ├── DisableConstructorPatchSpec.php │ │ │ ├── HhvmExceptionPatchSpec.php │ │ │ ├── KeywordPatchSpec.php │ │ │ ├── MagicCallPatchSpec.php │ │ │ ├── ProphecySubjectPatchSpec.php │ │ │ ├── ReflectionClassNewInstancePatchSpec.php │ │ │ ├── SplFileInfoPatchSpec.php │ │ │ └── TraversablePatchSpec.php │ │ ├── DoublerSpec.php │ │ ├── Generator │ │ │ ├── ClassCodeGeneratorSpec.php │ │ │ ├── ClassCreatorSpec.php │ │ │ ├── ClassMirrorSpec.php │ │ │ └── Node │ │ │ │ ├── ArgumentNodeSpec.php │ │ │ │ ├── ClassNodeSpec.php │ │ │ │ └── MethodNodeSpec.php │ │ ├── LazyDoubleSpec.php │ │ └── NameGeneratorSpec.php │ │ ├── Exception │ │ ├── Call │ │ │ └── UnexpectedCallExceptionSpec.php │ │ ├── Doubler │ │ │ ├── ClassCreatorExceptionSpec.php │ │ │ ├── ClassMirrorExceptionSpec.php │ │ │ ├── ClassNotFoundExceptionSpec.php │ │ │ ├── DoubleExceptionSpec.php │ │ │ ├── InterfaceNotFoundExceptionSpec.php │ │ │ └── MethodNotFoundExceptionSpec.php │ │ ├── Prediction │ │ │ ├── AggregateExceptionSpec.php │ │ │ ├── NoCallsExceptionSpec.php │ │ │ ├── UnexpectedCallsCountExceptionSpec.php │ │ │ └── UnexpectedCallsExceptionSpec.php │ │ └── Prophecy │ │ │ ├── MethodProphecyExceptionSpec.php │ │ │ └── ObjectProphecyExceptionSpec.php │ │ ├── Prediction │ │ ├── CallPredictionSpec.php │ │ ├── CallTimesPredictionSpec.php │ │ ├── CallbackPredictionSpec.php │ │ └── NoCallsPredictionSpec.php │ │ ├── Promise │ │ ├── CallbackPromiseSpec.php │ │ ├── ReturnArgumentPromiseSpec.php │ │ ├── ReturnPromiseSpec.php │ │ └── ThrowPromiseSpec.php │ │ ├── Prophecy │ │ ├── MethodProphecySpec.php │ │ ├── ObjectProphecySpec.php │ │ └── RevealerSpec.php │ │ ├── ProphetSpec.php │ │ └── Util │ │ └── StringUtilSpec.php │ └── src │ └── Prophecy │ ├── Argument.php │ ├── Argument │ ├── ArgumentsWildcard.php │ └── Token │ │ ├── AnyValueToken.php │ │ ├── AnyValuesToken.php │ │ ├── ArrayCountToken.php │ │ ├── ArrayEntryToken.php │ │ ├── ArrayEveryEntryToken.php │ │ ├── CallbackToken.php │ │ ├── ExactValueToken.php │ │ ├── IdenticalValueToken.php │ │ ├── LogicalAndToken.php │ │ ├── LogicalNotToken.php │ │ ├── ObjectStateToken.php │ │ ├── StringContainsToken.php │ │ ├── TokenInterface.php │ │ └── TypeToken.php │ ├── Call │ ├── Call.php │ └── CallCenter.php │ ├── Comparator │ ├── ClosureComparator.php │ └── Factory.php │ ├── Doubler │ ├── CachedDoubler.php │ ├── ClassPatch │ │ ├── ClassPatchInterface.php │ │ ├── DisableConstructorPatch.php │ │ ├── HhvmExceptionPatch.php │ │ ├── KeywordPatch.php │ │ ├── MagicCallPatch.php │ │ ├── ProphecySubjectPatch.php │ │ ├── ReflectionClassNewInstancePatch.php │ │ ├── SplFileInfoPatch.php │ │ └── TraversablePatch.php │ ├── DoubleInterface.php │ ├── Doubler.php │ ├── Generator │ │ ├── ClassCodeGenerator.php │ │ ├── ClassCreator.php │ │ ├── ClassMirror.php │ │ ├── Node │ │ │ ├── ArgumentNode.php │ │ │ ├── ClassNode.php │ │ │ └── MethodNode.php │ │ └── ReflectionInterface.php │ ├── LazyDouble.php │ └── NameGenerator.php │ ├── Exception │ ├── Call │ │ └── UnexpectedCallException.php │ ├── Doubler │ │ ├── ClassCreatorException.php │ │ ├── ClassMirrorException.php │ │ ├── ClassNotFoundException.php │ │ ├── DoubleException.php │ │ ├── DoublerException.php │ │ ├── InterfaceNotFoundException.php │ │ ├── MethodNotFoundException.php │ │ └── ReturnByReferenceException.php │ ├── Exception.php │ ├── InvalidArgumentException.php │ ├── Prediction │ │ ├── AggregateException.php │ │ ├── FailedPredictionException.php │ │ ├── NoCallsException.php │ │ ├── PredictionException.php │ │ ├── UnexpectedCallsCountException.php │ │ └── UnexpectedCallsException.php │ └── Prophecy │ │ ├── MethodProphecyException.php │ │ ├── ObjectProphecyException.php │ │ └── ProphecyException.php │ ├── Prediction │ ├── CallPrediction.php │ ├── CallTimesPrediction.php │ ├── CallbackPrediction.php │ ├── NoCallsPrediction.php │ └── PredictionInterface.php │ ├── Promise │ ├── CallbackPromise.php │ ├── PromiseInterface.php │ ├── ReturnArgumentPromise.php │ ├── ReturnPromise.php │ └── ThrowPromise.php │ ├── Prophecy │ ├── MethodProphecy.php │ ├── ObjectProphecy.php │ ├── ProphecyInterface.php │ ├── ProphecySubjectInterface.php │ ├── Revealer.php │ └── RevealerInterface.php │ ├── Prophet.php │ └── Util │ ├── ExportUtil.php │ └── StringUtil.php ├── phpunit ├── php-code-coverage │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── ChangeLog-2.2.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── travis-ci.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── scripts │ │ ├── auto_append.php │ │ └── auto_prepend.php │ ├── src │ │ ├── CodeCoverage.php │ │ └── CodeCoverage │ │ │ ├── Driver.php │ │ │ ├── Driver │ │ │ ├── HHVM.php │ │ │ ├── PHPDBG.php │ │ │ └── Xdebug.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ └── UnintentionallyCoveredCode.php │ │ │ ├── Filter.php │ │ │ ├── Report │ │ │ ├── Clover.php │ │ │ ├── Crap4j.php │ │ │ ├── Factory.php │ │ │ ├── HTML.php │ │ │ ├── HTML │ │ │ │ ├── Renderer.php │ │ │ │ └── Renderer │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Template │ │ │ │ │ ├── coverage_bar.html.dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── nv.d3.min.css │ │ │ │ │ └── style.css │ │ │ │ │ ├── dashboard.html.dist │ │ │ │ │ ├── directory.html.dist │ │ │ │ │ ├── directory_item.html.dist │ │ │ │ │ ├── file.html.dist │ │ │ │ │ ├── file_item.html.dist │ │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── d3.min.js │ │ │ │ │ ├── holder.min.js │ │ │ │ │ ├── html5shiv.min.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ └── respond.min.js │ │ │ │ │ └── method_item.html.dist │ │ │ ├── Node.php │ │ │ ├── Node │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ └── Iterator.php │ │ │ ├── PHP.php │ │ │ ├── Text.php │ │ │ ├── XML.php │ │ │ └── XML │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ ├── File │ │ │ │ ├── Coverage.php │ │ │ │ ├── Method.php │ │ │ │ ├── Report.php │ │ │ │ └── Unit.php │ │ │ │ ├── Node.php │ │ │ │ ├── Project.php │ │ │ │ ├── Tests.php │ │ │ │ └── Totals.php │ │ │ ├── Util.php │ │ │ └── Util │ │ │ └── InvalidArgumentHelper.php │ └── tests │ │ ├── PHP │ │ ├── CodeCoverage │ │ │ ├── FilterTest.php │ │ │ ├── Report │ │ │ │ ├── CloverTest.php │ │ │ │ └── FactoryTest.php │ │ │ └── UtilTest.php │ │ └── CodeCoverageTest.php │ │ ├── TestCase.php │ │ └── _files │ │ ├── BankAccount-clover.xml │ │ ├── BankAccount.php │ │ ├── BankAccountTest.php │ │ ├── CoverageClassExtendedTest.php │ │ ├── CoverageClassTest.php │ │ ├── CoverageFunctionParenthesesTest.php │ │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ │ ├── CoverageFunctionTest.php │ │ ├── CoverageMethodOneLineAnnotationTest.php │ │ ├── CoverageMethodParenthesesTest.php │ │ ├── CoverageMethodParenthesesWhitespaceTest.php │ │ ├── CoverageMethodTest.php │ │ ├── CoverageNoneTest.php │ │ ├── CoverageNotPrivateTest.php │ │ ├── CoverageNotProtectedTest.php │ │ ├── CoverageNotPublicTest.php │ │ ├── CoverageNothingTest.php │ │ ├── CoveragePrivateTest.php │ │ ├── CoverageProtectedTest.php │ │ ├── CoveragePublicTest.php │ │ ├── CoverageTwoDefaultClassAnnotations.php │ │ ├── CoveredClass.php │ │ ├── CoveredFunction.php │ │ ├── NamespaceCoverageClassExtendedTest.php │ │ ├── NamespaceCoverageClassTest.php │ │ ├── NamespaceCoverageCoversClassPublicTest.php │ │ ├── NamespaceCoverageCoversClassTest.php │ │ ├── NamespaceCoverageMethodTest.php │ │ ├── NamespaceCoverageNotPrivateTest.php │ │ ├── NamespaceCoverageNotProtectedTest.php │ │ ├── NamespaceCoverageNotPublicTest.php │ │ ├── NamespaceCoveragePrivateTest.php │ │ ├── NamespaceCoverageProtectedTest.php │ │ ├── NamespaceCoveragePublicTest.php │ │ ├── NamespaceCoveredClass.php │ │ ├── NotExistingCoveredElementTest.php │ │ ├── class-with-anonymous-function-clover.xml │ │ ├── ignored-lines-clover.xml │ │ ├── source_with_class_and_anonymous_function.php │ │ ├── source_with_ignore.php │ │ ├── source_with_namespace.php │ │ ├── source_with_oneline_annotations.php │ │ ├── source_without_ignore.php │ │ └── source_without_namespace.php ├── php-file-iterator │ ├── .gitattributes │ ├── .gitignore │ ├── ChangeLog.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Facade.php │ │ ├── Factory.php │ │ └── Iterator.php ├── php-text-template │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ └── Template.php ├── php-timer │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── src │ │ └── Timer.php │ └── tests │ │ └── TimerTest.php ├── php-token-stream │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── phpunit.xml │ ├── composer.json │ ├── src │ │ ├── Token.php │ │ └── Token │ │ │ ├── Stream.php │ │ │ └── Stream │ │ │ └── CachingFactory.php │ └── tests │ │ ├── Token │ │ ├── ClassTest.php │ │ ├── ClosureTest.php │ │ ├── FunctionTest.php │ │ ├── IncludeTest.php │ │ ├── InterfaceTest.php │ │ └── NamespaceTest.php │ │ ├── TokenTest.php │ │ ├── _fixture │ │ ├── classExtendsNamespacedClass.php │ │ ├── classInNamespace.php │ │ ├── classInScopedNamespace.php │ │ ├── class_with_method_that_declares_anonymous_class.php │ │ ├── class_with_method_that_declares_anonymous_class2.php │ │ ├── closure.php │ │ ├── issue19.php │ │ ├── issue30.php │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ ├── source.php │ │ ├── source2.php │ │ ├── source3.php │ │ ├── source4.php │ │ └── source5.php │ │ └── bootstrap.php ├── phpunit-mock-objects │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── travis-ci.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ └── Framework │ │ │ └── MockObject │ │ │ ├── Builder │ │ │ ├── Identity.php │ │ │ ├── InvocationMocker.php │ │ │ ├── Match.php │ │ │ ├── MethodNameMatch.php │ │ │ ├── Namespace.php │ │ │ ├── ParametersMatch.php │ │ │ └── Stub.php │ │ │ ├── Exception │ │ │ ├── BadMethodCallException.php │ │ │ ├── Exception.php │ │ │ └── RuntimeException.php │ │ │ ├── Generator.php │ │ │ ├── Generator │ │ │ ├── mocked_class.tpl.dist │ │ │ ├── mocked_class_method.tpl.dist │ │ │ ├── mocked_clone.tpl.dist │ │ │ ├── mocked_method.tpl.dist │ │ │ ├── mocked_static_method.tpl.dist │ │ │ ├── proxied_method.tpl.dist │ │ │ ├── trait_class.tpl.dist │ │ │ ├── unmocked_clone.tpl.dist │ │ │ ├── wsdl_class.tpl.dist │ │ │ └── wsdl_method.tpl.dist │ │ │ ├── Invocation.php │ │ │ ├── Invocation │ │ │ ├── Object.php │ │ │ └── Static.php │ │ │ ├── InvocationMocker.php │ │ │ ├── Invokable.php │ │ │ ├── Matcher.php │ │ │ ├── Matcher │ │ │ ├── AnyInvokedCount.php │ │ │ ├── AnyParameters.php │ │ │ ├── ConsecutiveParameters.php │ │ │ ├── Invocation.php │ │ │ ├── InvokedAtIndex.php │ │ │ ├── InvokedAtLeastCount.php │ │ │ ├── InvokedAtLeastOnce.php │ │ │ ├── InvokedAtMostCount.php │ │ │ ├── InvokedCount.php │ │ │ ├── InvokedRecorder.php │ │ │ ├── MethodName.php │ │ │ ├── Parameters.php │ │ │ └── StatelessInvocation.php │ │ │ ├── MockBuilder.php │ │ │ ├── MockObject.php │ │ │ ├── Stub.php │ │ │ ├── Stub │ │ │ ├── ConsecutiveCalls.php │ │ │ ├── Exception.php │ │ │ ├── MatcherCollection.php │ │ │ ├── Return.php │ │ │ ├── ReturnArgument.php │ │ │ ├── ReturnCallback.php │ │ │ ├── ReturnSelf.php │ │ │ └── ReturnValueMap.php │ │ │ └── Verifiable.php │ └── tests │ │ ├── GeneratorTest.php │ │ ├── MockBuilderTest.php │ │ ├── MockObject │ │ ├── 232.phpt │ │ ├── Invocation │ │ │ ├── ObjectTest.php │ │ │ └── StaticTest.php │ │ ├── Matcher │ │ │ └── ConsecutiveParametersTest.php │ │ ├── abstract_class.phpt │ │ ├── class.phpt │ │ ├── class_call_parent_clone.phpt │ │ ├── class_call_parent_constructor.phpt │ │ ├── class_dont_call_parent_clone.phpt │ │ ├── class_dont_call_parent_constructor.phpt │ │ ├── class_implementing_interface_call_parent_constructor.phpt │ │ ├── class_implementing_interface_dont_call_parent_constructor.phpt │ │ ├── class_partial.phpt │ │ ├── class_with_method_named_method.phpt │ │ ├── class_with_method_with_variadic_arguments.phpt │ │ ├── interface.phpt │ │ ├── invocation_object_clone_object.phpt │ │ ├── namespaced_class.phpt │ │ ├── namespaced_class_call_parent_clone.phpt │ │ ├── namespaced_class_call_parent_constructor.phpt │ │ ├── namespaced_class_dont_call_parent_clone.phpt │ │ ├── namespaced_class_dont_call_parent_constructor.phpt │ │ ├── namespaced_class_implementing_interface_call_parent_constructor.phpt │ │ ├── namespaced_class_implementing_interface_dont_call_parent_constructor.phpt │ │ ├── namespaced_class_partial.phpt │ │ ├── namespaced_interface.phpt │ │ ├── nonexistent_class.phpt │ │ ├── nonexistent_class_with_namespace.phpt │ │ ├── nonexistent_class_with_namespace_starting_with_separator.phpt │ │ ├── proxy.phpt │ │ ├── scalar_type_declarations.phpt │ │ ├── wsdl_class.phpt │ │ ├── wsdl_class_namespace.phpt │ │ └── wsdl_class_partial.phpt │ │ ├── MockObjectTest.php │ │ ├── ProxyObjectTest.php │ │ ├── _fixture │ │ ├── AbstractMockTestClass.php │ │ ├── AbstractTrait.php │ │ ├── AnInterface.php │ │ ├── AnotherInterface.php │ │ ├── Bar.php │ │ ├── ClassThatImplementsSerializable.php │ │ ├── ClassWithStaticMethod.php │ │ ├── Foo.php │ │ ├── FunctionCallback.php │ │ ├── GoogleSearch.wsdl │ │ ├── InterfaceWithStaticMethod.php │ │ ├── MethodCallback.php │ │ ├── MethodCallbackByReference.php │ │ ├── MockTestInterface.php │ │ ├── Mockable.php │ │ ├── PartialMockTestClass.php │ │ ├── SingletonClass.php │ │ ├── SomeClass.php │ │ ├── StaticMockTestClass.php │ │ └── TraversableMockTestInterface.php │ │ └── bootstrap.php └── phpunit │ ├── .gitattributes │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── 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 │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ ├── bin │ │ └── phpab │ ├── binary-phar-autoload.php.in │ ├── ca.pem │ ├── library-phar-autoload.php.in │ ├── phar-manifest.php │ ├── phar-version.php │ └── travis-ci-fail.xml │ ├── composer.json │ ├── phpdox.xml.dist │ ├── phpunit │ ├── phpunit.xml.dist │ ├── phpunit.xsd │ ├── src │ ├── Exception.php │ ├── Extensions │ │ ├── GroupTestSuite.php │ │ ├── PhptTestCase.php │ │ ├── PhptTestSuite.php │ │ ├── RepeatedTest.php │ │ ├── TestDecorator.php │ │ └── TicketListener.php │ ├── Framework │ │ ├── Assert.php │ │ ├── Assert │ │ │ └── Functions.php │ │ ├── AssertionFailedError.php │ │ ├── BaseTestListener.php │ │ ├── CodeCoverageException.php │ │ ├── Constraint.php │ │ ├── Constraint │ │ │ ├── And.php │ │ │ ├── ArrayHasKey.php │ │ │ ├── ArraySubset.php │ │ │ ├── Attribute.php │ │ │ ├── Callback.php │ │ │ ├── ClassHasAttribute.php │ │ │ ├── ClassHasStaticAttribute.php │ │ │ ├── Composite.php │ │ │ ├── Count.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionCode.php │ │ │ ├── ExceptionMessage.php │ │ │ ├── ExceptionMessageRegExp.php │ │ │ ├── FileExists.php │ │ │ ├── GreaterThan.php │ │ │ ├── IsAnything.php │ │ │ ├── IsEmpty.php │ │ │ ├── IsEqual.php │ │ │ ├── IsFalse.php │ │ │ ├── IsIdentical.php │ │ │ ├── IsInstanceOf.php │ │ │ ├── IsJson.php │ │ │ ├── IsNull.php │ │ │ ├── IsTrue.php │ │ │ ├── IsType.php │ │ │ ├── JsonMatches.php │ │ │ ├── JsonMatches │ │ │ │ └── ErrorMessageProvider.php │ │ │ ├── LessThan.php │ │ │ ├── Not.php │ │ │ ├── ObjectHasAttribute.php │ │ │ ├── Or.php │ │ │ ├── PCREMatch.php │ │ │ ├── SameSize.php │ │ │ ├── StringContains.php │ │ │ ├── StringEndsWith.php │ │ │ ├── StringMatches.php │ │ │ ├── StringStartsWith.php │ │ │ ├── TraversableContains.php │ │ │ ├── TraversableContainsOnly.php │ │ │ └── Xor.php │ │ ├── Error.php │ │ ├── Error │ │ │ ├── Deprecated.php │ │ │ ├── Notice.php │ │ │ └── Warning.php │ │ ├── Exception.php │ │ ├── ExceptionWrapper.php │ │ ├── ExpectationFailedException.php │ │ ├── IncompleteTest.php │ │ ├── IncompleteTestCase.php │ │ ├── IncompleteTestError.php │ │ ├── InvalidCoversTargetError.php │ │ ├── InvalidCoversTargetException.php │ │ ├── OutputError.php │ │ ├── RiskyTest.php │ │ ├── RiskyTestError.php │ │ ├── SelfDescribing.php │ │ ├── SkippedTest.php │ │ ├── SkippedTestCase.php │ │ ├── SkippedTestError.php │ │ ├── SkippedTestSuiteError.php │ │ ├── SyntheticError.php │ │ ├── Test.php │ │ ├── TestCase.php │ │ ├── TestFailure.php │ │ ├── TestListener.php │ │ ├── TestResult.php │ │ ├── TestSuite.php │ │ ├── TestSuite │ │ │ └── DataProvider.php │ │ ├── UnintentionallyCoveredCodeError.php │ │ └── Warning.php │ ├── Runner │ │ ├── BaseTestRunner.php │ │ ├── Exception.php │ │ ├── Filter │ │ │ ├── Factory.php │ │ │ ├── Group.php │ │ │ ├── Group │ │ │ │ ├── Exclude.php │ │ │ │ └── Include.php │ │ │ └── Test.php │ │ ├── StandardTestSuiteLoader.php │ │ ├── TestSuiteLoader.php │ │ └── Version.php │ ├── TextUI │ │ ├── Command.php │ │ ├── ResultPrinter.php │ │ └── TestRunner.php │ └── Util │ │ ├── Blacklist.php │ │ ├── Configuration.php │ │ ├── ErrorHandler.php │ │ ├── Fileloader.php │ │ ├── Filesystem.php │ │ ├── Filter.php │ │ ├── Getopt.php │ │ ├── GlobalState.php │ │ ├── InvalidArgumentHelper.php │ │ ├── Log │ │ ├── JSON.php │ │ ├── JUnit.php │ │ └── TAP.php │ │ ├── PHP.php │ │ ├── PHP │ │ ├── Default.php │ │ ├── Template │ │ │ └── TestCaseMethod.tpl.dist │ │ ├── Windows.php │ │ └── eval-stdin.php │ │ ├── Printer.php │ │ ├── Regex.php │ │ ├── String.php │ │ ├── Test.php │ │ ├── TestDox │ │ ├── NamePrettifier.php │ │ ├── ResultPrinter.php │ │ └── ResultPrinter │ │ │ ├── HTML.php │ │ │ └── Text.php │ │ ├── TestSuiteIterator.php │ │ ├── Type.php │ │ └── XML.php │ └── tests │ ├── Extensions │ ├── PhptTestCaseTest.php │ └── RepeatedTestTest.php │ ├── Fail │ └── fail.phpt │ ├── Framework │ ├── AssertTest.php │ ├── BaseTestListenerTest.php │ ├── Constraint │ │ ├── CountTest.php │ │ ├── ExceptionMessageRegExpTest.php │ │ ├── ExceptionMessageTest.php │ │ ├── JsonMatches │ │ │ └── ErrorMessageProviderTest.php │ │ └── JsonMatchesTest.php │ ├── ConstraintTest.php │ ├── SuiteTest.php │ ├── TestCaseTest.php │ ├── TestFailureTest.php │ ├── TestImplementorTest.php │ └── TestListenerTest.php │ ├── Regression │ ├── 523 │ │ └── Issue523Test.php │ ├── 578 │ │ └── Issue578Test.php │ ├── 684 │ │ └── Issue684Test.php │ ├── 783 │ │ ├── ChildSuite.php │ │ ├── OneTest.php │ │ ├── ParentSuite.php │ │ └── TwoTest.php │ ├── 1021 │ │ └── Issue1021Test.php │ ├── 1021.phpt │ ├── 523.phpt │ ├── 578.phpt │ ├── 684.phpt │ ├── 783.phpt │ └── GitHub │ │ ├── 74 │ │ ├── Issue74Test.php │ │ └── NewException.php │ │ ├── 244 │ │ └── Issue244Test.php │ │ ├── 322 │ │ ├── Issue322Test.php │ │ └── phpunit322.xml │ │ ├── 433 │ │ └── Issue433Test.php │ │ ├── 445 │ │ └── Issue445Test.php │ │ ├── 498 │ │ └── Issue498Test.php │ │ ├── 503 │ │ └── Issue503Test.php │ │ ├── 581 │ │ └── Issue581Test.php │ │ ├── 765 │ │ └── Issue765Test.php │ │ ├── 797 │ │ ├── Issue797Test.php │ │ └── bootstrap797.php │ │ ├── 873 │ │ └── Issue873Test.php │ │ ├── 1149 │ │ └── Issue1149Test.php │ │ ├── 1216 │ │ ├── Issue1216Test.php │ │ ├── bootstrap1216.php │ │ └── phpunit1216.xml │ │ ├── 1265 │ │ ├── Issue1265Test.php │ │ └── phpunit1265.xml │ │ ├── 1330 │ │ ├── Issue1330Test.php │ │ └── phpunit1330.xml │ │ ├── 1335 │ │ ├── Issue1335Test.php │ │ └── bootstrap1335.php │ │ ├── 1337 │ │ └── Issue1337Test.php │ │ ├── 1348 │ │ └── Issue1348Test.php │ │ ├── 1351 │ │ ├── ChildProcessClass1351.php │ │ └── Issue1351Test.php │ │ ├── 1374 │ │ └── Issue1374Test.php │ │ ├── 1437 │ │ └── Issue1437Test.php │ │ ├── 1468 │ │ └── Issue1468Test.php │ │ ├── 1471 │ │ └── Issue1471Test.php │ │ ├── 1472 │ │ └── Issue1472Test.php │ │ ├── 1570 │ │ └── Issue1570Test.php │ │ ├── 1149.phpt │ │ ├── 1216.phpt │ │ ├── 1265.phpt │ │ ├── 1330.phpt │ │ ├── 1335.phpt │ │ ├── 1337.phpt │ │ ├── 1348.phpt │ │ ├── 1351.phpt │ │ ├── 1374.phpt │ │ ├── 1437.phpt │ │ ├── 1468.phpt │ │ ├── 1471.phpt │ │ ├── 1472.phpt │ │ ├── 1570.phpt │ │ ├── 244.phpt │ │ ├── 322.phpt │ │ ├── 433.phpt │ │ ├── 445.phpt │ │ ├── 498.phpt │ │ ├── 503.phpt │ │ ├── 581.phpt │ │ ├── 74.phpt │ │ ├── 765.phpt │ │ ├── 797.phpt │ │ ├── 863.phpt │ │ ├── 873-php5.phpt │ │ └── 873-php7.phpt │ ├── Runner │ └── BaseTestRunnerTest.php │ ├── TextUI │ ├── abstract-test-class.phpt │ ├── colors-always.phpt │ ├── concrete-test-class.phpt │ ├── custom-printer-debug.phpt │ ├── custom-printer-verbose.phpt │ ├── dataprovider-debug.phpt │ ├── dataprovider-log-xml-isolation.phpt │ ├── dataprovider-log-xml.phpt │ ├── dataprovider-testdox.phpt │ ├── debug.phpt │ ├── default-isolation.phpt │ ├── default.phpt │ ├── dependencies-isolation.phpt │ ├── dependencies.phpt │ ├── dependencies2-isolation.phpt │ ├── dependencies2.phpt │ ├── dependencies3-isolation.phpt │ ├── dependencies3.phpt │ ├── empty-testcase.phpt │ ├── exception-stack.phpt │ ├── exclude-group-isolation.phpt │ ├── exclude-group.phpt │ ├── failure-isolation.phpt │ ├── failure.phpt │ ├── fatal-isolation.phpt │ ├── filter-class-isolation.phpt │ ├── filter-class.phpt │ ├── filter-dataprovider-by-classname-and-range-isolation.phpt │ ├── filter-dataprovider-by-classname-and-range.phpt │ ├── filter-dataprovider-by-number-isolation.phpt │ ├── filter-dataprovider-by-number.phpt │ ├── filter-dataprovider-by-only-range-isolation.phpt │ ├── filter-dataprovider-by-only-range.phpt │ ├── filter-dataprovider-by-only-regexp-isolation.phpt │ ├── filter-dataprovider-by-only-regexp.phpt │ ├── filter-dataprovider-by-only-string-isolation.phpt │ ├── filter-dataprovider-by-only-string.phpt │ ├── filter-dataprovider-by-range-isolation.phpt │ ├── filter-dataprovider-by-range.phpt │ ├── filter-dataprovider-by-regexp-isolation.phpt │ ├── filter-dataprovider-by-regexp.phpt │ ├── filter-dataprovider-by-string-isolation.phpt │ ├── filter-dataprovider-by-string.phpt │ ├── filter-method-case-insensitive.phpt │ ├── filter-method-case-sensitive-no-result.phpt │ ├── filter-method-isolation.phpt │ ├── filter-method.phpt │ ├── filter-no-results.phpt │ ├── group-isolation.phpt │ ├── group.phpt │ ├── help.phpt │ ├── help2.phpt │ ├── ini-isolation.phpt │ ├── list-groups.phpt │ ├── log-json-no-pretty-print.phpt │ ├── log-json-post-66021.phpt │ ├── log-json-pre-66021.phpt │ ├── log-tap.phpt │ ├── log-xml.phpt │ ├── options-after-arguments.phpt │ ├── output-isolation.phpt │ ├── repeat.phpt │ ├── report-useless-tests-incomplete.phpt │ ├── report-useless-tests-isolation.phpt │ ├── report-useless-tests.phpt │ ├── tap.phpt │ ├── test-suffix-multiple.phpt │ ├── test-suffix-single.phpt │ ├── testdox-html.phpt │ ├── testdox-text.phpt │ └── testdox.phpt │ ├── Util │ ├── ConfigurationTest.php │ ├── GetoptTest.php │ ├── GlobalStateTest.php │ ├── RegexTest.php │ ├── TestDox │ │ └── NamePrettifierTest.php │ ├── TestTest.php │ └── XMLTest.php │ ├── _files │ ├── AbstractTest.php │ ├── Author.php │ ├── BankAccount.php │ ├── BankAccountTest.php │ ├── BankAccountTest.test.php │ ├── BaseTestListenerSample.php │ ├── BeforeAndAfterTest.php │ ├── BeforeClassAndAfterClassTest.php │ ├── Book.php │ ├── Calculator.php │ ├── ChangeCurrentWorkingDirectoryTest.php │ ├── ClassWithNonPublicAttributes.php │ ├── ClassWithScalarTypeDeclarations.php │ ├── ClassWithToString.php │ ├── ConcreteTest.my.php │ ├── ConcreteTest.php │ ├── CoverageClassExtendedTest.php │ ├── CoverageClassTest.php │ ├── CoverageFunctionParenthesesTest.php │ ├── CoverageFunctionParenthesesWhitespaceTest.php │ ├── CoverageFunctionTest.php │ ├── CoverageMethodOneLineAnnotationTest.php │ ├── CoverageMethodParenthesesTest.php │ ├── CoverageMethodParenthesesWhitespaceTest.php │ ├── CoverageMethodTest.php │ ├── CoverageNamespacedFunctionTest.php │ ├── CoverageNoneTest.php │ ├── CoverageNotPrivateTest.php │ ├── CoverageNotProtectedTest.php │ ├── CoverageNotPublicTest.php │ ├── CoverageNothingTest.php │ ├── CoveragePrivateTest.php │ ├── CoverageProtectedTest.php │ ├── CoveragePublicTest.php │ ├── CoverageTwoDefaultClassAnnotations.php │ ├── CoveredClass.php │ ├── CoveredFunction.php │ ├── CustomPrinter.php │ ├── DataProviderDebugTest.php │ ├── DataProviderFilterTest.php │ ├── DataProviderIncompleteTest.php │ ├── DataProviderSkippedTest.php │ ├── DataProviderTest.php │ ├── DependencyFailureTest.php │ ├── DependencySuccessTest.php │ ├── DependencyTestSuite.php │ ├── DoubleTestCase.php │ ├── DummyException.php │ ├── EmptyTestCaseTest.php │ ├── ExceptionInAssertPostConditionsTest.php │ ├── ExceptionInAssertPreConditionsTest.php │ ├── ExceptionInSetUpTest.php │ ├── ExceptionInTearDownTest.php │ ├── ExceptionInTest.php │ ├── ExceptionNamespaceTest.php │ ├── ExceptionStackTest.php │ ├── ExceptionTest.php │ ├── Failure.php │ ├── FailureTest.php │ ├── FatalTest.php │ ├── IncompleteTest.php │ ├── Inheritance │ │ ├── InheritanceA.php │ │ └── InheritanceB.php │ ├── InheritedTestCase.php │ ├── IniTest.php │ ├── IsolationTest.php │ ├── JsonData │ │ ├── arrayObject.json │ │ └── simpleObject.json │ ├── MockRunner.php │ ├── MultiDependencyTest.php │ ├── NamespaceCoverageClassExtendedTest.php │ ├── NamespaceCoverageClassTest.php │ ├── NamespaceCoverageCoversClassPublicTest.php │ ├── NamespaceCoverageCoversClassTest.php │ ├── NamespaceCoverageMethodTest.php │ ├── NamespaceCoverageNotPrivateTest.php │ ├── NamespaceCoverageNotProtectedTest.php │ ├── NamespaceCoverageNotPublicTest.php │ ├── NamespaceCoveragePrivateTest.php │ ├── NamespaceCoverageProtectedTest.php │ ├── NamespaceCoveragePublicTest.php │ ├── NamespaceCoveredClass.php │ ├── NamespaceCoveredFunction.php │ ├── NoArgTestCaseTest.php │ ├── NoTestCaseClass.php │ ├── NoTestCases.php │ ├── NonStatic.php │ ├── NotExistingCoveredElementTest.php │ ├── NotPublicTestCase.php │ ├── NotVoidTestCase.php │ ├── NothingTest.php │ ├── OneTestCase.php │ ├── OutputTestCase.php │ ├── OverrideTestCase.php │ ├── RequirementsClassBeforeClassHookTest.php │ ├── RequirementsClassDocBlockTest.php │ ├── RequirementsTest.php │ ├── SampleArrayAccess.php │ ├── SampleClass.php │ ├── Singleton.php │ ├── StackTest.php │ ├── Struct.php │ ├── Success.php │ ├── TemplateMethodsTest.php │ ├── TestIncomplete.php │ ├── TestIterator.php │ ├── TestIterator2.php │ ├── TestSkipped.php │ ├── TestTestError.php │ ├── TestWithTest.php │ ├── ThrowExceptionTestCase.php │ ├── ThrowNoExceptionTestCase.php │ ├── WasRun.php │ ├── bar.xml │ ├── configuration.colors.empty.xml │ ├── configuration.colors.false.xml │ ├── configuration.colors.invalid.xml │ ├── configuration.colors.true.xml │ ├── configuration.custom-printer.xml │ ├── configuration.xml │ ├── configuration_empty.xml │ ├── configuration_xinclude.xml │ ├── expectedFileFormat.txt │ ├── foo.xml │ ├── structureAttributesAreSameButValuesAreNot.xml │ ├── structureExpected.xml │ ├── structureIgnoreTextNodes.xml │ ├── structureIsSameButDataIsNot.xml │ ├── structureWrongNumberOfAttributes.xml │ └── structureWrongNumberOfNodes.xml │ └── bootstrap.php ├── psr └── log │ ├── .gitignore │ ├── LICENSE │ ├── Psr │ └── Log │ │ ├── AbstractLogger.php │ │ ├── InvalidArgumentException.php │ │ ├── LogLevel.php │ │ ├── LoggerAwareInterface.php │ │ ├── LoggerAwareTrait.php │ │ ├── LoggerInterface.php │ │ ├── LoggerTrait.php │ │ ├── NullLogger.php │ │ └── Test │ │ └── LoggerInterfaceTest.php │ ├── README.md │ └── composer.json ├── psy └── psysh │ ├── .editorconfig │ ├── .gitignore │ ├── .php_cs │ ├── .styleci.yml │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── bin │ ├── build │ ├── build-manual │ ├── build-phar │ ├── build-vendor │ └── psysh │ ├── composer.json │ ├── phpcs.xml │ ├── phpunit.xml.dist │ ├── src │ └── Psy │ │ ├── Autoloader.php │ │ ├── CodeCleaner.php │ │ ├── CodeCleaner │ │ ├── AbstractClassPass.php │ │ ├── AssignThisVariablePass.php │ │ ├── CallTimePassByReferencePass.php │ │ ├── CalledClassPass.php │ │ ├── CodeCleanerPass.php │ │ ├── FunctionReturnInWriteContextPass.php │ │ ├── ImplicitReturnPass.php │ │ ├── InstanceOfPass.php │ │ ├── LeavePsyshAlonePass.php │ │ ├── LegacyEmptyPass.php │ │ ├── MagicConstantsPass.php │ │ ├── NamespaceAwarePass.php │ │ ├── NamespacePass.php │ │ ├── StaticConstructorPass.php │ │ ├── UseStatementPass.php │ │ ├── ValidClassNamePass.php │ │ ├── ValidConstantPass.php │ │ └── ValidFunctionNamePass.php │ │ ├── Command │ │ ├── BufferCommand.php │ │ ├── ClearCommand.php │ │ ├── Command.php │ │ ├── DocCommand.php │ │ ├── DumpCommand.php │ │ ├── ExitCommand.php │ │ ├── HelpCommand.php │ │ ├── HistoryCommand.php │ │ ├── ListCommand.php │ │ ├── ListCommand │ │ │ ├── ClassConstantEnumerator.php │ │ │ ├── ClassEnumerator.php │ │ │ ├── ConstantEnumerator.php │ │ │ ├── Enumerator.php │ │ │ ├── FunctionEnumerator.php │ │ │ ├── GlobalVariableEnumerator.php │ │ │ ├── InterfaceEnumerator.php │ │ │ ├── MethodEnumerator.php │ │ │ ├── PropertyEnumerator.php │ │ │ ├── TraitEnumerator.php │ │ │ └── VariableEnumerator.php │ │ ├── ParseCommand.php │ │ ├── PsyVersionCommand.php │ │ ├── ReflectingCommand.php │ │ ├── ShowCommand.php │ │ ├── ThrowUpCommand.php │ │ ├── TraceCommand.php │ │ ├── WhereamiCommand.php │ │ └── WtfCommand.php │ │ ├── Compiler.php │ │ ├── ConfigPaths.php │ │ ├── Configuration.php │ │ ├── Context.php │ │ ├── ContextAware.php │ │ ├── Exception │ │ ├── BreakException.php │ │ ├── DeprecatedException.php │ │ ├── ErrorException.php │ │ ├── Exception.php │ │ ├── FatalErrorException.php │ │ ├── ParseErrorException.php │ │ ├── RuntimeException.php │ │ └── ThrowUpException.php │ │ ├── ExecutionLoop │ │ ├── ForkingLoop.php │ │ └── Loop.php │ │ ├── Formatter │ │ ├── CodeFormatter.php │ │ ├── DocblockFormatter.php │ │ ├── Formatter.php │ │ └── SignatureFormatter.php │ │ ├── Output │ │ ├── OutputPager.php │ │ ├── PassthruPager.php │ │ ├── ProcOutputPager.php │ │ └── ShellOutput.php │ │ ├── ParserFactory.php │ │ ├── Readline │ │ ├── GNUReadline.php │ │ ├── Libedit.php │ │ ├── Readline.php │ │ └── Transient.php │ │ ├── Reflection │ │ └── ReflectionConstant.php │ │ ├── Shell.php │ │ ├── TabCompletion │ │ ├── AutoCompleter.php │ │ └── Matcher │ │ │ ├── AbstractContextAwareMatcher.php │ │ │ ├── AbstractMatcher.php │ │ │ ├── ClassAttributesMatcher.php │ │ │ ├── ClassMethodsMatcher.php │ │ │ ├── ClassNamesMatcher.php │ │ │ ├── CommandsMatcher.php │ │ │ ├── ConstantsMatcher.php │ │ │ ├── FunctionsMatcher.php │ │ │ ├── KeywordsMatcher.php │ │ │ ├── MongoClientMatcher.php │ │ │ ├── MongoDatabaseMatcher.php │ │ │ ├── ObjectAttributesMatcher.php │ │ │ ├── ObjectMethodsMatcher.php │ │ │ └── VariablesMatcher.php │ │ ├── Util │ │ ├── Docblock.php │ │ ├── Json.php │ │ ├── Mirror.php │ │ └── Str.php │ │ ├── VarDumper │ │ ├── Cloner.php │ │ ├── Dumper.php │ │ ├── Presenter.php │ │ └── PresenterAware.php │ │ └── functions.php │ └── test │ ├── Psy │ └── Test │ │ ├── AutoloaderTest.php │ │ ├── CodeCleaner │ │ ├── AbstractClassPassTest.php │ │ ├── AssignThisVariablePassTest.php │ │ ├── CallTimePassByReferencePassTest.php │ │ ├── CalledClassPassTest.php │ │ ├── CodeCleanerTestCase.php │ │ ├── Fixtures │ │ │ ├── ClassWithCallStatic.php │ │ │ └── ClassWithStatic.php │ │ ├── FunctionReturnInWriteContextPassTest.php │ │ ├── ImplicitReturnPassTest.php │ │ ├── InstanceOfPassTest.php │ │ ├── LeavePsyshAlonePassTest.php │ │ ├── LegacyEmptyPassTest.php │ │ ├── MagicConstantsPassTest.php │ │ ├── NamespacePassTest.php │ │ ├── StaticConstructorPassTest.php │ │ ├── UseStatementPassTest.php │ │ ├── ValidClassNamePassTest.php │ │ ├── ValidConstantPassTest.php │ │ └── ValidFunctionNamePassTest.php │ │ ├── CodeCleanerTest.php │ │ ├── ConfigurationTest.php │ │ ├── Exception │ │ ├── BreakExceptionTest.php │ │ ├── ErrorExceptionTest.php │ │ ├── FatalErrorExceptionTest.php │ │ ├── ParseErrorExceptionTest.php │ │ └── RuntimeExceptionTest.php │ │ ├── Formatter │ │ ├── CodeFormatterTest.php │ │ ├── DocblockFormatterTest.php │ │ └── SignatureFormatterTest.php │ │ ├── Readline │ │ ├── GNUReadlineTest.php │ │ ├── LibeditTest.php │ │ └── TransientTest.php │ │ ├── Reflection │ │ └── ReflectionConstantTest.php │ │ ├── ShellTest.php │ │ ├── TabCompletion │ │ ├── AutoCompleterTest.php │ │ └── StaticSample.php │ │ └── Util │ │ ├── DocblockTest.php │ │ ├── MirrorTest.php │ │ └── StrTest.php │ ├── fixtures │ ├── config.php │ ├── default │ │ ├── .config │ │ │ └── psysh │ │ │ │ ├── config.php │ │ │ │ └── psysh_history │ │ └── .local │ │ │ └── share │ │ │ └── psysh │ │ │ └── php_manual.sqlite │ ├── empty.php │ ├── legacy │ │ └── .psysh │ │ │ ├── history │ │ │ ├── php_manual.sqlite │ │ │ └── rc.php │ ├── mixed │ │ └── .psysh │ │ │ ├── config.php │ │ │ ├── psysh_history │ │ │ └── rc.php │ ├── project │ │ └── .psysh.php │ └── unvis_fixtures.json │ └── tools │ ├── gen_unvis_fixtures.py │ └── vis.py ├── sebastian ├── comparator │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── build │ │ └── travis-ci.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 │ │ ├── Author.php │ │ ├── Book.php │ │ ├── ClassWithToString.php │ │ ├── SampleClass.php │ │ ├── Struct.php │ │ ├── TestClass.php │ │ └── TestClassComparator.php │ │ ├── autoload.php │ │ └── bootstrap.php ├── diff │ ├── .gitignore │ ├── .php_cs │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── Chunk.php │ │ ├── Diff.php │ │ ├── Differ.php │ │ ├── LCS │ │ │ ├── LongestCommonSubsequence.php │ │ │ ├── MemoryEfficientLongestCommonSubsequenceImplementation.php │ │ │ └── TimeEfficientLongestCommonSubsequenceImplementation.php │ │ ├── Line.php │ │ └── Parser.php │ └── tests │ │ ├── DifferTest.php │ │ ├── LCS │ │ └── TimeEfficientImplementationTest.php │ │ ├── ParserTest.php │ │ └── fixtures │ │ ├── patch.txt │ │ └── patch2.txt ├── environment │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── Console.php │ │ └── Runtime.php │ └── tests │ │ ├── ConsoleTest.php │ │ └── RuntimeTest.php ├── exporter │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ └── Exporter.php │ └── tests │ │ └── ExporterTest.php ├── global-state │ ├── .gitignore │ ├── .travis.yml │ ├── 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 │ │ ├── BlacklistedChildClass.php │ │ ├── BlacklistedClass.php │ │ ├── BlacklistedImplementor.php │ │ ├── BlacklistedInterface.php │ │ ├── SnapshotClass.php │ │ ├── SnapshotDomDocument.php │ │ ├── SnapshotFunctions.php │ │ └── SnapshotTrait.php ├── recursion-context │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── build.xml │ ├── composer.json │ ├── phpunit.xml.dist │ ├── src │ │ ├── Context.php │ │ ├── Exception.php │ │ └── InvalidArgumentException.php │ └── tests │ │ └── ContextTest.php └── version │ ├── .gitattributes │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Version.php ├── swiftmailer └── swiftmailer │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── 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 │ │ ├── Encoders.graffle │ │ ├── Mime.graffle │ │ └── Transports.graffle │ ├── lib │ ├── classes │ │ ├── Swift.php │ │ └── Swift │ │ │ ├── Attachment.php │ │ │ ├── ByteStream │ │ │ ├── AbstractFilterableInputStream.php │ │ │ ├── ArrayByteStream.php │ │ │ ├── FileByteStream.php │ │ │ └── TemporaryFileByteStream.php │ │ │ ├── CharacterReader.php │ │ │ ├── CharacterReader │ │ │ ├── GenericFixedWidthReader.php │ │ │ ├── UsAsciiReader.php │ │ │ └── Utf8Reader.php │ │ │ ├── CharacterReaderFactory.php │ │ │ ├── CharacterReaderFactory │ │ │ └── SimpleCharacterReaderFactory.php │ │ │ ├── CharacterStream.php │ │ │ ├── CharacterStream │ │ │ ├── ArrayCharacterStream.php │ │ │ └── NgCharacterStream.php │ │ │ ├── ConfigurableSpool.php │ │ │ ├── DependencyContainer.php │ │ │ ├── DependencyException.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── Encoder.php │ │ │ ├── Encoder │ │ │ ├── Base64Encoder.php │ │ │ ├── QpEncoder.php │ │ │ └── Rfc2231Encoder.php │ │ │ ├── Encoding.php │ │ │ ├── Events │ │ │ ├── CommandEvent.php │ │ │ ├── CommandListener.php │ │ │ ├── Event.php │ │ │ ├── EventDispatcher.php │ │ │ ├── EventListener.php │ │ │ ├── EventObject.php │ │ │ ├── ResponseEvent.php │ │ │ ├── ResponseListener.php │ │ │ ├── SendEvent.php │ │ │ ├── SendListener.php │ │ │ ├── SimpleEventDispatcher.php │ │ │ ├── TransportChangeEvent.php │ │ │ ├── TransportChangeListener.php │ │ │ ├── TransportExceptionEvent.php │ │ │ └── TransportExceptionListener.php │ │ │ ├── FailoverTransport.php │ │ │ ├── FileSpool.php │ │ │ ├── FileStream.php │ │ │ ├── Filterable.php │ │ │ ├── Image.php │ │ │ ├── InputByteStream.php │ │ │ ├── IoException.php │ │ │ ├── KeyCache.php │ │ │ ├── KeyCache │ │ │ ├── ArrayKeyCache.php │ │ │ ├── DiskKeyCache.php │ │ │ ├── KeyCacheInputStream.php │ │ │ ├── NullKeyCache.php │ │ │ └── SimpleKeyCacheInputStream.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── MailTransport.php │ │ │ ├── Mailer.php │ │ │ ├── Mailer │ │ │ ├── ArrayRecipientIterator.php │ │ │ └── RecipientIterator.php │ │ │ ├── MemorySpool.php │ │ │ ├── Message.php │ │ │ ├── Mime │ │ │ ├── Attachment.php │ │ │ ├── CharsetObserver.php │ │ │ ├── ContentEncoder.php │ │ │ ├── ContentEncoder │ │ │ │ ├── Base64ContentEncoder.php │ │ │ │ ├── NativeQpContentEncoder.php │ │ │ │ ├── PlainContentEncoder.php │ │ │ │ ├── QpContentEncoder.php │ │ │ │ ├── QpContentEncoderProxy.php │ │ │ │ └── RawContentEncoder.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── EncodingObserver.php │ │ │ ├── Grammar.php │ │ │ ├── Header.php │ │ │ ├── HeaderEncoder.php │ │ │ ├── HeaderEncoder │ │ │ │ ├── Base64HeaderEncoder.php │ │ │ │ └── QpHeaderEncoder.php │ │ │ ├── HeaderFactory.php │ │ │ ├── HeaderSet.php │ │ │ ├── Headers │ │ │ │ ├── AbstractHeader.php │ │ │ │ ├── DateHeader.php │ │ │ │ ├── IdentificationHeader.php │ │ │ │ ├── MailboxHeader.php │ │ │ │ ├── OpenDKIMHeader.php │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ ├── PathHeader.php │ │ │ │ └── UnstructuredHeader.php │ │ │ ├── Message.php │ │ │ ├── MimeEntity.php │ │ │ ├── MimePart.php │ │ │ ├── ParameterizedHeader.php │ │ │ ├── SimpleHeaderFactory.php │ │ │ ├── SimpleHeaderSet.php │ │ │ ├── SimpleMessage.php │ │ │ └── SimpleMimeEntity.php │ │ │ ├── MimePart.php │ │ │ ├── NullTransport.php │ │ │ ├── OutputByteStream.php │ │ │ ├── Plugins │ │ │ ├── AntiFloodPlugin.php │ │ │ ├── BandwidthMonitorPlugin.php │ │ │ ├── Decorator │ │ │ │ └── Replacements.php │ │ │ ├── DecoratorPlugin.php │ │ │ ├── ImpersonatePlugin.php │ │ │ ├── Logger.php │ │ │ ├── LoggerPlugin.php │ │ │ ├── Loggers │ │ │ │ ├── ArrayLogger.php │ │ │ │ └── EchoLogger.php │ │ │ ├── MessageLogger.php │ │ │ ├── Pop │ │ │ │ ├── Pop3Connection.php │ │ │ │ └── Pop3Exception.php │ │ │ ├── PopBeforeSmtpPlugin.php │ │ │ ├── RedirectingPlugin.php │ │ │ ├── Reporter.php │ │ │ ├── ReporterPlugin.php │ │ │ ├── Reporters │ │ │ │ ├── HitReporter.php │ │ │ │ └── HtmlReporter.php │ │ │ ├── Sleeper.php │ │ │ ├── ThrottlerPlugin.php │ │ │ └── Timer.php │ │ │ ├── Preferences.php │ │ │ ├── ReplacementFilterFactory.php │ │ │ ├── RfcComplianceException.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SignedMessage.php │ │ │ ├── Signer.php │ │ │ ├── Signers │ │ │ ├── BodySigner.php │ │ │ ├── DKIMSigner.php │ │ │ ├── DomainKeySigner.php │ │ │ ├── HeaderSigner.php │ │ │ ├── OpenDKIMSigner.php │ │ │ └── SMimeSigner.php │ │ │ ├── SmtpTransport.php │ │ │ ├── Spool.php │ │ │ ├── SpoolTransport.php │ │ │ ├── StreamFilter.php │ │ │ ├── StreamFilters │ │ │ ├── ByteArrayReplacementFilter.php │ │ │ ├── StringReplacementFilter.php │ │ │ └── StringReplacementFilterFactory.php │ │ │ ├── SwiftException.php │ │ │ ├── Transport.php │ │ │ ├── Transport │ │ │ ├── AbstractSmtpTransport.php │ │ │ ├── Esmtp │ │ │ │ ├── Auth │ │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ │ ├── NTLMAuthenticator.php │ │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ │ └── XOAuth2Authenticator.php │ │ │ │ ├── AuthHandler.php │ │ │ │ └── Authenticator.php │ │ │ ├── EsmtpHandler.php │ │ │ ├── EsmtpTransport.php │ │ │ ├── FailoverTransport.php │ │ │ ├── IoBuffer.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── MailInvoker.php │ │ │ ├── MailTransport.php │ │ │ ├── NullTransport.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SimpleMailInvoker.php │ │ │ ├── SmtpAgent.php │ │ │ ├── SpoolTransport.php │ │ │ └── StreamBuffer.php │ │ │ ├── TransportException.php │ │ │ └── Validate.php │ ├── dependency_maps │ │ ├── cache_deps.php │ │ ├── message_deps.php │ │ ├── mime_deps.php │ │ └── transport_deps.php │ ├── 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 │ ├── charsets │ │ ├── iso-2022-jp │ │ │ └── one.txt │ │ ├── iso-8859-1 │ │ │ └── one.txt │ │ └── utf-8 │ │ │ ├── one.txt │ │ │ ├── three.txt │ │ │ └── two.txt │ ├── dkim │ │ ├── dkim.test.priv │ │ └── dkim.test.pub │ ├── files │ │ ├── data.txt │ │ ├── swiftmailer.png │ │ └── textfile.zip │ └── smime │ │ ├── CA.srl │ │ ├── ca.crt │ │ ├── ca.key │ │ ├── create-cert.sh │ │ ├── encrypt.crt │ │ ├── encrypt.key │ │ ├── encrypt2.crt │ │ ├── encrypt2.key │ │ ├── intermediate.crt │ │ ├── intermediate.key │ │ ├── sign.crt │ │ ├── sign.key │ │ ├── sign2.crt │ │ └── sign2.key │ ├── acceptance.conf.php.default │ ├── acceptance │ └── Swift │ │ ├── AttachmentAcceptanceTest.php │ │ ├── ByteStream │ │ └── FileByteStreamAcceptanceTest.php │ │ ├── CharacterReaderFactory │ │ └── SimpleCharacterReaderFactoryAcceptanceTest.php │ │ ├── DependencyContainerAcceptanceTest.php │ │ ├── EmbeddedFileAcceptanceTest.php │ │ ├── Encoder │ │ ├── Base64EncoderAcceptanceTest.php │ │ ├── QpEncoderAcceptanceTest.php │ │ └── Rfc2231EncoderAcceptanceTest.php │ │ ├── EncodingAcceptanceTest.php │ │ ├── KeyCache │ │ ├── ArrayKeyCacheAcceptanceTest.php │ │ └── DiskKeyCacheAcceptanceTest.php │ │ ├── MessageAcceptanceTest.php │ │ ├── Mime │ │ ├── AttachmentAcceptanceTest.php │ │ ├── ContentEncoder │ │ │ ├── Base64ContentEncoderAcceptanceTest.php │ │ │ ├── NativeQpContentEncoderAcceptanceTest.php │ │ │ ├── PlainContentEncoderAcceptanceTest.php │ │ │ └── QpContentEncoderAcceptanceTest.php │ │ ├── EmbeddedFileAcceptanceTest.php │ │ ├── HeaderEncoder │ │ │ └── Base64HeaderEncoderAcceptanceTest.php │ │ ├── MimePartAcceptanceTest.php │ │ └── SimpleMessageAcceptanceTest.php │ │ ├── MimePartAcceptanceTest.php │ │ └── Transport │ │ └── StreamBuffer │ │ ├── AbstractStreamBufferAcceptanceTest.php │ │ ├── BasicSocketAcceptanceTest.php │ │ ├── ProcessAcceptanceTest.php │ │ ├── SocketTimeoutTest.php │ │ ├── SslSocketAcceptanceTest.php │ │ └── TlsSocketAcceptanceTest.php │ ├── bootstrap.php │ ├── bug │ └── Swift │ │ ├── Bug111Test.php │ │ ├── Bug118Test.php │ │ ├── Bug206Test.php │ │ ├── Bug274Test.php │ │ ├── Bug34Test.php │ │ ├── Bug35Test.php │ │ ├── Bug38Test.php │ │ ├── Bug518Test.php │ │ ├── Bug51Test.php │ │ ├── Bug534Test.php │ │ ├── Bug71Test.php │ │ └── Bug76Test.php │ ├── fixtures │ ├── EsmtpTransportFixture.php │ └── MimeEntityFixture.php │ ├── smoke.conf.php.default │ ├── smoke │ └── Swift │ │ └── Smoke │ │ ├── AttachmentSmokeTest.php │ │ ├── BasicSmokeTest.php │ │ ├── HtmlWithAttachmentSmokeTest.php │ │ └── InternationalSmokeTest.php │ └── unit │ └── Swift │ ├── ByteStream │ └── ArrayByteStreamTest.php │ ├── CharacterReader │ ├── GenericFixedWidthReaderTest.php │ ├── UsAsciiReaderTest.php │ └── Utf8ReaderTest.php │ ├── CharacterStream │ └── ArrayCharacterStreamTest.php │ ├── DependencyContainerTest.php │ ├── Encoder │ ├── Base64EncoderTest.php │ ├── QpEncoderTest.php │ └── Rfc2231EncoderTest.php │ ├── Events │ ├── CommandEventTest.php │ ├── EventObjectTest.php │ ├── ResponseEventTest.php │ ├── SendEventTest.php │ ├── SimpleEventDispatcherTest.php │ ├── TransportChangeEventTest.php │ └── TransportExceptionEventTest.php │ ├── KeyCache │ ├── ArrayKeyCacheTest.php │ └── SimpleKeyCacheInputStreamTest.php │ ├── Mailer │ └── ArrayRecipientIteratorTest.php │ ├── MailerTest.php │ ├── MessageTest.php │ ├── Mime │ ├── AbstractMimeEntityTest.php │ ├── AttachmentTest.php │ ├── ContentEncoder │ │ ├── Base64ContentEncoderTest.php │ │ ├── PlainContentEncoderTest.php │ │ └── QpContentEncoderTest.php │ ├── EmbeddedFileTest.php │ ├── HeaderEncoder │ │ ├── Base64HeaderEncoderTest.php │ │ └── QpHeaderEncoderTest.php │ ├── Headers │ │ ├── DateHeaderTest.php │ │ ├── IdentificationHeaderTest.php │ │ ├── MailboxHeaderTest.php │ │ ├── ParameterizedHeaderTest.php │ │ ├── PathHeaderTest.php │ │ └── UnstructuredHeaderTest.php │ ├── MimePartTest.php │ ├── SimpleHeaderFactoryTest.php │ ├── SimpleHeaderSetTest.php │ ├── SimpleMessageTest.php │ └── SimpleMimeEntityTest.php │ ├── Plugins │ ├── AntiFloodPluginTest.php │ ├── BandwidthMonitorPluginTest.php │ ├── DecoratorPluginTest.php │ ├── LoggerPluginTest.php │ ├── Loggers │ │ ├── ArrayLoggerTest.php │ │ └── EchoLoggerTest.php │ ├── PopBeforeSmtpPluginTest.php │ ├── RedirectingPluginTest.php │ ├── ReporterPluginTest.php │ ├── Reporters │ │ ├── HitReporterTest.php │ │ └── HtmlReporterTest.php │ └── ThrottlerPluginTest.php │ ├── Signers │ ├── DKIMSignerTest.php │ ├── OpenDKIMSignerTest.php │ └── SMimeSignerTest.php │ ├── StreamFilters │ ├── ByteArrayReplacementFilterTest.php │ ├── StringReplacementFilterFactoryTest.php │ └── StringReplacementFilterTest.php │ └── Transport │ ├── AbstractSmtpEventSupportTest.php │ ├── AbstractSmtpTest.php │ ├── Esmtp │ ├── Auth │ │ ├── CramMd5AuthenticatorTest.php │ │ ├── LoginAuthenticatorTest.php │ │ ├── NTLMAuthenticatorTest.php │ │ └── PlainAuthenticatorTest.php │ └── AuthHandlerTest.php │ ├── EsmtpTransport │ └── ExtensionSupportTest.php │ ├── EsmtpTransportTest.php │ ├── FailoverTransportTest.php │ ├── LoadBalancedTransportTest.php │ ├── MailTransportTest.php │ ├── SendmailTransportTest.php │ └── StreamBufferTest.php ├── symfony ├── console │ ├── .gitignore │ ├── Application.php │ ├── CHANGELOG.md │ ├── Command │ │ ├── Command.php │ │ ├── HelpCommand.php │ │ └── ListCommand.php │ ├── ConsoleEvents.php │ ├── Descriptor │ │ ├── ApplicationDescription.php │ │ ├── Descriptor.php │ │ ├── DescriptorInterface.php │ │ ├── JsonDescriptor.php │ │ ├── MarkdownDescriptor.php │ │ ├── TextDescriptor.php │ │ └── XmlDescriptor.php │ ├── Event │ │ ├── ConsoleCommandEvent.php │ │ ├── ConsoleEvent.php │ │ ├── ConsoleExceptionEvent.php │ │ └── ConsoleTerminateEvent.php │ ├── Exception │ │ ├── CommandNotFoundException.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidOptionException.php │ │ ├── LogicException.php │ │ └── RuntimeException.php │ ├── Formatter │ │ ├── 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 │ │ └── 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 │ │ │ └── hiddeninput.exe │ ├── Style │ │ ├── OutputStyle.php │ │ ├── StyleInterface.php │ │ └── SymfonyStyle.php │ ├── Tester │ │ ├── ApplicationTester.php │ │ └── CommandTester.php │ ├── Tests │ │ ├── ApplicationTest.php │ │ ├── Command │ │ │ ├── CommandTest.php │ │ │ ├── HelpCommandTest.php │ │ │ └── ListCommandTest.php │ │ ├── Descriptor │ │ │ ├── AbstractDescriptorTest.php │ │ │ ├── JsonDescriptorTest.php │ │ │ ├── MarkdownDescriptorTest.php │ │ │ ├── ObjectsProvider.php │ │ │ ├── TextDescriptorTest.php │ │ │ └── XmlDescriptorTest.php │ │ ├── Fixtures │ │ │ ├── BarBucCommand.php │ │ │ ├── DescriptorApplication1.php │ │ │ ├── DescriptorApplication2.php │ │ │ ├── DescriptorCommand1.php │ │ │ ├── DescriptorCommand2.php │ │ │ ├── DummyOutput.php │ │ │ ├── Foo1Command.php │ │ │ ├── Foo2Command.php │ │ │ ├── Foo3Command.php │ │ │ ├── Foo4Command.php │ │ │ ├── Foo5Command.php │ │ │ ├── Foo6Command.php │ │ │ ├── FooCommand.php │ │ │ ├── FooSubnamespaced1Command.php │ │ │ ├── FooSubnamespaced2Command.php │ │ │ ├── FoobarCommand.php │ │ │ ├── Style │ │ │ │ └── SymfonyStyle │ │ │ │ │ ├── command │ │ │ │ │ ├── command_0.php │ │ │ │ │ ├── command_1.php │ │ │ │ │ ├── command_2.php │ │ │ │ │ ├── command_3.php │ │ │ │ │ ├── command_4.php │ │ │ │ │ ├── command_5.php │ │ │ │ │ ├── command_6.php │ │ │ │ │ └── command_7.php │ │ │ │ │ └── output │ │ │ │ │ ├── output_0.txt │ │ │ │ │ ├── output_1.txt │ │ │ │ │ ├── output_2.txt │ │ │ │ │ ├── output_3.txt │ │ │ │ │ ├── output_4.txt │ │ │ │ │ ├── output_5.txt │ │ │ │ │ ├── output_6.txt │ │ │ │ │ └── output_7.txt │ │ │ ├── TestCommand.php │ │ │ ├── application_1.json │ │ │ ├── application_1.md │ │ │ ├── application_1.txt │ │ │ ├── application_1.xml │ │ │ ├── application_2.json │ │ │ ├── application_2.md │ │ │ ├── application_2.txt │ │ │ ├── application_2.xml │ │ │ ├── application_astext1.txt │ │ │ ├── application_astext2.txt │ │ │ ├── application_gethelp.txt │ │ │ ├── application_renderexception1.txt │ │ │ ├── application_renderexception2.txt │ │ │ ├── application_renderexception3.txt │ │ │ ├── application_renderexception3decorated.txt │ │ │ ├── application_renderexception4.txt │ │ │ ├── application_renderexception_doublewidth1.txt │ │ │ ├── application_renderexception_doublewidth1decorated.txt │ │ │ ├── application_renderexception_doublewidth2.txt │ │ │ ├── application_run1.txt │ │ │ ├── application_run2.txt │ │ │ ├── application_run3.txt │ │ │ ├── application_run4.txt │ │ │ ├── command_1.json │ │ │ ├── command_1.md │ │ │ ├── command_1.txt │ │ │ ├── command_1.xml │ │ │ ├── command_2.json │ │ │ ├── command_2.md │ │ │ ├── command_2.txt │ │ │ ├── command_2.xml │ │ │ ├── command_astext.txt │ │ │ ├── command_asxml.txt │ │ │ ├── definition_astext.txt │ │ │ ├── definition_asxml.txt │ │ │ ├── input_argument_1.json │ │ │ ├── input_argument_1.md │ │ │ ├── input_argument_1.txt │ │ │ ├── input_argument_1.xml │ │ │ ├── input_argument_2.json │ │ │ ├── input_argument_2.md │ │ │ ├── input_argument_2.txt │ │ │ ├── input_argument_2.xml │ │ │ ├── input_argument_3.json │ │ │ ├── input_argument_3.md │ │ │ ├── input_argument_3.txt │ │ │ ├── input_argument_3.xml │ │ │ ├── input_argument_4.json │ │ │ ├── input_argument_4.md │ │ │ ├── input_argument_4.txt │ │ │ ├── input_argument_4.xml │ │ │ ├── input_definition_1.json │ │ │ ├── input_definition_1.md │ │ │ ├── input_definition_1.txt │ │ │ ├── input_definition_1.xml │ │ │ ├── input_definition_2.json │ │ │ ├── input_definition_2.md │ │ │ ├── input_definition_2.txt │ │ │ ├── input_definition_2.xml │ │ │ ├── input_definition_3.json │ │ │ ├── input_definition_3.md │ │ │ ├── input_definition_3.txt │ │ │ ├── input_definition_3.xml │ │ │ ├── input_definition_4.json │ │ │ ├── input_definition_4.md │ │ │ ├── input_definition_4.txt │ │ │ ├── input_definition_4.xml │ │ │ ├── input_option_1.json │ │ │ ├── input_option_1.md │ │ │ ├── input_option_1.txt │ │ │ ├── input_option_1.xml │ │ │ ├── input_option_2.json │ │ │ ├── input_option_2.md │ │ │ ├── input_option_2.txt │ │ │ ├── input_option_2.xml │ │ │ ├── input_option_3.json │ │ │ ├── input_option_3.md │ │ │ ├── input_option_3.txt │ │ │ ├── input_option_3.xml │ │ │ ├── input_option_4.json │ │ │ ├── input_option_4.md │ │ │ ├── input_option_4.txt │ │ │ ├── input_option_4.xml │ │ │ ├── input_option_5.json │ │ │ ├── input_option_5.md │ │ │ ├── input_option_5.txt │ │ │ ├── input_option_5.xml │ │ │ ├── input_option_6.json │ │ │ ├── input_option_6.md │ │ │ ├── input_option_6.txt │ │ │ └── input_option_6.xml │ │ ├── Formatter │ │ │ ├── OutputFormatterStyleStackTest.php │ │ │ ├── OutputFormatterStyleTest.php │ │ │ └── OutputFormatterTest.php │ │ ├── Helper │ │ │ ├── FormatterHelperTest.php │ │ │ ├── HelperSetTest.php │ │ │ ├── ProcessHelperTest.php │ │ │ ├── ProgressBarTest.php │ │ │ ├── ProgressIndicatorTest.php │ │ │ ├── QuestionHelperTest.php │ │ │ ├── TableStyleTest.php │ │ │ └── TableTest.php │ │ ├── Input │ │ │ ├── ArgvInputTest.php │ │ │ ├── ArrayInputTest.php │ │ │ ├── InputArgumentTest.php │ │ │ ├── InputDefinitionTest.php │ │ │ ├── InputOptionTest.php │ │ │ ├── InputTest.php │ │ │ └── StringInputTest.php │ │ ├── Logger │ │ │ └── ConsoleLoggerTest.php │ │ ├── Output │ │ │ ├── ConsoleOutputTest.php │ │ │ ├── NullOutputTest.php │ │ │ ├── OutputTest.php │ │ │ └── StreamOutputTest.php │ │ ├── Style │ │ │ └── SymfonyStyleTest.php │ │ └── Tester │ │ │ ├── ApplicationTesterTest.php │ │ │ └── CommandTesterTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── debug │ ├── .gitignore │ ├── BufferingLogger.php │ ├── CHANGELOG.md │ ├── Debug.php │ ├── DebugClassLoader.php │ ├── ErrorHandler.php │ ├── Exception │ │ ├── ClassNotFoundException.php │ │ ├── ContextErrorException.php │ │ ├── FatalErrorException.php │ │ ├── FatalThrowableError.php │ │ ├── FlattenException.php │ │ ├── OutOfMemoryException.php │ │ ├── UndefinedFunctionException.php │ │ └── UndefinedMethodException.php │ ├── ExceptionHandler.php │ ├── FatalErrorHandler │ │ ├── ClassNotFoundFatalErrorHandler.php │ │ ├── FatalErrorHandlerInterface.php │ │ ├── UndefinedFunctionFatalErrorHandler.php │ │ └── UndefinedMethodFatalErrorHandler.php │ ├── LICENSE │ ├── README.md │ ├── Resources │ │ └── ext │ │ │ ├── README.md │ │ │ ├── config.m4 │ │ │ ├── config.w32 │ │ │ ├── php_symfony_debug.h │ │ │ ├── symfony_debug.c │ │ │ └── tests │ │ │ ├── 001.phpt │ │ │ ├── 002.phpt │ │ │ ├── 002_1.phpt │ │ │ └── 003.phpt │ ├── Tests │ │ ├── DebugClassLoaderTest.php │ │ ├── ErrorHandlerTest.php │ │ ├── Exception │ │ │ └── FlattenExceptionTest.php │ │ ├── ExceptionHandlerTest.php │ │ ├── FatalErrorHandler │ │ │ ├── ClassNotFoundFatalErrorHandlerTest.php │ │ │ ├── UndefinedFunctionFatalErrorHandlerTest.php │ │ │ └── UndefinedMethodFatalErrorHandlerTest.php │ │ ├── Fixtures │ │ │ ├── ClassAlias.php │ │ │ ├── DeprecatedClass.php │ │ │ ├── DeprecatedInterface.php │ │ │ ├── PEARClass.php │ │ │ ├── ToStringThrower.php │ │ │ ├── casemismatch.php │ │ │ ├── notPsr0Bis.php │ │ │ ├── psr4 │ │ │ │ └── Psr4CaseMismatch.php │ │ │ └── reallyNotPsr0.php │ │ ├── Fixtures2 │ │ │ └── RequiredTwice.php │ │ ├── HeaderMock.php │ │ └── MockExceptionHandler.php │ ├── composer.json │ └── phpunit.xml.dist ├── event-dispatcher │ ├── .gitignore │ ├── 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 │ │ │ └── TraceableEventDispatcherTest.php │ │ ├── DependencyInjection │ │ │ └── RegisterListenersPassTest.php │ │ ├── EventDispatcherTest.php │ │ ├── EventTest.php │ │ ├── GenericEventTest.php │ │ └── ImmutableEventDispatcherTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── finder │ ├── .gitignore │ ├── 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 │ │ │ ├── ComparatorTest.php │ │ │ ├── DateComparatorTest.php │ │ │ └── NumberComparatorTest.php │ │ ├── FinderTest.php │ │ ├── Fixtures │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ │ ├── C │ │ │ │ │ │ └── abc.dat │ │ │ │ │ └── ab.dat │ │ │ │ └── a.dat │ │ │ ├── copy │ │ │ │ └── A │ │ │ │ │ ├── B │ │ │ │ │ ├── C │ │ │ │ │ │ └── abc.dat.copy │ │ │ │ │ └── ab.dat.copy │ │ │ │ │ └── a.dat.copy │ │ │ ├── dolor.txt │ │ │ ├── ipsum.txt │ │ │ ├── lorem.txt │ │ │ ├── one │ │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ ├── r+e.gex[c]a(r)s │ │ │ │ └── dir │ │ │ │ │ └── bar.dat │ │ │ └── with space │ │ │ │ └── foo.txt │ │ ├── GlobTest.php │ │ └── Iterator │ │ │ ├── CustomFilterIteratorTest.php │ │ │ ├── DateRangeFilterIteratorTest.php │ │ │ ├── DepthRangeFilterIteratorTest.php │ │ │ ├── ExcludeDirectoryFilterIteratorTest.php │ │ │ ├── FileTypeFilterIteratorTest.php │ │ │ ├── FilecontentFilterIteratorTest.php │ │ │ ├── FilenameFilterIteratorTest.php │ │ │ ├── FilterIteratorTest.php │ │ │ ├── Iterator.php │ │ │ ├── IteratorTestCase.php │ │ │ ├── MockFileListIterator.php │ │ │ ├── MockSplFileInfo.php │ │ │ ├── MultiplePcreFilterIteratorTest.php │ │ │ ├── PathFilterIteratorTest.php │ │ │ ├── RealIteratorTestCase.php │ │ │ ├── RecursiveDirectoryIteratorTest.php │ │ │ ├── SizeRangeFilterIteratorTest.php │ │ │ └── SortableIteratorTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── http-foundation │ ├── .gitignore │ ├── AcceptHeader.php │ ├── AcceptHeaderItem.php │ ├── ApacheRequest.php │ ├── BinaryFileResponse.php │ ├── CHANGELOG.md │ ├── Cookie.php │ ├── ExpressionRequestMatcher.php │ ├── File │ │ ├── Exception │ │ │ ├── AccessDeniedException.php │ │ │ ├── FileException.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── UnexpectedTypeException.php │ │ │ └── UploadException.php │ │ ├── File.php │ │ ├── MimeType │ │ │ ├── ExtensionGuesser.php │ │ │ ├── ExtensionGuesserInterface.php │ │ │ ├── FileBinaryMimeTypeGuesser.php │ │ │ ├── FileinfoMimeTypeGuesser.php │ │ │ ├── MimeTypeExtensionGuesser.php │ │ │ ├── MimeTypeGuesser.php │ │ │ └── MimeTypeGuesserInterface.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 │ │ │ ├── AttributeBag.php │ │ │ ├── AttributeBagInterface.php │ │ │ └── NamespacedAttributeBag.php │ │ ├── Flash │ │ │ ├── AutoExpireFlashBag.php │ │ │ ├── FlashBag.php │ │ │ └── FlashBagInterface.php │ │ ├── Session.php │ │ ├── SessionBagInterface.php │ │ ├── SessionInterface.php │ │ └── Storage │ │ │ ├── Handler │ │ │ ├── MemcacheSessionHandler.php │ │ │ ├── MemcachedSessionHandler.php │ │ │ ├── MongoDbSessionHandler.php │ │ │ ├── NativeFileSessionHandler.php │ │ │ ├── NativeSessionHandler.php │ │ │ ├── NullSessionHandler.php │ │ │ ├── PdoSessionHandler.php │ │ │ └── WriteCheckSessionHandler.php │ │ │ ├── MetadataBag.php │ │ │ ├── MockArraySessionStorage.php │ │ │ ├── MockFileSessionStorage.php │ │ │ ├── NativeSessionStorage.php │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ ├── Proxy │ │ │ ├── AbstractProxy.php │ │ │ ├── NativeProxy.php │ │ │ └── SessionHandlerProxy.php │ │ │ └── SessionStorageInterface.php │ ├── StreamedResponse.php │ ├── Tests │ │ ├── AcceptHeaderItemTest.php │ │ ├── AcceptHeaderTest.php │ │ ├── ApacheRequestTest.php │ │ ├── BinaryFileResponseTest.php │ │ ├── CookieTest.php │ │ ├── ExpressionRequestMatcherTest.php │ │ ├── File │ │ │ ├── FakeFile.php │ │ │ ├── FileTest.php │ │ │ ├── Fixtures │ │ │ │ ├── .unknownextension │ │ │ │ ├── directory │ │ │ │ │ └── .empty │ │ │ │ ├── other-file.example │ │ │ │ ├── test │ │ │ │ └── test.gif │ │ │ ├── MimeType │ │ │ │ └── MimeTypeTest.php │ │ │ └── UploadedFileTest.php │ │ ├── FileBagTest.php │ │ ├── HeaderBagTest.php │ │ ├── IpUtilsTest.php │ │ ├── JsonResponseTest.php │ │ ├── ParameterBagTest.php │ │ ├── RedirectResponseTest.php │ │ ├── RequestMatcherTest.php │ │ ├── RequestStackTest.php │ │ ├── RequestTest.php │ │ ├── ResponseHeaderBagTest.php │ │ ├── ResponseTest.php │ │ ├── ResponseTestCase.php │ │ ├── ServerBagTest.php │ │ ├── Session │ │ │ ├── Attribute │ │ │ │ ├── AttributeBagTest.php │ │ │ │ └── NamespacedAttributeBagTest.php │ │ │ ├── Flash │ │ │ │ ├── AutoExpireFlashBagTest.php │ │ │ │ └── FlashBagTest.php │ │ │ ├── SessionTest.php │ │ │ └── Storage │ │ │ │ ├── Handler │ │ │ │ ├── MemcacheSessionHandlerTest.php │ │ │ │ ├── MemcachedSessionHandlerTest.php │ │ │ │ ├── MongoDbSessionHandlerTest.php │ │ │ │ ├── NativeFileSessionHandlerTest.php │ │ │ │ ├── NativeSessionHandlerTest.php │ │ │ │ ├── NullSessionHandlerTest.php │ │ │ │ ├── PdoSessionHandlerTest.php │ │ │ │ └── WriteCheckSessionHandlerTest.php │ │ │ │ ├── MetadataBagTest.php │ │ │ │ ├── MockArraySessionStorageTest.php │ │ │ │ ├── MockFileSessionStorageTest.php │ │ │ │ ├── NativeSessionStorageTest.php │ │ │ │ ├── PhpBridgeSessionStorageTest.php │ │ │ │ └── Proxy │ │ │ │ ├── AbstractProxyTest.php │ │ │ │ ├── NativeProxyTest.php │ │ │ │ └── SessionHandlerProxyTest.php │ │ └── StreamedResponseTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── http-kernel │ ├── .gitignore │ ├── Bundle │ │ ├── Bundle.php │ │ └── BundleInterface.php │ ├── CHANGELOG.md │ ├── CacheClearer │ │ ├── CacheClearerInterface.php │ │ └── ChainCacheClearer.php │ ├── CacheWarmer │ │ ├── CacheWarmer.php │ │ ├── CacheWarmerAggregate.php │ │ ├── CacheWarmerInterface.php │ │ └── WarmableInterface.php │ ├── Client.php │ ├── Config │ │ ├── EnvParametersResource.php │ │ └── FileLocator.php │ ├── Controller │ │ ├── ControllerReference.php │ │ ├── ControllerResolver.php │ │ ├── ControllerResolverInterface.php │ │ └── TraceableControllerResolver.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 │ │ │ └── ValueExporter.php │ ├── Debug │ │ └── TraceableEventDispatcher.php │ ├── DependencyInjection │ │ ├── AddClassesToCachePass.php │ │ ├── ConfigurableExtension.php │ │ ├── Extension.php │ │ ├── FragmentRendererPass.php │ │ ├── LazyLoadingFragmentHandler.php │ │ └── MergeExtensionConfigurationPass.php │ ├── Event │ │ ├── FilterControllerEvent.php │ │ ├── FilterResponseEvent.php │ │ ├── FinishRequestEvent.php │ │ ├── GetResponseEvent.php │ │ ├── GetResponseForControllerResultEvent.php │ │ ├── GetResponseForExceptionEvent.php │ │ ├── KernelEvent.php │ │ └── PostResponseEvent.php │ ├── EventListener │ │ ├── AddRequestFormatsListener.php │ │ ├── DebugHandlersListener.php │ │ ├── DumpListener.php │ │ ├── ExceptionListener.php │ │ ├── FragmentListener.php │ │ ├── LocaleListener.php │ │ ├── ProfilerListener.php │ │ ├── ResponseListener.php │ │ ├── RouterListener.php │ │ ├── SaveSessionListener.php │ │ ├── SessionListener.php │ │ ├── StreamedResponseListener.php │ │ ├── SurrogateListener.php │ │ ├── TestSessionListener.php │ │ └── TranslatorListener.php │ ├── Exception │ │ ├── AccessDeniedHttpException.php │ │ ├── BadRequestHttpException.php │ │ ├── ConflictHttpException.php │ │ ├── GoneHttpException.php │ │ ├── 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 │ │ ├── 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 │ │ │ └── BundleTest.php │ │ ├── CacheClearer │ │ │ └── ChainCacheClearerTest.php │ │ ├── CacheWarmer │ │ │ ├── CacheWarmerAggregateTest.php │ │ │ └── CacheWarmerTest.php │ │ ├── ClientTest.php │ │ ├── Config │ │ │ ├── EnvParametersResourceTest.php │ │ │ └── FileLocatorTest.php │ │ ├── Controller │ │ │ └── ControllerResolverTest.php │ │ ├── DataCollector │ │ │ ├── ConfigDataCollectorTest.php │ │ │ ├── DumpDataCollectorTest.php │ │ │ ├── ExceptionDataCollectorTest.php │ │ │ ├── LoggerDataCollectorTest.php │ │ │ ├── MemoryDataCollectorTest.php │ │ │ ├── RequestDataCollectorTest.php │ │ │ ├── TimeDataCollectorTest.php │ │ │ └── Util │ │ │ │ └── ValueExporterTest.php │ │ ├── Debug │ │ │ └── TraceableEventDispatcherTest.php │ │ ├── DependencyInjection │ │ │ ├── FragmentRendererPassTest.php │ │ │ ├── LazyLoadingFragmentHandlerTest.php │ │ │ └── MergeExtensionConfigurationPassTest.php │ │ ├── EventListener │ │ │ ├── AddRequestFormatsListenerTest.php │ │ │ ├── DebugHandlersListenerTest.php │ │ │ ├── DumpListenerTest.php │ │ │ ├── ExceptionListenerTest.php │ │ │ ├── FragmentListenerTest.php │ │ │ ├── LocaleListenerTest.php │ │ │ ├── ProfilerListenerTest.php │ │ │ ├── ResponseListenerTest.php │ │ │ ├── RouterListenerTest.php │ │ │ ├── SurrogateListenerTest.php │ │ │ ├── TestSessionListenerTest.php │ │ │ └── TranslatorListenerTest.php │ │ ├── Fixtures │ │ │ ├── BaseBundle │ │ │ │ └── Resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── hide.txt │ │ │ ├── Bundle1Bundle │ │ │ │ ├── Resources │ │ │ │ │ └── foo.txt │ │ │ │ ├── bar.txt │ │ │ │ └── foo.txt │ │ │ ├── Bundle2Bundle │ │ │ │ └── foo.txt │ │ │ ├── ChildBundle │ │ │ │ └── Resources │ │ │ │ │ ├── foo.txt │ │ │ │ │ └── hide.txt │ │ │ ├── ExtensionAbsentBundle │ │ │ │ └── ExtensionAbsentBundle.php │ │ │ ├── ExtensionLoadedBundle │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── ExtensionLoadedExtension.php │ │ │ │ └── ExtensionLoadedBundle.php │ │ │ ├── ExtensionNotValidBundle │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── ExtensionNotValidExtension.php │ │ │ │ └── ExtensionNotValidBundle.php │ │ │ ├── ExtensionPresentBundle │ │ │ │ ├── Command │ │ │ │ │ ├── BarCommand.php │ │ │ │ │ └── FooCommand.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── ExtensionPresentExtension.php │ │ │ │ └── ExtensionPresentBundle.php │ │ │ ├── KernelForOverrideName.php │ │ │ ├── KernelForTest.php │ │ │ ├── Resources │ │ │ │ ├── BaseBundle │ │ │ │ │ └── hide.txt │ │ │ │ ├── Bundle1Bundle │ │ │ │ │ └── foo.txt │ │ │ │ ├── ChildBundle │ │ │ │ │ └── foo.txt │ │ │ │ └── FooBundle │ │ │ │ │ └── foo.txt │ │ │ ├── TestClient.php │ │ │ └── TestEventDispatcher.php │ │ ├── Fragment │ │ │ ├── EsiFragmentRendererTest.php │ │ │ ├── FragmentHandlerTest.php │ │ │ ├── HIncludeFragmentRendererTest.php │ │ │ ├── InlineFragmentRendererTest.php │ │ │ └── RoutableFragmentRendererTest.php │ │ ├── HttpCache │ │ │ ├── EsiTest.php │ │ │ ├── HttpCacheTest.php │ │ │ ├── HttpCacheTestCase.php │ │ │ ├── SsiTest.php │ │ │ ├── StoreTest.php │ │ │ ├── TestHttpKernel.php │ │ │ └── TestMultipleHttpKernel.php │ │ ├── HttpKernelTest.php │ │ ├── KernelTest.php │ │ ├── Logger.php │ │ ├── Profiler │ │ │ ├── FileProfilerStorageTest.php │ │ │ └── ProfilerTest.php │ │ ├── TestHttpKernel.php │ │ └── UriSignerTest.php │ ├── UriSigner.php │ ├── composer.json │ └── phpunit.xml.dist ├── polyfill-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── lowerCase.ser │ │ │ └── upperCase.ser │ ├── bootstrap.php │ └── composer.json ├── polyfill-php56 │ ├── LICENSE │ ├── Php56.php │ ├── README.md │ ├── bootstrap.php │ └── composer.json ├── polyfill-util │ ├── Binary.php │ ├── BinaryNoFuncOverload.php │ ├── BinaryOnFuncOverload.php │ ├── LICENSE │ ├── README.md │ ├── TestListener.php │ └── composer.json ├── process │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ ├── LogicException.php │ │ ├── ProcessFailedException.php │ │ ├── ProcessTimedOutException.php │ │ └── RuntimeException.php │ ├── ExecutableFinder.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 │ ├── .gitignore │ ├── Annotation │ │ └── Route.php │ ├── CHANGELOG.md │ ├── CompiledRoute.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidParameterException.php │ │ ├── MethodNotAllowedException.php │ │ ├── MissingMandatoryParametersException.php │ │ ├── ResourceNotFoundException.php │ │ └── RouteNotFoundException.php │ ├── Generator │ │ ├── ConfigurableRequirementsInterface.php │ │ ├── Dumper │ │ │ ├── GeneratorDumper.php │ │ │ ├── GeneratorDumperInterface.php │ │ │ └── PhpGeneratorDumper.php │ │ ├── UrlGenerator.php │ │ └── UrlGeneratorInterface.php │ ├── LICENSE │ ├── Loader │ │ ├── AnnotationClassLoader.php │ │ ├── AnnotationDirectoryLoader.php │ │ ├── AnnotationFileLoader.php │ │ ├── ClosureLoader.php │ │ ├── DependencyInjection │ │ │ └── ServiceRouterLoader.php │ │ ├── DirectoryLoader.php │ │ ├── ObjectRouteLoader.php │ │ ├── PhpFileLoader.php │ │ ├── XmlFileLoader.php │ │ ├── YamlFileLoader.php │ │ └── schema │ │ │ └── routing │ │ │ └── routing-1.0.xsd │ ├── Matcher │ │ ├── Dumper │ │ │ ├── DumperCollection.php │ │ │ ├── DumperPrefixCollection.php │ │ │ ├── DumperRoute.php │ │ │ ├── MatcherDumper.php │ │ │ ├── MatcherDumperInterface.php │ │ │ └── PhpMatcherDumper.php │ │ ├── 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 │ │ │ └── RouteTest.php │ │ ├── CompiledRouteTest.php │ │ ├── Fixtures │ │ │ ├── AnnotatedClasses │ │ │ │ ├── AbstractClass.php │ │ │ │ ├── BarClass.php │ │ │ │ └── FooClass.php │ │ │ ├── CustomXmlFileLoader.php │ │ │ ├── OtherAnnotatedClasses │ │ │ │ └── VariadicClass.php │ │ │ ├── RedirectableUrlMatcher.php │ │ │ ├── annotated.php │ │ │ ├── bad_format.yml │ │ │ ├── directory │ │ │ │ ├── recurse │ │ │ │ │ ├── routes1.yml │ │ │ │ │ └── routes2.yml │ │ │ │ └── routes3.yml │ │ │ ├── directory_import │ │ │ │ └── import.yml │ │ │ ├── dumper │ │ │ │ ├── url_matcher1.apache │ │ │ │ ├── url_matcher1.php │ │ │ │ ├── url_matcher2.apache │ │ │ │ ├── url_matcher2.php │ │ │ │ └── url_matcher3.php │ │ │ ├── empty.yml │ │ │ ├── foo.xml │ │ │ ├── foo1.xml │ │ │ ├── incomplete.yml │ │ │ ├── missing_id.xml │ │ │ ├── missing_path.xml │ │ │ ├── namespaceprefix.xml │ │ │ ├── nonesense_resource_plus_path.yml │ │ │ ├── nonesense_type_without_resource.yml │ │ │ ├── nonvalid.xml │ │ │ ├── nonvalid.yml │ │ │ ├── nonvalid2.yml │ │ │ ├── nonvalidkeys.yml │ │ │ ├── nonvalidnode.xml │ │ │ ├── nonvalidroute.xml │ │ │ ├── null_values.xml │ │ │ ├── special_route_name.yml │ │ │ ├── validpattern.php │ │ │ ├── validpattern.xml │ │ │ ├── validpattern.yml │ │ │ ├── validresource.php │ │ │ ├── validresource.xml │ │ │ ├── validresource.yml │ │ │ ├── with_define_path_variable.php │ │ │ └── withdoctype.xml │ │ ├── Generator │ │ │ ├── Dumper │ │ │ │ └── PhpGeneratorDumperTest.php │ │ │ └── UrlGeneratorTest.php │ │ ├── Loader │ │ │ ├── AbstractAnnotationLoaderTest.php │ │ │ ├── AnnotationClassLoaderTest.php │ │ │ ├── AnnotationDirectoryLoaderTest.php │ │ │ ├── AnnotationFileLoaderTest.php │ │ │ ├── ClosureLoaderTest.php │ │ │ ├── DirectoryLoaderTest.php │ │ │ ├── ObjectRouteLoaderTest.php │ │ │ ├── PhpFileLoaderTest.php │ │ │ ├── XmlFileLoaderTest.php │ │ │ └── YamlFileLoaderTest.php │ │ ├── Matcher │ │ │ ├── Dumper │ │ │ │ ├── DumperCollectionTest.php │ │ │ │ ├── DumperPrefixCollectionTest.php │ │ │ │ └── PhpMatcherDumperTest.php │ │ │ ├── RedirectableUrlMatcherTest.php │ │ │ ├── TraceableUrlMatcherTest.php │ │ │ └── UrlMatcherTest.php │ │ ├── RequestContextTest.php │ │ ├── RouteCollectionBuilderTest.php │ │ ├── RouteCollectionTest.php │ │ ├── RouteCompilerTest.php │ │ ├── RouteTest.php │ │ └── RouterTest.php │ ├── composer.json │ └── phpunit.xml.dist ├── translation │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Catalogue │ │ ├── AbstractOperation.php │ │ ├── MergeOperation.php │ │ ├── OperationInterface.php │ │ └── TargetOperation.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 │ │ ├── InvalidResourceException.php │ │ └── NotFoundResourceException.php │ ├── Extractor │ │ ├── AbstractFileExtractor.php │ │ ├── ChainExtractor.php │ │ └── ExtractorInterface.php │ ├── IdentityTranslator.php │ ├── Interval.php │ ├── LICENSE │ ├── Loader │ │ ├── ArrayLoader.php │ │ ├── CsvFileLoader.php │ │ ├── FileLoader.php │ │ ├── IcuDatFileLoader.php │ │ ├── IcuResFileLoader.php │ │ ├── IniFileLoader.php │ │ ├── JsonFileLoader.php │ │ ├── LoaderInterface.php │ │ ├── MoFileLoader.php │ │ ├── PhpFileLoader.php │ │ ├── PoFileLoader.php │ │ ├── QtFileLoader.php │ │ ├── XliffFileLoader.php │ │ ├── YamlFileLoader.php │ │ └── schema │ │ │ └── dic │ │ │ └── xliff-core │ │ │ ├── xliff-core-1.2-strict.xsd │ │ │ ├── xliff-core-2.0.xsd │ │ │ └── xml.xsd │ ├── LoggingTranslator.php │ ├── MessageCatalogue.php │ ├── MessageCatalogueInterface.php │ ├── MessageSelector.php │ ├── MetadataAwareInterface.php │ ├── PluralizationRules.php │ ├── README.md │ ├── Tests │ │ ├── Catalogue │ │ │ ├── AbstractOperationTest.php │ │ │ ├── MergeOperationTest.php │ │ │ └── TargetOperationTest.php │ │ ├── DataCollector │ │ │ └── TranslationDataCollectorTest.php │ │ ├── DataCollectorTranslatorTest.php │ │ ├── Dumper │ │ │ ├── CsvFileDumperTest.php │ │ │ ├── FileDumperTest.php │ │ │ ├── IcuResFileDumperTest.php │ │ │ ├── IniFileDumperTest.php │ │ │ ├── JsonFileDumperTest.php │ │ │ ├── MoFileDumperTest.php │ │ │ ├── PhpFileDumperTest.php │ │ │ ├── PoFileDumperTest.php │ │ │ ├── QtFileDumperTest.php │ │ │ ├── XliffFileDumperTest.php │ │ │ └── YamlFileDumperTest.php │ │ ├── IdentityTranslatorTest.php │ │ ├── IntervalTest.php │ │ ├── Loader │ │ │ ├── CsvFileLoaderTest.php │ │ │ ├── IcuDatFileLoaderTest.php │ │ │ ├── IcuResFileLoaderTest.php │ │ │ ├── IniFileLoaderTest.php │ │ │ ├── JsonFileLoaderTest.php │ │ │ ├── LocalizedTestCase.php │ │ │ ├── MoFileLoaderTest.php │ │ │ ├── PhpFileLoaderTest.php │ │ │ ├── PoFileLoaderTest.php │ │ │ ├── QtFileLoaderTest.php │ │ │ ├── XliffFileLoaderTest.php │ │ │ └── YamlFileLoaderTest.php │ │ ├── LoggingTranslatorTest.php │ │ ├── MessageCatalogueTest.php │ │ ├── MessageSelectorTest.php │ │ ├── PluralizationRulesTest.php │ │ ├── TranslatorCacheTest.php │ │ ├── TranslatorTest.php │ │ ├── Util │ │ │ └── ArrayConverterTest.php │ │ └── fixtures │ │ │ ├── empty-translation.mo │ │ │ ├── empty-translation.po │ │ │ ├── empty.csv │ │ │ ├── empty.ini │ │ │ ├── empty.json │ │ │ ├── empty.mo │ │ │ ├── empty.po │ │ │ ├── empty.xlf │ │ │ ├── empty.yml │ │ │ ├── encoding.xlf │ │ │ ├── escaped-id-plurals.po │ │ │ ├── escaped-id.po │ │ │ ├── invalid-xml-resources.xlf │ │ │ ├── malformed.json │ │ │ ├── messages.yml │ │ │ ├── messages_linear.yml │ │ │ ├── non-valid.xlf │ │ │ ├── non-valid.yml │ │ │ ├── plurals.mo │ │ │ ├── plurals.po │ │ │ ├── resname.xlf │ │ │ ├── resourcebundle │ │ │ ├── corrupted │ │ │ │ └── resources.dat │ │ │ ├── dat │ │ │ │ ├── en.res │ │ │ │ ├── en.txt │ │ │ │ ├── fr.res │ │ │ │ ├── fr.txt │ │ │ │ ├── packagelist.txt │ │ │ │ └── resources.dat │ │ │ └── res │ │ │ │ └── en.res │ │ │ ├── resources-2.0-clean.xlf │ │ │ ├── resources-2.0.xlf │ │ │ ├── resources-clean.xlf │ │ │ ├── resources-target-attributes.xlf │ │ │ ├── resources-tool-info.xlf │ │ │ ├── resources.csv │ │ │ ├── resources.dump.json │ │ │ ├── resources.ini │ │ │ ├── resources.json │ │ │ ├── resources.mo │ │ │ ├── resources.php │ │ │ ├── resources.po │ │ │ ├── resources.ts │ │ │ ├── resources.xlf │ │ │ ├── resources.yml │ │ │ ├── valid.csv │ │ │ ├── with-attributes.xlf │ │ │ ├── withdoctype.xlf │ │ │ └── withnote.xlf │ ├── Translator.php │ ├── TranslatorBagInterface.php │ ├── TranslatorInterface.php │ ├── Util │ │ └── ArrayConverter.php │ ├── Writer │ │ └── TranslationWriter.php │ ├── composer.json │ └── phpunit.xml.dist ├── var-dumper │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Caster │ │ ├── AmqpCaster.php │ │ ├── Caster.php │ │ ├── ConstStub.php │ │ ├── CutArrayStub.php │ │ ├── CutStub.php │ │ ├── DOMCaster.php │ │ ├── DoctrineCaster.php │ │ ├── EnumStub.php │ │ ├── ExceptionCaster.php │ │ ├── FrameStub.php │ │ ├── MongoCaster.php │ │ ├── PdoCaster.php │ │ ├── PgSqlCaster.php │ │ ├── ReflectionCaster.php │ │ ├── ResourceCaster.php │ │ ├── SplCaster.php │ │ ├── StubCaster.php │ │ ├── TraceStub.php │ │ └── XmlResourceCaster.php │ ├── 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 │ │ │ └── dump.php │ ├── Test │ │ └── VarDumperTestTrait.php │ ├── Tests │ │ ├── Caster │ │ │ ├── CasterTest.php │ │ │ ├── PdoCasterTest.php │ │ │ ├── ReflectionCasterTest.php │ │ │ └── SplCasterTest.php │ │ ├── CliDumperTest.php │ │ ├── Fixtures │ │ │ ├── GeneratorDemo.php │ │ │ ├── Twig.php │ │ │ └── dumb-var.php │ │ ├── HtmlDumperTest.php │ │ ├── Test │ │ │ └── VarDumperTestTraitTest.php │ │ └── VarClonerTest.php │ ├── VarDumper.php │ ├── composer.json │ └── phpunit.xml.dist └── yaml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Dumper.php │ ├── Escaper.php │ ├── Exception │ ├── DumpException.php │ ├── ExceptionInterface.php │ ├── ParseException.php │ └── RuntimeException.php │ ├── Inline.php │ ├── LICENSE │ ├── Parser.php │ ├── README.md │ ├── Tests │ ├── DumperTest.php │ ├── Fixtures │ │ ├── YtsAnchorAlias.yml │ │ ├── YtsBasicTests.yml │ │ ├── YtsBlockMapping.yml │ │ ├── YtsDocumentSeparator.yml │ │ ├── YtsErrorTests.yml │ │ ├── YtsFlowCollections.yml │ │ ├── YtsFoldedScalars.yml │ │ ├── YtsNullsAndEmpties.yml │ │ ├── YtsSpecificationExamples.yml │ │ ├── YtsTypeTransfers.yml │ │ ├── embededPhp.yml │ │ ├── escapedCharacters.yml │ │ ├── index.yml │ │ ├── sfComments.yml │ │ ├── sfCompact.yml │ │ ├── sfMergeKey.yml │ │ ├── sfObjects.yml │ │ ├── sfQuotes.yml │ │ ├── sfTests.yml │ │ └── unindentedCollections.yml │ ├── InlineTest.php │ ├── ParseExceptionTest.php │ ├── ParserTest.php │ └── YamlTest.php │ ├── Unescaper.php │ ├── Yaml.php │ ├── composer.json │ └── phpunit.xml.dist └── vlucas └── phpdotenv ├── LICENSE.txt ├── composer.json └── src ├── Dotenv.php ├── Exception ├── ExceptionInterface.php ├── InvalidCallbackException.php ├── InvalidFileException.php ├── InvalidPathException.php └── ValidationException.php ├── Loader.php └── Validator.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/LICENSE -------------------------------------------------------------------------------- /app/Console/Commands/Inspire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Console/Commands/Inspire.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/CustomTraits/AuthenticatesUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/CustomTraits/AuthenticatesUsers.php -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Events/Event.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Helpers/BencodeHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Helpers/BencodeHelper.php -------------------------------------------------------------------------------- /app/Helpers/BitTorrent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Helpers/BitTorrent.php -------------------------------------------------------------------------------- /app/Helpers/StringHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Helpers/StringHelper.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Http/Controllers/Admin/AdminController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Http/Controllers/Auth/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Middleware/WebMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Http/Middleware/WebMiddleware.php -------------------------------------------------------------------------------- /app/Http/Requests/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Http/Requests/Request.php -------------------------------------------------------------------------------- /app/Http/Requests/TorrentUploadRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Http/Requests/TorrentUploadRequest.php -------------------------------------------------------------------------------- /app/Http/ViewComposers/GlobalComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Http/ViewComposers/GlobalComposer.php -------------------------------------------------------------------------------- /app/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Http/routes.php -------------------------------------------------------------------------------- /app/Jobs/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Jobs/Job.php -------------------------------------------------------------------------------- /app/Listeners/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Peer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Models/Peer.php -------------------------------------------------------------------------------- /app/Models/PeerTorrent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Models/PeerTorrent.php -------------------------------------------------------------------------------- /app/Models/Torrent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Models/Torrent.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/UserPasskey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Models/UserPasskey.php -------------------------------------------------------------------------------- /app/Policies/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/ComposerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Providers/ComposerServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/bootstrap/autoload.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/composer.lock -------------------------------------------------------------------------------- /composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/composer.phar -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/config/compile.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/rooles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/config/rooles.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/config/session.php -------------------------------------------------------------------------------- /config/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/config/settings.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/package.json -------------------------------------------------------------------------------- /phpspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/phpspec.yml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/bower_components/AdminLTE/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/public/bower_components/AdminLTE/.bower.json -------------------------------------------------------------------------------- /public/bower_components/AdminLTE/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/public/bower_components/AdminLTE/Gruntfile.js -------------------------------------------------------------------------------- /public/bower_components/AdminLTE/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/public/bower_components/AdminLTE/LICENSE -------------------------------------------------------------------------------- /public/bower_components/AdminLTE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/public/bower_components/AdminLTE/README.md -------------------------------------------------------------------------------- /public/bower_components/AdminLTE/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/public/bower_components/AdminLTE/bower.json -------------------------------------------------------------------------------- /public/bower_components/AdminLTE/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/public/bower_components/AdminLTE/changelog -------------------------------------------------------------------------------- /public/bower_components/AdminLTE/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/public/bower_components/AdminLTE/index.html -------------------------------------------------------------------------------- /public/bower_components/AdminLTE/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/public/bower_components/AdminLTE/index2.html -------------------------------------------------------------------------------- /public/bower_components/AdminLTE/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/public/bower_components/AdminLTE/package.json -------------------------------------------------------------------------------- /public/bower_components/AdminLTE/plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/bower_components/AdminLTE/starter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/public/bower_components/AdminLTE/starter.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/categories/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/public/images/categories/blank.gif -------------------------------------------------------------------------------- /public/images/categories/cats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/public/images/categories/cats.png -------------------------------------------------------------------------------- /public/images/icons/ttableicons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/public/images/icons/ttableicons.gif -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # laratracker 2 | -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/resources/lang/en/messages.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/admin/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/resources/views/admin/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin_template.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/resources/views/admin_template.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/resources/views/errors/403.blade.php -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/index/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/resources/views/index/index.blade.php -------------------------------------------------------------------------------- /resources/views/torrents/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/resources/views/torrents/index.blade.php -------------------------------------------------------------------------------- /resources/views/torrents/upload.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/resources/views/torrents/upload.blade.php -------------------------------------------------------------------------------- /resources/views/torrents/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/resources/views/torrents/view.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/storage/sql/schema.sql -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/test.php -------------------------------------------------------------------------------- /tests/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/tests/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/bin/php-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/bin/php-parse -------------------------------------------------------------------------------- /vendor/bin/php-parse.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/bin/php-parse.bat -------------------------------------------------------------------------------- /vendor/bin/phpspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/bin/phpspec -------------------------------------------------------------------------------- /vendor/bin/phpspec.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/bin/phpspec.bat -------------------------------------------------------------------------------- /vendor/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/bin/phpunit -------------------------------------------------------------------------------- /vendor/bin/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/bin/phpunit.bat -------------------------------------------------------------------------------- /vendor/bin/psysh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/bin/psysh -------------------------------------------------------------------------------- /vendor/bin/psysh.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/bin/psysh.bat -------------------------------------------------------------------------------- /vendor/classpreloader/classpreloader/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/classpreloader/classpreloader/LICENSE -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/dnoegel/php-xdg-base-dir/LICENSE -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/dnoegel/php-xdg-base-dir/README.md -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/dnoegel/php-xdg-base-dir/composer.json -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/src/Xdg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/dnoegel/php-xdg-base-dir/src/Xdg.php -------------------------------------------------------------------------------- /vendor/doctrine/inflector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/doctrine/inflector/.gitignore -------------------------------------------------------------------------------- /vendor/doctrine/inflector/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/doctrine/inflector/.travis.yml -------------------------------------------------------------------------------- /vendor/doctrine/inflector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/doctrine/inflector/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/inflector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/doctrine/inflector/README.md -------------------------------------------------------------------------------- /vendor/doctrine/inflector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/doctrine/inflector/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/inflector/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/doctrine/inflector/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/doctrine/instantiator/.gitignore -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/doctrine/instantiator/.scrutinizer.yml -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/doctrine/instantiator/.travis.yml -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/doctrine/instantiator/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/doctrine/instantiator/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/doctrine/instantiator/README.md -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/doctrine/instantiator/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/phpmd.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/doctrine/instantiator/phpmd.xml.dist -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/doctrine/instantiator/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/fzaninotto/faker/.travis.yml -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/fzaninotto/faker/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/fzaninotto/faker/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/fzaninotto/faker/LICENSE -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/fzaninotto/faker/Makefile -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/fzaninotto/faker/composer.json -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/fzaninotto/faker/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/fzaninotto/faker/readme.md -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/fzaninotto/faker/src/Faker/Factory.php -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/fzaninotto/faker/src/autoload.php -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/test/documentor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/fzaninotto/faker/test/documentor.php -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/test/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/fzaninotto/faker/test/test.php -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.coveralls.yml: -------------------------------------------------------------------------------- 1 | src_dir: hamcrest 2 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.gush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/hamcrest/hamcrest-php/.gush.yml -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/hamcrest/hamcrest-php/.travis.yml -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/hamcrest/hamcrest-php/CHANGES.txt -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/hamcrest/hamcrest-php/LICENSE.txt -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/hamcrest/hamcrest-php/README.md -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/hamcrest/hamcrest-php/TODO.txt -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/hamcrest/hamcrest-php/composer.json -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/functions_footer.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/functions_imports.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/matchers_footer.txt: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/matchers_imports.txt: -------------------------------------------------------------------------------- 1 | 2 | namespace Hamcrest; -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/hamcrest/hamcrest-php/generator/run.php -------------------------------------------------------------------------------- /vendor/jakub-onderka/php-console-color/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | vendor 3 | composer.lock 4 | -------------------------------------------------------------------------------- /vendor/jeremeamia/SuperClosure/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/jeremeamia/SuperClosure/LICENSE.md -------------------------------------------------------------------------------- /vendor/jeremeamia/SuperClosure/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/jeremeamia/SuperClosure/composer.json -------------------------------------------------------------------------------- /vendor/laracasts/generators/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .idea -------------------------------------------------------------------------------- /vendor/laracasts/generators/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/laracasts/generators/.travis.yml -------------------------------------------------------------------------------- /vendor/laracasts/generators/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/laracasts/generators/LICENSE -------------------------------------------------------------------------------- /vendor/laracasts/generators/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/laracasts/generators/composer.json -------------------------------------------------------------------------------- /vendor/laracasts/generators/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/laracasts/generators/composer.lock -------------------------------------------------------------------------------- /vendor/laracasts/generators/phpspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/laracasts/generators/phpspec.yml -------------------------------------------------------------------------------- /vendor/laracasts/generators/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/laracasts/generators/readme.md -------------------------------------------------------------------------------- /vendor/laravel/framework/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/laravel/framework/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/laravel/framework/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/laravel/framework/LICENSE.txt -------------------------------------------------------------------------------- /vendor/laravel/framework/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/laravel/framework/composer.json -------------------------------------------------------------------------------- /vendor/laravel/framework/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/laravel/framework/readme.md -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Contracts/Database/Scope.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/laravelcollective/html/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/laravelcollective/html/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/laravelcollective/html/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/laravelcollective/html/LICENSE.txt -------------------------------------------------------------------------------- /vendor/laravelcollective/html/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/laravelcollective/html/composer.json -------------------------------------------------------------------------------- /vendor/laravelcollective/html/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/laravelcollective/html/readme.md -------------------------------------------------------------------------------- /vendor/laravelcollective/html/src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/laravelcollective/html/src/helpers.php -------------------------------------------------------------------------------- /vendor/league/flysystem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/league/flysystem/LICENSE -------------------------------------------------------------------------------- /vendor/league/flysystem/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/league/flysystem/composer.json -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Adapter/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/league/flysystem/src/Adapter/Ftp.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Adapter/Ftpd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/league/flysystem/src/Adapter/Ftpd.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Adapter/Local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/league/flysystem/src/Adapter/Local.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/league/flysystem/src/Config.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Directory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/league/flysystem/src/Directory.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/league/flysystem/src/Exception.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/league/flysystem/src/File.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/league/flysystem/src/Filesystem.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/league/flysystem/src/Handler.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/MountManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/league/flysystem/src/MountManager.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/ReadInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/league/flysystem/src/ReadInterface.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/league/flysystem/src/Util.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Util/MimeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/league/flysystem/src/Util/MimeType.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/.editorconfig -------------------------------------------------------------------------------- /vendor/micc83/rooles/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .idea 3 | composer.lock 4 | -------------------------------------------------------------------------------- /vendor/micc83/rooles/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/.scrutinizer.yml -------------------------------------------------------------------------------- /vendor/micc83/rooles/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/.travis.yml -------------------------------------------------------------------------------- /vendor/micc83/rooles/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/composer.json -------------------------------------------------------------------------------- /vendor/micc83/rooles/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/phpunit.xml -------------------------------------------------------------------------------- /vendor/micc83/rooles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/readme.md -------------------------------------------------------------------------------- /vendor/micc83/rooles/src/BaseMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/src/BaseMiddleware.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/src/Contracts/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/src/Contracts/Role.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/src/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/src/Helpers.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/src/PermissionQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/src/PermissionQuery.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/src/Permissions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/src/Permissions.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/src/PermsMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/src/PermsMiddleware.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/src/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/src/Role.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/src/RoleManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/src/RoleManager.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/src/RoleMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/src/RoleMiddleware.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/src/Traits/UserRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/src/Traits/UserRole.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/src/assets/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/src/assets/config.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/src/assets/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/src/assets/migration.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/tests/BaseCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/tests/BaseCase.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/tests/PermissionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/tests/PermissionsTest.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/tests/RoleRepoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/tests/RoleRepoTest.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/tests/RoleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/tests/RoleTest.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/tests/UserRoleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/tests/UserRoleTest.php -------------------------------------------------------------------------------- /vendor/micc83/rooles/tests/mocks/UserMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/micc83/rooles/tests/mocks/UserMock.php -------------------------------------------------------------------------------- /vendor/mockery/mockery/.coveralls.yml: -------------------------------------------------------------------------------- 1 | src_dir: . 2 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/.gitignore -------------------------------------------------------------------------------- /vendor/mockery/mockery/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/.php_cs -------------------------------------------------------------------------------- /vendor/mockery/mockery/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/.scrutinizer.yml -------------------------------------------------------------------------------- /vendor/mockery/mockery/.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/.travis.yml -------------------------------------------------------------------------------- /vendor/mockery/mockery/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/mockery/mockery/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/mockery/mockery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/LICENSE -------------------------------------------------------------------------------- /vendor/mockery/mockery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/README.md -------------------------------------------------------------------------------- /vendor/mockery/mockery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/composer.json -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/docs/Makefile -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/docs/README.md -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/docs/conf.py -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/cookbook/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/docs/cookbook/index.rst -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/docs/index.rst -------------------------------------------------------------------------------- /vendor/mockery/mockery/library/Mockery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/library/Mockery.php -------------------------------------------------------------------------------- /vendor/mockery/mockery/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/package.xml -------------------------------------------------------------------------------- /vendor/mockery/mockery/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/mockery/mockery/tests/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/tests/Bootstrap.php -------------------------------------------------------------------------------- /vendor/mockery/mockery/tests/Mockery/_files/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/travis/after_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/travis/after_script.sh -------------------------------------------------------------------------------- /vendor/mockery/mockery/travis/before_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/travis/before_script.sh -------------------------------------------------------------------------------- /vendor/mockery/mockery/travis/extra.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/travis/extra.ini -------------------------------------------------------------------------------- /vendor/mockery/mockery/travis/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/travis/install.sh -------------------------------------------------------------------------------- /vendor/mockery/mockery/travis/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mockery/mockery/travis/script.sh -------------------------------------------------------------------------------- /vendor/monolog/monolog/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/monolog/monolog/.php_cs -------------------------------------------------------------------------------- /vendor/monolog/monolog/CHANGELOG.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/monolog/monolog/CHANGELOG.mdown -------------------------------------------------------------------------------- /vendor/monolog/monolog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/monolog/monolog/LICENSE -------------------------------------------------------------------------------- /vendor/monolog/monolog/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/monolog/monolog/README.mdown -------------------------------------------------------------------------------- /vendor/monolog/monolog/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/monolog/monolog/composer.json -------------------------------------------------------------------------------- /vendor/monolog/monolog/doc/01-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/monolog/monolog/doc/01-usage.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/doc/03-utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/monolog/monolog/doc/03-utilities.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/doc/04-extending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/monolog/monolog/doc/04-extending.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/doc/sockets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/monolog/monolog/doc/sockets.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/monolog/monolog/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/monolog/monolog/src/Monolog/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/monolog/monolog/src/Monolog/Logger.php -------------------------------------------------------------------------------- /vendor/monolog/monolog/tests/Monolog/Handler/Fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/mtdowling/cron-expression/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mtdowling/cron-expression/LICENSE -------------------------------------------------------------------------------- /vendor/mtdowling/cron-expression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mtdowling/cron-expression/README.md -------------------------------------------------------------------------------- /vendor/mtdowling/cron-expression/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/mtdowling/cron-expression/composer.json -------------------------------------------------------------------------------- /vendor/nesbot/carbon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/LICENSE -------------------------------------------------------------------------------- /vendor/nesbot/carbon/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/composer.json -------------------------------------------------------------------------------- /vendor/nesbot/carbon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/readme.md -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Carbon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Carbon.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/af.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/af.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ar.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/az.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/az.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/bg.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/bn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/bn.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ca.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/cs.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/da.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/da.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/de.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/el.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/el.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/en.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/eo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/eo.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/es.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/et.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/eu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/eu.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/fa.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/fi.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/fo.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/fr.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/he.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/he.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/hr.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/hu.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/id.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/it.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ja.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ko.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/lt.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/lv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/lv.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ms.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/nl.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/no.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/no.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/pl.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/pt.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/pt_BR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/pt_BR.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ro.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/ru.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sk.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sl.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sq.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sr.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/sv.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/th.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/tr.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/uk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/uk.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/uz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/uz.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/vi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/vi.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh-TW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/zh-TW.php -------------------------------------------------------------------------------- /vendor/nesbot/carbon/src/Carbon/Lang/zh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nesbot/carbon/src/Carbon/Lang/zh.php -------------------------------------------------------------------------------- /vendor/nikic/php-parser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/.gitignore -------------------------------------------------------------------------------- /vendor/nikic/php-parser/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/.travis.yml -------------------------------------------------------------------------------- /vendor/nikic/php-parser/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/nikic/php-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/LICENSE -------------------------------------------------------------------------------- /vendor/nikic/php-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/README.md -------------------------------------------------------------------------------- /vendor/nikic/php-parser/UPGRADE-1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/UPGRADE-1.0.md -------------------------------------------------------------------------------- /vendor/nikic/php-parser/UPGRADE-2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/UPGRADE-2.0.md -------------------------------------------------------------------------------- /vendor/nikic/php-parser/bin/php-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/bin/php-parse -------------------------------------------------------------------------------- /vendor/nikic/php-parser/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/composer.json -------------------------------------------------------------------------------- /vendor/nikic/php-parser/grammar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/grammar/README.md -------------------------------------------------------------------------------- /vendor/nikic/php-parser/grammar/analyze.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/grammar/analyze.php -------------------------------------------------------------------------------- /vendor/nikic/php-parser/grammar/php5.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/grammar/php5.y -------------------------------------------------------------------------------- /vendor/nikic/php-parser/grammar/php7.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/grammar/php7.y -------------------------------------------------------------------------------- /vendor/nikic/php-parser/grammar/tokens.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/grammar/tokens.y -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/PhpParser/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/lib/PhpParser/Node.php -------------------------------------------------------------------------------- /vendor/nikic/php-parser/lib/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/lib/bootstrap.php -------------------------------------------------------------------------------- /vendor/nikic/php-parser/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/test/bootstrap.php -------------------------------------------------------------------------------- /vendor/nikic/php-parser/test_old/run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/nikic/php-parser/test_old/run.php -------------------------------------------------------------------------------- /vendor/paragonie/random_compat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/paragonie/random_compat/.gitignore -------------------------------------------------------------------------------- /vendor/paragonie/random_compat/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/paragonie/random_compat/.travis.yml -------------------------------------------------------------------------------- /vendor/paragonie/random_compat/ERRATA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/paragonie/random_compat/ERRATA.md -------------------------------------------------------------------------------- /vendor/paragonie/random_compat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/paragonie/random_compat/LICENSE -------------------------------------------------------------------------------- /vendor/paragonie/random_compat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/paragonie/random_compat/README.md -------------------------------------------------------------------------------- /vendor/paragonie/random_compat/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/paragonie/random_compat/SECURITY.md -------------------------------------------------------------------------------- /vendor/paragonie/random_compat/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/paragonie/random_compat/composer.json -------------------------------------------------------------------------------- /vendor/paragonie/random_compat/lib/random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/paragonie/random_compat/lib/random.php -------------------------------------------------------------------------------- /vendor/paragonie/random_compat/phpunit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/paragonie/random_compat/phpunit.sh -------------------------------------------------------------------------------- /vendor/phpdocumentor/reflection-docblock/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | -------------------------------------------------------------------------------- /vendor/phpspec/php-diff/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/php-diff/README -------------------------------------------------------------------------------- /vendor/phpspec/php-diff/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/php-diff/composer.json -------------------------------------------------------------------------------- /vendor/phpspec/php-diff/example/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/php-diff/example/a.txt -------------------------------------------------------------------------------- /vendor/phpspec/php-diff/example/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/php-diff/example/b.txt -------------------------------------------------------------------------------- /vendor/phpspec/php-diff/example/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/php-diff/example/example.php -------------------------------------------------------------------------------- /vendor/phpspec/php-diff/example/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/php-diff/example/styles.css -------------------------------------------------------------------------------- /vendor/phpspec/php-diff/lib/Diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/php-diff/lib/Diff.php -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/phpspec/.gitattributes -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/phpspec/.gitignore -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/.phpspec/class.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/phpspec/.phpspec/class.tpl -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/.phpspec/interface.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/phpspec/.phpspec/interface.tpl -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/phpspec/.scrutinizer.yml -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/phpspec/.travis.yml -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/phpspec/CHANGES.md -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/phpspec/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/phpspec/LICENSE -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/phpspec/Makefile -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/phpspec/README.rst -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/phpspec/appveyor.yml -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/behat.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/phpspec/behat.yml.dist -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/bin/phpspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/phpspec/bin/phpspec -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/phpspec/box.json -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/phpspec/composer.json -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/phpspec/phpunit.xml -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/src/PhpSpec/Formatter/Html/Template/ReportFooter.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/phpspec/phpspec/src/PhpSpec/Formatter/Html/Template/ReportLine.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/.gitignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | *.phar 3 | bin 4 | vendor 5 | -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/prophecy/.travis.yml -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/prophecy/CHANGES.md -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/prophecy/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/prophecy/LICENSE -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/prophecy/README.md -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/prophecy/composer.json -------------------------------------------------------------------------------- /vendor/phpspec/prophecy/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpspec/prophecy/composer.lock -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpunit/php-code-coverage/.gitignore -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpunit/php-code-coverage/.travis.yml -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpunit/php-code-coverage/LICENSE -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpunit/php-code-coverage/README.md -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpunit/php-code-coverage/build.xml -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpunit/php-code-coverage/composer.json -------------------------------------------------------------------------------- /vendor/phpunit/php-code-coverage/tests/_files/source_without_ignore.php: -------------------------------------------------------------------------------- 1 | '.file_get_contents('php://input')); 4 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/Printer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpunit/phpunit/src/Util/Printer.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/Regex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpunit/phpunit/src/Util/Regex.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/String.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpunit/phpunit/src/Util/String.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpunit/phpunit/src/Util/Test.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpunit/phpunit/src/Util/Type.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/src/Util/XML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpunit/phpunit/src/Util/XML.php -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Fail/fail.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpunit/phpunit/tests/Fail/fail.phpt -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/Regression/684/Issue684Test.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/phpunit/phpunit/tests/bootstrap.php -------------------------------------------------------------------------------- /vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/AbstractLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psr/log/Psr/Log/AbstractLogger.php -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psr/log/Psr/Log/LogLevel.php -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/LoggerAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psr/log/Psr/Log/LoggerAwareTrait.php -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/LoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psr/log/Psr/Log/LoggerInterface.php -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psr/log/Psr/Log/LoggerTrait.php -------------------------------------------------------------------------------- /vendor/psr/log/Psr/Log/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psr/log/Psr/Log/NullLogger.php -------------------------------------------------------------------------------- /vendor/psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psr/log/README.md -------------------------------------------------------------------------------- /vendor/psr/log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psr/log/composer.json -------------------------------------------------------------------------------- /vendor/psy/psysh/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/.editorconfig -------------------------------------------------------------------------------- /vendor/psy/psysh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/.gitignore -------------------------------------------------------------------------------- /vendor/psy/psysh/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/.php_cs -------------------------------------------------------------------------------- /vendor/psy/psysh/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/.styleci.yml -------------------------------------------------------------------------------- /vendor/psy/psysh/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/.travis.yml -------------------------------------------------------------------------------- /vendor/psy/psysh/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/psy/psysh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/LICENSE -------------------------------------------------------------------------------- /vendor/psy/psysh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/README.md -------------------------------------------------------------------------------- /vendor/psy/psysh/bin/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/bin/build -------------------------------------------------------------------------------- /vendor/psy/psysh/bin/build-manual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/bin/build-manual -------------------------------------------------------------------------------- /vendor/psy/psysh/bin/build-phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/bin/build-phar -------------------------------------------------------------------------------- /vendor/psy/psysh/bin/build-vendor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/bin/build-vendor -------------------------------------------------------------------------------- /vendor/psy/psysh/bin/psysh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/bin/psysh -------------------------------------------------------------------------------- /vendor/psy/psysh/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/composer.json -------------------------------------------------------------------------------- /vendor/psy/psysh/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/phpcs.xml -------------------------------------------------------------------------------- /vendor/psy/psysh/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/Autoloader.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/CodeCleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/CodeCleaner.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/Command/Command.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/Compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/Compiler.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/ConfigPaths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/ConfigPaths.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/Configuration.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/Context.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/ContextAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/ContextAware.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/ParserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/ParserFactory.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/Readline/Libedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/Readline/Libedit.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/Readline/Readline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/Readline/Readline.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/Shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/Shell.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/Util/Docblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/Util/Docblock.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/Util/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/Util/Json.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/Util/Mirror.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/Util/Mirror.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/Util/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/Util/Str.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/VarDumper/Cloner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/VarDumper/Cloner.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/VarDumper/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/VarDumper/Dumper.php -------------------------------------------------------------------------------- /vendor/psy/psysh/src/Psy/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/src/Psy/functions.php -------------------------------------------------------------------------------- /vendor/psy/psysh/test/Psy/Test/ShellTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/test/Psy/Test/ShellTest.php -------------------------------------------------------------------------------- /vendor/psy/psysh/test/fixtures/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/psy/psysh/test/fixtures/config.php -------------------------------------------------------------------------------- /vendor/psy/psysh/test/fixtures/default/.config/psysh/config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Application.php -------------------------------------------------------------------------------- /vendor/symfony/console/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/symfony/console/Command/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Command/Command.php -------------------------------------------------------------------------------- /vendor/symfony/console/Command/HelpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Command/HelpCommand.php -------------------------------------------------------------------------------- /vendor/symfony/console/Command/ListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Command/ListCommand.php -------------------------------------------------------------------------------- /vendor/symfony/console/ConsoleEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/ConsoleEvents.php -------------------------------------------------------------------------------- /vendor/symfony/console/Event/ConsoleEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Event/ConsoleEvent.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Helper/Helper.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/HelperSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Helper/HelperSet.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/ProgressBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Helper/ProgressBar.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Helper/Table.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/TableCell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Helper/TableCell.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/TableStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Helper/TableStyle.php -------------------------------------------------------------------------------- /vendor/symfony/console/Input/ArgvInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Input/ArgvInput.php -------------------------------------------------------------------------------- /vendor/symfony/console/Input/ArrayInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Input/ArrayInput.php -------------------------------------------------------------------------------- /vendor/symfony/console/Input/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Input/Input.php -------------------------------------------------------------------------------- /vendor/symfony/console/Input/InputArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Input/InputArgument.php -------------------------------------------------------------------------------- /vendor/symfony/console/Input/InputOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Input/InputOption.php -------------------------------------------------------------------------------- /vendor/symfony/console/Input/StringInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Input/StringInput.php -------------------------------------------------------------------------------- /vendor/symfony/console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/console/Output/NullOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Output/NullOutput.php -------------------------------------------------------------------------------- /vendor/symfony/console/Output/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Output/Output.php -------------------------------------------------------------------------------- /vendor/symfony/console/Output/StreamOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Output/StreamOutput.php -------------------------------------------------------------------------------- /vendor/symfony/console/Question/Question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/Question/Question.php -------------------------------------------------------------------------------- /vendor/symfony/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/README.md -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/console/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/composer.json -------------------------------------------------------------------------------- /vendor/symfony/console/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/console/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/symfony/debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/debug/BufferingLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/debug/BufferingLogger.php -------------------------------------------------------------------------------- /vendor/symfony/debug/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/debug/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/symfony/debug/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/debug/Debug.php -------------------------------------------------------------------------------- /vendor/symfony/debug/DebugClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/debug/DebugClassLoader.php -------------------------------------------------------------------------------- /vendor/symfony/debug/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/debug/ErrorHandler.php -------------------------------------------------------------------------------- /vendor/symfony/debug/ExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/debug/ExceptionHandler.php -------------------------------------------------------------------------------- /vendor/symfony/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/debug/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/debug/README.md -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/PEARClass.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/translation/Translator.php -------------------------------------------------------------------------------- /vendor/symfony/translation/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/translation/composer.json -------------------------------------------------------------------------------- /vendor/symfony/translation/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/translation/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/var-dumper/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/Caster/Caster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/var-dumper/Caster/Caster.php -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/Cloner/Cursor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/var-dumper/Cloner/Cursor.php -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/Cloner/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/var-dumper/Cloner/Data.php -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/Cloner/Stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/var-dumper/Cloner/Stub.php -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/var-dumper/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/var-dumper/README.md -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/VarDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/var-dumper/VarDumper.php -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/var-dumper/composer.json -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/var-dumper/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/symfony/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/yaml/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/symfony/yaml/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/yaml/Dumper.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Escaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/yaml/Escaper.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/yaml/Inline.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/yaml/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/yaml/Parser.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/yaml/README.md -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/DumperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/yaml/Tests/DumperTest.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/InlineTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/yaml/Tests/InlineTest.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/ParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/yaml/Tests/ParserTest.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Tests/YamlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/yaml/Tests/YamlTest.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Unescaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/yaml/Unescaper.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/Yaml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/yaml/Yaml.php -------------------------------------------------------------------------------- /vendor/symfony/yaml/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/yaml/composer.json -------------------------------------------------------------------------------- /vendor/symfony/yaml/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/symfony/yaml/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/vlucas/phpdotenv/LICENSE.txt -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/vlucas/phpdotenv/composer.json -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Dotenv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/vlucas/phpdotenv/src/Dotenv.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/vlucas/phpdotenv/src/Loader.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comforse/laratracker/HEAD/vendor/vlucas/phpdotenv/src/Validator.php --------------------------------------------------------------------------------