├── .gitignore ├── .project ├── MySQL ├── iSchool_2017-05-15.sql ├── wiki_20160922.sql ├── wiki_20161006.sql ├── wiki_20161009.sql └── wiki_2017-04-17.sql ├── README.md ├── src ├── iTool │ ├── CompileController.php │ ├── ToolController.php │ ├── routes.php │ ├── tool.css │ ├── tool.js │ └── views │ │ ├── Compile │ │ ├── Clayout.blade.php │ │ ├── changyan.blade.php │ │ ├── editor.blade.php │ │ ├── footer.blade.php │ │ ├── head.blade.php │ │ ├── header.blade.php │ │ ├── html.blade.php │ │ ├── index.blade.php │ │ ├── list.blade.php │ │ ├── nav.blade.php │ │ └── share.blade.php │ │ ├── Mobile │ │ ├── footer.blade.php │ │ └── header.blade.php │ │ ├── Tool │ │ ├── admin.blade.php │ │ ├── discuss.blade.php │ │ └── login.blade.php │ │ ├── errors │ │ └── 503.blade.php │ │ ├── vendor │ │ └── .gitkeep │ │ └── welcome.blade.php └── psd │ ├── ischool_logo.psd │ └── tx.psd ├── tool.usta.wiki ├── .env.example ├── .gitattributes ├── .gitignore ├── .htaccess ├── .project ├── app │ ├── Console │ │ ├── Commands │ │ │ └── Inspire.php │ │ └── Kernel.php │ ├── Events │ │ └── Event.php │ ├── Exceptions │ │ └── Handler.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Auth │ │ │ │ ├── AuthController.php │ │ │ │ └── PasswordController.php │ │ │ ├── CompileController.php │ │ │ ├── Controller.php │ │ │ └── ToolController.php │ │ ├── Function │ │ │ └── function.php │ │ ├── Kernel.php │ │ ├── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ └── VerifyCsrfToken.php │ │ ├── Requests │ │ │ └── Request.php │ │ └── routes.php │ ├── Jobs │ │ └── Job.php │ ├── Listeners │ │ └── .gitkeep │ ├── Policies │ │ └── .gitkeep │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ └── User.php ├── artisan ├── bootstrap │ ├── app.php │ ├── autoload.php │ └── cache │ │ └── .gitignore ├── composer.json ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── compile.php │ ├── database.php │ ├── filesystems.php │ ├── mail.php │ ├── old_itool.php │ ├── queue.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── factories │ │ └── ModelFactory.php │ ├── migrations │ │ ├── .gitkeep │ │ ├── 2014_10_12_000000_create_users_table.php │ │ └── 2014_10_12_100000_create_password_resets_table.php │ └── seeds │ │ ├── .gitkeep │ │ └── DatabaseSeeder.php ├── gulpfile.js ├── index.php ├── package.json ├── phpunit.xml ├── public │ ├── css │ │ ├── header.css │ │ ├── index.css │ │ ├── login.css │ │ ├── overhang.min.css │ │ └── tool.css │ ├── favicon.ico │ ├── img │ │ ├── iTool.png │ │ ├── qq.jpg │ │ ├── weixin.jpg │ │ └── weixin_2.jpg │ ├── index.php │ ├── js │ │ ├── Particleground.js │ │ ├── header.js │ │ ├── jQuery.md5.js │ │ ├── jquery-ui.min.js │ │ ├── layer.js │ │ ├── overhang.min.js │ │ ├── skin │ │ │ ├── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ │ └── layer.css │ │ └── tool.js │ ├── robots.txt │ └── web.config ├── readme.md ├── resources │ ├── assets │ │ └── sass │ │ │ └── app.scss │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ └── views │ │ ├── Compile │ │ ├── Clayout.blade.php │ │ ├── changyan.blade.php │ │ ├── editor.blade.php │ │ ├── footer.blade.php │ │ ├── head.blade.php │ │ ├── header.blade.php │ │ ├── html.blade.php │ │ ├── index.blade.php │ │ ├── list.blade.php │ │ ├── nav.blade.php │ │ └── share.blade.php │ │ ├── Mobile │ │ ├── footer.blade.php │ │ └── header.blade.php │ │ ├── Tool │ │ ├── admin.blade.php │ │ ├── discuss.blade.php │ │ └── login.blade.php │ │ ├── errors │ │ └── 503.blade.php │ │ ├── vendor │ │ └── .gitkeep │ │ └── welcome.blade.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ └── views │ │ │ ├── 0bf698c7783398bd4513c32b080071e38635224d.php │ │ │ ├── 13c2344292ee49184b51353b7e38985be00db0ba.php │ │ │ ├── 2dde5fa057d35a0409bd842c7a4293ae12416297.php │ │ │ ├── 3a4bfe7360fb392350e100160cd61a3b448dbde1.php │ │ │ ├── 462ef1519425decf658e388d542edde7106a2c54.php │ │ │ ├── 4a8855d412c1fcb43746565e0b2bc0b3c5756cf8.php │ │ │ ├── 58641fadccfd1a7991744044f6a1f76e7c7d6a7f.php │ │ │ ├── 5a095257df6dfb7b177559d179d4fcd5ed8f3cb7.php │ │ │ ├── 73bd051058ee853a822d63e6cb6a33b2f1f0cc4e.php │ │ │ ├── 9e85ee51448254d6c715478f67120c061deb4d06.php │ │ │ ├── b056163b2a91dfe180a8a00b82cb08da6f14a492.php │ │ │ ├── c1d1b1f5a2dbbed29adcf3e3a955de1c42ee1c5e.php │ │ │ ├── caedae00fd0ccdfc28bce9866a8735de2a569e26.php │ │ │ ├── de97dd48cfd31cbd56b55dc43297ec81161db3a4.php │ │ │ ├── eb6f3ada3929ac4ed706fdce9770136a1ca2481e.php │ │ │ └── fa1a5323d425b5302e3f9eaa7b9758ff720430cc.php │ └── logs │ │ └── .gitignore └── tests │ ├── ExampleTest.php │ └── TestCase.php └── www.usta.wiki ├── .env.example ├── .gitattributes ├── .gitignore ├── .htaccess ├── app ├── Announce.php ├── Comment.php ├── Config.php ├── Console │ ├── Commands │ │ └── Inspire.php │ └── Kernel.php ├── Course.php ├── Detail.php ├── Events │ └── Event.php ├── Exceptions │ └── Handler.php ├── Git.php ├── Http │ ├── Controllers │ │ ├── AdminController.php │ │ ├── AnnounceController.php │ │ ├── Auth │ │ │ ├── AuthController.php │ │ │ └── PasswordController.php │ │ ├── CommentController.php │ │ ├── Controller.php │ │ ├── CourseController.php │ │ ├── HomeController.php │ │ ├── ImgController.php │ │ ├── IndexController.php │ │ ├── NoteController.php │ │ ├── ProblemController.php │ │ ├── Tool.php │ │ └── UserController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ └── Request.php │ └── routes.php ├── Jobs │ └── Job.php ├── Like.php ├── Listeners │ └── .gitkeep ├── Log.php ├── Note.php ├── Policies │ └── .gitkeep ├── Problem.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Score.php ├── Status.php └── User.php ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── composer.json ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── compile.php ├── database.php ├── filesystems.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── ModelFactory.php ├── migrations │ ├── .gitkeep │ ├── 2014_10_12_000000_create_users_table.php │ └── 2014_10_12_100000_create_password_resets_table.php └── seeds │ ├── .gitkeep │ └── DatabaseSeeder.php ├── gulpfile.js ├── index.php ├── package.json ├── phpunit.xml ├── public ├── css │ ├── animate.css │ ├── bootstrap-markdown.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── cai.css │ ├── editormd.min.css │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ ├── fonts │ │ ├── footable.eot │ │ ├── footable.svg │ │ ├── footable.ttf │ │ └── footable.woff │ ├── footable.core.css │ ├── jasny-bootstrap.min.css │ ├── main.css │ ├── patterns │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── congruent_pentagon.png │ │ ├── otis_redding.png │ │ ├── shattered.png │ │ └── triangular.png │ ├── prettify.css │ ├── style.css │ └── sweetalert.css ├── favicon.ico ├── fonts │ ├── FontAwesome.otf │ ├── consola.ttf │ ├── editormd-logo.eot │ ├── editormd-logo.svg │ ├── editormd-logo.ttf │ ├── editormd-logo.woff │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ ├── a.png │ ├── codecolorer_bg.gif │ ├── logo.png │ ├── logo │ │ ├── 0bad9a4d084419e7194348f3d87cbaaa.jpg │ │ ├── 0e6c129a26e1b50943377a4c926b1d07.jpeg │ │ ├── 4619f7b5f69ad3b192176b793d8c1c0b.png │ │ ├── 52735fdd8a1ca9e8132ca999bf41fc12.png │ │ ├── 740a1f95374f935de169dd5df2ea16fb.png │ │ ├── 759c906ad856dc542e1fa54bc615f724.png │ │ ├── a41def31e94869ced7de969c6a28bdf1.jpg │ │ ├── eb7b48968b7f0b7a0db52c91901a268d.jpeg │ │ └── fd8c240e43a180c273c84738bc7ce0a0.png │ └── tx │ │ ├── 0.png │ │ ├── 1.png │ │ └── 94ccbcaa2865b1ab20e3d35abdcdcedc.jpg ├── index.php ├── js │ ├── bootstrap-markdown.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── bootstrap3-typeahead.min.js │ ├── editormd │ │ ├── editormd.min.js │ │ ├── lib │ │ │ ├── codemirror │ │ │ │ ├── AUTHORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── addon │ │ │ │ │ ├── comment │ │ │ │ │ │ ├── comment.js │ │ │ │ │ │ └── continuecomment.js │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ └── dialog.js │ │ │ │ │ ├── display │ │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ │ ├── panel.js │ │ │ │ │ │ ├── placeholder.js │ │ │ │ │ │ └── rulers.js │ │ │ │ │ ├── edit │ │ │ │ │ │ ├── closebrackets.js │ │ │ │ │ │ ├── closetag.js │ │ │ │ │ │ ├── continuelist.js │ │ │ │ │ │ ├── matchbrackets.js │ │ │ │ │ │ ├── matchtags.js │ │ │ │ │ │ └── trailingspace.js │ │ │ │ │ ├── fold │ │ │ │ │ │ ├── brace-fold.js │ │ │ │ │ │ ├── comment-fold.js │ │ │ │ │ │ ├── foldcode.js │ │ │ │ │ │ ├── foldgutter.css │ │ │ │ │ │ ├── foldgutter.js │ │ │ │ │ │ ├── indent-fold.js │ │ │ │ │ │ ├── markdown-fold.js │ │ │ │ │ │ └── xml-fold.js │ │ │ │ │ ├── hint │ │ │ │ │ │ ├── anyword-hint.js │ │ │ │ │ │ ├── css-hint.js │ │ │ │ │ │ ├── html-hint.js │ │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ │ ├── show-hint.css │ │ │ │ │ │ ├── show-hint.js │ │ │ │ │ │ ├── sql-hint.js │ │ │ │ │ │ └── xml-hint.js │ │ │ │ │ ├── lint │ │ │ │ │ │ ├── coffeescript-lint.js │ │ │ │ │ │ ├── css-lint.js │ │ │ │ │ │ ├── javascript-lint.js │ │ │ │ │ │ ├── json-lint.js │ │ │ │ │ │ ├── lint.css │ │ │ │ │ │ ├── lint.js │ │ │ │ │ │ └── yaml-lint.js │ │ │ │ │ ├── merge │ │ │ │ │ │ ├── merge.css │ │ │ │ │ │ └── merge.js │ │ │ │ │ ├── mode │ │ │ │ │ │ ├── loadmode.js │ │ │ │ │ │ ├── multiplex.js │ │ │ │ │ │ ├── multiplex_test.js │ │ │ │ │ │ ├── overlay.js │ │ │ │ │ │ └── simple.js │ │ │ │ │ ├── runmode │ │ │ │ │ │ ├── colorize.js │ │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ │ ├── runmode.js │ │ │ │ │ │ └── runmode.node.js │ │ │ │ │ ├── scroll │ │ │ │ │ │ ├── annotatescrollbar.js │ │ │ │ │ │ ├── scrollpastend.js │ │ │ │ │ │ ├── simplescrollbars.css │ │ │ │ │ │ └── simplescrollbars.js │ │ │ │ │ ├── search │ │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ │ ├── matchesonscrollbar.css │ │ │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ └── searchcursor.js │ │ │ │ │ ├── selection │ │ │ │ │ │ ├── active-line.js │ │ │ │ │ │ ├── mark-selection.js │ │ │ │ │ │ └── selection-pointer.js │ │ │ │ │ ├── tern │ │ │ │ │ │ ├── tern.css │ │ │ │ │ │ ├── tern.js │ │ │ │ │ │ └── worker.js │ │ │ │ │ └── wrap │ │ │ │ │ │ └── hardwrap.js │ │ │ │ ├── addons.min.js │ │ │ │ ├── bower.json │ │ │ │ ├── codemirror.min.css │ │ │ │ ├── codemirror.min.js │ │ │ │ ├── lib │ │ │ │ │ ├── codemirror.css │ │ │ │ │ └── codemirror.js │ │ │ │ ├── mode │ │ │ │ │ ├── apl │ │ │ │ │ │ ├── apl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── asterisk │ │ │ │ │ │ ├── asterisk.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── clike │ │ │ │ │ │ ├── clike.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── scala.html │ │ │ │ │ ├── clojure │ │ │ │ │ │ ├── clojure.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cobol │ │ │ │ │ │ ├── cobol.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── coffeescript │ │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── commonlisp │ │ │ │ │ │ ├── commonlisp.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── css │ │ │ │ │ │ ├── css.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── less.html │ │ │ │ │ │ ├── less_test.js │ │ │ │ │ │ ├── scss.html │ │ │ │ │ │ ├── scss_test.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── cypher │ │ │ │ │ │ ├── cypher.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── d │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dart │ │ │ │ │ │ ├── dart.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── diff │ │ │ │ │ │ ├── diff.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── django │ │ │ │ │ │ ├── django.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dockerfile │ │ │ │ │ │ ├── dockerfile.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dtd │ │ │ │ │ │ ├── dtd.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dylan │ │ │ │ │ │ ├── dylan.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ebnf │ │ │ │ │ │ ├── ebnf.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ecl │ │ │ │ │ │ ├── ecl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── eiffel │ │ │ │ │ │ ├── eiffel.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── erlang │ │ │ │ │ │ ├── erlang.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── forth │ │ │ │ │ │ ├── forth.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── fortran │ │ │ │ │ │ ├── fortran.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gas │ │ │ │ │ │ ├── gas.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── gfm │ │ │ │ │ │ ├── gfm.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── gherkin │ │ │ │ │ │ ├── gherkin.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── go │ │ │ │ │ │ ├── go.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── groovy │ │ │ │ │ │ ├── groovy.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haml │ │ │ │ │ │ ├── haml.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── haskell │ │ │ │ │ │ ├── haskell.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── haxe │ │ │ │ │ │ ├── haxe.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlembedded │ │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── htmlmixed │ │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── http │ │ │ │ │ │ ├── http.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── idl │ │ │ │ │ │ ├── idl.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jade │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jade.js │ │ │ │ │ ├── javascript │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ ├── json-ld.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── typescript.html │ │ │ │ │ ├── jinja2 │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jinja2.js │ │ │ │ │ ├── julia │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── julia.js │ │ │ │ │ ├── kotlin │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── kotlin.js │ │ │ │ │ ├── livescript │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── livescript.js │ │ │ │ │ ├── lua │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── lua.js │ │ │ │ │ ├── markdown │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── markdown.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── meta.js │ │ │ │ │ ├── mirc │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mirc.js │ │ │ │ │ ├── mllike │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── mllike.js │ │ │ │ │ ├── modelica │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── modelica.js │ │ │ │ │ ├── nginx │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── nginx.js │ │ │ │ │ ├── ntriples │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── ntriples.js │ │ │ │ │ ├── octave │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── octave.js │ │ │ │ │ ├── pascal │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pascal.js │ │ │ │ │ ├── pegjs │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pegjs.js │ │ │ │ │ ├── perl │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── perl.js │ │ │ │ │ ├── php │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── php.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── pig │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pig.js │ │ │ │ │ ├── properties │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── properties.js │ │ │ │ │ ├── puppet │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── puppet.js │ │ │ │ │ ├── python │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── python.js │ │ │ │ │ ├── q │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── q.js │ │ │ │ │ ├── r │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── r.js │ │ │ │ │ ├── rpm │ │ │ │ │ │ ├── changes │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rpm.js │ │ │ │ │ ├── rst │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rst.js │ │ │ │ │ ├── ruby │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── ruby.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── rust │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── rust.js │ │ │ │ │ ├── sass │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sass.js │ │ │ │ │ ├── scheme │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── scheme.js │ │ │ │ │ ├── shell │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── shell.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── sieve │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sieve.js │ │ │ │ │ ├── slim │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── slim.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── smalltalk │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smalltalk.js │ │ │ │ │ ├── smarty │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smarty.js │ │ │ │ │ ├── smartymixed │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── smartymixed.js │ │ │ │ │ ├── solr │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── solr.js │ │ │ │ │ ├── soy │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── soy.js │ │ │ │ │ ├── sparql │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sparql.js │ │ │ │ │ ├── spreadsheet │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── spreadsheet.js │ │ │ │ │ ├── sql │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sql.js │ │ │ │ │ ├── stex │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── stex.js │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── stylus │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── stylus.js │ │ │ │ │ ├── tcl │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── tcl.js │ │ │ │ │ ├── textile │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── textile.js │ │ │ │ │ ├── tiddlywiki │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ │ └── tiddlywiki.js │ │ │ │ │ ├── tiki │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── tiki.css │ │ │ │ │ │ └── tiki.js │ │ │ │ │ ├── toml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── toml.js │ │ │ │ │ ├── tornado │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── tornado.js │ │ │ │ │ ├── turtle │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── turtle.js │ │ │ │ │ ├── vb │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vb.js │ │ │ │ │ ├── vbscript │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── vbscript.js │ │ │ │ │ ├── velocity │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── velocity.js │ │ │ │ │ ├── verilog │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── verilog.js │ │ │ │ │ ├── xml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── xml.js │ │ │ │ │ ├── xquery │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ └── xquery.js │ │ │ │ │ ├── yaml │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── yaml.js │ │ │ │ │ └── z80 │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── z80.js │ │ │ │ ├── modes.min.js │ │ │ │ ├── package.json │ │ │ │ └── theme │ │ │ │ │ ├── 3024-day.css │ │ │ │ │ ├── 3024-night.css │ │ │ │ │ ├── ambiance-mobile.css │ │ │ │ │ ├── ambiance.css │ │ │ │ │ ├── base16-dark.css │ │ │ │ │ ├── base16-light.css │ │ │ │ │ ├── blackboard.css │ │ │ │ │ ├── cobalt.css │ │ │ │ │ ├── colorforth.css │ │ │ │ │ ├── eclipse.css │ │ │ │ │ ├── elegant.css │ │ │ │ │ ├── erlang-dark.css │ │ │ │ │ ├── lesser-dark.css │ │ │ │ │ ├── mbo.css │ │ │ │ │ ├── mdn-like.css │ │ │ │ │ ├── midnight.css │ │ │ │ │ ├── monokai.css │ │ │ │ │ ├── neat.css │ │ │ │ │ ├── neo.css │ │ │ │ │ ├── night.css │ │ │ │ │ ├── paraiso-dark.css │ │ │ │ │ ├── paraiso-light.css │ │ │ │ │ ├── pastel-on-dark.css │ │ │ │ │ ├── rubyblue.css │ │ │ │ │ ├── solarized.css │ │ │ │ │ ├── the-matrix.css │ │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ │ ├── twilight.css │ │ │ │ │ ├── vibrant-ink.css │ │ │ │ │ ├── xq-dark.css │ │ │ │ │ ├── xq-light.css │ │ │ │ │ └── zenburn.css │ │ │ ├── flowchart.min.js │ │ │ ├── jquery.flowchart.min.js │ │ │ ├── marked.min.js │ │ │ ├── prettify.min.js │ │ │ ├── raphael.min.js │ │ │ ├── sequence-diagram.min.js │ │ │ └── underscore.min.js │ │ └── plugins │ │ │ ├── code-block-dialog │ │ │ └── code-block-dialog.js │ │ │ ├── emoji-dialog │ │ │ ├── emoji-dialog.js │ │ │ └── emoji.json │ │ │ ├── goto-line-dialog │ │ │ └── goto-line-dialog.js │ │ │ ├── help-dialog │ │ │ ├── help-dialog.js │ │ │ └── help.md │ │ │ ├── html-entities-dialog │ │ │ ├── html-entities-dialog.js │ │ │ └── html-entities.json │ │ │ ├── image-dialog │ │ │ └── image-dialog.js │ │ │ ├── link-dialog │ │ │ └── link-dialog.js │ │ │ ├── plugin-template.js │ │ │ ├── preformatted-text-dialog │ │ │ └── preformatted-text-dialog.js │ │ │ ├── reference-link-dialog │ │ │ └── reference-link-dialog.js │ │ │ ├── table-dialog │ │ │ └── table-dialog.js │ │ │ └── test-plugin │ │ │ └── test-plugin.js │ ├── footable.all.min.js │ ├── inspinia.js │ ├── jasny-bootstrap.min.js │ ├── jquery-2.1.1.js │ ├── jquery-3.1.1.min.js │ ├── jquery.metisMenu.js │ ├── jquery.slimscroll.js │ ├── jquery.slimscroll.min.js │ ├── main.js │ ├── markdown.js │ ├── pace.min.js │ ├── prettify.js │ ├── sweetalert.min.js │ └── ueditor │ │ ├── dialogs │ │ ├── attachment │ │ │ ├── attachment.css │ │ │ ├── attachment.html │ │ │ ├── attachment.js │ │ │ ├── fileTypeImages │ │ │ │ ├── icon_chm.gif │ │ │ │ ├── icon_default.png │ │ │ │ ├── icon_doc.gif │ │ │ │ ├── icon_exe.gif │ │ │ │ ├── icon_jpg.gif │ │ │ │ ├── icon_mp3.gif │ │ │ │ ├── icon_mv.gif │ │ │ │ ├── icon_pdf.gif │ │ │ │ ├── icon_ppt.gif │ │ │ │ ├── icon_psd.gif │ │ │ │ ├── icon_rar.gif │ │ │ │ ├── icon_txt.gif │ │ │ │ └── icon_xls.gif │ │ │ └── images │ │ │ │ ├── alignicon.gif │ │ │ │ ├── alignicon.png │ │ │ │ ├── bg.png │ │ │ │ ├── file-icons.gif │ │ │ │ ├── file-icons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ ├── background │ │ │ ├── background.css │ │ │ ├── background.html │ │ │ ├── background.js │ │ │ └── images │ │ │ │ ├── bg.png │ │ │ │ └── success.png │ │ ├── charts │ │ │ ├── chart.config.js │ │ │ ├── charts.css │ │ │ ├── charts.html │ │ │ ├── charts.js │ │ │ └── images │ │ │ │ ├── charts0.png │ │ │ │ ├── charts1.png │ │ │ │ ├── charts2.png │ │ │ │ ├── charts3.png │ │ │ │ ├── charts4.png │ │ │ │ └── charts5.png │ │ ├── emotion │ │ │ ├── emotion.css │ │ │ ├── emotion.html │ │ │ ├── emotion.js │ │ │ └── images │ │ │ │ ├── 0.gif │ │ │ │ ├── bface.gif │ │ │ │ ├── cface.gif │ │ │ │ ├── fface.gif │ │ │ │ ├── jxface2.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── tface.gif │ │ │ │ ├── wface.gif │ │ │ │ └── yface.gif │ │ ├── gmap │ │ │ └── gmap.html │ │ ├── help │ │ │ ├── help.css │ │ │ ├── help.html │ │ │ └── help.js │ │ ├── image │ │ │ ├── image.css │ │ │ ├── image.html │ │ │ ├── image.js │ │ │ └── images │ │ │ │ ├── alignicon.jpg │ │ │ │ ├── bg.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ ├── insertframe │ │ │ └── insertframe.html │ │ ├── internal.js │ │ ├── link │ │ │ └── link.html │ │ ├── map │ │ │ ├── map.html │ │ │ └── show.html │ │ ├── music │ │ │ ├── music.css │ │ │ ├── music.html │ │ │ └── music.js │ │ ├── preview │ │ │ └── preview.html │ │ ├── scrawl │ │ │ ├── images │ │ │ │ ├── addimg.png │ │ │ │ ├── brush.png │ │ │ │ ├── delimg.png │ │ │ │ ├── delimgH.png │ │ │ │ ├── empty.png │ │ │ │ ├── emptyH.png │ │ │ │ ├── eraser.png │ │ │ │ ├── redo.png │ │ │ │ ├── redoH.png │ │ │ │ ├── scale.png │ │ │ │ ├── scaleH.png │ │ │ │ ├── size.png │ │ │ │ ├── undo.png │ │ │ │ └── undoH.png │ │ │ ├── scrawl.css │ │ │ ├── scrawl.html │ │ │ └── scrawl.js │ │ ├── searchreplace │ │ │ ├── searchreplace.html │ │ │ └── searchreplace.js │ │ ├── snapscreen │ │ │ └── snapscreen.html │ │ ├── spechars │ │ │ ├── spechars.html │ │ │ └── spechars.js │ │ ├── table │ │ │ ├── dragicon.png │ │ │ ├── edittable.css │ │ │ ├── edittable.html │ │ │ ├── edittable.js │ │ │ ├── edittd.html │ │ │ └── edittip.html │ │ ├── template │ │ │ ├── config.js │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── pre0.png │ │ │ │ ├── pre1.png │ │ │ │ ├── pre2.png │ │ │ │ ├── pre3.png │ │ │ │ └── pre4.png │ │ │ ├── template.css │ │ │ ├── template.html │ │ │ └── template.js │ │ ├── video │ │ │ ├── images │ │ │ │ ├── bg.png │ │ │ │ ├── center_focus.jpg │ │ │ │ ├── file-icons.gif │ │ │ │ ├── file-icons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── left_focus.jpg │ │ │ │ ├── none_focus.jpg │ │ │ │ ├── progress.png │ │ │ │ ├── right_focus.jpg │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ │ ├── video.css │ │ │ ├── video.html │ │ │ └── video.js │ │ ├── webapp │ │ │ └── webapp.html │ │ └── wordimage │ │ │ ├── fClipboard_ueditor.swf │ │ │ ├── imageUploader.swf │ │ │ ├── tangram.js │ │ │ ├── wordimage.html │ │ │ └── wordimage.js │ │ ├── index.html │ │ ├── lang │ │ ├── en │ │ │ ├── en.js │ │ │ └── images │ │ │ │ ├── addimage.png │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ ├── background.png │ │ │ │ ├── button.png │ │ │ │ ├── copy.png │ │ │ │ ├── deletedisable.png │ │ │ │ ├── deleteenable.png │ │ │ │ ├── listbackground.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ ├── rotateleftdisable.png │ │ │ │ ├── rotateleftenable.png │ │ │ │ ├── rotaterightdisable.png │ │ │ │ ├── rotaterightenable.png │ │ │ │ └── upload.png │ │ └── zh-cn │ │ │ ├── images │ │ │ ├── copy.png │ │ │ ├── localimage.png │ │ │ ├── music.png │ │ │ └── upload.png │ │ │ └── zh-cn.js │ │ ├── php │ │ ├── Uploader.class.php │ │ ├── action_crawler.php │ │ ├── action_list.php │ │ ├── action_upload.php │ │ ├── config.json │ │ └── controller.php │ │ ├── themes │ │ ├── default │ │ │ ├── css │ │ │ │ ├── ueditor.css │ │ │ │ └── ueditor.min.css │ │ │ ├── dialogbase.css │ │ │ └── images │ │ │ │ ├── anchor.gif │ │ │ │ ├── arrow.png │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── button-bg.gif │ │ │ │ ├── cancelbutton.gif │ │ │ │ ├── charts.png │ │ │ │ ├── cursor_h.gif │ │ │ │ ├── cursor_h.png │ │ │ │ ├── cursor_v.gif │ │ │ │ ├── cursor_v.png │ │ │ │ ├── dialog-title-bg.png │ │ │ │ ├── filescan.png │ │ │ │ ├── highlighted.gif │ │ │ │ ├── icons-all.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── loaderror.png │ │ │ │ ├── loading.gif │ │ │ │ ├── lock.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── pagebreak.gif │ │ │ │ ├── scale.png │ │ │ │ ├── sortable.png │ │ │ │ ├── spacer.gif │ │ │ │ ├── sparator_v.png │ │ │ │ ├── table-cell-align.png │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ ├── toolbar_bg.png │ │ │ │ ├── unhighlighted.gif │ │ │ │ ├── upload.png │ │ │ │ ├── videologo.gif │ │ │ │ ├── word.gif │ │ │ │ └── wordpaste.png │ │ └── iframe.css │ │ ├── third-party │ │ ├── SyntaxHighlighter │ │ │ ├── shCore.js │ │ │ └── shCoreDefault.css │ │ ├── codemirror │ │ │ ├── codemirror.css │ │ │ └── codemirror.js │ │ ├── highcharts │ │ │ ├── adapters │ │ │ │ ├── mootools-adapter.js │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ ├── prototype-adapter.js │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ ├── standalone-framework.js │ │ │ │ └── standalone-framework.src.js │ │ │ ├── highcharts-more.js │ │ │ ├── highcharts-more.src.js │ │ │ ├── highcharts.js │ │ │ ├── highcharts.src.js │ │ │ ├── modules │ │ │ │ ├── annotations.js │ │ │ │ ├── annotations.src.js │ │ │ │ ├── canvas-tools.js │ │ │ │ ├── canvas-tools.src.js │ │ │ │ ├── data.js │ │ │ │ ├── data.src.js │ │ │ │ ├── drilldown.js │ │ │ │ ├── drilldown.src.js │ │ │ │ ├── exporting.js │ │ │ │ ├── exporting.src.js │ │ │ │ ├── funnel.js │ │ │ │ ├── funnel.src.js │ │ │ │ ├── heatmap.js │ │ │ │ ├── heatmap.src.js │ │ │ │ ├── map.js │ │ │ │ ├── map.src.js │ │ │ │ ├── no-data-to-display.js │ │ │ │ └── no-data-to-display.src.js │ │ │ └── themes │ │ │ │ ├── dark-blue.js │ │ │ │ ├── dark-green.js │ │ │ │ ├── gray.js │ │ │ │ ├── grid.js │ │ │ │ └── skies.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── snapscreen │ │ │ └── UEditorSnapscreen.exe │ │ ├── video-js │ │ │ ├── font │ │ │ │ ├── vjs.eot │ │ │ │ ├── vjs.svg │ │ │ │ ├── vjs.ttf │ │ │ │ └── vjs.woff │ │ │ ├── video-js.css │ │ │ ├── video-js.min.css │ │ │ ├── video-js.swf │ │ │ ├── video.dev.js │ │ │ └── video.js │ │ ├── webuploader │ │ │ ├── Uploader.swf │ │ │ ├── webuploader.css │ │ │ ├── webuploader.custom.js │ │ │ ├── webuploader.custom.min.js │ │ │ ├── webuploader.flashonly.js │ │ │ ├── webuploader.flashonly.min.js │ │ │ ├── webuploader.html5only.js │ │ │ ├── webuploader.html5only.min.js │ │ │ ├── webuploader.js │ │ │ ├── webuploader.min.js │ │ │ ├── webuploader.withoutimage.js │ │ │ └── webuploader.withoutimage.min.js │ │ ├── xss.min.js │ │ └── zeroclipboard │ │ │ ├── ZeroClipboard.js │ │ │ ├── ZeroClipboard.min.js │ │ │ └── ZeroClipboard.swf │ │ ├── ueditor.all.js │ │ ├── ueditor.all.min.js │ │ ├── ueditor.config.js │ │ ├── ueditor.parse.js │ │ └── ueditor.parse.min.js ├── robots.txt └── web.config ├── readme.md ├── resources ├── assets │ └── sass │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── admin │ ├── comment.blade.php │ ├── course-add.blade.php │ ├── course-edit.blade.php │ ├── course-ware-add.blade.php │ ├── course-ware-edit.blade.php │ ├── course.blade.php │ ├── git.blade.php │ ├── index.blade.php │ ├── note.blade.php │ ├── problem.blade.php │ ├── set.blade.php │ ├── setting.blade.php │ └── user.blade.php │ ├── auth │ ├── emails │ │ └── password.blade.php │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ └── register.blade.php │ ├── course │ ├── comment.blade.php │ ├── index.blade.php │ ├── note.blade.php │ ├── problem-anwser.blade.php │ ├── problem.blade.php │ └── show.blade.php │ ├── errors │ └── 503.blade.php │ ├── home.blade.php │ ├── index │ ├── 404.blade.php │ ├── 500.blade.php │ ├── index.blade.php │ ├── itool.blade.php │ ├── links.blade.php │ ├── login.blade.php │ ├── search.blade.php │ └── timeline.blade.php │ ├── layout │ ├── admin-main.blade.php │ ├── app.blade.php │ ├── course.blade.php │ └── main.blade.php │ ├── part │ ├── foot.blade.php │ ├── head.blade.php │ └── navbar.blade.php │ ├── user │ └── index.blade.php │ ├── vendor │ └── .gitkeep │ └── welcome.blade.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── ExampleTest.php └── TestCase.php └── vendor ├── autoload.php ├── bin ├── php-parse ├── phpunit └── psysh ├── 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 ├── autoload_static.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 │ │ │ ├── Iban.php │ │ │ └── Luhn.php │ │ ├── DefaultGenerator.php │ │ ├── Documentor.php │ │ ├── Factory.php │ │ ├── Generator.php │ │ ├── Guesser │ │ │ └── Name.php │ │ ├── ORM │ │ │ ├── CakePHP │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ ├── Doctrine │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ ├── Mandango │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ ├── Propel │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ ├── Propel2 │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ │ └── Spot │ │ │ │ ├── ColumnTypeGuesser.php │ │ │ │ ├── EntityPopulator.php │ │ │ │ └── Populator.php │ │ ├── Provider │ │ │ ├── Address.php │ │ │ ├── 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 │ │ │ ├── ar_SA │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── Text.php │ │ │ ├── at_AT │ │ │ │ └── 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 │ │ │ │ └── Text.php │ │ │ ├── de_CH │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── de_DE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── el_GR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── en_AU │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_CA │ │ │ │ ├── Address.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_GB │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_IN │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_NZ │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_PH │ │ │ │ ├── Address.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_SG │ │ │ │ ├── Address.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_UG │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── en_US │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── en_ZA │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── es_AR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── es_ES │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── es_PE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── es_VE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── fa_IR │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── fi_FI │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── fr_BE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── fr_CA │ │ │ │ ├── Address.php │ │ │ │ └── Person.php │ │ │ ├── fr_CH │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── fr_FR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── he_IL │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── hr_HR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── hu_HU │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── hy_AM │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── id_ID │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── is_IS │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── it_CH │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── it_IT │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── ja_JP │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── ka_GE │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── kk_KZ │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── ko_KR │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── lt_LT │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── lv_LV │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── me_ME │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── mn_MN │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── nb_NO │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── ne_NP │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── nl_BE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── nl_NL │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── 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 │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── ro_RO │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── ru_RU │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ │ ├── sk_SK │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── sl_SI │ │ │ │ ├── Address.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── sr_Cyrl_RS │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ └── Person.php │ │ │ ├── sr_Latn_RS │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ └── Person.php │ │ │ ├── sr_RS │ │ │ │ ├── Address.php │ │ │ │ ├── Payment.php │ │ │ │ └── Person.php │ │ │ ├── sv_SE │ │ │ │ ├── Address.php │ │ │ │ ├── Company.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ ├── 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 │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ └── PhoneNumber.php │ │ │ └── zh_TW │ │ │ │ ├── Address.php │ │ │ │ ├── Color.php │ │ │ │ ├── Company.php │ │ │ │ ├── DateTime.php │ │ │ │ ├── Internet.php │ │ │ │ ├── Payment.php │ │ │ │ ├── Person.php │ │ │ │ ├── PhoneNumber.php │ │ │ │ └── Text.php │ │ ├── UniqueGenerator.php │ │ └── ValidGenerator.php │ └── autoload.php │ └── test │ ├── Faker │ ├── Calculator │ │ ├── IbanTest.php │ │ └── LuhnTest.php │ ├── DefaultGeneratorTest.php │ ├── GeneratorTest.php │ └── Provider │ │ ├── AddressTest.php │ │ ├── BarcodeTest.php │ │ ├── BaseTest.php │ │ ├── BiasedTest.php │ │ ├── ColorTest.php │ │ ├── CompanyTest.php │ │ ├── DateTimeTest.php │ │ ├── ImageTest.php │ │ ├── InternetTest.php │ │ ├── LocalizationTest.php │ │ ├── LoremTest.php │ │ ├── MiscellaneousTest.php │ │ ├── PaymentTest.php │ │ ├── PersonTest.php │ │ ├── PhoneNumberTest.php │ │ ├── ProviderOverrideTest.php │ │ ├── TextTest.php │ │ ├── UserAgentTest.php │ │ ├── UuidTest.php │ │ ├── ar_JO │ │ └── InternetTest.php │ │ ├── ar_SA │ │ └── InternetTest.php │ │ ├── at_AT │ │ └── PaymentTest.php │ │ ├── bg_BG │ │ └── PaymentTest.php │ │ ├── bn_BD │ │ └── PersonTest.php │ │ ├── cs_CZ │ │ └── PersonTest.php │ │ ├── da_DK │ │ └── InternetTest.php │ │ ├── de_AT │ │ ├── InternetTest.php │ │ └── PhoneNumberTest.php │ │ ├── de_CH │ │ ├── AddressTest.php │ │ ├── InternetTest.php │ │ └── PhoneNumberTest.php │ │ ├── de_DE │ │ └── InternetTest.php │ │ ├── en_AU │ │ └── AddressTest.php │ │ ├── en_CA │ │ └── AddressTest.php │ │ ├── en_IN │ │ └── AddressTest.php │ │ ├── en_NZ │ │ └── PhoneNumberTest.php │ │ ├── en_PH │ │ └── AddressTest.php │ │ ├── en_SG │ │ ├── AddressTest.php │ │ └── PhoneNumberTest.php │ │ ├── en_UG │ │ └── AddressTest.php │ │ ├── en_US │ │ ├── PaymentTest.php │ │ └── PhoneNumberTest.php │ │ ├── en_ZA │ │ ├── CompanyTest.php │ │ ├── InternetTest.php │ │ └── PhoneNumberTest.php │ │ ├── es_ES │ │ └── PersonTest.php │ │ ├── fi_FI │ │ └── InternetTest.php │ │ ├── fr_BE │ │ └── PaymentTest.php │ │ ├── fr_CH │ │ ├── AddressTest.php │ │ ├── InternetTest.php │ │ └── PhoneNumberTest.php │ │ ├── fr_FR │ │ └── CompanyTest.php │ │ ├── id_ID │ │ └── PersonTest.php │ │ ├── it_CH │ │ ├── AddressTest.php │ │ ├── InternetTest.php │ │ └── PhoneNumberTest.php │ │ ├── it_IT │ │ ├── CompanyTest.php │ │ └── PersonTest.php │ │ ├── ja_JP │ │ └── PersonTest.php │ │ ├── mn_MN │ │ └── PersonTest.php │ │ ├── nl_BE │ │ └── PaymentTest.php │ │ ├── nl_NL │ │ └── CompanyTest.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 │ │ └── zh_TW │ │ └── TextTest.php │ ├── documentor.php │ └── test.php ├── gregwar └── captcha │ ├── .gitignore │ ├── .travis.yml │ ├── CaptchaBuilder.php │ ├── CaptchaBuilderInterface.php │ ├── Font │ ├── captcha0.ttf │ ├── captcha1.ttf │ ├── captcha2.ttf │ ├── captcha3.ttf │ ├── captcha4.ttf │ └── captcha5.ttf │ ├── ImageFileHandler.php │ ├── LICENSE │ ├── PhraseBuilder.php │ ├── PhraseBuilderInterface.php │ ├── README.md │ ├── autoload.php │ ├── composer.json │ └── demo │ ├── demo.php │ ├── fingerprint.php │ ├── index.php │ ├── ocr.php │ └── output.php ├── guzzlehttp ├── guzzle │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── UPGRADING.md │ ├── composer.json │ └── src │ │ ├── Client.php │ │ ├── ClientInterface.php │ │ ├── Cookie │ │ ├── CookieJar.php │ │ ├── CookieJarInterface.php │ │ ├── FileCookieJar.php │ │ ├── SessionCookieJar.php │ │ └── SetCookie.php │ │ ├── Exception │ │ ├── BadResponseException.php │ │ ├── ClientException.php │ │ ├── ConnectException.php │ │ ├── GuzzleException.php │ │ ├── RequestException.php │ │ ├── SeekException.php │ │ ├── ServerException.php │ │ ├── TooManyRedirectsException.php │ │ └── TransferException.php │ │ ├── Handler │ │ ├── CurlFactory.php │ │ ├── CurlFactoryInterface.php │ │ ├── CurlHandler.php │ │ ├── CurlMultiHandler.php │ │ ├── EasyHandle.php │ │ ├── MockHandler.php │ │ ├── Proxy.php │ │ └── StreamHandler.php │ │ ├── HandlerStack.php │ │ ├── MessageFormatter.php │ │ ├── Middleware.php │ │ ├── Pool.php │ │ ├── PrepareBodyMiddleware.php │ │ ├── RedirectMiddleware.php │ │ ├── RequestOptions.php │ │ ├── RetryMiddleware.php │ │ ├── TransferStats.php │ │ ├── UriTemplate.php │ │ ├── functions.php │ │ └── functions_include.php ├── promises │ ├── CHANGELOG.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── composer.json │ └── src │ │ ├── AggregateException.php │ │ ├── CancellationException.php │ │ ├── Coroutine.php │ │ ├── EachPromise.php │ │ ├── FulfilledPromise.php │ │ ├── Promise.php │ │ ├── PromiseInterface.php │ │ ├── PromisorInterface.php │ │ ├── RejectedPromise.php │ │ ├── RejectionException.php │ │ ├── TaskQueue.php │ │ ├── TaskQueueInterface.php │ │ ├── functions.php │ │ └── functions_include.php └── psr7 │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── AppendStream.php │ ├── BufferStream.php │ ├── CachingStream.php │ ├── DroppingStream.php │ ├── FnStream.php │ ├── InflateStream.php │ ├── LazyOpenStream.php │ ├── LimitStream.php │ ├── MessageTrait.php │ ├── MultipartStream.php │ ├── NoSeekStream.php │ ├── PumpStream.php │ ├── Request.php │ ├── Response.php │ ├── ServerRequest.php │ ├── Stream.php │ ├── StreamDecoratorTrait.php │ ├── StreamWrapper.php │ ├── UploadedFile.php │ ├── Uri.php │ ├── UriNormalizer.php │ ├── UriResolver.php │ ├── functions.php │ └── functions_include.php ├── 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 │ ├── ClosureSerializationException.php │ ├── ClosureUnserializationException.php │ └── SuperClosureException.php │ ├── SerializableClosure.php │ ├── Serializer.php │ └── SerializerInterface.php ├── laravel ├── framework │ ├── LICENSE.txt │ ├── composer.json │ ├── readme.md │ └── src │ │ └── Illuminate │ │ ├── Auth │ │ ├── Access │ │ │ ├── AuthorizationException.php │ │ │ ├── Gate.php │ │ │ ├── HandlesAuthorization.php │ │ │ └── Response.php │ │ ├── AuthManager.php │ │ ├── AuthServiceProvider.php │ │ ├── Authenticatable.php │ │ ├── AuthenticationException.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 │ │ │ ├── Failed.php │ │ │ ├── Lockout.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 │ │ ├── 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 │ │ │ ├── QueueableCollection.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 │ │ │ ├── JsonExpression.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 │ │ │ └── PostgresBuilder.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 │ │ │ │ └── AuthorizesResources.php │ │ │ ├── AuthenticatesAndRegistersUsers.php │ │ │ ├── AuthenticatesUsers.php │ │ │ ├── RedirectsUsers.php │ │ │ ├── RegistersUsers.php │ │ │ ├── ResetsPasswords.php │ │ │ ├── ThrottlesLogins.php │ │ │ └── User.php │ │ ├── Bootstrap │ │ │ ├── BootProviders.php │ │ │ ├── ConfigureLogging.php │ │ │ ├── DetectEnvironment.php │ │ │ ├── HandleExceptions.php │ │ │ ├── LoadConfiguration.php │ │ │ ├── RegisterFacades.php │ │ │ ├── RegisterProviders.php │ │ │ └── SetRequestForConsole.php │ │ ├── Bus │ │ │ └── DispatchesJobs.php │ │ ├── ComposerScripts.php │ │ ├── Console │ │ │ ├── AppNameCommand.php │ │ │ ├── ClearCompiledCommand.php │ │ │ ├── ConfigCacheCommand.php │ │ │ ├── ConfigClearCommand.php │ │ │ ├── ConsoleMakeCommand.php │ │ │ ├── DownCommand.php │ │ │ ├── EnvironmentCommand.php │ │ │ ├── EventGenerateCommand.php │ │ │ ├── EventMakeCommand.php │ │ │ ├── IlluminateCaster.php │ │ │ ├── JobMakeCommand.php │ │ │ ├── Kernel.php │ │ │ ├── KeyGenerateCommand.php │ │ │ ├── ListenerMakeCommand.php │ │ │ ├── ModelMakeCommand.php │ │ │ ├── Optimize │ │ │ │ └── config.php │ │ │ ├── OptimizeCommand.php │ │ │ ├── PolicyMakeCommand.php │ │ │ ├── ProviderMakeCommand.php │ │ │ ├── QueuedJob.php │ │ │ ├── RequestMakeCommand.php │ │ │ ├── RouteCacheCommand.php │ │ │ ├── RouteClearCommand.php │ │ │ ├── RouteListCommand.php │ │ │ ├── ServeCommand.php │ │ │ ├── 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 │ │ │ │ ├── Authorize.php │ │ │ │ ├── CheckForMaintenanceMode.php │ │ │ │ ├── VerifyCsrfToken.php │ │ │ │ └── VerifyPostSize.php │ │ ├── Inspiring.php │ │ ├── ProviderRepository.php │ │ ├── Providers │ │ │ ├── ArtisanServiceProvider.php │ │ │ ├── ComposerServiceProvider.php │ │ │ ├── ConsoleSupportServiceProvider.php │ │ │ └── FoundationServiceProvider.php │ │ ├── Support │ │ │ └── Providers │ │ │ │ ├── AuthServiceProvider.php │ │ │ │ ├── EventServiceProvider.php │ │ │ │ └── RouteServiceProvider.php │ │ ├── Testing │ │ │ ├── Concerns │ │ │ │ ├── ImpersonatesUsers.php │ │ │ │ ├── InteractsWithAuthentication.php │ │ │ │ ├── InteractsWithConsole.php │ │ │ │ ├── InteractsWithContainer.php │ │ │ │ ├── InteractsWithDatabase.php │ │ │ │ ├── InteractsWithPages.php │ │ │ │ ├── InteractsWithSession.php │ │ │ │ ├── MakesHttpRequests.php │ │ │ │ └── MocksApplicationServices.php │ │ │ ├── Constraints │ │ │ │ ├── FormFieldConstraint.php │ │ │ │ ├── HasElement.php │ │ │ │ ├── HasInElement.php │ │ │ │ ├── HasLink.php │ │ │ │ ├── HasSource.php │ │ │ │ ├── HasText.php │ │ │ │ ├── HasValue.php │ │ │ │ ├── IsChecked.php │ │ │ │ ├── IsSelected.php │ │ │ │ ├── PageConstraint.php │ │ │ │ └── ReversePageConstraint.php │ │ │ ├── DatabaseMigrations.php │ │ │ ├── DatabaseTransactions.php │ │ │ ├── HttpException.php │ │ │ ├── TestCase.php │ │ │ ├── WithoutEvents.php │ │ │ └── WithoutMiddleware.php │ │ ├── Validation │ │ │ ├── ValidatesRequests.php │ │ │ └── ValidationException.php │ │ └── 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 │ │ ├── UploadedFile.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 │ │ │ ├── SparkPostTransport.php │ │ │ └── Transport.php │ │ ├── TransportManager.php │ │ └── composer.json │ │ ├── Pagination │ │ ├── AbstractPaginator.php │ │ ├── BootstrapFourNextPreviousButtonRendererTrait.php │ │ ├── BootstrapFourPresenter.php │ │ ├── BootstrapThreeNextPreviousButtonRendererTrait.php │ │ ├── BootstrapThreePresenter.php │ │ ├── LengthAwarePaginator.php │ │ ├── PaginationServiceProvider.php │ │ ├── Paginator.php │ │ ├── SimpleBootstrapFourPresenter.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 │ │ │ ├── JobExceptionOccurred.php │ │ │ ├── JobFailed.php │ │ │ ├── JobProcessed.php │ │ │ ├── JobProcessing.php │ │ │ └── WorkerStopping.php │ │ ├── Failed │ │ │ ├── DatabaseFailedJobProvider.php │ │ │ ├── FailedJobProviderInterface.php │ │ │ └── NullFailedJobProvider.php │ │ ├── IlluminateQueueClosure.php │ │ ├── InteractsWithQueue.php │ │ ├── Jobs │ │ │ ├── BeanstalkdJob.php │ │ │ ├── DatabaseJob.php │ │ │ ├── Job.php │ │ │ ├── RedisJob.php │ │ │ ├── SqsJob.php │ │ │ └── SyncJob.php │ │ ├── Listener.php │ │ ├── NullQueue.php │ │ ├── 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 │ │ ├── ControllerMiddlewareOptions.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 │ │ ├── ValidationException.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 └── socialite │ ├── LICENSE.txt │ ├── composer.json │ ├── readme.md │ └── src │ ├── AbstractUser.php │ ├── Contracts │ ├── Factory.php │ ├── Provider.php │ └── User.php │ ├── Facades │ └── Socialite.php │ ├── One │ ├── AbstractProvider.php │ ├── BitbucketProvider.php │ ├── TwitterProvider.php │ └── User.php │ ├── SocialiteManager.php │ ├── SocialiteServiceProvider.php │ └── Two │ ├── AbstractProvider.php │ ├── FacebookProvider.php │ ├── GithubProvider.php │ ├── GoogleProvider.php │ ├── InvalidStateException.php │ ├── LinkedInProvider.php │ ├── ProviderInterface.php │ └── User.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 │ │ ├── FilesystemNotFoundException.php │ │ ├── Handler.php │ │ ├── MountManager.php │ │ ├── NotSupportedException.php │ │ ├── Plugin │ │ ├── AbstractPlugin.php │ │ ├── EmptyDir.php │ │ ├── ForcedCopy.php │ │ ├── ForcedRename.php │ │ ├── GetWithMetadata.php │ │ ├── ListFiles.php │ │ ├── ListPaths.php │ │ ├── ListWith.php │ │ ├── PluggableTrait.php │ │ └── PluginNotFoundException.php │ │ ├── PluginInterface.php │ │ ├── ReadInterface.php │ │ ├── RootViolationException.php │ │ ├── SafeStorage.php │ │ ├── UnreadableFileException.php │ │ ├── Util.php │ │ └── Util │ │ ├── ContentListingFormatter.php │ │ ├── MimeType.php │ │ └── StreamHasher.php └── oauth1-client │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── phpunit.xml │ ├── resources │ └── examples │ │ ├── tumblr.php │ │ ├── twitter.php │ │ └── xing.php │ ├── rfc5849.txt │ ├── src │ └── Client │ │ ├── Credentials │ │ ├── ClientCredentials.php │ │ ├── ClientCredentialsInterface.php │ │ ├── Credentials.php │ │ ├── CredentialsException.php │ │ ├── CredentialsInterface.php │ │ ├── TemporaryCredentials.php │ │ └── TokenCredentials.php │ │ ├── Server │ │ ├── Bitbucket.php │ │ ├── Magento.php │ │ ├── Server.php │ │ ├── Trello.php │ │ ├── Tumblr.php │ │ ├── Twitter.php │ │ ├── User.php │ │ ├── Uservoice.php │ │ └── Xing.php │ │ └── Signature │ │ ├── HmacSha1Signature.php │ │ ├── PlainTextSignature.php │ │ ├── Signature.php │ │ └── SignatureInterface.php │ └── tests │ ├── ClientCredentialsTest.php │ ├── HmacSha1SignatureTest.php │ ├── PlainTextSignatureTest.php │ ├── ServerTest.php │ ├── TrelloServerTest.php │ ├── XingServerTest.php │ └── stubs │ └── ServerStub.php ├── mockery └── mockery │ ├── .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 │ ├── 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 │ │ ├── Fixtures │ │ ├── MethodWithNullableParameters.php │ │ ├── MethodWithNullableReturnType.php │ │ └── VoidMethod.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 │ │ ├── MockingMethodsWithNullableParametersTest.php │ │ ├── MockingNullableMethodsTest.php │ │ ├── MockingParameterAndReturnTypesTest.php │ │ ├── MockingProtectedMethodsTest.php │ │ ├── MockingVariadicArgumentsTest.php │ │ ├── MockingVoidMethodsTest.php │ │ ├── NamedMockTest.php │ │ ├── RecorderTest.php │ │ ├── SpyTest.php │ │ ├── Test │ │ └── Generator │ │ │ └── MockConfigurationBuilderTest.php │ │ ├── WithFormatterExpectationTest.php │ │ └── _files │ │ └── file.txt │ └── travis │ ├── after_success.sh │ ├── before_script.sh │ ├── extra.ini │ ├── install.sh │ └── script.sh ├── monolog └── monolog │ ├── .php_cs │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── doc │ ├── 01-usage.md │ ├── 02-handlers-formatters-processors.md │ ├── 03-utilities.md │ ├── 04-extending.md │ └── sockets.md │ ├── phpunit.xml.dist │ ├── src │ └── Monolog │ │ ├── ErrorHandler.php │ │ ├── Formatter │ │ ├── ChromePHPFormatter.php │ │ ├── ElasticaFormatter.php │ │ ├── FlowdockFormatter.php │ │ ├── FluentdFormatter.php │ │ ├── FormatterInterface.php │ │ ├── GelfMessageFormatter.php │ │ ├── HtmlFormatter.php │ │ ├── JsonFormatter.php │ │ ├── LineFormatter.php │ │ ├── LogglyFormatter.php │ │ ├── LogstashFormatter.php │ │ ├── MongoDBFormatter.php │ │ ├── NormalizerFormatter.php │ │ ├── ScalarFormatter.php │ │ └── WildfireFormatter.php │ │ ├── Handler │ │ ├── AbstractHandler.php │ │ ├── AbstractProcessingHandler.php │ │ ├── AbstractSyslogHandler.php │ │ ├── AmqpHandler.php │ │ ├── BrowserConsoleHandler.php │ │ ├── BufferHandler.php │ │ ├── ChromePHPHandler.php │ │ ├── CouchDBHandler.php │ │ ├── CubeHandler.php │ │ ├── Curl │ │ │ └── Util.php │ │ ├── DeduplicationHandler.php │ │ ├── DoctrineCouchDBHandler.php │ │ ├── DynamoDbHandler.php │ │ ├── ElasticSearchHandler.php │ │ ├── ErrorLogHandler.php │ │ ├── FilterHandler.php │ │ ├── FingersCrossed │ │ │ ├── ActivationStrategyInterface.php │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ └── ErrorLevelActivationStrategy.php │ │ ├── FingersCrossedHandler.php │ │ ├── FirePHPHandler.php │ │ ├── FleepHookHandler.php │ │ ├── FlowdockHandler.php │ │ ├── GelfHandler.php │ │ ├── GroupHandler.php │ │ ├── HandlerInterface.php │ │ ├── HandlerWrapper.php │ │ ├── HipChatHandler.php │ │ ├── IFTTTHandler.php │ │ ├── LogEntriesHandler.php │ │ ├── LogglyHandler.php │ │ ├── MailHandler.php │ │ ├── MandrillHandler.php │ │ ├── MissingExtensionException.php │ │ ├── MongoDBHandler.php │ │ ├── NativeMailerHandler.php │ │ ├── NewRelicHandler.php │ │ ├── NullHandler.php │ │ ├── PHPConsoleHandler.php │ │ ├── PsrHandler.php │ │ ├── PushoverHandler.php │ │ ├── RavenHandler.php │ │ ├── RedisHandler.php │ │ ├── RollbarHandler.php │ │ ├── RotatingFileHandler.php │ │ ├── SamplingHandler.php │ │ ├── Slack │ │ │ └── SlackRecord.php │ │ ├── SlackHandler.php │ │ ├── SlackWebhookHandler.php │ │ ├── SlackbotHandler.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 │ │ ├── MercurialProcessor.php │ │ ├── ProcessIdProcessor.php │ │ ├── PsrLogMessageProcessor.php │ │ ├── TagProcessor.php │ │ ├── UidProcessor.php │ │ └── WebProcessor.php │ │ └── Registry.php │ └── tests │ └── Monolog │ ├── ErrorHandlerTest.php │ ├── Formatter │ ├── ChromePHPFormatterTest.php │ ├── ElasticaFormatterTest.php │ ├── FlowdockFormatterTest.php │ ├── FluentdFormatterTest.php │ ├── GelfMessageFormatterTest.php │ ├── JsonFormatterTest.php │ ├── LineFormatterTest.php │ ├── LogglyFormatterTest.php │ ├── LogstashFormatterTest.php │ ├── MongoDBFormatterTest.php │ ├── NormalizerFormatterTest.php │ ├── ScalarFormatterTest.php │ └── WildfireFormatterTest.php │ ├── Handler │ ├── AbstractHandlerTest.php │ ├── AbstractProcessingHandlerTest.php │ ├── AmqpHandlerTest.php │ ├── BrowserConsoleHandlerTest.php │ ├── BufferHandlerTest.php │ ├── ChromePHPHandlerTest.php │ ├── CouchDBHandlerTest.php │ ├── DeduplicationHandlerTest.php │ ├── DoctrineCouchDBHandlerTest.php │ ├── DynamoDbHandlerTest.php │ ├── ElasticSearchHandlerTest.php │ ├── ErrorLogHandlerTest.php │ ├── FilterHandlerTest.php │ ├── FingersCrossedHandlerTest.php │ ├── FirePHPHandlerTest.php │ ├── Fixtures │ │ └── .gitkeep │ ├── FleepHookHandlerTest.php │ ├── FlowdockHandlerTest.php │ ├── GelfHandlerLegacyTest.php │ ├── GelfHandlerTest.php │ ├── GelfMockMessagePublisher.php │ ├── GroupHandlerTest.php │ ├── HandlerWrapperTest.php │ ├── HipChatHandlerTest.php │ ├── LogEntriesHandlerTest.php │ ├── MailHandlerTest.php │ ├── MockRavenClient.php │ ├── MongoDBHandlerTest.php │ ├── NativeMailerHandlerTest.php │ ├── NewRelicHandlerTest.php │ ├── NullHandlerTest.php │ ├── PHPConsoleHandlerTest.php │ ├── PsrHandlerTest.php │ ├── PushoverHandlerTest.php │ ├── RavenHandlerTest.php │ ├── RedisHandlerTest.php │ ├── RotatingFileHandlerTest.php │ ├── SamplingHandlerTest.php │ ├── Slack │ │ └── SlackRecordTest.php │ ├── SlackHandlerTest.php │ ├── SlackWebhookHandlerTest.php │ ├── SlackbotHandlerTest.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 │ ├── MercurialProcessorTest.php │ ├── ProcessIdProcessorTest.php │ ├── PsrLogMessageProcessorTest.php │ ├── TagProcessorTest.php │ ├── UidProcessorTest.php │ └── WebProcessorTest.php │ ├── PsrLogCompatTest.php │ ├── RegistryTest.php │ └── TestCase.php ├── mtdowling └── cron-expression │ ├── .editorconfig │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── 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 │ ├── .php_cs.dist │ ├── LICENSE │ ├── composer.json │ ├── readme.md │ └── src │ └── Carbon │ ├── Carbon.php │ ├── CarbonInterval.php │ ├── Exceptions │ └── InvalidDateException.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 │ ├── gl.php │ ├── he.php │ ├── hr.php │ ├── hu.php │ ├── hy.php │ ├── id.php │ ├── it.php │ ├── ja.php │ ├── ka.php │ ├── km.php │ ├── ko.php │ ├── lt.php │ ├── lv.php │ ├── mk.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 │ ├── sr_Cyrl_ME.php │ ├── sr_Latn_ME.php │ ├── sr_ME.php │ ├── sv.php │ ├── th.php │ ├── tr.php │ ├── uk.php │ ├── ur.php │ ├── uz.php │ ├── vi.php │ ├── zh.php │ └── zh_TW.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 │ │ │ │ ├── Nop.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 │ │ ├── blockComments.test │ │ ├── comments.test │ │ ├── errorHandling │ │ │ ├── eofError.test │ │ │ └── recovery.test │ │ ├── expr │ │ │ ├── arrayDef.test │ │ │ ├── assign.test │ │ │ ├── assignNewByRef.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 │ │ │ ├── invalidOctal.test │ │ │ ├── magicConst.test │ │ │ └── unicodeEscape.test │ │ ├── semiReserved.test │ │ └── stmt │ │ │ ├── blocklessStatement.test │ │ │ ├── class │ │ │ ├── abstract.test │ │ │ ├── anonymous.test │ │ │ ├── conditional.test │ │ │ ├── final.test │ │ │ ├── implicitPublic.test │ │ │ ├── interface.test │ │ │ ├── modifier.test │ │ │ ├── name.test │ │ │ ├── php4Style.test │ │ │ ├── simple.test │ │ │ ├── staticMethod.test │ │ │ └── trait.test │ │ │ ├── const.test │ │ │ ├── controlFlow.test │ │ │ ├── declare.test │ │ │ ├── echo.test │ │ │ ├── function │ │ │ ├── byRef.test │ │ │ ├── conditional.test │ │ │ ├── defaultValues.test │ │ │ ├── returnTypes.test │ │ │ ├── scalarTypeDeclarations.test │ │ │ ├── specialVars.test │ │ │ ├── typeDeclarations.test │ │ │ ├── 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 │ │ │ ├── nsAfterHashbang.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 │ │ ├── docStrings.test │ │ ├── include.test │ │ ├── intrinsics.test │ │ ├── list.test │ │ ├── literals.test │ │ ├── numbers.test │ │ ├── operators.test │ │ ├── parentheses.test │ │ ├── shortArraySyntax.test │ │ ├── stringEscaping.test │ │ ├── uvs.test │ │ ├── variables.test │ │ └── yield.test │ │ ├── inlineHTMLandPHPtest.file-test │ │ ├── onlyInlineHTML.file-test │ │ ├── onlyPHP.file-test │ │ └── stmt │ │ ├── alias.test │ │ ├── break_continue.test │ │ ├── class.test │ │ ├── const.test │ │ ├── declare.test │ │ ├── do_while.test │ │ ├── for.test │ │ ├── foreach.test │ │ ├── function_signatures.test │ │ ├── global_static_variables.test │ │ ├── goto.test │ │ ├── groupUse.test │ │ ├── haltCompiler.file-test │ │ ├── if.test │ │ ├── namespaces.test │ │ ├── switch.test │ │ ├── throw.test │ │ ├── traitUse.test │ │ ├── tryCatch.test │ │ └── while.test │ └── test_old │ ├── run-php-src.sh │ └── run.php ├── paragonie └── random_compat │ ├── CHANGELOG.md │ ├── LICENSE │ ├── RATIONALE.md │ ├── README.md │ ├── SECURITY.md │ ├── build-phar.sh │ ├── composer.json │ ├── dist │ ├── random_compat.phar.pubkey │ └── random_compat.phar.pubkey.asc │ ├── lib │ ├── byte_safe_strings.php │ ├── cast_to_int.php │ ├── error_polyfill.php │ ├── random.php │ ├── random_bytes_com_dotnet.php │ ├── random_bytes_dev_urandom.php │ ├── random_bytes_libsodium.php │ ├── random_bytes_libsodium_legacy.php │ ├── random_bytes_mcrypt.php │ ├── random_bytes_openssl.php │ └── random_int.php │ ├── other │ ├── build_phar.php │ └── ide_stubs │ │ ├── COM.php │ │ ├── README.md │ │ ├── com_exception.php │ │ └── libsodium.php │ ├── psalm-autoload.php │ └── psalm.xml ├── phpdocumentor ├── reflection-common │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── phpunit.xml.dist │ ├── src │ │ ├── Element.php │ │ ├── File.php │ │ ├── Fqsen.php │ │ ├── Location.php │ │ ├── Project.php │ │ └── ProjectFactory.php │ └── tests │ │ ├── common │ │ └── bootstrap.php │ │ └── unit │ │ └── FqsenTest.php ├── reflection-docblock │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── composer.lock │ ├── examples │ │ ├── 01-interpreting-a-simple-docblock.php │ │ ├── 02-interpreting-tags.php │ │ ├── 03-reconstituting-a-docblock.php │ │ ├── 04-adding-your-own-tag.php │ │ └── playing-with-descriptions │ │ │ └── 02-escaping.php │ ├── phpmd.xml.dist │ ├── phpunit.xml.dist │ ├── src │ │ ├── DocBlock.php │ │ ├── DocBlock │ │ │ ├── Description.php │ │ │ ├── DescriptionFactory.php │ │ │ ├── ExampleFinder.php │ │ │ ├── Serializer.php │ │ │ ├── StandardTagFactory.php │ │ │ ├── Tag.php │ │ │ ├── TagFactory.php │ │ │ └── Tags │ │ │ │ ├── Author.php │ │ │ │ ├── BaseTag.php │ │ │ │ ├── Covers.php │ │ │ │ ├── Deprecated.php │ │ │ │ ├── Example.php │ │ │ │ ├── Factory │ │ │ │ ├── StaticMethod.php │ │ │ │ └── Strategy.php │ │ │ │ ├── Formatter.php │ │ │ │ ├── Formatter │ │ │ │ └── PassthroughFormatter.php │ │ │ │ ├── Generic.php │ │ │ │ ├── Link.php │ │ │ │ ├── Method.php │ │ │ │ ├── Param.php │ │ │ │ ├── Property.php │ │ │ │ ├── PropertyRead.php │ │ │ │ ├── PropertyWrite.php │ │ │ │ ├── Return_.php │ │ │ │ ├── See.php │ │ │ │ ├── Since.php │ │ │ │ ├── Source.php │ │ │ │ ├── Throws.php │ │ │ │ ├── Uses.php │ │ │ │ ├── Var_.php │ │ │ │ └── Version.php │ │ ├── DocBlockFactory.php │ │ └── DocBlockFactoryInterface.php │ └── tests │ │ ├── integration │ │ ├── InterpretingDocBlocksTest.php │ │ ├── ReconstitutingADocBlockTest.php │ │ └── UsingTagsTest.php │ │ └── unit │ │ ├── DocBlock │ │ ├── DescriptionFactoryTest.php │ │ ├── DescriptionTest.php │ │ ├── SerializerTest.php │ │ ├── StandardTagFactoryTest.php │ │ └── Tags │ │ │ ├── AuthorTest.php │ │ │ ├── CoversTest.php │ │ │ ├── DeprecatedTest.php │ │ │ ├── Formatter │ │ │ └── PassthroughFormatterTest.php │ │ │ ├── GenericTest.php │ │ │ ├── LinkTest.php │ │ │ ├── MethodTest.php │ │ │ ├── ParamTest.php │ │ │ ├── PropertyReadTest.php │ │ │ ├── PropertyTest.php │ │ │ ├── PropertyWriteTest.php │ │ │ ├── ReturnTest.php │ │ │ ├── SeeTest.php │ │ │ ├── SinceTest.php │ │ │ ├── SourceTest.php │ │ │ ├── ThrowsTest.php │ │ │ ├── UsesTest.php │ │ │ ├── VarTest.php │ │ │ └── VersionTest.php │ │ ├── DocBlockFactoryTest.php │ │ └── DocBlockTest.php └── type-resolver │ ├── .gitignore │ ├── .scrutinizer.yml │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── examples │ ├── 01-resolving-simple-types.php │ ├── 02-resolving-classes.php │ ├── 03-resolving-all-elements.php │ ├── 04-discovering-the-context-using-class-reflection.php │ ├── 05-discovering-the-context-using-method-reflection.php │ ├── 06-discovering-the-context-using-file-contents.php │ └── Classy.php │ ├── phpmd.xml.dist │ ├── phpunit.xml.dist │ ├── src │ ├── FqsenResolver.php │ ├── Type.php │ ├── TypeResolver.php │ └── Types │ │ ├── Array_.php │ │ ├── Boolean.php │ │ ├── Callable_.php │ │ ├── Compound.php │ │ ├── Context.php │ │ ├── ContextFactory.php │ │ ├── Float_.php │ │ ├── Integer.php │ │ ├── Mixed.php │ │ ├── Null_.php │ │ ├── Object_.php │ │ ├── Resource.php │ │ ├── Scalar.php │ │ ├── Self_.php │ │ ├── Static_.php │ │ ├── String_.php │ │ ├── This.php │ │ └── Void_.php │ └── tests │ └── unit │ ├── TypeResolverTest.php │ └── Types │ ├── ContextFactoryTest.php │ └── ContextTest.php ├── phpspec └── prophecy │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGES.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── fixtures │ ├── EmptyClass.php │ ├── EmptyInterface.php │ ├── FinalClass.php │ ├── ModifierInterface.php │ ├── Named.php │ ├── OptionalDepsClass.php │ ├── SpecialMethods.php │ ├── WithArguments.php │ ├── WithCallableArgument.php │ ├── WithFinalMethod.php │ ├── WithFinalVirtuallyPrivateMethod.php │ ├── WithProtectedAbstractMethod.php │ ├── WithReferences.php │ ├── WithReturnTypehints.php │ ├── WithStaticMethod.php │ ├── WithTypehintedVariadicArgument.php │ ├── WithVariadicArgument.php │ └── WithVirtuallyPrivateMethod.php │ ├── phpunit.xml.dist │ ├── spec │ └── Prophecy │ │ ├── Argument │ │ ├── ArgumentsWildcardSpec.php │ │ └── Token │ │ │ ├── AnyValueTokenSpec.php │ │ │ ├── AnyValuesTokenSpec.php │ │ │ ├── ApproximateValueTokenSpec.php │ │ │ ├── ArrayCountTokenSpec.php │ │ │ ├── ArrayEntryTokenSpec.php │ │ │ ├── ArrayEveryEntryTokenSpec.php │ │ │ ├── CallbackTokenSpec.php │ │ │ ├── ExactValueTokenSpec.php │ │ │ ├── IdenticalValueTokenSpec.php │ │ │ ├── LogicalAndTokenSpec.php │ │ │ ├── LogicalNotTokenSpec.php │ │ │ ├── ObjectStateTokenSpec.php │ │ │ ├── StringContainsTokenSpec.php │ │ │ └── TypeTokenSpec.php │ │ ├── ArgumentSpec.php │ │ ├── Call │ │ ├── CallCenterSpec.php │ │ └── CallSpec.php │ │ ├── Comparator │ │ ├── ClosureComparatorSpec.php │ │ ├── FactorySpec.php │ │ └── ProphecyComparatorSpec.php │ │ ├── Doubler │ │ ├── ClassPatch │ │ │ ├── DisableConstructorPatchSpec.php │ │ │ ├── HhvmExceptionPatchSpec.php │ │ │ ├── KeywordPatchSpec.php │ │ │ ├── MagicCallPatchSpec.php │ │ │ ├── ProphecySubjectPatchSpec.php │ │ │ ├── ReflectionClassNewInstancePatchSpec.php │ │ │ ├── SplFileInfoPatchSpec.php │ │ │ └── TraversablePatchSpec.php │ │ ├── DoublerSpec.php │ │ ├── Generator │ │ │ ├── ClassCodeGeneratorSpec.php │ │ │ ├── ClassCreatorSpec.php │ │ │ └── Node │ │ │ │ ├── ArgumentNodeSpec.php │ │ │ │ ├── ClassNodeSpec.php │ │ │ │ └── MethodNodeSpec.php │ │ ├── LazyDoubleSpec.php │ │ └── NameGeneratorSpec.php │ │ ├── Exception │ │ ├── Call │ │ │ └── UnexpectedCallExceptionSpec.php │ │ ├── Doubler │ │ │ ├── ClassCreatorExceptionSpec.php │ │ │ ├── ClassMirrorExceptionSpec.php │ │ │ ├── ClassNotFoundExceptionSpec.php │ │ │ ├── DoubleExceptionSpec.php │ │ │ ├── InterfaceNotFoundExceptionSpec.php │ │ │ ├── MethodNotExtendableExceptionSpec.php │ │ │ └── MethodNotFoundExceptionSpec.php │ │ ├── Prediction │ │ │ ├── AggregateExceptionSpec.php │ │ │ ├── NoCallsExceptionSpec.php │ │ │ ├── UnexpectedCallsCountExceptionSpec.php │ │ │ └── UnexpectedCallsExceptionSpec.php │ │ └── Prophecy │ │ │ ├── MethodProphecyExceptionSpec.php │ │ │ └── ObjectProphecyExceptionSpec.php │ │ ├── Prediction │ │ ├── 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 │ │ │ ├── ApproximateValueToken.php │ │ │ ├── ArrayCountToken.php │ │ │ ├── ArrayEntryToken.php │ │ │ ├── ArrayEveryEntryToken.php │ │ │ ├── CallbackToken.php │ │ │ ├── ExactValueToken.php │ │ │ ├── IdenticalValueToken.php │ │ │ ├── LogicalAndToken.php │ │ │ ├── LogicalNotToken.php │ │ │ ├── ObjectStateToken.php │ │ │ ├── StringContainsToken.php │ │ │ ├── TokenInterface.php │ │ │ └── TypeToken.php │ │ ├── Call │ │ ├── Call.php │ │ └── CallCenter.php │ │ ├── Comparator │ │ ├── ClosureComparator.php │ │ ├── Factory.php │ │ └── ProphecyComparator.php │ │ ├── Doubler │ │ ├── CachedDoubler.php │ │ ├── ClassPatch │ │ │ ├── ClassPatchInterface.php │ │ │ ├── DisableConstructorPatch.php │ │ │ ├── HhvmExceptionPatch.php │ │ │ ├── KeywordPatch.php │ │ │ ├── MagicCallPatch.php │ │ │ ├── ProphecySubjectPatch.php │ │ │ ├── ReflectionClassNewInstancePatch.php │ │ │ ├── SplFileInfoPatch.php │ │ │ └── TraversablePatch.php │ │ ├── DoubleInterface.php │ │ ├── Doubler.php │ │ ├── Generator │ │ │ ├── ClassCodeGenerator.php │ │ │ ├── ClassCreator.php │ │ │ ├── ClassMirror.php │ │ │ ├── Node │ │ │ │ ├── ArgumentNode.php │ │ │ │ ├── ClassNode.php │ │ │ │ └── MethodNode.php │ │ │ └── ReflectionInterface.php │ │ ├── LazyDouble.php │ │ └── NameGenerator.php │ │ ├── Exception │ │ ├── Call │ │ │ └── UnexpectedCallException.php │ │ ├── Doubler │ │ │ ├── ClassCreatorException.php │ │ │ ├── ClassMirrorException.php │ │ │ ├── ClassNotFoundException.php │ │ │ ├── DoubleException.php │ │ │ ├── DoublerException.php │ │ │ ├── InterfaceNotFoundException.php │ │ │ ├── MethodNotExtendableException.php │ │ │ ├── MethodNotFoundException.php │ │ │ └── ReturnByReferenceException.php │ │ ├── Exception.php │ │ ├── InvalidArgumentException.php │ │ ├── Prediction │ │ │ ├── AggregateException.php │ │ │ ├── FailedPredictionException.php │ │ │ ├── NoCallsException.php │ │ │ ├── PredictionException.php │ │ │ ├── UnexpectedCallsCountException.php │ │ │ └── UnexpectedCallsException.php │ │ └── Prophecy │ │ │ ├── MethodProphecyException.php │ │ │ ├── ObjectProphecyException.php │ │ │ └── ProphecyException.php │ │ ├── PhpDocumentor │ │ ├── ClassAndInterfaceTagRetriever.php │ │ ├── ClassTagRetriever.php │ │ ├── LegacyClassTagRetriever.php │ │ └── MethodTagRetrieverInterface.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 │ └── tests │ └── Doubler │ └── Generator │ └── ClassMirrorTest.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 │ ├── phpunit.xml │ ├── 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 │ │ ├── classUsesNamespacedFunction.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 │ ├── composer.json │ ├── phpunit │ ├── phpunit.xml │ ├── phpunit.xsd │ ├── src │ ├── Exception.php │ ├── Extensions │ │ ├── GroupTestSuite.php │ │ ├── PhptTestCase.php │ │ ├── PhptTestSuite.php │ │ ├── RepeatedTest.php │ │ ├── TestDecorator.php │ │ └── TicketListener.php │ ├── ForwardCompatibility │ │ ├── Assert.php │ │ ├── BaseTestListener.php │ │ ├── TestCase.php │ │ └── TestListener.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 │ ├── 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 │ │ ├── 2158 │ │ │ ├── Issue2158Test.php │ │ │ └── constant.inc │ │ ├── 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 │ │ ├── 2158.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 │ └── Trac │ │ ├── 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 │ ├── 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-junit.phpt │ ├── log-tap.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 │ ├── StatusTest.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 ├── http-message │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── MessageInterface.php │ │ ├── RequestInterface.php │ │ ├── ResponseInterface.php │ │ ├── ServerRequestInterface.php │ │ ├── StreamInterface.php │ │ ├── UploadedFileInterface.php │ │ └── UriInterface.php └── log │ ├── .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 │ │ ├── ExitPass.php │ │ ├── FunctionReturnInWriteContextPass.php │ │ ├── ImplicitReturnPass.php │ │ ├── InstanceOfPass.php │ │ ├── LeavePsyshAlonePass.php │ │ ├── LegacyEmptyPass.php │ │ ├── MagicConstantsPass.php │ │ ├── NamespaceAwarePass.php │ │ ├── NamespacePass.php │ │ ├── StaticConstructorPass.php │ │ ├── StrictTypesPass.php │ │ ├── UseStatementPass.php │ │ ├── ValidClassNamePass.php │ │ ├── ValidConstantPass.php │ │ └── ValidFunctionNamePass.php │ │ ├── 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 │ │ ├── ConsoleColorFactory.php │ │ ├── Context.php │ │ ├── ContextAware.php │ │ ├── Exception │ │ ├── BreakException.php │ │ ├── DeprecatedException.php │ │ ├── ErrorException.php │ │ ├── Exception.php │ │ ├── FatalErrorException.php │ │ ├── ParseErrorException.php │ │ ├── RuntimeException.php │ │ ├── ThrowUpException.php │ │ └── TypeErrorException.php │ │ ├── ExecutionLoop │ │ ├── ForkingLoop.php │ │ └── Loop.php │ │ ├── Formatter │ │ ├── CodeFormatter.php │ │ ├── DocblockFormatter.php │ │ ├── Formatter.php │ │ └── SignatureFormatter.php │ │ ├── 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 │ │ ├── ExitPassTest.php │ │ ├── Fixtures │ │ │ ├── ClassWithCallStatic.php │ │ │ └── ClassWithStatic.php │ │ ├── FunctionReturnInWriteContextPassTest.php │ │ ├── ImplicitReturnPassTest.php │ │ ├── InstanceOfPassTest.php │ │ ├── LeavePsyshAlonePassTest.php │ │ ├── LegacyEmptyPassTest.php │ │ ├── MagicConstantsPassTest.php │ │ ├── NamespacePassTest.php │ │ ├── StaticConstructorPassTest.php │ │ ├── StrictTypesPassTest.php │ │ ├── UseStatementPassTest.php │ │ ├── ValidClassNamePassTest.php │ │ ├── ValidConstantPassTest.php │ │ └── ValidFunctionNamePassTest.php │ │ ├── CodeCleanerTest.php │ │ ├── ConfigurationTest.php │ │ ├── ConsoleColorFactoryTest.php │ │ ├── Exception │ │ ├── BreakExceptionTest.php │ │ ├── ErrorExceptionTest.php │ │ ├── FatalErrorExceptionTest.php │ │ ├── ParseErrorExceptionTest.php │ │ └── RuntimeExceptionTest.php │ │ ├── Formatter │ │ ├── CodeFormatterTest.php │ │ ├── DocblockFormatterTest.php │ │ └── SignatureFormatterTest.php │ │ ├── Readline │ │ ├── GNUReadlineTest.php │ │ ├── LibeditTest.php │ │ └── TransientTest.php │ │ ├── Reflection │ │ └── ReflectionConstantTest.php │ │ ├── ShellTest.php │ │ ├── TabCompletion │ │ ├── AutoCompleterTest.php │ │ └── StaticSample.php │ │ └── Util │ │ ├── DocblockTest.php │ │ ├── MirrorTest.php │ │ └── StrTest.php │ ├── 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 │ ├── 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 ├── socialiteproviders ├── manager │ ├── .editorconfig │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── .styleci.yml │ ├── LICENSE │ ├── composer.json │ └── src │ │ ├── Config.php │ │ ├── ConfigTrait.php │ │ ├── Contracts │ │ ├── ConfigInterface.php │ │ ├── Helpers │ │ │ └── ConfigRetrieverInterface.php │ │ ├── OAuth1 │ │ │ └── ProviderInterface.php │ │ └── OAuth2 │ │ │ └── ProviderInterface.php │ │ ├── Exception │ │ ├── InvalidArgumentException.php │ │ └── MissingConfigException.php │ │ ├── Helpers │ │ └── ConfigRetriever.php │ │ ├── OAuth1 │ │ ├── AbstractProvider.php │ │ ├── Server.php │ │ └── User.php │ │ ├── OAuth2 │ │ ├── AbstractProvider.php │ │ └── User.php │ │ ├── ServiceProvider.php │ │ └── SocialiteWasCalled.php └── qq │ ├── .gitignore │ ├── .styleci.yml │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── Provider.php │ └── QqExtendSocialite.php ├── swiftmailer └── swiftmailer │ ├── .gitattributes │ ├── .gitignore │ ├── .php_cs.dist │ ├── .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 │ │ ├── Bug650Test.php │ │ ├── Bug71Test.php │ │ ├── Bug76Test.php │ │ └── BugFileByteStreamConsecutiveReadCallsTest.php │ ├── fixtures │ └── 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_10.php │ │ │ │ │ ├── command_11.php │ │ │ │ │ ├── command_12.php │ │ │ │ │ ├── command_13.php │ │ │ │ │ ├── command_14.php │ │ │ │ │ ├── command_15.php │ │ │ │ │ ├── command_16.php │ │ │ │ │ ├── command_2.php │ │ │ │ │ ├── command_3.php │ │ │ │ │ ├── command_4.php │ │ │ │ │ ├── command_5.php │ │ │ │ │ ├── command_6.php │ │ │ │ │ ├── command_7.php │ │ │ │ │ ├── command_8.php │ │ │ │ │ └── command_9.php │ │ │ │ │ └── output │ │ │ │ │ ├── output_0.txt │ │ │ │ │ ├── output_1.txt │ │ │ │ │ ├── output_10.txt │ │ │ │ │ ├── output_11.txt │ │ │ │ │ ├── output_12.txt │ │ │ │ │ ├── output_13.txt │ │ │ │ │ ├── output_14.txt │ │ │ │ │ ├── output_15.txt │ │ │ │ │ ├── output_16.txt │ │ │ │ │ ├── output_2.txt │ │ │ │ │ ├── output_3.txt │ │ │ │ │ ├── output_4.txt │ │ │ │ │ ├── output_5.txt │ │ │ │ │ ├── output_6.txt │ │ │ │ │ ├── output_7.txt │ │ │ │ │ ├── output_8.txt │ │ │ │ │ └── output_9.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 │ │ │ ├── HelperTest.php │ │ │ ├── ProcessHelperTest.php │ │ │ ├── ProgressBarTest.php │ │ │ ├── ProgressIndicatorTest.php │ │ │ ├── QuestionHelperTest.php │ │ │ ├── SymfonyQuestionHelperTest.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 ├── css-selector │ ├── .gitignore │ ├── CHANGELOG.md │ ├── CssSelectorConverter.php │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── ExpressionErrorException.php │ │ ├── InternalErrorException.php │ │ ├── ParseException.php │ │ └── SyntaxErrorException.php │ ├── LICENSE │ ├── Node │ │ ├── AbstractNode.php │ │ ├── AttributeNode.php │ │ ├── ClassNode.php │ │ ├── CombinedSelectorNode.php │ │ ├── ElementNode.php │ │ ├── FunctionNode.php │ │ ├── HashNode.php │ │ ├── NegationNode.php │ │ ├── NodeInterface.php │ │ ├── PseudoNode.php │ │ ├── SelectorNode.php │ │ └── Specificity.php │ ├── Parser │ │ ├── Handler │ │ │ ├── CommentHandler.php │ │ │ ├── HandlerInterface.php │ │ │ ├── HashHandler.php │ │ │ ├── IdentifierHandler.php │ │ │ ├── NumberHandler.php │ │ │ ├── StringHandler.php │ │ │ └── WhitespaceHandler.php │ │ ├── Parser.php │ │ ├── ParserInterface.php │ │ ├── Reader.php │ │ ├── Shortcut │ │ │ ├── ClassParser.php │ │ │ ├── ElementParser.php │ │ │ ├── EmptyStringParser.php │ │ │ └── HashParser.php │ │ ├── Token.php │ │ ├── TokenStream.php │ │ └── Tokenizer │ │ │ ├── Tokenizer.php │ │ │ ├── TokenizerEscaping.php │ │ │ └── TokenizerPatterns.php │ ├── README.md │ ├── Tests │ │ ├── CssSelectorConverterTest.php │ │ ├── Node │ │ │ ├── AbstractNodeTest.php │ │ │ ├── AttributeNodeTest.php │ │ │ ├── ClassNodeTest.php │ │ │ ├── CombinedSelectorNodeTest.php │ │ │ ├── ElementNodeTest.php │ │ │ ├── FunctionNodeTest.php │ │ │ ├── HashNodeTest.php │ │ │ ├── NegationNodeTest.php │ │ │ ├── PseudoNodeTest.php │ │ │ ├── SelectorNodeTest.php │ │ │ └── SpecificityTest.php │ │ ├── Parser │ │ │ ├── Handler │ │ │ │ ├── AbstractHandlerTest.php │ │ │ │ ├── CommentHandlerTest.php │ │ │ │ ├── HashHandlerTest.php │ │ │ │ ├── IdentifierHandlerTest.php │ │ │ │ ├── NumberHandlerTest.php │ │ │ │ ├── StringHandlerTest.php │ │ │ │ └── WhitespaceHandlerTest.php │ │ │ ├── ParserTest.php │ │ │ ├── ReaderTest.php │ │ │ ├── Shortcut │ │ │ │ ├── ClassParserTest.php │ │ │ │ ├── ElementParserTest.php │ │ │ │ ├── EmptyStringParserTest.php │ │ │ │ └── HashParserTest.php │ │ │ └── TokenStreamTest.php │ │ └── XPath │ │ │ ├── Fixtures │ │ │ ├── ids.html │ │ │ ├── lang.xml │ │ │ └── shakespear.html │ │ │ └── TranslatorTest.php │ ├── XPath │ │ ├── Extension │ │ │ ├── AbstractExtension.php │ │ │ ├── AttributeMatchingExtension.php │ │ │ ├── CombinationExtension.php │ │ │ ├── ExtensionInterface.php │ │ │ ├── FunctionExtension.php │ │ │ ├── HtmlExtension.php │ │ │ ├── NodeExtension.php │ │ │ └── PseudoClassExtension.php │ │ ├── Translator.php │ │ ├── TranslatorInterface.php │ │ └── XPathExpr.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 │ │ │ ├── NonDeprecatedInterface.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 ├── dom-crawler │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Crawler.php │ ├── Field │ │ ├── ChoiceFormField.php │ │ ├── FileFormField.php │ │ ├── FormField.php │ │ ├── InputFormField.php │ │ └── TextareaFormField.php │ ├── Form.php │ ├── FormFieldRegistry.php │ ├── LICENSE │ ├── Link.php │ ├── README.md │ ├── Tests │ │ ├── CrawlerTest.php │ │ ├── Field │ │ │ ├── ChoiceFormFieldTest.php │ │ │ ├── FileFormFieldTest.php │ │ │ ├── FormFieldTest.php │ │ │ ├── FormFieldTestCase.php │ │ │ ├── InputFormFieldTest.php │ │ │ └── TextareaFormFieldTest.php │ │ ├── Fixtures │ │ │ ├── no-extension │ │ │ └── windows-1250.html │ │ ├── FormTest.php │ │ └── LinkTest.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 │ ├── Exception │ │ └── ConflictingHeadersException.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 │ │ └── ValidateRequestListener.php │ ├── Exception │ │ ├── AccessDeniedHttpException.php │ │ ├── BadRequestHttpException.php │ │ ├── ConflictHttpException.php │ │ ├── GoneHttpException.php │ │ ├── HttpException.php │ │ ├── HttpExceptionInterface.php │ │ ├── LengthRequiredHttpException.php │ │ ├── MethodNotAllowedHttpException.php │ │ ├── NotAcceptableHttpException.php │ │ ├── NotFoundHttpException.php │ │ ├── PreconditionFailedHttpException.php │ │ ├── PreconditionRequiredHttpException.php │ │ ├── ServiceUnavailableHttpException.php │ │ ├── TooManyRequestsHttpException.php │ │ ├── UnauthorizedHttpException.php │ │ ├── UnprocessableEntityHttpException.php │ │ └── UnsupportedMediaTypeHttpException.php │ ├── Fragment │ │ ├── AbstractSurrogateFragmentRenderer.php │ │ ├── EsiFragmentRenderer.php │ │ ├── FragmentHandler.php │ │ ├── FragmentRendererInterface.php │ │ ├── HIncludeFragmentRenderer.php │ │ ├── InlineFragmentRenderer.php │ │ ├── RoutableFragmentRenderer.php │ │ └── SsiFragmentRenderer.php │ ├── HttpCache │ │ ├── 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 │ │ │ └── ValidateRequestListenerTest.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 │ │ │ ├── Controller │ │ │ │ └── VariadicController.php │ │ │ ├── ExtensionAbsentBundle │ │ │ │ └── ExtensionAbsentBundle.php │ │ │ ├── ExtensionLoadedBundle │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── ExtensionLoadedExtension.php │ │ │ │ └── ExtensionLoadedBundle.php │ │ │ ├── ExtensionNotValidBundle │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── ExtensionNotValidExtension.php │ │ │ │ └── ExtensionNotValidBundle.php │ │ │ ├── ExtensionPresentBundle │ │ │ │ ├── Command │ │ │ │ │ ├── BarCommand.php │ │ │ │ │ └── FooCommand.php │ │ │ │ ├── DependencyInjection │ │ │ │ │ └── ExtensionPresentExtension.php │ │ │ │ └── ExtensionPresentBundle.php │ │ │ ├── KernelForOverrideName.php │ │ │ ├── KernelForTest.php │ │ │ ├── Resources │ │ │ │ ├── BaseBundle │ │ │ │ │ └── hide.txt │ │ │ │ ├── Bundle1Bundle │ │ │ │ │ └── foo.txt │ │ │ │ ├── ChildBundle │ │ │ │ │ └── foo.txt │ │ │ │ └── FooBundle │ │ │ │ │ └── foo.txt │ │ │ ├── TestClient.php │ │ │ └── TestEventDispatcher.php │ │ ├── Fragment │ │ │ ├── EsiFragmentRendererTest.php │ │ │ ├── FragmentHandlerTest.php │ │ │ ├── HIncludeFragmentRendererTest.php │ │ │ ├── InlineFragmentRendererTest.php │ │ │ └── RoutableFragmentRendererTest.php │ │ ├── HttpCache │ │ │ ├── EsiTest.php │ │ │ ├── HttpCacheTest.php │ │ │ ├── HttpCacheTestCase.php │ │ │ ├── ResponseCacheStrategyTest.php │ │ │ ├── SsiTest.php │ │ │ ├── StoreTest.php │ │ │ ├── TestHttpKernel.php │ │ │ └── TestMultipleHttpKernel.php │ │ ├── HttpKernelTest.php │ │ ├── KernelTest.php │ │ ├── Logger.php │ │ ├── Profiler │ │ │ ├── FileProfilerStorageTest.php │ │ │ └── ProfilerTest.php │ │ ├── TestHttpKernel.php │ │ └── UriSignerTest.php │ ├── UriSigner.php │ ├── composer.json │ └── phpunit.xml.dist ├── polyfill-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── lowerCase.php │ │ │ └── upperCase.php │ ├── 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 │ │ │ │ └── FooTrait.php │ │ │ ├── CustomXmlFileLoader.php │ │ │ ├── OtherAnnotatedClasses │ │ │ │ └── VariadicClass.php │ │ │ ├── RedirectableUrlMatcher.php │ │ │ ├── annotated.php │ │ │ ├── bad_format.yml │ │ │ ├── bar.xml │ │ │ ├── directory │ │ │ │ ├── recurse │ │ │ │ │ ├── routes1.yml │ │ │ │ │ └── routes2.yml │ │ │ │ └── routes3.yml │ │ │ ├── directory_import │ │ │ │ └── import.yml │ │ │ ├── dumper │ │ │ │ ├── url_matcher1.apache │ │ │ │ ├── url_matcher1.php │ │ │ │ ├── url_matcher2.apache │ │ │ │ ├── url_matcher2.php │ │ │ │ └── url_matcher3.php │ │ │ ├── empty.yml │ │ │ ├── file_resource.yml │ │ │ ├── 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 │ │ ├── Writer │ │ │ └── TranslationWriterTest.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 │ │ │ ├── fuzzy-translations.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 │ │ │ ├── NotLoadableClass.php │ │ │ ├── Twig.php │ │ │ └── dumb-var.php │ │ ├── HtmlDumperTest.php │ │ ├── Test │ │ │ └── VarDumperTestTraitTest.php │ │ └── VarClonerTest.php │ ├── VarDumper.php │ ├── composer.json │ └── phpunit.xml.dist └── yaml │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Command │ └── LintCommand.php │ ├── Dumper.php │ ├── Escaper.php │ ├── Exception │ ├── DumpException.php │ ├── ExceptionInterface.php │ ├── ParseException.php │ └── RuntimeException.php │ ├── Inline.php │ ├── LICENSE │ ├── Parser.php │ ├── README.md │ ├── Tests │ ├── Command │ │ └── LintCommandTest.php │ ├── DumperTest.php │ ├── Fixtures │ │ ├── YtsAnchorAlias.yml │ │ ├── YtsBasicTests.yml │ │ ├── YtsBlockMapping.yml │ │ ├── YtsDocumentSeparator.yml │ │ ├── YtsErrorTests.yml │ │ ├── YtsFlowCollections.yml │ │ ├── YtsFoldedScalars.yml │ │ ├── YtsNullsAndEmpties.yml │ │ ├── YtsSpecificationExamples.yml │ │ ├── YtsTypeTransfers.yml │ │ ├── arrow.gif │ │ ├── embededPhp.yml │ │ ├── escapedCharacters.yml │ │ ├── index.yml │ │ ├── multiple_lines_as_literal_block.yml │ │ ├── sfComments.yml │ │ ├── sfCompact.yml │ │ ├── sfMergeKey.yml │ │ ├── sfObjects.yml │ │ ├── sfQuotes.yml │ │ ├── sfTests.yml │ │ └── unindentedCollections.yml │ ├── 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 └── webmozart └── assert ├── .composer-auth.json ├── .gitignore ├── .styleci.yml ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── appveyor.yml ├── composer.json ├── phpunit.xml.dist ├── src └── Assert.php └── tests └── AssertTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .project 3 | /.idea -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/.project -------------------------------------------------------------------------------- /MySQL/iSchool_2017-05-15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/MySQL/iSchool_2017-05-15.sql -------------------------------------------------------------------------------- /MySQL/wiki_20160922.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/MySQL/wiki_20160922.sql -------------------------------------------------------------------------------- /MySQL/wiki_20161006.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/MySQL/wiki_20161006.sql -------------------------------------------------------------------------------- /MySQL/wiki_20161009.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/MySQL/wiki_20161009.sql -------------------------------------------------------------------------------- /MySQL/wiki_2017-04-17.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/MySQL/wiki_2017-04-17.sql -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/README.md -------------------------------------------------------------------------------- /src/iTool/CompileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/CompileController.php -------------------------------------------------------------------------------- /src/iTool/ToolController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/ToolController.php -------------------------------------------------------------------------------- /src/iTool/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/routes.php -------------------------------------------------------------------------------- /src/iTool/tool.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/tool.css -------------------------------------------------------------------------------- /src/iTool/tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/tool.js -------------------------------------------------------------------------------- /src/iTool/views/Compile/Clayout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/Compile/Clayout.blade.php -------------------------------------------------------------------------------- /src/iTool/views/Compile/changyan.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/Compile/changyan.blade.php -------------------------------------------------------------------------------- /src/iTool/views/Compile/editor.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/Compile/editor.blade.php -------------------------------------------------------------------------------- /src/iTool/views/Compile/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/Compile/footer.blade.php -------------------------------------------------------------------------------- /src/iTool/views/Compile/head.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/Compile/head.blade.php -------------------------------------------------------------------------------- /src/iTool/views/Compile/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/Compile/header.blade.php -------------------------------------------------------------------------------- /src/iTool/views/Compile/html.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/Compile/html.blade.php -------------------------------------------------------------------------------- /src/iTool/views/Compile/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/Compile/index.blade.php -------------------------------------------------------------------------------- /src/iTool/views/Compile/list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/Compile/list.blade.php -------------------------------------------------------------------------------- /src/iTool/views/Compile/nav.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/Compile/nav.blade.php -------------------------------------------------------------------------------- /src/iTool/views/Compile/share.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/Compile/share.blade.php -------------------------------------------------------------------------------- /src/iTool/views/Mobile/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/Mobile/footer.blade.php -------------------------------------------------------------------------------- /src/iTool/views/Mobile/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/Mobile/header.blade.php -------------------------------------------------------------------------------- /src/iTool/views/Tool/admin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/Tool/admin.blade.php -------------------------------------------------------------------------------- /src/iTool/views/Tool/discuss.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/Tool/discuss.blade.php -------------------------------------------------------------------------------- /src/iTool/views/Tool/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/Tool/login.blade.php -------------------------------------------------------------------------------- /src/iTool/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/errors/503.blade.php -------------------------------------------------------------------------------- /src/iTool/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/iTool/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/iTool/views/welcome.blade.php -------------------------------------------------------------------------------- /src/psd/ischool_logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/psd/ischool_logo.psd -------------------------------------------------------------------------------- /src/psd/tx.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/src/psd/tx.psd -------------------------------------------------------------------------------- /tool.usta.wiki/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/.env.example -------------------------------------------------------------------------------- /tool.usta.wiki/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/.gitattributes -------------------------------------------------------------------------------- /tool.usta.wiki/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/.gitignore -------------------------------------------------------------------------------- /tool.usta.wiki/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/.htaccess -------------------------------------------------------------------------------- /tool.usta.wiki/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/.project -------------------------------------------------------------------------------- /tool.usta.wiki/app/Console/Commands/Inspire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Console/Commands/Inspire.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Console/Kernel.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Events/Event.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/Http/Controllers/ToolController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Http/Controllers/ToolController.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/Http/Function/function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Http/Function/function.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Http/Kernel.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/Http/Requests/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Http/Requests/Request.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Http/routes.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/Jobs/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Jobs/Job.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/Listeners/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tool.usta.wiki/app/Policies/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tool.usta.wiki/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /tool.usta.wiki/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/app/User.php -------------------------------------------------------------------------------- /tool.usta.wiki/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/artisan -------------------------------------------------------------------------------- /tool.usta.wiki/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/bootstrap/app.php -------------------------------------------------------------------------------- /tool.usta.wiki/bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/bootstrap/autoload.php -------------------------------------------------------------------------------- /tool.usta.wiki/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tool.usta.wiki/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/composer.json -------------------------------------------------------------------------------- /tool.usta.wiki/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/config/app.php -------------------------------------------------------------------------------- /tool.usta.wiki/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/config/auth.php -------------------------------------------------------------------------------- /tool.usta.wiki/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/config/broadcasting.php -------------------------------------------------------------------------------- /tool.usta.wiki/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/config/cache.php -------------------------------------------------------------------------------- /tool.usta.wiki/config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/config/compile.php -------------------------------------------------------------------------------- /tool.usta.wiki/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/config/database.php -------------------------------------------------------------------------------- /tool.usta.wiki/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/config/filesystems.php -------------------------------------------------------------------------------- /tool.usta.wiki/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/config/mail.php -------------------------------------------------------------------------------- /tool.usta.wiki/config/old_itool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/config/old_itool.php -------------------------------------------------------------------------------- /tool.usta.wiki/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/config/queue.php -------------------------------------------------------------------------------- /tool.usta.wiki/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/config/services.php -------------------------------------------------------------------------------- /tool.usta.wiki/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/config/session.php -------------------------------------------------------------------------------- /tool.usta.wiki/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/config/view.php -------------------------------------------------------------------------------- /tool.usta.wiki/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /tool.usta.wiki/database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /tool.usta.wiki/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tool.usta.wiki/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tool.usta.wiki/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /tool.usta.wiki/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/gulpfile.js -------------------------------------------------------------------------------- /tool.usta.wiki/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/index.php -------------------------------------------------------------------------------- /tool.usta.wiki/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/package.json -------------------------------------------------------------------------------- /tool.usta.wiki/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/phpunit.xml -------------------------------------------------------------------------------- /tool.usta.wiki/public/css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/css/header.css -------------------------------------------------------------------------------- /tool.usta.wiki/public/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/css/index.css -------------------------------------------------------------------------------- /tool.usta.wiki/public/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/css/login.css -------------------------------------------------------------------------------- /tool.usta.wiki/public/css/overhang.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/css/overhang.min.css -------------------------------------------------------------------------------- /tool.usta.wiki/public/css/tool.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/css/tool.css -------------------------------------------------------------------------------- /tool.usta.wiki/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tool.usta.wiki/public/img/iTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/img/iTool.png -------------------------------------------------------------------------------- /tool.usta.wiki/public/img/qq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/img/qq.jpg -------------------------------------------------------------------------------- /tool.usta.wiki/public/img/weixin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/img/weixin.jpg -------------------------------------------------------------------------------- /tool.usta.wiki/public/img/weixin_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/img/weixin_2.jpg -------------------------------------------------------------------------------- /tool.usta.wiki/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/index.php -------------------------------------------------------------------------------- /tool.usta.wiki/public/js/Particleground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/js/Particleground.js -------------------------------------------------------------------------------- /tool.usta.wiki/public/js/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/js/header.js -------------------------------------------------------------------------------- /tool.usta.wiki/public/js/jQuery.md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/js/jQuery.md5.js -------------------------------------------------------------------------------- /tool.usta.wiki/public/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/js/jquery-ui.min.js -------------------------------------------------------------------------------- /tool.usta.wiki/public/js/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/js/layer.js -------------------------------------------------------------------------------- /tool.usta.wiki/public/js/overhang.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/js/overhang.min.js -------------------------------------------------------------------------------- /tool.usta.wiki/public/js/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/js/skin/default/icon-ext.png -------------------------------------------------------------------------------- /tool.usta.wiki/public/js/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/js/skin/default/icon.png -------------------------------------------------------------------------------- /tool.usta.wiki/public/js/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/js/skin/default/loading-0.gif -------------------------------------------------------------------------------- /tool.usta.wiki/public/js/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/js/skin/default/loading-1.gif -------------------------------------------------------------------------------- /tool.usta.wiki/public/js/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/js/skin/default/loading-2.gif -------------------------------------------------------------------------------- /tool.usta.wiki/public/js/skin/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/js/skin/layer.css -------------------------------------------------------------------------------- /tool.usta.wiki/public/js/tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/js/tool.js -------------------------------------------------------------------------------- /tool.usta.wiki/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /tool.usta.wiki/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/public/web.config -------------------------------------------------------------------------------- /tool.usta.wiki/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/readme.md -------------------------------------------------------------------------------- /tool.usta.wiki/resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /tool.usta.wiki/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/lang/en/auth.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/lang/en/validation.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/Compile/Clayout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/views/Compile/Clayout.blade.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/Compile/editor.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/views/Compile/editor.blade.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/Compile/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/views/Compile/footer.blade.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/Compile/head.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/views/Compile/head.blade.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/Compile/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/views/Compile/header.blade.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/Compile/html.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/views/Compile/html.blade.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/Compile/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/views/Compile/index.blade.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/Compile/list.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/views/Compile/list.blade.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/Compile/nav.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/views/Compile/nav.blade.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/Compile/share.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/views/Compile/share.blade.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/Mobile/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/views/Mobile/footer.blade.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/Mobile/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/views/Mobile/header.blade.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/Tool/admin.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/views/Tool/admin.blade.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/Tool/discuss.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/views/Tool/discuss.blade.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/Tool/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/views/Tool/login.blade.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tool.usta.wiki/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /tool.usta.wiki/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /tool.usta.wiki/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tool.usta.wiki/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/storage/framework/.gitignore -------------------------------------------------------------------------------- /tool.usta.wiki/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tool.usta.wiki/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tool.usta.wiki/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tool.usta.wiki/tests/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/tests/ExampleTest.php -------------------------------------------------------------------------------- /tool.usta.wiki/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/tool.usta.wiki/tests/TestCase.php -------------------------------------------------------------------------------- /www.usta.wiki/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/.env.example -------------------------------------------------------------------------------- /www.usta.wiki/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/.gitattributes -------------------------------------------------------------------------------- /www.usta.wiki/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/.gitignore -------------------------------------------------------------------------------- /www.usta.wiki/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/.htaccess -------------------------------------------------------------------------------- /www.usta.wiki/app/Announce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Announce.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Comment.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Config.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Console/Commands/Inspire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Console/Commands/Inspire.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Console/Kernel.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Course.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Course.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Detail.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Events/Event.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Git.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Git.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Http/Controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Http/Controllers/AdminController.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Http/Controllers/CommentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Http/Controllers/CommentController.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Http/Controllers/CourseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Http/Controllers/CourseController.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Http/Controllers/ImgController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Http/Controllers/ImgController.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Http/Controllers/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Http/Controllers/IndexController.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Http/Controllers/NoteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Http/Controllers/NoteController.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Http/Controllers/ProblemController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Http/Controllers/ProblemController.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Http/Controllers/Tool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Http/Controllers/Tool.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Http/Controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Http/Controllers/UserController.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Http/Kernel.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Http/Requests/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Http/Requests/Request.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Http/routes.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Jobs/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Jobs/Job.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Like.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Like.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Listeners/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www.usta.wiki/app/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Log.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Note.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Policies/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www.usta.wiki/app/Problem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Problem.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Score.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Score.php -------------------------------------------------------------------------------- /www.usta.wiki/app/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/Status.php -------------------------------------------------------------------------------- /www.usta.wiki/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/app/User.php -------------------------------------------------------------------------------- /www.usta.wiki/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/artisan -------------------------------------------------------------------------------- /www.usta.wiki/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/bootstrap/app.php -------------------------------------------------------------------------------- /www.usta.wiki/bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/bootstrap/autoload.php -------------------------------------------------------------------------------- /www.usta.wiki/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /www.usta.wiki/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/config/app.php -------------------------------------------------------------------------------- /www.usta.wiki/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/config/auth.php -------------------------------------------------------------------------------- /www.usta.wiki/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/config/broadcasting.php -------------------------------------------------------------------------------- /www.usta.wiki/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/config/cache.php -------------------------------------------------------------------------------- /www.usta.wiki/config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/config/compile.php -------------------------------------------------------------------------------- /www.usta.wiki/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/config/database.php -------------------------------------------------------------------------------- /www.usta.wiki/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/config/filesystems.php -------------------------------------------------------------------------------- /www.usta.wiki/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/config/mail.php -------------------------------------------------------------------------------- /www.usta.wiki/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/config/queue.php -------------------------------------------------------------------------------- /www.usta.wiki/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/config/services.php -------------------------------------------------------------------------------- /www.usta.wiki/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/config/session.php -------------------------------------------------------------------------------- /www.usta.wiki/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/config/view.php -------------------------------------------------------------------------------- /www.usta.wiki/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /www.usta.wiki/database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /www.usta.wiki/database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www.usta.wiki/database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www.usta.wiki/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /www.usta.wiki/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/gulpfile.js -------------------------------------------------------------------------------- /www.usta.wiki/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/index.php -------------------------------------------------------------------------------- /www.usta.wiki/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/package.json -------------------------------------------------------------------------------- /www.usta.wiki/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/phpunit.xml -------------------------------------------------------------------------------- /www.usta.wiki/public/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/animate.css -------------------------------------------------------------------------------- /www.usta.wiki/public/css/bootstrap-markdown.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/bootstrap-markdown.min.css -------------------------------------------------------------------------------- /www.usta.wiki/public/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/bootstrap.css -------------------------------------------------------------------------------- /www.usta.wiki/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /www.usta.wiki/public/css/cai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/cai.css -------------------------------------------------------------------------------- /www.usta.wiki/public/css/editormd.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/editormd.min.css -------------------------------------------------------------------------------- /www.usta.wiki/public/css/font-awesome/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/font-awesome/less/animated.less -------------------------------------------------------------------------------- /www.usta.wiki/public/css/font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/font-awesome/less/core.less -------------------------------------------------------------------------------- /www.usta.wiki/public/css/font-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/font-awesome/less/icons.less -------------------------------------------------------------------------------- /www.usta.wiki/public/css/font-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/font-awesome/less/larger.less -------------------------------------------------------------------------------- /www.usta.wiki/public/css/font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/font-awesome/less/list.less -------------------------------------------------------------------------------- /www.usta.wiki/public/css/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/font-awesome/less/mixins.less -------------------------------------------------------------------------------- /www.usta.wiki/public/css/font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/font-awesome/less/path.less -------------------------------------------------------------------------------- /www.usta.wiki/public/css/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/font-awesome/less/stacked.less -------------------------------------------------------------------------------- /www.usta.wiki/public/css/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/font-awesome/scss/_core.scss -------------------------------------------------------------------------------- /www.usta.wiki/public/css/font-awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/font-awesome/scss/_icons.scss -------------------------------------------------------------------------------- /www.usta.wiki/public/css/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/font-awesome/scss/_larger.scss -------------------------------------------------------------------------------- /www.usta.wiki/public/css/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/font-awesome/scss/_list.scss -------------------------------------------------------------------------------- /www.usta.wiki/public/css/font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/font-awesome/scss/_mixins.scss -------------------------------------------------------------------------------- /www.usta.wiki/public/css/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/font-awesome/scss/_path.scss -------------------------------------------------------------------------------- /www.usta.wiki/public/css/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/font-awesome/scss/_stacked.scss -------------------------------------------------------------------------------- /www.usta.wiki/public/css/fonts/footable.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/fonts/footable.eot -------------------------------------------------------------------------------- /www.usta.wiki/public/css/fonts/footable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/fonts/footable.svg -------------------------------------------------------------------------------- /www.usta.wiki/public/css/fonts/footable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/fonts/footable.ttf -------------------------------------------------------------------------------- /www.usta.wiki/public/css/fonts/footable.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/fonts/footable.woff -------------------------------------------------------------------------------- /www.usta.wiki/public/css/footable.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/footable.core.css -------------------------------------------------------------------------------- /www.usta.wiki/public/css/jasny-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/jasny-bootstrap.min.css -------------------------------------------------------------------------------- /www.usta.wiki/public/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/main.css -------------------------------------------------------------------------------- /www.usta.wiki/public/css/patterns/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/patterns/1.png -------------------------------------------------------------------------------- /www.usta.wiki/public/css/patterns/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/patterns/2.png -------------------------------------------------------------------------------- /www.usta.wiki/public/css/patterns/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/patterns/3.png -------------------------------------------------------------------------------- /www.usta.wiki/public/css/patterns/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/patterns/4.png -------------------------------------------------------------------------------- /www.usta.wiki/public/css/patterns/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/patterns/5.png -------------------------------------------------------------------------------- /www.usta.wiki/public/css/patterns/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/patterns/6.png -------------------------------------------------------------------------------- /www.usta.wiki/public/css/patterns/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/patterns/7.png -------------------------------------------------------------------------------- /www.usta.wiki/public/css/patterns/congruent_pentagon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/patterns/congruent_pentagon.png -------------------------------------------------------------------------------- /www.usta.wiki/public/css/patterns/otis_redding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/patterns/otis_redding.png -------------------------------------------------------------------------------- /www.usta.wiki/public/css/patterns/shattered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/patterns/shattered.png -------------------------------------------------------------------------------- /www.usta.wiki/public/css/patterns/triangular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/patterns/triangular.png -------------------------------------------------------------------------------- /www.usta.wiki/public/css/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/prettify.css -------------------------------------------------------------------------------- /www.usta.wiki/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/style.css -------------------------------------------------------------------------------- /www.usta.wiki/public/css/sweetalert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/css/sweetalert.css -------------------------------------------------------------------------------- /www.usta.wiki/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/favicon.ico -------------------------------------------------------------------------------- /www.usta.wiki/public/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /www.usta.wiki/public/fonts/consola.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/fonts/consola.ttf -------------------------------------------------------------------------------- /www.usta.wiki/public/fonts/editormd-logo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/fonts/editormd-logo.eot -------------------------------------------------------------------------------- /www.usta.wiki/public/fonts/editormd-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/fonts/editormd-logo.svg -------------------------------------------------------------------------------- /www.usta.wiki/public/fonts/editormd-logo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/fonts/editormd-logo.ttf -------------------------------------------------------------------------------- /www.usta.wiki/public/fonts/editormd-logo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/fonts/editormd-logo.woff -------------------------------------------------------------------------------- /www.usta.wiki/public/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /www.usta.wiki/public/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /www.usta.wiki/public/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /www.usta.wiki/public/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /www.usta.wiki/public/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /www.usta.wiki/public/img/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/img/a.png -------------------------------------------------------------------------------- /www.usta.wiki/public/img/codecolorer_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/img/codecolorer_bg.gif -------------------------------------------------------------------------------- /www.usta.wiki/public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/img/logo.png -------------------------------------------------------------------------------- /www.usta.wiki/public/img/tx/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/img/tx/0.png -------------------------------------------------------------------------------- /www.usta.wiki/public/img/tx/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/img/tx/1.png -------------------------------------------------------------------------------- /www.usta.wiki/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/index.php -------------------------------------------------------------------------------- /www.usta.wiki/public/js/bootstrap-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/bootstrap-markdown.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/bootstrap.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/bootstrap.min.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/bootstrap3-typeahead.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/bootstrap3-typeahead.min.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/editormd/editormd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/editormd/editormd.min.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/editormd/lib/codemirror/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/editormd/lib/codemirror/AUTHORS -------------------------------------------------------------------------------- /www.usta.wiki/public/js/editormd/lib/codemirror/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/editormd/lib/codemirror/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/public/js/editormd/lib/flowchart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/editormd/lib/flowchart.min.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/editormd/lib/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/editormd/lib/marked.min.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/editormd/lib/prettify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/editormd/lib/prettify.min.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/editormd/lib/raphael.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/editormd/lib/raphael.min.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/editormd/lib/underscore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/editormd/lib/underscore.min.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/footable.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/footable.all.min.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/inspinia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/inspinia.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/jasny-bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/jasny-bootstrap.min.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/jquery-2.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/jquery-2.1.1.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/jquery.metisMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/jquery.metisMenu.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/jquery.slimscroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/jquery.slimscroll.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/jquery.slimscroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/jquery.slimscroll.min.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/main.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/markdown.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/pace.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/pace.min.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/prettify.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/sweetalert.min.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/dialogs/charts/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/dialogs/charts/charts.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/dialogs/gmap/gmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/dialogs/gmap/gmap.html -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/dialogs/help/help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/dialogs/help/help.css -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/dialogs/help/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/dialogs/help/help.html -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/dialogs/help/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/dialogs/help/help.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/dialogs/image/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/dialogs/image/image.css -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/dialogs/image/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/dialogs/image/image.html -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/dialogs/image/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/dialogs/image/image.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/dialogs/internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/dialogs/internal.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/dialogs/link/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/dialogs/link/link.html -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/dialogs/map/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/dialogs/map/map.html -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/dialogs/map/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/dialogs/map/show.html -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/dialogs/music/music.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/dialogs/music/music.css -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/index.html -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/lang/en/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/lang/en/en.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/lang/zh-cn/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/lang/zh-cn/zh-cn.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/php/action_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/php/action_list.php -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/php/action_upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/php/action_upload.php -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/php/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/php/config.json -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/php/controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/php/controller.php -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/ueditor.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/ueditor.all.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/ueditor.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/ueditor.all.min.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/ueditor.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/ueditor.config.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/ueditor.parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/ueditor.parse.js -------------------------------------------------------------------------------- /www.usta.wiki/public/js/ueditor/ueditor.parse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/js/ueditor/ueditor.parse.min.js -------------------------------------------------------------------------------- /www.usta.wiki/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /www.usta.wiki/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/public/web.config -------------------------------------------------------------------------------- /www.usta.wiki/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/readme.md -------------------------------------------------------------------------------- /www.usta.wiki/resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /www.usta.wiki/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/lang/en/auth.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/lang/en/validation.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/admin/comment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/admin/comment.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/admin/course.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/admin/course.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/admin/git.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/admin/git.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/admin/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/admin/index.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/admin/note.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/admin/note.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/admin/problem.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/admin/problem.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/admin/set.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/admin/set.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/admin/setting.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/admin/setting.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/admin/user.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/admin/user.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/course/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/course/index.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/course/note.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/course/note.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/course/problem-anwser.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/course/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/course/show.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/home.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/index/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/index/404.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/index/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/index/500.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/index/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/index/index.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/index/itool.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/index/itool.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/index/links.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/index/links.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/index/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/index/login.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/index/search.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/index/search.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/layout/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/layout/app.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/layout/course.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/layout/course.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/layout/main.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/layout/main.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/part/foot.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/part/foot.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/part/head.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/part/navbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/part/navbar.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/user/index.blade.php: -------------------------------------------------------------------------------- 1 | 用户页 -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www.usta.wiki/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /www.usta.wiki/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /www.usta.wiki/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /www.usta.wiki/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/storage/framework/.gitignore -------------------------------------------------------------------------------- /www.usta.wiki/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /www.usta.wiki/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /www.usta.wiki/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /www.usta.wiki/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /www.usta.wiki/tests/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/tests/ExampleTest.php -------------------------------------------------------------------------------- /www.usta.wiki/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/tests/TestCase.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/autoload.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/bin/php-parse: -------------------------------------------------------------------------------- 1 | ../nikic/php-parser/bin/php-parse -------------------------------------------------------------------------------- /www.usta.wiki/vendor/bin/phpunit: -------------------------------------------------------------------------------- 1 | ../phpunit/phpunit/phpunit -------------------------------------------------------------------------------- /www.usta.wiki/vendor/bin/psysh: -------------------------------------------------------------------------------- 1 | ../psy/psysh/bin/psysh -------------------------------------------------------------------------------- /www.usta.wiki/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/composer/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/composer/installed.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/dnoegel/php-xdg-base-dir/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/dnoegel/php-xdg-base-dir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/dnoegel/php-xdg-base-dir/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/doctrine/inflector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/doctrine/inflector/.gitignore -------------------------------------------------------------------------------- /www.usta.wiki/vendor/doctrine/inflector/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/doctrine/inflector/.travis.yml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/doctrine/inflector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/doctrine/inflector/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/doctrine/inflector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/doctrine/inflector/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/doctrine/inflector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/doctrine/inflector/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/doctrine/instantiator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/doctrine/instantiator/.gitignore -------------------------------------------------------------------------------- /www.usta.wiki/vendor/doctrine/instantiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/doctrine/instantiator/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/doctrine/instantiator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/doctrine/instantiator/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/fzaninotto/faker/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/fzaninotto/faker/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/fzaninotto/faker/.travis.yml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/fzaninotto/faker/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/fzaninotto/faker/CHANGELOG.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/fzaninotto/faker/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/fzaninotto/faker/CONTRIBUTING.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/fzaninotto/faker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/fzaninotto/faker/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/fzaninotto/faker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/fzaninotto/faker/Makefile -------------------------------------------------------------------------------- /www.usta.wiki/vendor/fzaninotto/faker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/fzaninotto/faker/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/fzaninotto/faker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/fzaninotto/faker/readme.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/fzaninotto/faker/test/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/fzaninotto/faker/test/test.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/gregwar/captcha/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/gregwar/captcha/.gitignore -------------------------------------------------------------------------------- /www.usta.wiki/vendor/gregwar/captcha/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/gregwar/captcha/.travis.yml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/gregwar/captcha/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/gregwar/captcha/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/gregwar/captcha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/gregwar/captcha/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/gregwar/captcha/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/gregwar/captcha/autoload.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/gregwar/captcha/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/gregwar/captcha/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/gregwar/captcha/demo/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/gregwar/captcha/demo/demo.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/gregwar/captcha/demo/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/gregwar/captcha/demo/index.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/gregwar/captcha/demo/ocr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/gregwar/captcha/demo/ocr.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/gregwar/captcha/demo/output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/gregwar/captcha/demo/output.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/guzzle/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/guzzle/.travis.yml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/guzzle/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/guzzle/CHANGELOG.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/guzzle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/guzzle/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/guzzle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/guzzle/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/guzzle/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/guzzle/UPGRADING.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/guzzle/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/guzzle/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/guzzle/src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/guzzle/src/Client.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/guzzle/src/Pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/guzzle/src/Pool.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/promises/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/promises/CHANGELOG.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/promises/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/promises/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/promises/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/promises/Makefile -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/promises/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/promises/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/psr7/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/psr7/CHANGELOG.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/psr7/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/psr7/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/psr7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/psr7/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/psr7/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/psr7/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/psr7/src/FnStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/psr7/src/FnStream.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/psr7/src/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/psr7/src/Request.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/psr7/src/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/psr7/src/Response.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/psr7/src/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/psr7/src/Stream.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/guzzlehttp/psr7/src/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/guzzlehttp/psr7/src/Uri.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/hamcrest/hamcrest-php/.coveralls.yml: -------------------------------------------------------------------------------- 1 | src_dir: hamcrest 2 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/hamcrest/hamcrest-php/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/hamcrest/hamcrest-php/.gush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/hamcrest/hamcrest-php/.gush.yml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/hamcrest/hamcrest-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/hamcrest/hamcrest-php/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/hamcrest/hamcrest-php/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/hamcrest/hamcrest-php/TODO.txt -------------------------------------------------------------------------------- /www.usta.wiki/vendor/hamcrest/hamcrest-php/generator/parts/functions_footer.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/hamcrest/hamcrest-php/generator/parts/functions_imports.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/hamcrest/hamcrest-php/generator/parts/matchers_footer.txt: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/hamcrest/hamcrest-php/generator/parts/matchers_imports.txt: -------------------------------------------------------------------------------- 1 | 2 | namespace Hamcrest; -------------------------------------------------------------------------------- /www.usta.wiki/vendor/jakub-onderka/php-console-color/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | vendor 3 | composer.lock 4 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/laravel/framework/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/laravel/framework/LICENSE.txt -------------------------------------------------------------------------------- /www.usta.wiki/vendor/laravel/framework/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/laravel/framework/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/laravel/framework/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/laravel/framework/readme.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/laravel/socialite/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/laravel/socialite/LICENSE.txt -------------------------------------------------------------------------------- /www.usta.wiki/vendor/laravel/socialite/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/laravel/socialite/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/laravel/socialite/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/laravel/socialite/readme.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/league/flysystem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/league/flysystem/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/league/flysystem/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/league/flysystem/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/league/flysystem/src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/league/flysystem/src/Config.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/league/flysystem/src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/league/flysystem/src/File.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/league/flysystem/src/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/league/flysystem/src/Handler.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/league/flysystem/src/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/league/flysystem/src/Util.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/league/oauth1-client/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /vendor 3 | /composer.lock 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/league/oauth1-client/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/league/oauth1-client/.travis.yml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/league/oauth1-client/CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/league/oauth1-client/CONDUCT.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/league/oauth1-client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/league/oauth1-client/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/league/oauth1-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/league/oauth1-client/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/league/oauth1-client/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/league/oauth1-client/phpunit.xml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/league/oauth1-client/rfc5849.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/league/oauth1-client/rfc5849.txt -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/mockery/mockery/.gitignore -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/mockery/mockery/.php_cs -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/mockery/mockery/.scrutinizer.yml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/.styleci.yml: -------------------------------------------------------------------------------- 1 | preset: psr2 2 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/mockery/mockery/.travis.yml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/mockery/mockery/CHANGELOG.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/mockery/mockery/CONTRIBUTING.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/mockery/mockery/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/mockery/mockery/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/mockery/mockery/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/mockery/mockery/docs/Makefile -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/mockery/mockery/docs/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/mockery/mockery/docs/conf.py -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/mockery/mockery/docs/index.rst -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/mockery/mockery/package.xml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/mockery/mockery/phpunit.xml.dist -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/tests/Mockery/_files/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/travis/extra.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/mockery/mockery/travis/extra.ini -------------------------------------------------------------------------------- /www.usta.wiki/vendor/mockery/mockery/travis/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/mockery/mockery/travis/script.sh -------------------------------------------------------------------------------- /www.usta.wiki/vendor/monolog/monolog/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/monolog/monolog/.php_cs -------------------------------------------------------------------------------- /www.usta.wiki/vendor/monolog/monolog/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/monolog/monolog/CHANGELOG.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/monolog/monolog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/monolog/monolog/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/monolog/monolog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/monolog/monolog/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/monolog/monolog/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/monolog/monolog/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/monolog/monolog/doc/01-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/monolog/monolog/doc/01-usage.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/monolog/monolog/doc/sockets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/monolog/monolog/doc/sockets.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/monolog/monolog/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/monolog/monolog/phpunit.xml.dist -------------------------------------------------------------------------------- /www.usta.wiki/vendor/monolog/monolog/tests/Monolog/Handler/Fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/nesbot/carbon/.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/nesbot/carbon/.php_cs.dist -------------------------------------------------------------------------------- /www.usta.wiki/vendor/nesbot/carbon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/nesbot/carbon/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/nesbot/carbon/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/nesbot/carbon/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/nesbot/carbon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/nesbot/carbon/readme.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/nikic/php-parser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/nikic/php-parser/.gitignore -------------------------------------------------------------------------------- /www.usta.wiki/vendor/nikic/php-parser/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/nikic/php-parser/.travis.yml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/nikic/php-parser/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/nikic/php-parser/CHANGELOG.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/nikic/php-parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/nikic/php-parser/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/nikic/php-parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/nikic/php-parser/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/nikic/php-parser/UPGRADE-1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/nikic/php-parser/UPGRADE-1.0.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/nikic/php-parser/UPGRADE-2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/nikic/php-parser/UPGRADE-2.0.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/nikic/php-parser/bin/php-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/nikic/php-parser/bin/php-parse -------------------------------------------------------------------------------- /www.usta.wiki/vendor/nikic/php-parser/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/nikic/php-parser/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/nikic/php-parser/grammar/php5.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/nikic/php-parser/grammar/php5.y -------------------------------------------------------------------------------- /www.usta.wiki/vendor/nikic/php-parser/grammar/php7.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/nikic/php-parser/grammar/php7.y -------------------------------------------------------------------------------- /www.usta.wiki/vendor/paragonie/random_compat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/paragonie/random_compat/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpdocumentor/reflection-common/.gitignore: -------------------------------------------------------------------------------- 1 | composer.phar 2 | vendor/ 3 | build/ 4 | 5 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpdocumentor/reflection-common/README.md: -------------------------------------------------------------------------------- 1 | # ReflectionCommon 2 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpdocumentor/reflection-docblock/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpdocumentor/type-resolver/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | composer.lock 3 | vendor 4 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpspec/prophecy/.gitignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | *.phar 3 | /composer.lock 4 | /vendor 5 | /phpunit.xml 6 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpspec/prophecy/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/phpspec/prophecy/.travis.yml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpspec/prophecy/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/phpspec/prophecy/CHANGES.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpspec/prophecy/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/phpspec/prophecy/CONTRIBUTING.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpspec/prophecy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/phpspec/prophecy/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpspec/prophecy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/phpspec/prophecy/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpspec/prophecy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/phpspec/prophecy/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpunit/php-code-coverage/.gitattributes: -------------------------------------------------------------------------------- 1 | *.php diff=php 2 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpunit/php-code-coverage/tests/_files/source_without_ignore.php: -------------------------------------------------------------------------------- 1 | ' . file_get_contents('php://stdin')); 4 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpunit/phpunit/src/Util/XML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/phpunit/phpunit/src/Util/XML.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpunit/phpunit/tests/Regression/GitHub/1351/ChildProcessClass1351.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpunit/phpunit/tests/_files/JsonData/simpleObject.json: -------------------------------------------------------------------------------- 1 | {"Mascott":"Tux"} -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpunit/phpunit/tests/_files/bar.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psr/http-message/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psr/http-message/CHANGELOG.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psr/http-message/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psr/http-message/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psr/http-message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psr/http-message/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psr/http-message/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psr/http-message/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psr/log/Psr/Log/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psr/log/Psr/Log/LogLevel.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psr/log/Psr/Log/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psr/log/Psr/Log/LoggerTrait.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psr/log/Psr/Log/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psr/log/Psr/Log/NullLogger.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psr/log/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psr/log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psr/log/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/.editorconfig -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/.gitignore -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/.php_cs -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/.styleci.yml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/.travis.yml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/CONTRIBUTING.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/bin/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/bin/build -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/bin/build-manual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/bin/build-manual -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/bin/build-phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/bin/build-phar -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/bin/build-vendor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/bin/build-vendor -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/bin/psysh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/bin/psysh -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/phpcs.xml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/phpunit.xml.dist -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/src/Psy/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/src/Psy/Autoloader.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/src/Psy/Compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/src/Psy/Compiler.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/src/Psy/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/src/Psy/Context.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/src/Psy/Shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/src/Psy/Shell.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/src/Psy/Util/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/src/Psy/Util/Json.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/src/Psy/Util/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/src/Psy/Util/Str.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/src/Psy/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/psy/psysh/src/Psy/functions.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/psy/psysh/test/fixtures/default/.config/psysh/config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/console/Application.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/console/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/console/CHANGELOG.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/console/Helper/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/console/Helper/Table.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/console/Input/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/console/Input/Input.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/console/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/console/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/console/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/console/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/console/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/console/phpunit.xml.dist -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/css-selector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/css-selector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/css-selector/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/css-selector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/css-selector/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/debug/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/debug/CHANGELOG.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/debug/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/debug/Debug.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/debug/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/debug/ErrorHandler.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/debug/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/debug/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/debug/Tests/Fixtures/PEARClass.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/var-dumper/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/var-dumper/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/var-dumper/CHANGELOG.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/var-dumper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/var-dumper/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/var-dumper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/var-dumper/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/var-dumper/VarDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/var-dumper/VarDumper.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/var-dumper/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/var-dumper/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/yaml/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/yaml/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/yaml/CHANGELOG.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/yaml/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/yaml/Dumper.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/yaml/Escaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/yaml/Escaper.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/yaml/Inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/yaml/Inline.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/yaml/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/yaml/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/yaml/Parser.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/yaml/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/yaml/Tests/Fixtures/embededPhp.yml: -------------------------------------------------------------------------------- 1 | value: 2 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/yaml/Tests/YamlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/yaml/Tests/YamlTest.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/yaml/Unescaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/yaml/Unescaper.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/yaml/Yaml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/yaml/Yaml.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/yaml/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/yaml/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/symfony/yaml/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/symfony/yaml/phpunit.xml.dist -------------------------------------------------------------------------------- /www.usta.wiki/vendor/vlucas/phpdotenv/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/vlucas/phpdotenv/LICENSE.txt -------------------------------------------------------------------------------- /www.usta.wiki/vendor/vlucas/phpdotenv/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/vlucas/phpdotenv/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/vlucas/phpdotenv/src/Dotenv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/vlucas/phpdotenv/src/Dotenv.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/vlucas/phpdotenv/src/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/vlucas/phpdotenv/src/Loader.php -------------------------------------------------------------------------------- /www.usta.wiki/vendor/webmozart/assert/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | composer.lock 3 | -------------------------------------------------------------------------------- /www.usta.wiki/vendor/webmozart/assert/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/webmozart/assert/.styleci.yml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/webmozart/assert/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/webmozart/assert/.travis.yml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/webmozart/assert/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/webmozart/assert/CHANGELOG.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/webmozart/assert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/webmozart/assert/LICENSE -------------------------------------------------------------------------------- /www.usta.wiki/vendor/webmozart/assert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/webmozart/assert/README.md -------------------------------------------------------------------------------- /www.usta.wiki/vendor/webmozart/assert/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/webmozart/assert/appveyor.yml -------------------------------------------------------------------------------- /www.usta.wiki/vendor/webmozart/assert/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/webmozart/assert/composer.json -------------------------------------------------------------------------------- /www.usta.wiki/vendor/webmozart/assert/src/Assert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtahstu/iSchool/HEAD/www.usta.wiki/vendor/webmozart/assert/src/Assert.php --------------------------------------------------------------------------------