├── .env.example ├── .gitattributes ├── .gitignore ├── .htaccess ├── 404.html ├── LICENSE ├── README.md ├── admin-categories.PNG ├── admin-home.PNG ├── admin-sites.PNG ├── app ├── Admin │ ├── Controllers │ │ ├── AuthController.php │ │ ├── CategoryController.php │ │ ├── ExampleController.php │ │ ├── HomeController.php │ │ ├── SettingController.php │ │ └── SiteController.php │ ├── bootstrap.php │ └── routes.php ├── Category.php ├── Console │ ├── Commands │ │ └── ProjectCleanCommand.php │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Controller.php │ │ └── HomeController.php │ ├── Kernel.php │ └── Middleware │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Observers │ └── SiteObserver.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php └── Site.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── admin.php ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── debugbar.php ├── filesystems.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── .gitkeep ├── migrations │ ├── 2016_01_04_173148_create_admin_tables.php │ ├── 2019_01_21_120954_create_categories_table.php │ └── 2019_01_21_144821_create_sites_table.php └── seeds │ ├── AdminConfigTableSeeder.php │ ├── AdminMenuTableSeeder.php │ ├── AdminPermissionsTableSeeder.php │ ├── AdminRoleMenuTableSeeder.php │ ├── AdminRolePermissionsTableSeeder.php │ ├── AdminRoleUsersTableSeeder.php │ ├── AdminRolesTableSeeder.php │ ├── AdminUserPermissionsTableSeeder.php │ ├── AdminUsersTableSeeder.php │ ├── CategoriesTableSeeder.php │ ├── DatabaseSeeder.php │ └── SitesTableSeeder.php ├── deploy.php ├── hitokoto.sql ├── index.PNG ├── index.html ├── music.PNG ├── null ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── .user.ini ├── .well-known │ └── acme-challenge │ │ ├── -AscYesCmS96AjAI01o-nvh0QuMHazfr3b9XCQTJ1bE │ │ ├── Rc-Dk5UO9ROxqF_tEz1okjXcziUis1rbJ0adnrRS29k │ │ └── ZcQ1FtRGK74o74mgrA0L2zJv5b7pFaUs8Yq7DDxdTkE ├── TRANSLATE.zip ├── about.html ├── category.svg ├── css │ ├── component.css │ ├── demo.css │ ├── organicfoodicons.css │ └── search.css ├── css2 │ ├── component2.css │ ├── demo2.css │ ├── organicfoodicons2.css │ └── search2.css ├── css3 │ ├── component2.css │ ├── demo2.css │ ├── organicfoodicons2.css │ ├── search2.css │ └── styles.css ├── favicon.ico ├── favicon.svg ├── font │ ├── linecons.eot │ ├── linecons.svg │ ├── linecons.ttf │ └── linecons.woff ├── fonts │ ├── FontAwesome.otf │ ├── _bt_www_bt_wwwroot_bt_geekweb_bt_WebStack-Laravel_bt_public_bt_fonts_t_1581486097.58 │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── bpicons │ │ ├── bpicons.eot │ │ ├── bpicons.svg │ │ ├── bpicons.ttf │ │ ├── bpicons.woff │ │ └── license.txt │ ├── feather │ │ ├── feather.eot │ │ ├── feather.svg │ │ ├── feather.ttf │ │ ├── feather.woff │ │ └── feather.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── organicfoodicons │ │ ├── organicfoodicons.eot │ │ ├── organicfoodicons.svg │ │ ├── organicfoodicons.ttf │ │ ├── organicfoodicons.woff │ │ └── organicfoodicons.woff2 ├── geek2.js ├── img │ ├── 1117.jpg │ ├── background.jpg │ ├── bg.jpg │ ├── bgart.jpg │ ├── bing.png │ ├── chrome.png │ ├── e.PNG │ ├── flags │ │ ├── flag-cn.png │ │ ├── flag-us.png │ │ ├── loading.png │ │ ├── loading2.png │ │ ├── logo-collapsed@2x.png │ │ └── logo.png │ ├── loading.svg │ ├── logo.png │ ├── qr.jpg │ ├── wall.jpg │ ├── xue.png │ └── yourname.jpg ├── index.php ├── js.tar.gz ├── js │ ├── classie.js │ ├── geek.js │ ├── geek.js.tar.gz │ ├── main.js │ ├── modernizr-custom.js │ ├── search.js │ ├── searh2.js │ └── sidebar │ │ ├── geek.js.tar.gz │ │ └── package │ │ ├── .babelrc │ │ ├── .eslintrc │ │ ├── .gitlab-ci.yml │ │ ├── .nvmrc │ │ ├── API.md │ │ ├── README.md │ │ ├── dist │ │ ├── sidecar-module.js │ │ ├── sidecar-module.js.map │ │ ├── sidecar.js │ │ └── sidecar.js.map │ │ ├── gulpfile.babel.js │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── src │ │ ├── css │ │ │ └── chat.css │ │ ├── index.js │ │ ├── index.module.js │ │ └── lib │ │ │ ├── basic-symbol-ponyfill.js │ │ │ ├── chat.js │ │ │ ├── custom-event-ponyfill.js │ │ │ ├── dom-utility.js │ │ │ ├── element-store.js │ │ │ └── make-readable-copy.js │ │ ├── webpack.config.js │ │ └── webpack.sidecar-module.config.js ├── js2 │ └── search.js ├── mix-manifest.json ├── public.rar ├── robots.txt ├── screen │ ├── 01.png │ ├── 02.png │ ├── 03.png │ └── 04.png ├── search.svg ├── sword.svg ├── swords.svg ├── uploads │ └── images │ │ ├── 012139e7a966d789e0e11865c8e63dd7.png │ │ ├── 051fd4754efc98132ec3098ccbc4679e.png │ │ ├── 087f354d786e50e57d97a8ef6253b472.png │ │ ├── 09ea9cc74268b5c1216b0836facc2a84.png │ │ ├── 0d56485dcc77b87b1b61ff66115ef017.png │ │ ├── 0db508f228a3f539c7b700834a5a0465.png │ │ ├── 0e292d18af7387334d25c4cfc270c619.png │ │ ├── 1136cc1c36f6fb0b1d35b807fb17aec8.png │ │ ├── 149a4d90691e19de4029526de8df3daf.png │ │ ├── 15494d1659bfd5a961416de3aff57981.png │ │ ├── 1629d9d2b37005796709580ccd69806a.png │ │ ├── 17cce1fab73c6c3ba4dba5b46831e636.png │ │ ├── 17eb2eae204de77236ecc9accd9d37ca.png │ │ ├── 188109f0decee4dffe88da0081dec809.png │ │ ├── 1a8791a81c566ec239bbbc6fc9efac29.png │ │ ├── 1best.png │ │ ├── 1d8ecb5a6bdad4da74952c497239367a.png │ │ ├── 1f0f14ad06111377a4d3f0a42497fd1c.png │ │ ├── 236bd998cdab5fb1c97cd870058e8a99.png │ │ ├── 23c57b7e5724f406890850cbeb7ea07f.png │ │ ├── 25b72a94f78826b023732b63b032db30.png │ │ ├── 28c0e530426a090cc2e31db80c93430c.png │ │ ├── 28fecdda53910aa1a94c01f43820dd8f.png │ │ ├── 2b34537c1fbcb9680ef3ad53ec5bacbb.png │ │ ├── 2c222ae3abd0507e1c7d4e65ac18fc4e.png │ │ ├── 2cc3d7a7e8b0c55c3ab2ca02f23b36e6.png │ │ ├── 332c8a36c138a7e079243ce9e9ada121.png │ │ ├── 33e5e9edde2934901f851160abe7c76f.png │ │ ├── 38ee7ea05447df97ff03ad5334385025.png │ │ ├── 3b471ba35bb320e0be96e5504dd0baa6.png │ │ ├── 3e71446482321fa570872d3b0c3fd4a7.png │ │ ├── 3f94b5190001e7d0c989a2abb498cf51.png │ │ ├── 41ed90e239861de51b0a7b889f74cc5c.png │ │ ├── 44034acbcd5c72e35e225b0ce78a3e95.png │ │ ├── 45a2e4f8870fe507b7002af8c8ec9c8e.png │ │ ├── 498ced1a06cdf0662fc41d97601d3199.png │ │ ├── 4b95714e51b3245054a72ed42886dff3.png │ │ ├── 4d83a46f1da64c05a25aae0b1ff4a1da.png │ │ ├── 5444e9e6ea8cb0107a13b41d3f6c6fee.png │ │ ├── 551d83654971176c94a119b65717b7db.png │ │ ├── 55691a0ab458e789723812f3a891d97d.png │ │ ├── 55fc1c927e2e4a37633df67ea85c515b.png │ │ ├── 57c1a62b53436164e569c0b074859dbb.png │ │ ├── 5c9803cac37bd5f46bd2714374bb9ae7.png │ │ ├── 5f1f27df75e34789829f7afa1f3fadbc.png │ │ ├── 61560892c8b2e16cc15279b73303803f.png │ │ ├── 6790a0a0f5993d2a40f2e2e84a551a9e.png │ │ ├── 688998c0584895b666f9037a0b6e05fa.png │ │ ├── 6b82a9ac04a3923e07746da0571ee8f1.png │ │ ├── 6bbb95c40917fcc13a0101d138c7fb93.png │ │ ├── 6cbd9427f766520d92eea951276b9095.png │ │ ├── 6d5eb3584cbf0b1dd26285b3b30a0db6.png │ │ ├── 6e952b441bb165e3e5268b18b0fd0905.png │ │ ├── 6f3efa5e8e134c39aa3e7c89540e76e7.png │ │ ├── 766a51a9fa928791665c68bd2598ab59.png │ │ ├── 76e54e8e15b826d621e8ddec05a0fc11.png │ │ ├── 77b1eddaeab9bef60f0153963ca2d290.png │ │ ├── 77c75d89fc24ed4a8b104b80a72c3199.png │ │ ├── 7bffe185063d4eb6120bffc5db8d7533.png │ │ ├── 80b4668b77c5c379672f0994c0217a91.png │ │ ├── 816f74fb88e038d8b018685f79024491.png │ │ ├── 864fed7994e8c5c1a8571f43c69ea940.png │ │ ├── 89c09de73bd88b13a9d66e49dc3797a8.png │ │ ├── 89d23ed8358bd3e0caf1c557bf555668.png │ │ ├── 8b5d545527e0269f2e0b315e8e461a2e.png │ │ ├── 8d7ce7a7d7eb5d8c24168ff8fa10bf3e.png │ │ ├── 902839d5862a774dea94a0c53a9647d5.png │ │ ├── 9041975c4c862602a224840864e75cb7.png │ │ ├── 992ea8419d007a70a763437b7e5ab10d.png │ │ ├── 9b8a46c1b64b1fe1bc992c0ac218434a.png │ │ ├── 9f68c95c85076c211b50c88ec0b84554.png │ │ ├── 9ff9d03f506860bb1610d3290df3d4f3.png │ │ ├── a0ac2fe2884d2a6df504b1c4bcecd127.png │ │ ├── a1d76bac7555b5a424a70b803b984fb7.png │ │ ├── a465113570c67eda871393d001db68fd.png │ │ ├── a4e7eadb3075f13341cacdefefc7866f.png │ │ ├── a510f3764d015cfe4fe23e39cfb676de.png │ │ ├── a639c48ef826096ba5abaf23e8562bc1.png │ │ ├── a890faf0b5fea114d13473f4f1ef2213.png │ │ ├── b076a6655bb511f3416e6f5e2cc6b45c.png │ │ ├── b268da0993ee9f8cb34044ed6b67256b.png │ │ ├── b92ef3d3a4b9804f6e88c9f5b0b0829e.png │ │ ├── b9f6b0ed0da4b32dc5488ed6353b3ea1.png │ │ ├── bc837c0595eaeab855d4a0b909a2932e.png │ │ ├── bcf22f1c0619a5c3192bad9a369e6e30.png │ │ ├── bf4b58a0ca1c3c4dfa14e9912d6700a5.png │ │ ├── c1e62d9b01021df9fb315fc51829609b.png │ │ ├── c4e6bda378950763e506811c286fcaec.png │ │ ├── c80f9f7d07c54be971b7a58338b74572.png │ │ ├── cc6b533e960a9ab175b86e6abb9a0c5c.png │ │ ├── ce25876f31f941cffb2616c3a7662d49.png │ │ ├── ce50155e19480d109ddf0ca6967741f1.png │ │ ├── cee2f09aa638f39dff9cd18ffacdb21e.png │ │ ├── cee30295dcb46e0dd1b16fc684d0d244.png │ │ ├── cf97de33da7255b353d2d847979c304f.png │ │ ├── code (1).png │ │ ├── d32d36e803c391b4c49a8cf607cc320a.png │ │ ├── d864c5cc6080a26cde6ce3c4532f8cd1.png │ │ ├── d8ecc225ad8ce8d31b862f1447a15a41.png │ │ ├── d9009151475922f4690ddb73488b38da.png │ │ ├── da2bb2cc7c3d21a2fe7b5f1d222967b0.png │ │ ├── db874d88a12a4664dbbe9431b296c8aa.png │ │ ├── dbf4361b71cb76e9e67d4f6a7679a703.png │ │ ├── e304daca4949f19ff948e1e23c8c110a.png │ │ ├── e340f31780c0983c1be331029664e8c2.png │ │ ├── ee9ecc00ca939d29c978149fda6a34d5.png │ │ ├── efb60c25afe770aa23a3ebb56a326784.png │ │ ├── f08544a6bdb7301fbf285718c7b36587.png │ │ ├── f1a86d1d7b28d526d0e0b4cb2f44c8dd.png │ │ ├── f2ded5394c59b42d7069591ad6041d37.png │ │ ├── f444adcdac7a78f54c91b1fc8d4583af.png │ │ ├── f53af14436d02cd88859fdc16f7f1fdb.png │ │ ├── f5b3aa4562fd9fd00f3f87d4a20be418.png │ │ ├── f88e3da829b5010e9b6d1547b1c3459f.png │ │ ├── fac12af75fa201f1576d2db75b43f98a.png │ │ ├── fb9f25be4e42480949ad900502a1220d.png │ │ ├── fbfade8412ff33d537d9a9ebb5efa997.png │ │ ├── fdb5150cf25d800027fb8e3ace696eec.png │ │ └── ff6c47f6d12765dfa6ece95c449bded7.png ├── vendor │ ├── laravel-admin-ext │ │ ├── grid-lightbox │ │ │ ├── jquery.magnific-popup.min.js │ │ │ └── magnific-popup.css │ │ └── material-ui │ │ │ └── MaterialAdminLTE │ │ │ └── dist │ │ │ ├── css │ │ │ ├── MaterialAdminLTE.min.css │ │ │ ├── bootstrap-material-design.min.css │ │ │ ├── custom.css │ │ │ ├── ripples.min.css │ │ │ └── skins │ │ │ │ ├── all-md-skins.min.css │ │ │ │ ├── skin-md-black-light.min.css │ │ │ │ ├── skin-md-black.min.css │ │ │ │ ├── skin-md-blue-light.min.css │ │ │ │ ├── skin-md-blue.min.css │ │ │ │ ├── skin-md-green-light.min.css │ │ │ │ ├── skin-md-green.min.css │ │ │ │ ├── skin-md-purple-light.min.css │ │ │ │ ├── skin-md-purple.min.css │ │ │ │ ├── skin-md-red-light.min.css │ │ │ │ ├── skin-md-red.min.css │ │ │ │ ├── skin-md-yellow-light.min.css │ │ │ │ └── skin-md-yellow.min.css │ │ │ ├── img │ │ │ ├── avatar.png │ │ │ ├── avatar04.png │ │ │ ├── avatar2.png │ │ │ ├── avatar3.png │ │ │ ├── avatar5.png │ │ │ ├── boxed-bg.jpg │ │ │ ├── boxed-bg.png │ │ │ ├── credit │ │ │ │ ├── american-express.png │ │ │ │ ├── cirrus.png │ │ │ │ ├── mastercard.png │ │ │ │ ├── mestro.png │ │ │ │ ├── paypal.png │ │ │ │ ├── paypal2.png │ │ │ │ └── visa.png │ │ │ ├── default-50x50.gif │ │ │ ├── icons.png │ │ │ ├── patterns │ │ │ │ ├── user-panel-bg_blue.jpg │ │ │ │ ├── user-panel-bg_green.jpg │ │ │ │ ├── user-panel-bg_purple.jpg │ │ │ │ ├── user-panel-bg_red.jpg │ │ │ │ └── user-panel-bg_yellow.jpg │ │ │ ├── photo1.png │ │ │ ├── photo2.png │ │ │ ├── photo3.jpg │ │ │ ├── photo4.jpg │ │ │ ├── user-160x160.jpg │ │ │ ├── user1-128x128.jpg │ │ │ ├── user2-160x160.jpg │ │ │ ├── user3-128x128.jpg │ │ │ ├── user4-128x128.jpg │ │ │ ├── user5-128x128.jpg │ │ │ ├── user6-128x128.jpg │ │ │ ├── user7-128x128.jpg │ │ │ └── user8-128x128.jpg │ │ │ └── js │ │ │ ├── material.min.js │ │ │ └── ripples.min.js │ └── laravel-admin │ │ ├── AdminLTE │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ └── bootstrap.min.js │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── AdminLTE.min.css │ │ │ │ └── skins │ │ │ │ │ ├── _all-skins.min.css │ │ │ │ │ ├── skin-black-light.min.css │ │ │ │ │ ├── skin-black.min.css │ │ │ │ │ ├── skin-blue-light.min.css │ │ │ │ │ ├── skin-blue.min.css │ │ │ │ │ ├── skin-green-light.min.css │ │ │ │ │ ├── skin-green.min.css │ │ │ │ │ ├── skin-purple-light.min.css │ │ │ │ │ ├── skin-purple.min.css │ │ │ │ │ ├── skin-red-light.min.css │ │ │ │ │ ├── skin-red.min.css │ │ │ │ │ ├── skin-yellow-light.min.css │ │ │ │ │ └── skin-yellow.min.css │ │ │ ├── img │ │ │ │ ├── boxed-bg.jpg │ │ │ │ ├── boxed-bg.png │ │ │ │ ├── credit │ │ │ │ │ ├── american-express.png │ │ │ │ │ ├── cirrus.png │ │ │ │ │ ├── mastercard.png │ │ │ │ │ ├── mestro.png │ │ │ │ │ ├── paypal.png │ │ │ │ │ ├── paypal2.png │ │ │ │ │ └── visa.png │ │ │ │ ├── default-50x50.gif │ │ │ │ ├── icons.png │ │ │ │ └── user2-160x160.jpg │ │ │ └── js │ │ │ │ └── app.min.js │ │ └── plugins │ │ │ ├── bootstrap-slider │ │ │ ├── bootstrap-slider.js │ │ │ └── slider.css │ │ │ ├── colorpicker │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ └── img │ │ │ │ ├── alpha-horizontal.png │ │ │ │ ├── alpha.png │ │ │ │ ├── hue-horizontal.png │ │ │ │ ├── hue.png │ │ │ │ └── saturation.png │ │ │ ├── iCheck │ │ │ ├── all.css │ │ │ ├── flat │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── flat.css │ │ │ │ ├── flat.png │ │ │ │ ├── flat@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ │ ├── futurico.css │ │ │ │ ├── futurico.png │ │ │ │ └── futurico@2x.png │ │ │ ├── icheck.min.js │ │ │ ├── line │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── blue.css │ │ │ │ ├── green.css │ │ │ │ ├── grey.css │ │ │ │ ├── line.css │ │ │ │ ├── line.png │ │ │ │ ├── line@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── pink.css │ │ │ │ ├── purple.css │ │ │ │ ├── red.css │ │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.css │ │ │ │ ├── minimal.png │ │ │ │ ├── minimal@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ │ ├── polaris.css │ │ │ │ ├── polaris.png │ │ │ │ └── polaris@2x.png │ │ │ └── square │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── square.css │ │ │ │ ├── square.png │ │ │ │ ├── square@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── input-mask │ │ │ ├── jquery.inputmask.bundle.min.js │ │ │ └── phone-codes │ │ │ │ ├── phone-be.json │ │ │ │ ├── phone-codes.json │ │ │ │ └── readme.txt │ │ │ ├── ionslider │ │ │ ├── img │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ └── sprite-skin-nice.png │ │ │ ├── ion.rangeSlider.css │ │ │ ├── ion.rangeSlider.min.js │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ └── ion.rangeSlider.skinNice.css │ │ │ ├── jQuery │ │ │ └── jQuery-2.1.4.min.js │ │ │ ├── select2 │ │ │ ├── i18n │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ ├── select2.full.min.js │ │ │ └── select2.min.css │ │ │ └── slimScroll │ │ │ └── jquery.slimscroll.min.js │ │ ├── bootstrap-duallistbox │ │ └── dist │ │ │ ├── bootstrap-duallistbox.min.css │ │ │ └── jquery.bootstrap-duallistbox.min.js │ │ ├── bootstrap-fileinput │ │ ├── css │ │ │ └── fileinput.min.css │ │ ├── img │ │ │ ├── loading-sm.gif │ │ │ └── loading.gif │ │ └── js │ │ │ ├── fileinput.min.js │ │ │ └── plugins │ │ │ ├── canvas-to-blob.js │ │ │ ├── canvas-to-blob.min.js │ │ │ ├── piexif.js │ │ │ ├── piexif.min.js │ │ │ ├── purify.js │ │ │ ├── purify.min.js │ │ │ ├── sortable.js │ │ │ └── sortable.min.js │ │ ├── bootstrap-switch │ │ └── dist │ │ │ ├── css │ │ │ └── bootstrap3 │ │ │ │ └── bootstrap-switch.min.css │ │ │ └── js │ │ │ └── bootstrap-switch.min.js │ │ ├── bootstrap3-editable │ │ ├── css │ │ │ └── bootstrap-editable.css │ │ ├── img │ │ │ ├── clear.png │ │ │ └── loading.gif │ │ └── js │ │ │ └── bootstrap-editable.min.js │ │ ├── eonasdan-bootstrap-datetimepicker │ │ └── build │ │ │ ├── css │ │ │ └── bootstrap-datetimepicker.min.css │ │ │ └── js │ │ │ └── bootstrap-datetimepicker.min.js │ │ ├── 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 │ │ ├── fontawesome-iconpicker │ │ └── dist │ │ │ ├── css │ │ │ └── fontawesome-iconpicker.min.css │ │ │ └── js │ │ │ └── fontawesome-iconpicker.min.js │ │ ├── google-fonts │ │ ├── fonts.css │ │ └── fonts │ │ │ ├── Source-Sans-Pro-Bold.ttf │ │ │ ├── Source-Sans-Pro-Bold.woff │ │ │ ├── Source-Sans-Pro-Bold.woff2 │ │ │ ├── Source-Sans-Pro-Italic.ttf │ │ │ ├── Source-Sans-Pro-Italic.woff │ │ │ ├── Source-Sans-Pro-Italic.woff2 │ │ │ ├── Source-Sans-Pro-Light-Italic.ttf │ │ │ ├── Source-Sans-Pro-Light-Italic.woff │ │ │ ├── Source-Sans-Pro-Light-Italic.woff2 │ │ │ ├── Source-Sans-Pro-Light.ttf │ │ │ ├── Source-Sans-Pro-Light.woff │ │ │ ├── Source-Sans-Pro-Light.woff2 │ │ │ ├── Source-Sans-Pro-Semibold-Italic.ttf │ │ │ ├── Source-Sans-Pro-Semibold-Italic.woff │ │ │ ├── Source-Sans-Pro-Semibold-Italic.woff2 │ │ │ ├── Source-Sans-Pro-Semibold.ttf │ │ │ ├── Source-Sans-Pro-Semibold.woff │ │ │ ├── Source-Sans-Pro-Semibold.woff2 │ │ │ ├── Source-Sans-Pro.eot │ │ │ ├── Source-Sans-Pro.svg │ │ │ ├── Source-Sans-Pro.ttf │ │ │ ├── Source-Sans-Pro.woff │ │ │ └── Source-Sans-Pro.woff2 │ │ ├── jquery-pjax │ │ └── jquery.pjax.js │ │ ├── laravel-admin │ │ ├── laravel-admin.css │ │ └── laravel-admin.js │ │ ├── moment │ │ └── min │ │ │ └── moment-with-locales.min.js │ │ ├── nestable │ │ ├── jquery.nestable.js │ │ └── nestable.css │ │ ├── nprogress │ │ ├── nprogress.css │ │ └── nprogress.js │ │ ├── number-input │ │ └── bootstrap-number-input.js │ │ ├── sweetalert2 │ │ └── dist │ │ │ ├── sweetalert2.css │ │ │ └── sweetalert2.min.js │ │ └── toastr │ │ └── build │ │ ├── toastr.min.css │ │ └── toastr.min.js ├── web.config └── 按时间切换.tar.gz ├── resources ├── assets │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ └── components │ │ │ └── ExampleComponent.vue │ ├── sass │ │ └── app.scss │ └── web-stack │ │ ├── css │ │ ├── bootstrap.css │ │ ├── fonts │ │ │ ├── elusive │ │ │ │ ├── css │ │ │ │ │ ├── animation.css │ │ │ │ │ ├── elusive-codes.css │ │ │ │ │ ├── elusive-embedded.css │ │ │ │ │ ├── elusive-ie7-codes.css │ │ │ │ │ ├── elusive-ie7.css │ │ │ │ │ └── elusive.css │ │ │ │ └── font │ │ │ │ │ ├── elusive.eot │ │ │ │ │ ├── elusive.svg │ │ │ │ │ ├── elusive.ttf │ │ │ │ │ └── elusive.woff │ │ │ ├── fontawesome │ │ │ │ ├── css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ └── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── glyphicons │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── linecons │ │ │ │ ├── css │ │ │ │ │ ├── animation.css │ │ │ │ │ ├── linecons-codes.css │ │ │ │ │ ├── linecons-embedded.css │ │ │ │ │ ├── linecons-ie7-codes.css │ │ │ │ │ ├── linecons-ie7.css │ │ │ │ │ └── linecons.css │ │ │ │ └── font │ │ │ │ │ ├── linecons.eot │ │ │ │ │ ├── linecons.svg │ │ │ │ │ ├── linecons.ttf │ │ │ │ │ └── linecons.woff │ │ │ └── meteocons │ │ │ │ ├── css │ │ │ │ ├── animation.css │ │ │ │ ├── meteocons-codes.css │ │ │ │ ├── meteocons-embedded.css │ │ │ │ ├── meteocons-ie7-codes.css │ │ │ │ ├── meteocons-ie7.css │ │ │ │ └── meteocons.css │ │ │ │ └── font │ │ │ │ ├── meteocons.eot │ │ │ │ ├── meteocons.svg │ │ │ │ ├── meteocons.ttf │ │ │ │ └── meteocons.woff │ │ ├── nav.css │ │ ├── xenon-components.css │ │ ├── xenon-core.css │ │ ├── xenon-forms.css │ │ ├── xenon-skins.css │ │ └── xenon.css │ │ ├── images │ │ ├── favicon.png │ │ ├── flags │ │ │ ├── flag-cn.png │ │ │ └── flag-us.png │ │ ├── logo@2x.png │ │ ├── logo_dark@2x.png │ │ ├── preview.gif │ │ ├── webstack_banner_cn.png │ │ └── webstack_icon_producthunt.png │ │ └── js │ │ ├── TweenMax.min.js │ │ ├── bootstrap.min.js │ │ ├── joinable.js │ │ ├── jquery-1.11.1.min.js │ │ ├── resizeable.js │ │ ├── xenon-api.js │ │ ├── xenon-custom.js │ │ └── xenon-toggles.js ├── lang │ ├── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── id │ │ └── admin.php │ ├── ms │ │ └── admin.php │ ├── uk │ │ └── admin.php │ └── zh-CN │ │ ├── admin.php │ │ ├── auth.php │ │ └── validation.php ├── views.tar.gz └── views │ ├── about.blade.php │ ├── admin │ └── home.blade.php │ ├── index.blade.php │ ├── layouts │ ├── content.blade.php │ ├── footer.blade.php │ ├── header.blade.php │ └── sidebar.blade.php │ └── 按时间切换.tar.gz ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── sites.PNG ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── vendor ├── autoload.php ├── barryvdh │ └── laravel-debugbar │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── changelog.md │ │ ├── composer.json │ │ ├── config │ │ └── debugbar.php │ │ ├── readme.md │ │ └── src │ │ ├── Console │ │ └── ClearCommand.php │ │ ├── Controllers │ │ ├── AssetController.php │ │ ├── BaseController.php │ │ ├── CacheController.php │ │ ├── OpenHandlerController.php │ │ └── TelescopeController.php │ │ ├── DataCollector │ │ ├── CacheCollector.php │ │ ├── EventCollector.php │ │ ├── FilesCollector.php │ │ ├── GateCollector.php │ │ ├── LaravelCollector.php │ │ ├── LogsCollector.php │ │ ├── ModelsCollector.php │ │ ├── MultiAuthCollector.php │ │ ├── QueryCollector.php │ │ ├── RequestCollector.php │ │ ├── RouteCollector.php │ │ ├── SessionCollector.php │ │ └── ViewCollector.php │ │ ├── DataFormatter │ │ ├── QueryFormatter.php │ │ └── SimpleFormatter.php │ │ ├── Facade.php │ │ ├── JavascriptRenderer.php │ │ ├── LaravelDebugbar.php │ │ ├── LumenServiceProvider.php │ │ ├── Middleware │ │ ├── DebugbarEnabled.php │ │ └── InjectDebugbar.php │ │ ├── Resources │ │ ├── cache │ │ │ └── widget.js │ │ ├── laravel-debugbar.css │ │ ├── sqlqueries │ │ │ └── widget.js │ │ └── vendor │ │ │ └── font-awesome │ │ │ ├── generator_config.txt │ │ │ └── style.css │ │ ├── ServiceProvider.php │ │ ├── Storage │ │ └── FilesystemStorage.php │ │ ├── Support │ │ └── Clockwork │ │ │ ├── ClockworkCollector.php │ │ │ └── Converter.php │ │ ├── SymfonyHttpDriver.php │ │ ├── Twig │ │ ├── Extension │ │ │ ├── Debug.php │ │ │ ├── Dump.php │ │ │ └── Stopwatch.php │ │ ├── Node │ │ │ └── StopwatchNode.php │ │ └── TokenParser │ │ │ └── StopwatchTokenParser.php │ │ ├── helpers.php │ │ └── migrations │ │ └── 2014_12_01_120000_create_phpdebugbar_storage_table.php ├── bin │ ├── doctrine-dbal │ ├── php-parse │ ├── phpunit │ └── psysh ├── caouecs │ └── laravel-lang │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── Source.md │ │ ├── changelog.php │ │ ├── composer.json │ │ ├── json │ │ ├── ar.json │ │ ├── cs.json │ │ ├── de.json │ │ ├── el.json │ │ ├── es.json │ │ ├── fi.json │ │ ├── fr.json │ │ ├── hr.json │ │ ├── id.json │ │ ├── it.json │ │ ├── ka.json │ │ ├── ko.json │ │ ├── ms.json │ │ ├── nl.json │ │ ├── pl.json │ │ ├── pt-BR.json │ │ ├── ru.json │ │ ├── sr.json │ │ ├── th.json │ │ ├── uk.json │ │ ├── vi.json │ │ ├── zh-CN.json │ │ ├── zh-HK.json │ │ └── zh-TW.json │ │ ├── script │ │ ├── en │ │ │ ├── auth.php │ │ │ ├── en.json │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ └── todo.php │ │ ├── src │ │ ├── ar │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── az │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── be │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── bg │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── bn │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── bs │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── ca │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── cs │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── cy │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── da │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── de-CH │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── de │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── el │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── es │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── et │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── eu │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── fa │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── fi │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── fr │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── gl │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── he │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── hi │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── hr │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── hu │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── id │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── is │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── it │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── ja │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── ka │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── kk │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── km │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── ko │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── lt │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── lv │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── me │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── mk │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── mn │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── ms │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── nb │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── ne │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── nl │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── nn │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── pl │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── pt-BR │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── pt │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── ro │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── ru │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── sc │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── sk │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── sl │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── sq │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── sr │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── sv │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── sw │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── tg │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── th │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── tk │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── tl │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── tr │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── ug │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── uk │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── ur │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── uz-cyrillic │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── uz-latin │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── vi │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── zh-CN │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ ├── zh-HK │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ └── zh-TW │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ │ └── todo.md ├── 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 │ ├── cache │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE.md │ │ ├── composer.json │ │ ├── docs │ │ │ └── en │ │ │ │ └── index.rst │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Cache │ │ │ ├── ApcCache.php │ │ │ ├── ApcuCache.php │ │ │ ├── ArrayCache.php │ │ │ ├── Cache.php │ │ │ ├── CacheProvider.php │ │ │ ├── ChainCache.php │ │ │ ├── ClearableCache.php │ │ │ ├── CouchbaseBucketCache.php │ │ │ ├── CouchbaseCache.php │ │ │ ├── ExtMongoDBCache.php │ │ │ ├── FileCache.php │ │ │ ├── FilesystemCache.php │ │ │ ├── FlushableCache.php │ │ │ ├── LegacyMongoDBCache.php │ │ │ ├── MemcacheCache.php │ │ │ ├── MemcachedCache.php │ │ │ ├── MongoDBCache.php │ │ │ ├── MultiDeleteCache.php │ │ │ ├── MultiGetCache.php │ │ │ ├── MultiOperationCache.php │ │ │ ├── MultiPutCache.php │ │ │ ├── PhpFileCache.php │ │ │ ├── PredisCache.php │ │ │ ├── RedisCache.php │ │ │ ├── RiakCache.php │ │ │ ├── SQLite3Cache.php │ │ │ ├── Version.php │ │ │ ├── VoidCache.php │ │ │ ├── WinCacheCache.php │ │ │ ├── XcacheCache.php │ │ │ └── ZendDataCache.php │ ├── dbal │ │ ├── .doctrine-project.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── UPGRADE.md │ │ ├── bin │ │ │ ├── doctrine-dbal │ │ │ └── doctrine-dbal.php │ │ ├── composer.json │ │ └── lib │ │ │ └── Doctrine │ │ │ └── DBAL │ │ │ ├── Cache │ │ │ ├── ArrayStatement.php │ │ │ ├── CacheException.php │ │ │ ├── QueryCacheProfile.php │ │ │ └── ResultCacheStatement.php │ │ │ ├── ColumnCase.php │ │ │ ├── Configuration.php │ │ │ ├── Connection.php │ │ │ ├── ConnectionException.php │ │ │ ├── Connections │ │ │ └── MasterSlaveConnection.php │ │ │ ├── DBALException.php │ │ │ ├── Driver.php │ │ │ ├── Driver │ │ │ ├── AbstractDB2Driver.php │ │ │ ├── AbstractDriverException.php │ │ │ ├── AbstractMySQLDriver.php │ │ │ ├── AbstractOracleDriver.php │ │ │ ├── AbstractOracleDriver │ │ │ │ └── EasyConnectString.php │ │ │ ├── AbstractPostgreSQLDriver.php │ │ │ ├── AbstractSQLAnywhereDriver.php │ │ │ ├── AbstractSQLServerDriver.php │ │ │ ├── AbstractSQLiteDriver.php │ │ │ ├── Connection.php │ │ │ ├── DriverException.php │ │ │ ├── DrizzlePDOMySql │ │ │ │ ├── Connection.php │ │ │ │ └── Driver.php │ │ │ ├── ExceptionConverterDriver.php │ │ │ ├── IBMDB2 │ │ │ │ ├── DB2Connection.php │ │ │ │ ├── DB2Driver.php │ │ │ │ ├── DB2Exception.php │ │ │ │ └── DB2Statement.php │ │ │ ├── Mysqli │ │ │ │ ├── Driver.php │ │ │ │ ├── MysqliConnection.php │ │ │ │ ├── MysqliException.php │ │ │ │ └── MysqliStatement.php │ │ │ ├── OCI8 │ │ │ │ ├── Driver.php │ │ │ │ ├── OCI8Connection.php │ │ │ │ ├── OCI8Exception.php │ │ │ │ └── OCI8Statement.php │ │ │ ├── PDOConnection.php │ │ │ ├── PDOException.php │ │ │ ├── PDOIbm │ │ │ │ └── Driver.php │ │ │ ├── PDOMySql │ │ │ │ └── Driver.php │ │ │ ├── PDOOracle │ │ │ │ └── Driver.php │ │ │ ├── PDOPgSql │ │ │ │ └── Driver.php │ │ │ ├── PDOSqlite │ │ │ │ └── Driver.php │ │ │ ├── PDOSqlsrv │ │ │ │ ├── Connection.php │ │ │ │ ├── Driver.php │ │ │ │ └── Statement.php │ │ │ ├── PDOStatement.php │ │ │ ├── PingableConnection.php │ │ │ ├── ResultStatement.php │ │ │ ├── SQLAnywhere │ │ │ │ ├── Driver.php │ │ │ │ ├── SQLAnywhereConnection.php │ │ │ │ ├── SQLAnywhereException.php │ │ │ │ └── SQLAnywhereStatement.php │ │ │ ├── SQLSrv │ │ │ │ ├── Driver.php │ │ │ │ ├── LastInsertId.php │ │ │ │ ├── SQLSrvConnection.php │ │ │ │ ├── SQLSrvException.php │ │ │ │ └── SQLSrvStatement.php │ │ │ ├── ServerInfoAwareConnection.php │ │ │ ├── Statement.php │ │ │ └── StatementIterator.php │ │ │ ├── DriverManager.php │ │ │ ├── Event │ │ │ ├── ConnectionEventArgs.php │ │ │ ├── Listeners │ │ │ │ ├── MysqlSessionInit.php │ │ │ │ ├── OracleSessionInit.php │ │ │ │ └── SQLSessionInit.php │ │ │ ├── SchemaAlterTableAddColumnEventArgs.php │ │ │ ├── SchemaAlterTableChangeColumnEventArgs.php │ │ │ ├── SchemaAlterTableEventArgs.php │ │ │ ├── SchemaAlterTableRemoveColumnEventArgs.php │ │ │ ├── SchemaAlterTableRenameColumnEventArgs.php │ │ │ ├── SchemaColumnDefinitionEventArgs.php │ │ │ ├── SchemaCreateTableColumnEventArgs.php │ │ │ ├── SchemaCreateTableEventArgs.php │ │ │ ├── SchemaDropTableEventArgs.php │ │ │ ├── SchemaEventArgs.php │ │ │ └── SchemaIndexDefinitionEventArgs.php │ │ │ ├── Events.php │ │ │ ├── Exception │ │ │ ├── ConnectionException.php │ │ │ ├── ConstraintViolationException.php │ │ │ ├── DatabaseObjectExistsException.php │ │ │ ├── DatabaseObjectNotFoundException.php │ │ │ ├── DeadlockException.php │ │ │ ├── DriverException.php │ │ │ ├── ForeignKeyConstraintViolationException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidFieldNameException.php │ │ │ ├── LockWaitTimeoutException.php │ │ │ ├── NonUniqueFieldNameException.php │ │ │ ├── NotNullConstraintViolationException.php │ │ │ ├── ReadOnlyException.php │ │ │ ├── RetryableException.php │ │ │ ├── ServerException.php │ │ │ ├── SyntaxErrorException.php │ │ │ ├── TableExistsException.php │ │ │ ├── TableNotFoundException.php │ │ │ └── UniqueConstraintViolationException.php │ │ │ ├── FetchMode.php │ │ │ ├── Id │ │ │ ├── TableGenerator.php │ │ │ └── TableGeneratorSchemaVisitor.php │ │ │ ├── LockMode.php │ │ │ ├── Logging │ │ │ ├── DebugStack.php │ │ │ ├── EchoSQLLogger.php │ │ │ ├── LoggerChain.php │ │ │ └── SQLLogger.php │ │ │ ├── ParameterType.php │ │ │ ├── Platforms │ │ │ ├── AbstractPlatform.php │ │ │ ├── DB2Platform.php │ │ │ ├── DateIntervalUnit.php │ │ │ ├── DrizzlePlatform.php │ │ │ ├── Keywords │ │ │ │ ├── DB2Keywords.php │ │ │ │ ├── DrizzleKeywords.php │ │ │ │ ├── KeywordList.php │ │ │ │ ├── MariaDb102Keywords.php │ │ │ │ ├── MsSQLKeywords.php │ │ │ │ ├── MySQL57Keywords.php │ │ │ │ ├── MySQL80Keywords.php │ │ │ │ ├── MySQLKeywords.php │ │ │ │ ├── OracleKeywords.php │ │ │ │ ├── PostgreSQL100Keywords.php │ │ │ │ ├── PostgreSQL91Keywords.php │ │ │ │ ├── PostgreSQL92Keywords.php │ │ │ │ ├── PostgreSQL94Keywords.php │ │ │ │ ├── PostgreSQLKeywords.php │ │ │ │ ├── ReservedKeywordsValidator.php │ │ │ │ ├── SQLAnywhere11Keywords.php │ │ │ │ ├── SQLAnywhere12Keywords.php │ │ │ │ ├── SQLAnywhere16Keywords.php │ │ │ │ ├── SQLAnywhereKeywords.php │ │ │ │ ├── SQLServer2005Keywords.php │ │ │ │ ├── SQLServer2008Keywords.php │ │ │ │ ├── SQLServer2012Keywords.php │ │ │ │ ├── SQLServerKeywords.php │ │ │ │ └── SQLiteKeywords.php │ │ │ ├── MariaDb1027Platform.php │ │ │ ├── MySQL57Platform.php │ │ │ ├── MySQL80Platform.php │ │ │ ├── MySqlPlatform.php │ │ │ ├── OraclePlatform.php │ │ │ ├── PostgreSQL100Platform.php │ │ │ ├── PostgreSQL91Platform.php │ │ │ ├── PostgreSQL92Platform.php │ │ │ ├── PostgreSQL94Platform.php │ │ │ ├── PostgreSqlPlatform.php │ │ │ ├── SQLAnywhere11Platform.php │ │ │ ├── SQLAnywhere12Platform.php │ │ │ ├── SQLAnywhere16Platform.php │ │ │ ├── SQLAnywherePlatform.php │ │ │ ├── SQLAzurePlatform.php │ │ │ ├── SQLServer2005Platform.php │ │ │ ├── SQLServer2008Platform.php │ │ │ ├── SQLServer2012Platform.php │ │ │ ├── SQLServerPlatform.php │ │ │ ├── SqlitePlatform.php │ │ │ └── TrimMode.php │ │ │ ├── Portability │ │ │ ├── Connection.php │ │ │ └── Statement.php │ │ │ ├── Query │ │ │ ├── Expression │ │ │ │ ├── CompositeExpression.php │ │ │ │ └── ExpressionBuilder.php │ │ │ ├── QueryBuilder.php │ │ │ └── QueryException.php │ │ │ ├── SQLParserUtils.php │ │ │ ├── SQLParserUtilsException.php │ │ │ ├── Schema │ │ │ ├── AbstractAsset.php │ │ │ ├── AbstractSchemaManager.php │ │ │ ├── Column.php │ │ │ ├── ColumnDiff.php │ │ │ ├── Comparator.php │ │ │ ├── Constraint.php │ │ │ ├── DB2SchemaManager.php │ │ │ ├── DrizzleSchemaManager.php │ │ │ ├── ForeignKeyConstraint.php │ │ │ ├── Identifier.php │ │ │ ├── Index.php │ │ │ ├── MySqlSchemaManager.php │ │ │ ├── OracleSchemaManager.php │ │ │ ├── PostgreSqlSchemaManager.php │ │ │ ├── SQLAnywhereSchemaManager.php │ │ │ ├── SQLServerSchemaManager.php │ │ │ ├── Schema.php │ │ │ ├── SchemaConfig.php │ │ │ ├── SchemaDiff.php │ │ │ ├── SchemaException.php │ │ │ ├── Sequence.php │ │ │ ├── SqliteSchemaManager.php │ │ │ ├── Synchronizer │ │ │ │ ├── AbstractSchemaSynchronizer.php │ │ │ │ ├── SchemaSynchronizer.php │ │ │ │ └── SingleDatabaseSynchronizer.php │ │ │ ├── Table.php │ │ │ ├── TableDiff.php │ │ │ ├── View.php │ │ │ └── Visitor │ │ │ │ ├── AbstractVisitor.php │ │ │ │ ├── CreateSchemaSqlCollector.php │ │ │ │ ├── DropSchemaSqlCollector.php │ │ │ │ ├── Graphviz.php │ │ │ │ ├── NamespaceVisitor.php │ │ │ │ ├── RemoveNamespacedAssets.php │ │ │ │ ├── SchemaDiffVisitor.php │ │ │ │ └── Visitor.php │ │ │ ├── Sharding │ │ │ ├── PoolingShardConnection.php │ │ │ ├── PoolingShardManager.php │ │ │ ├── SQLAzure │ │ │ │ ├── SQLAzureFederationsSynchronizer.php │ │ │ │ ├── SQLAzureShardManager.php │ │ │ │ └── Schema │ │ │ │ │ └── MultiTenantVisitor.php │ │ │ ├── ShardChoser │ │ │ │ ├── MultiTenantShardChoser.php │ │ │ │ └── ShardChoser.php │ │ │ ├── ShardManager.php │ │ │ └── ShardingException.php │ │ │ ├── Statement.php │ │ │ ├── Tools │ │ │ ├── Console │ │ │ │ ├── Command │ │ │ │ │ ├── ImportCommand.php │ │ │ │ │ ├── ReservedWordsCommand.php │ │ │ │ │ └── RunSqlCommand.php │ │ │ │ ├── ConsoleRunner.php │ │ │ │ └── Helper │ │ │ │ │ └── ConnectionHelper.php │ │ │ └── Dumper.php │ │ │ ├── TransactionIsolationLevel.php │ │ │ ├── Types │ │ │ ├── ArrayType.php │ │ │ ├── BigIntType.php │ │ │ ├── BinaryType.php │ │ │ ├── BlobType.php │ │ │ ├── BooleanType.php │ │ │ ├── ConversionException.php │ │ │ ├── DateImmutableType.php │ │ │ ├── DateIntervalType.php │ │ │ ├── DateTimeImmutableType.php │ │ │ ├── DateTimeType.php │ │ │ ├── DateTimeTzImmutableType.php │ │ │ ├── DateTimeTzType.php │ │ │ ├── DateType.php │ │ │ ├── DecimalType.php │ │ │ ├── FloatType.php │ │ │ ├── GuidType.php │ │ │ ├── IntegerType.php │ │ │ ├── JsonArrayType.php │ │ │ ├── JsonType.php │ │ │ ├── ObjectType.php │ │ │ ├── PhpDateTimeMappingType.php │ │ │ ├── PhpIntegerMappingType.php │ │ │ ├── SimpleArrayType.php │ │ │ ├── SmallIntType.php │ │ │ ├── StringType.php │ │ │ ├── TextType.php │ │ │ ├── TimeImmutableType.php │ │ │ ├── TimeType.php │ │ │ ├── Type.php │ │ │ ├── VarDateTimeImmutableType.php │ │ │ └── VarDateTimeType.php │ │ │ ├── Version.php │ │ │ └── VersionAwarePlatformDriver.php │ ├── event-manager │ │ ├── .scrutinizer.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── docs │ │ │ └── en │ │ │ │ ├── index.rst │ │ │ │ ├── reference │ │ │ │ └── index.rst │ │ │ │ └── sidebar.rst │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Common │ │ │ ├── EventArgs.php │ │ │ ├── EventManager.php │ │ │ └── EventSubscriber.php │ ├── inflector │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── lib │ │ │ └── Doctrine │ │ │ └── Common │ │ │ └── Inflector │ │ │ └── Inflector.php │ ├── instantiator │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Doctrine │ │ │ └── Instantiator │ │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── UnexpectedValueException.php │ │ │ ├── Instantiator.php │ │ │ └── InstantiatorInterface.php │ └── lexer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── lib │ │ └── Doctrine │ │ └── Common │ │ └── Lexer │ │ └── AbstractLexer.php ├── egulias │ └── email-validator │ │ ├── EmailValidator │ │ ├── EmailLexer.php │ │ ├── EmailParser.php │ │ ├── EmailValidator.php │ │ ├── Exception │ │ │ ├── AtextAfterCFWS.php │ │ │ ├── CRLFAtTheEnd.php │ │ │ ├── CRLFX2.php │ │ │ ├── CRNoLF.php │ │ │ ├── CharNotAllowed.php │ │ │ ├── CommaInDomain.php │ │ │ ├── ConsecutiveAt.php │ │ │ ├── ConsecutiveDot.php │ │ │ ├── DomainHyphened.php │ │ │ ├── DotAtEnd.php │ │ │ ├── DotAtStart.php │ │ │ ├── ExpectingAT.php │ │ │ ├── ExpectingATEXT.php │ │ │ ├── ExpectingCTEXT.php │ │ │ ├── ExpectingDTEXT.php │ │ │ ├── ExpectingDomainLiteralClose.php │ │ │ ├── ExpectingQPair.php │ │ │ ├── InvalidEmail.php │ │ │ ├── NoDNSRecord.php │ │ │ ├── NoDomainPart.php │ │ │ ├── NoLocalPart.php │ │ │ ├── UnclosedComment.php │ │ │ ├── UnclosedQuotedString.php │ │ │ └── UnopenedComment.php │ │ ├── Parser │ │ │ ├── DomainPart.php │ │ │ ├── LocalPart.php │ │ │ └── Parser.php │ │ ├── Validation │ │ │ ├── DNSCheckValidation.php │ │ │ ├── EmailValidation.php │ │ │ ├── Error │ │ │ │ ├── RFCWarnings.php │ │ │ │ └── SpoofEmail.php │ │ │ ├── Exception │ │ │ │ └── EmptyValidationList.php │ │ │ ├── MultipleErrors.php │ │ │ ├── MultipleValidationWithAnd.php │ │ │ ├── NoRFCWarningsValidation.php │ │ │ ├── RFCValidation.php │ │ │ └── SpoofCheckValidation.php │ │ └── Warning │ │ │ ├── AddressLiteral.php │ │ │ ├── CFWSNearAt.php │ │ │ ├── CFWSWithFWS.php │ │ │ ├── Comment.php │ │ │ ├── DeprecatedComment.php │ │ │ ├── DomainLiteral.php │ │ │ ├── DomainTooLong.php │ │ │ ├── EmailTooLong.php │ │ │ ├── IPV6BadChar.php │ │ │ ├── IPV6ColonEnd.php │ │ │ ├── IPV6ColonStart.php │ │ │ ├── IPV6Deprecated.php │ │ │ ├── IPV6DoubleColon.php │ │ │ ├── IPV6GroupCount.php │ │ │ ├── IPV6MaxGroups.php │ │ │ ├── LabelTooLong.php │ │ │ ├── LocalTooLong.php │ │ │ ├── NoDNSMXRecord.php │ │ │ ├── ObsoleteDTEXT.php │ │ │ ├── QuotedPart.php │ │ │ ├── QuotedString.php │ │ │ ├── TLD.php │ │ │ └── Warning.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── phpunit.xml.dist ├── encore │ └── laravel-admin │ │ ├── .github │ │ └── stale.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── FUNDING.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ └── admin.php │ │ ├── database │ │ └── migrations │ │ │ └── 2016_01_04_173148_create_admin_tables.php │ │ ├── docs │ │ ├── en │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── _sidebar.md │ │ │ ├── change-log.md │ │ │ ├── content-layout.md │ │ │ ├── custom-authentication.md │ │ │ ├── custom-chart.md │ │ │ ├── custom-navbar.md │ │ │ ├── extension-api-tester.md │ │ │ ├── extension-config.md │ │ │ ├── extension-helpers.md │ │ │ ├── extension-media-manager.md │ │ │ ├── extension-scheduling.md │ │ │ ├── installation.md │ │ │ ├── model-form-callback.md │ │ │ ├── model-form-field-management.md │ │ │ ├── model-form-fields.md │ │ │ ├── model-form-upload.md │ │ │ ├── model-form-validation.md │ │ │ ├── model-form.md │ │ │ ├── model-grid-actions.md │ │ │ ├── model-grid-column.md │ │ │ ├── model-grid-custom-tools.md │ │ │ ├── model-grid-export.md │ │ │ ├── model-grid-filters.md │ │ │ ├── model-grid.md │ │ │ ├── model-tree.md │ │ │ ├── permission.md │ │ │ ├── quick-start.md │ │ │ ├── upgrade.md │ │ │ └── widgets.md │ │ ├── issue_template.md │ │ └── zh │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── _sidebar.md │ │ │ ├── change-log.md │ │ │ ├── content-layout.md │ │ │ ├── custom-authentication.md │ │ │ ├── custom-chart.md │ │ │ ├── custom-navbar.md │ │ │ ├── extension-api-tester.md │ │ │ ├── extension-config.md │ │ │ ├── extension-helpers.md │ │ │ ├── extension-media-manager.md │ │ │ ├── extension-scheduling.md │ │ │ ├── installation.md │ │ │ ├── model-form-callback.md │ │ │ ├── model-form-field-management.md │ │ │ ├── model-form-fields.md │ │ │ ├── model-form-upload.md │ │ │ ├── model-form-validation.md │ │ │ ├── model-form.md │ │ │ ├── model-grid-actions.md │ │ │ ├── model-grid-column.md │ │ │ ├── model-grid-custom-tools.md │ │ │ ├── model-grid-data.md │ │ │ ├── model-grid-export.md │ │ │ ├── model-grid-exporter.md │ │ │ ├── model-grid-filters.md │ │ │ ├── model-grid.md │ │ │ ├── model-tree.md │ │ │ ├── permission.md │ │ │ ├── qa.md │ │ │ ├── quick-start.md │ │ │ ├── upgrade.md │ │ │ └── widgets.md │ │ ├── phpunit.xml.dist │ │ ├── resources │ │ ├── assets │ │ │ ├── AdminLTE │ │ │ │ ├── bootstrap │ │ │ │ │ ├── css │ │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── js │ │ │ │ │ │ └── bootstrap.min.js │ │ │ │ ├── dist │ │ │ │ │ ├── css │ │ │ │ │ │ ├── AdminLTE.min.css │ │ │ │ │ │ └── skins │ │ │ │ │ │ │ ├── _all-skins.min.css │ │ │ │ │ │ │ ├── skin-black-light.min.css │ │ │ │ │ │ │ ├── skin-black.min.css │ │ │ │ │ │ │ ├── skin-blue-light.min.css │ │ │ │ │ │ │ ├── skin-blue.min.css │ │ │ │ │ │ │ ├── skin-green-light.min.css │ │ │ │ │ │ │ ├── skin-green.min.css │ │ │ │ │ │ │ ├── skin-purple-light.min.css │ │ │ │ │ │ │ ├── skin-purple.min.css │ │ │ │ │ │ │ ├── skin-red-light.min.css │ │ │ │ │ │ │ ├── skin-red.min.css │ │ │ │ │ │ │ ├── skin-yellow-light.min.css │ │ │ │ │ │ │ └── skin-yellow.min.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── boxed-bg.jpg │ │ │ │ │ │ ├── boxed-bg.png │ │ │ │ │ │ ├── default-50x50.gif │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ └── user2-160x160.jpg │ │ │ │ │ └── js │ │ │ │ │ │ └── app.min.js │ │ │ │ └── plugins │ │ │ │ │ ├── bootstrap-slider │ │ │ │ │ ├── bootstrap-slider.js │ │ │ │ │ └── slider.css │ │ │ │ │ ├── colorpicker │ │ │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ │ │ └── img │ │ │ │ │ │ ├── alpha-horizontal.png │ │ │ │ │ │ ├── alpha.png │ │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ │ ├── hue.png │ │ │ │ │ │ └── saturation.png │ │ │ │ │ ├── iCheck │ │ │ │ │ ├── all.css │ │ │ │ │ ├── flat │ │ │ │ │ │ ├── _all.css │ │ │ │ │ │ ├── aero.css │ │ │ │ │ │ ├── aero.png │ │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ │ ├── flat.css │ │ │ │ │ │ ├── flat.png │ │ │ │ │ │ ├── flat@2x.png │ │ │ │ │ │ ├── green.css │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── green@2x.png │ │ │ │ │ │ ├── grey.css │ │ │ │ │ │ ├── grey.png │ │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ │ ├── orange.css │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ │ ├── pink.css │ │ │ │ │ │ ├── pink.png │ │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ │ ├── purple.css │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ │ ├── red.css │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── red@2x.png │ │ │ │ │ │ ├── yellow.css │ │ │ │ │ │ ├── yellow.png │ │ │ │ │ │ └── yellow@2x.png │ │ │ │ │ ├── futurico │ │ │ │ │ │ ├── futurico.css │ │ │ │ │ │ ├── futurico.png │ │ │ │ │ │ └── futurico@2x.png │ │ │ │ │ ├── icheck.min.js │ │ │ │ │ ├── line │ │ │ │ │ │ ├── _all.css │ │ │ │ │ │ ├── aero.css │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ ├── green.css │ │ │ │ │ │ ├── grey.css │ │ │ │ │ │ ├── line.css │ │ │ │ │ │ ├── line.png │ │ │ │ │ │ ├── line@2x.png │ │ │ │ │ │ ├── orange.css │ │ │ │ │ │ ├── pink.css │ │ │ │ │ │ ├── purple.css │ │ │ │ │ │ ├── red.css │ │ │ │ │ │ └── yellow.css │ │ │ │ │ ├── minimal │ │ │ │ │ │ ├── _all.css │ │ │ │ │ │ ├── aero.css │ │ │ │ │ │ ├── aero.png │ │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ │ ├── green.css │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── green@2x.png │ │ │ │ │ │ ├── grey.css │ │ │ │ │ │ ├── grey.png │ │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ │ ├── minimal.css │ │ │ │ │ │ ├── minimal.png │ │ │ │ │ │ ├── minimal@2x.png │ │ │ │ │ │ ├── orange.css │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ │ ├── pink.css │ │ │ │ │ │ ├── pink.png │ │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ │ ├── purple.css │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ │ ├── red.css │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── red@2x.png │ │ │ │ │ │ ├── yellow.css │ │ │ │ │ │ ├── yellow.png │ │ │ │ │ │ └── yellow@2x.png │ │ │ │ │ ├── polaris │ │ │ │ │ │ ├── polaris.css │ │ │ │ │ │ ├── polaris.png │ │ │ │ │ │ └── polaris@2x.png │ │ │ │ │ └── square │ │ │ │ │ │ ├── _all.css │ │ │ │ │ │ ├── aero.css │ │ │ │ │ │ ├── aero.png │ │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ │ ├── blue.css │ │ │ │ │ │ ├── blue.png │ │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ │ ├── green.css │ │ │ │ │ │ ├── green.png │ │ │ │ │ │ ├── green@2x.png │ │ │ │ │ │ ├── grey.css │ │ │ │ │ │ ├── grey.png │ │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ │ ├── orange.css │ │ │ │ │ │ ├── orange.png │ │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ │ ├── pink.css │ │ │ │ │ │ ├── pink.png │ │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ │ ├── purple.css │ │ │ │ │ │ ├── purple.png │ │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ │ ├── red.css │ │ │ │ │ │ ├── red.png │ │ │ │ │ │ ├── red@2x.png │ │ │ │ │ │ ├── square.css │ │ │ │ │ │ ├── square.png │ │ │ │ │ │ ├── square@2x.png │ │ │ │ │ │ ├── yellow.css │ │ │ │ │ │ ├── yellow.png │ │ │ │ │ │ └── yellow@2x.png │ │ │ │ │ ├── input-mask │ │ │ │ │ ├── jquery.inputmask.bundle.min.js │ │ │ │ │ └── phone-codes │ │ │ │ │ │ ├── phone-be.json │ │ │ │ │ │ ├── phone-codes.json │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── ionslider │ │ │ │ │ ├── img │ │ │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ │ │ └── sprite-skin-nice.png │ │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ │ ├── ion.rangeSlider.min.js │ │ │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ │ │ └── ion.rangeSlider.skinNice.css │ │ │ │ │ ├── jQuery │ │ │ │ │ └── jQuery-2.1.4.min.js │ │ │ │ │ ├── select2 │ │ │ │ │ ├── i18n │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── select2.full.min.js │ │ │ │ │ └── select2.min.css │ │ │ │ │ └── slimScroll │ │ │ │ │ └── jquery.slimscroll.min.js │ │ │ ├── bootstrap-duallistbox │ │ │ │ └── dist │ │ │ │ │ ├── bootstrap-duallistbox.min.css │ │ │ │ │ └── jquery.bootstrap-duallistbox.min.js │ │ │ ├── bootstrap-fileinput │ │ │ │ ├── css │ │ │ │ │ └── fileinput.min.css │ │ │ │ ├── img │ │ │ │ │ ├── loading-sm.gif │ │ │ │ │ └── loading.gif │ │ │ │ └── js │ │ │ │ │ ├── fileinput.min.js │ │ │ │ │ └── plugins │ │ │ │ │ ├── canvas-to-blob.js │ │ │ │ │ ├── canvas-to-blob.min.js │ │ │ │ │ ├── piexif.js │ │ │ │ │ ├── piexif.min.js │ │ │ │ │ ├── purify.js │ │ │ │ │ ├── purify.min.js │ │ │ │ │ ├── sortable.js │ │ │ │ │ └── sortable.min.js │ │ │ ├── bootstrap-switch │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ └── bootstrap3 │ │ │ │ │ │ └── bootstrap-switch.min.css │ │ │ │ │ └── js │ │ │ │ │ └── bootstrap-switch.min.js │ │ │ ├── bootstrap3-editable │ │ │ │ ├── css │ │ │ │ │ └── bootstrap-editable.css │ │ │ │ ├── img │ │ │ │ │ ├── clear.png │ │ │ │ │ └── loading.gif │ │ │ │ └── js │ │ │ │ │ └── bootstrap-editable.min.js │ │ │ ├── eonasdan-bootstrap-datetimepicker │ │ │ │ └── build │ │ │ │ │ ├── css │ │ │ │ │ └── bootstrap-datetimepicker.min.css │ │ │ │ │ └── js │ │ │ │ │ └── bootstrap-datetimepicker.min.js │ │ │ ├── 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 │ │ │ ├── fontawesome-iconpicker │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ └── fontawesome-iconpicker.min.css │ │ │ │ │ └── js │ │ │ │ │ └── fontawesome-iconpicker.min.js │ │ │ ├── google-fonts │ │ │ │ ├── fonts.css │ │ │ │ └── fonts │ │ │ │ │ ├── Source-Sans-Pro-Bold.ttf │ │ │ │ │ ├── Source-Sans-Pro-Bold.woff │ │ │ │ │ ├── Source-Sans-Pro-Bold.woff2 │ │ │ │ │ ├── Source-Sans-Pro-Italic.ttf │ │ │ │ │ ├── Source-Sans-Pro-Italic.woff │ │ │ │ │ ├── Source-Sans-Pro-Italic.woff2 │ │ │ │ │ ├── Source-Sans-Pro-Light-Italic.ttf │ │ │ │ │ ├── Source-Sans-Pro-Light-Italic.woff │ │ │ │ │ ├── Source-Sans-Pro-Light-Italic.woff2 │ │ │ │ │ ├── Source-Sans-Pro-Light.ttf │ │ │ │ │ ├── Source-Sans-Pro-Light.woff │ │ │ │ │ ├── Source-Sans-Pro-Light.woff2 │ │ │ │ │ ├── Source-Sans-Pro-Semibold-Italic.ttf │ │ │ │ │ ├── Source-Sans-Pro-Semibold-Italic.woff │ │ │ │ │ ├── Source-Sans-Pro-Semibold-Italic.woff2 │ │ │ │ │ ├── Source-Sans-Pro-Semibold.ttf │ │ │ │ │ ├── Source-Sans-Pro-Semibold.woff │ │ │ │ │ ├── Source-Sans-Pro-Semibold.woff2 │ │ │ │ │ ├── Source-Sans-Pro.eot │ │ │ │ │ ├── Source-Sans-Pro.svg │ │ │ │ │ ├── Source-Sans-Pro.ttf │ │ │ │ │ ├── Source-Sans-Pro.woff │ │ │ │ │ └── Source-Sans-Pro.woff2 │ │ │ ├── jquery-pjax │ │ │ │ └── jquery.pjax.js │ │ │ ├── laravel-admin │ │ │ │ ├── laravel-admin.css │ │ │ │ └── laravel-admin.js │ │ │ ├── moment │ │ │ │ └── min │ │ │ │ │ └── moment-with-locales.min.js │ │ │ ├── nestable │ │ │ │ ├── jquery.nestable.js │ │ │ │ └── nestable.css │ │ │ ├── nprogress │ │ │ │ ├── nprogress.css │ │ │ │ └── nprogress.js │ │ │ ├── number-input │ │ │ │ └── bootstrap-number-input.js │ │ │ ├── sweetalert2 │ │ │ │ └── dist │ │ │ │ │ ├── sweetalert2.css │ │ │ │ │ └── sweetalert2.min.js │ │ │ └── toastr │ │ │ │ └── build │ │ │ │ ├── toastr.min.css │ │ │ │ └── toastr.min.js │ │ ├── lang │ │ │ ├── ar │ │ │ │ └── admin.php │ │ │ ├── az │ │ │ │ └── admin.php │ │ │ ├── en │ │ │ │ └── admin.php │ │ │ ├── es │ │ │ │ └── admin.php │ │ │ ├── fa │ │ │ │ └── admin.php │ │ │ ├── fr │ │ │ │ └── admin.php │ │ │ ├── he │ │ │ │ └── admin.php │ │ │ ├── id │ │ │ │ └── admin.php │ │ │ ├── ja │ │ │ │ └── admin.php │ │ │ ├── ko │ │ │ │ └── admin.php │ │ │ ├── ms │ │ │ │ └── admin.php │ │ │ ├── nl │ │ │ │ └── admin.php │ │ │ ├── pl │ │ │ │ └── admin.php │ │ │ ├── pt-BR │ │ │ │ └── admin.php │ │ │ ├── pt │ │ │ │ └── admin.php │ │ │ ├── ru │ │ │ │ └── admin.php │ │ │ ├── tr │ │ │ │ └── admin.php │ │ │ ├── uk │ │ │ │ └── admin.php │ │ │ ├── ur │ │ │ │ └── admin.php │ │ │ ├── zh-CN │ │ │ │ └── admin.php │ │ │ └── zh-TW │ │ │ │ └── admin.php │ │ └── views │ │ │ ├── actions │ │ │ └── form │ │ │ │ ├── checkbox.blade.php │ │ │ │ ├── date.blade.php │ │ │ │ ├── file.blade.php │ │ │ │ ├── help-block.blade.php │ │ │ │ ├── hidden.blade.php │ │ │ │ ├── modal.blade.php │ │ │ │ ├── multipleselect.blade.php │ │ │ │ ├── radio.blade.php │ │ │ │ ├── select.blade.php │ │ │ │ ├── text.blade.php │ │ │ │ └── textarea.blade.php │ │ │ ├── content.blade.php │ │ │ ├── dashboard │ │ │ ├── dependencies.blade.php │ │ │ ├── environment.blade.php │ │ │ ├── extensions.blade.php │ │ │ └── title.blade.php │ │ │ ├── filter │ │ │ ├── between.blade.php │ │ │ ├── betweenDatetime.blade.php │ │ │ ├── button.blade.php │ │ │ ├── checkbox.blade.php │ │ │ ├── container.blade.php │ │ │ ├── datetime.blade.php │ │ │ ├── gt.blade.php │ │ │ ├── lt.blade.php │ │ │ ├── modal.blade.php │ │ │ ├── multipleselect.blade.php │ │ │ ├── radio.blade.php │ │ │ ├── select.blade.php │ │ │ ├── text.blade.php │ │ │ └── where.blade.php │ │ │ ├── form.blade.php │ │ │ ├── form │ │ │ ├── button.blade.php │ │ │ ├── captcha.blade.php │ │ │ ├── checkbox.blade.php │ │ │ ├── daterange.blade.php │ │ │ ├── datetimerange.blade.php │ │ │ ├── display.blade.php │ │ │ ├── editor.blade.php │ │ │ ├── embeds.blade.php │ │ │ ├── error.blade.php │ │ │ ├── file.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── hasmany.blade.php │ │ │ ├── hasmanytab.blade.php │ │ │ ├── hasmanytable.blade.php │ │ │ ├── help-block.blade.php │ │ │ ├── hidden.blade.php │ │ │ ├── id.blade.php │ │ │ ├── input.blade.php │ │ │ ├── keyvalue.blade.php │ │ │ ├── listbox.blade.php │ │ │ ├── listfield.blade.php │ │ │ ├── map.blade.php │ │ │ ├── multiplefile.blade.php │ │ │ ├── multipleselect.blade.php │ │ │ ├── radio.blade.php │ │ │ ├── rate.blade.php │ │ │ ├── row.blade.php │ │ │ ├── select.blade.php │ │ │ ├── slider.blade.php │ │ │ ├── switchfield.blade.php │ │ │ ├── tab.blade.php │ │ │ ├── tags.blade.php │ │ │ ├── textarea.blade.php │ │ │ └── timerange.blade.php │ │ │ ├── grid │ │ │ ├── batch-actions.blade.php │ │ │ ├── displayer │ │ │ │ └── table.blade.php │ │ │ ├── dropdown-actions.blade.php │ │ │ ├── empty-grid.blade.php │ │ │ ├── fixed-table.blade.php │ │ │ ├── image.blade.php │ │ │ ├── quick-create │ │ │ │ ├── date.blade.php │ │ │ │ ├── form.blade.php │ │ │ │ ├── multipleselect.blade.php │ │ │ │ ├── select.blade.php │ │ │ │ └── text.blade.php │ │ │ ├── quick-search.blade.php │ │ │ ├── selector.blade.php │ │ │ ├── table.blade.php │ │ │ └── total-row.blade.php │ │ │ ├── index.blade.php │ │ │ ├── login.blade.php │ │ │ ├── pagination.blade.php │ │ │ ├── partials │ │ │ ├── alerts.blade.php │ │ │ ├── css.blade.php │ │ │ ├── exception.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── html.blade.php │ │ │ ├── js.blade.php │ │ │ ├── menu.blade.php │ │ │ ├── script.blade.php │ │ │ ├── sidebar.blade.php │ │ │ ├── style.blade.php │ │ │ └── toastr.blade.php │ │ │ ├── show.blade.php │ │ │ ├── show │ │ │ ├── field.blade.php │ │ │ └── panel.blade.php │ │ │ ├── tree.blade.php │ │ │ ├── tree │ │ │ └── branch.blade.php │ │ │ └── widgets │ │ │ ├── alert.blade.php │ │ │ ├── box.blade.php │ │ │ ├── callout.blade.php │ │ │ ├── carousel.blade.php │ │ │ ├── collapse.blade.php │ │ │ ├── form.blade.php │ │ │ ├── info-box.blade.php │ │ │ ├── tab.blade.php │ │ │ └── table.blade.php │ │ ├── src │ │ ├── Actions │ │ │ ├── Action.php │ │ │ ├── Authorizable.php │ │ │ ├── BatchAction.php │ │ │ ├── GridAction.php │ │ │ ├── Interactor │ │ │ │ ├── Dialog.php │ │ │ │ ├── Form.php │ │ │ │ └── Interactor.php │ │ │ ├── Response.php │ │ │ ├── RowAction.php │ │ │ ├── SweatAlert2.php │ │ │ └── Toastr.php │ │ ├── Admin.php │ │ ├── AdminServiceProvider.php │ │ ├── Auth │ │ │ ├── Database │ │ │ │ ├── AdminTablesSeeder.php │ │ │ │ ├── Administrator.php │ │ │ │ ├── HasPermissions.php │ │ │ │ ├── Menu.php │ │ │ │ ├── OperationLog.php │ │ │ │ ├── Permission.php │ │ │ │ └── Role.php │ │ │ └── Permission.php │ │ ├── Console │ │ │ ├── ActionCommand.php │ │ │ ├── AdminCommand.php │ │ │ ├── CreateUserCommand.php │ │ │ ├── ExportSeedCommand.php │ │ │ ├── ExtendCommand.php │ │ │ ├── FormCommand.php │ │ │ ├── ImportCommand.php │ │ │ ├── InstallCommand.php │ │ │ ├── MakeCommand.php │ │ │ ├── MenuCommand.php │ │ │ ├── MinifyCommand.php │ │ │ ├── PermissionCommand.php │ │ │ ├── PublishCommand.php │ │ │ ├── ResetPasswordCommand.php │ │ │ ├── ResourceGenerator.php │ │ │ ├── UninstallCommand.php │ │ │ └── stubs │ │ │ │ ├── AdminTablesSeeder.stub │ │ │ │ ├── AuthController.stub │ │ │ │ ├── ExampleController.stub │ │ │ │ ├── HomeController.stub │ │ │ │ ├── action.stub │ │ │ │ ├── blank.stub │ │ │ │ ├── bootstrap.stub │ │ │ │ ├── controller.stub │ │ │ │ ├── extension │ │ │ │ ├── .gitignore.stub │ │ │ │ ├── LICENSE.stub │ │ │ │ ├── README.md.stub │ │ │ │ ├── composer.json.stub │ │ │ │ ├── controller.stub │ │ │ │ ├── extension.stub │ │ │ │ ├── routes.stub │ │ │ │ ├── service-provider.stub │ │ │ │ └── view.stub │ │ │ │ ├── form.stub │ │ │ │ ├── grid-batch-action.stub │ │ │ │ ├── grid-row-action.stub │ │ │ │ ├── routes.stub │ │ │ │ └── step-form.stub │ │ ├── Controllers │ │ │ ├── AdminController.php │ │ │ ├── AuthController.php │ │ │ ├── Dashboard.php │ │ │ ├── HandleController.php │ │ │ ├── HasResourceActions.php │ │ │ ├── LogController.php │ │ │ ├── MenuController.php │ │ │ ├── ModelForm.php │ │ │ ├── PermissionController.php │ │ │ ├── RoleController.php │ │ │ └── UserController.php │ │ ├── Exception │ │ │ └── Handler.php │ │ ├── Extension.php │ │ ├── Facades │ │ │ └── Admin.php │ │ ├── Form.php │ │ ├── Form │ │ │ ├── Builder.php │ │ │ ├── EmbeddedForm.php │ │ │ ├── Field.php │ │ │ ├── Field │ │ │ │ ├── Button.php │ │ │ │ ├── Captcha.php │ │ │ │ ├── Checkbox.php │ │ │ │ ├── Color.php │ │ │ │ ├── Currency.php │ │ │ │ ├── Date.php │ │ │ │ ├── DateRange.php │ │ │ │ ├── Datetime.php │ │ │ │ ├── DatetimeRange.php │ │ │ │ ├── Decimal.php │ │ │ │ ├── Display.php │ │ │ │ ├── Divider.php │ │ │ │ ├── Editor.php │ │ │ │ ├── Email.php │ │ │ │ ├── Embeds.php │ │ │ │ ├── Fieldset.php │ │ │ │ ├── File.php │ │ │ │ ├── HasMany.php │ │ │ │ ├── Hidden.php │ │ │ │ ├── Html.php │ │ │ │ ├── Icon.php │ │ │ │ ├── Id.php │ │ │ │ ├── Image.php │ │ │ │ ├── ImageField.php │ │ │ │ ├── Ip.php │ │ │ │ ├── KeyValue.php │ │ │ │ ├── ListField.php │ │ │ │ ├── Listbox.php │ │ │ │ ├── Map.php │ │ │ │ ├── Mobile.php │ │ │ │ ├── Month.php │ │ │ │ ├── MultipleFile.php │ │ │ │ ├── MultipleImage.php │ │ │ │ ├── MultipleSelect.php │ │ │ │ ├── Nullable.php │ │ │ │ ├── Number.php │ │ │ │ ├── Password.php │ │ │ │ ├── PlainInput.php │ │ │ │ ├── Radio.php │ │ │ │ ├── Rate.php │ │ │ │ ├── Select.php │ │ │ │ ├── Slider.php │ │ │ │ ├── SwitchField.php │ │ │ │ ├── Table.php │ │ │ │ ├── Tags.php │ │ │ │ ├── Text.php │ │ │ │ ├── Textarea.php │ │ │ │ ├── Time.php │ │ │ │ ├── TimeRange.php │ │ │ │ ├── Timezone.php │ │ │ │ ├── UploadField.php │ │ │ │ ├── Url.php │ │ │ │ └── Year.php │ │ │ ├── Footer.php │ │ │ ├── HasHooks.php │ │ │ ├── Layout │ │ │ │ ├── Column.php │ │ │ │ └── Layout.php │ │ │ ├── NestedForm.php │ │ │ ├── Row.php │ │ │ ├── Tab.php │ │ │ └── Tools.php │ │ ├── Grid.php │ │ ├── Grid │ │ │ ├── Actions │ │ │ │ ├── Delete.php │ │ │ │ ├── Edit.php │ │ │ │ └── Show.php │ │ │ ├── Column.php │ │ │ ├── Column │ │ │ │ ├── CheckFilter.php │ │ │ │ ├── Filter.php │ │ │ │ ├── HasHeader.php │ │ │ │ ├── Help.php │ │ │ │ ├── InputFilter.php │ │ │ │ ├── RangeFilter.php │ │ │ │ └── Sorter.php │ │ │ ├── Concerns │ │ │ │ ├── CanFixColumns.php │ │ │ │ ├── CanHidesColumns.php │ │ │ │ ├── HasActions.php │ │ │ │ ├── HasElementNames.php │ │ │ │ ├── HasFilter.php │ │ │ │ ├── HasFooter.php │ │ │ │ ├── HasHeader.php │ │ │ │ ├── HasHotKeys.php │ │ │ │ ├── HasQuickCreate.php │ │ │ │ ├── HasQuickSearch.php │ │ │ │ ├── HasSelector.php │ │ │ │ ├── HasTools.php │ │ │ │ └── HasTotalRow.php │ │ │ ├── Displayers │ │ │ │ ├── AbstractDisplayer.php │ │ │ │ ├── Actions.php │ │ │ │ ├── Badge.php │ │ │ │ ├── Button.php │ │ │ │ ├── Carousel.php │ │ │ │ ├── Checkbox.php │ │ │ │ ├── ContextMenuActions.php │ │ │ │ ├── Copyable.php │ │ │ │ ├── Downloadable.php │ │ │ │ ├── DropdownActions.php │ │ │ │ ├── Editable.php │ │ │ │ ├── Expand.php │ │ │ │ ├── Image.php │ │ │ │ ├── Label.php │ │ │ │ ├── Link.php │ │ │ │ ├── Modal.php │ │ │ │ ├── Orderable.php │ │ │ │ ├── Prefix.php │ │ │ │ ├── ProgressBar.php │ │ │ │ ├── QRCode.php │ │ │ │ ├── Radio.php │ │ │ │ ├── RowSelector.php │ │ │ │ ├── Secret.php │ │ │ │ ├── Select.php │ │ │ │ ├── Suffix.php │ │ │ │ ├── SwitchDisplay.php │ │ │ │ ├── SwitchGroup.php │ │ │ │ └── Table.php │ │ │ ├── Exporter.php │ │ │ ├── Exporters │ │ │ │ ├── AbstractExporter.php │ │ │ │ ├── CsvExporter.php │ │ │ │ ├── ExcelExporter.php │ │ │ │ └── ExporterInterface.php │ │ │ ├── Filter.php │ │ │ ├── Filter │ │ │ │ ├── AbstractFilter.php │ │ │ │ ├── Between.php │ │ │ │ ├── Date.php │ │ │ │ ├── Day.php │ │ │ │ ├── EndsWith.php │ │ │ │ ├── Equal.php │ │ │ │ ├── Group.php │ │ │ │ ├── Gt.php │ │ │ │ ├── Hidden.php │ │ │ │ ├── Ilike.php │ │ │ │ ├── In.php │ │ │ │ ├── Layout │ │ │ │ │ ├── Column.php │ │ │ │ │ └── Layout.php │ │ │ │ ├── Like.php │ │ │ │ ├── Lt.php │ │ │ │ ├── Month.php │ │ │ │ ├── NotEqual.php │ │ │ │ ├── NotIn.php │ │ │ │ ├── Presenter │ │ │ │ │ ├── Checkbox.php │ │ │ │ │ ├── DateTime.php │ │ │ │ │ ├── MultipleSelect.php │ │ │ │ │ ├── Presenter.php │ │ │ │ │ ├── Radio.php │ │ │ │ │ ├── Select.php │ │ │ │ │ └── Text.php │ │ │ │ ├── Scope.php │ │ │ │ ├── StartsWith.php │ │ │ │ ├── Where.php │ │ │ │ └── Year.php │ │ │ ├── Model.php │ │ │ ├── Row.php │ │ │ ├── Tools.php │ │ │ └── Tools │ │ │ │ ├── AbstractTool.php │ │ │ │ ├── BatchAction.php │ │ │ │ ├── BatchActions.php │ │ │ │ ├── BatchDelete.php │ │ │ │ ├── ColumnSelector.php │ │ │ │ ├── CreateButton.php │ │ │ │ ├── ExportButton.php │ │ │ │ ├── FilterButton.php │ │ │ │ ├── FixColumns.php │ │ │ │ ├── Footer.php │ │ │ │ ├── Header.php │ │ │ │ ├── Paginator.php │ │ │ │ ├── PerPageSelector.php │ │ │ │ ├── QuickCreate.php │ │ │ │ ├── QuickSearch.php │ │ │ │ ├── Selector.php │ │ │ │ └── TotalRow.php │ │ ├── Layout │ │ │ ├── Buildable.php │ │ │ ├── Column.php │ │ │ ├── Content.php │ │ │ └── Row.php │ │ ├── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── Bootstrap.php │ │ │ ├── LogOperation.php │ │ │ ├── Permission.php │ │ │ ├── Pjax.php │ │ │ └── Session.php │ │ ├── Show.php │ │ ├── Show │ │ │ ├── AbstractField.php │ │ │ ├── Divider.php │ │ │ ├── Field.php │ │ │ ├── Panel.php │ │ │ ├── Relation.php │ │ │ └── Tools.php │ │ ├── Traits │ │ │ ├── AdminBuilder.php │ │ │ ├── HasAssets.php │ │ │ ├── ModelTree.php │ │ │ ├── Resizable.php │ │ │ └── ShouldSnakeAttributes.php │ │ ├── Tree.php │ │ ├── Tree │ │ │ └── Tools.php │ │ ├── Widgets │ │ │ ├── Alert.php │ │ │ ├── Box.php │ │ │ ├── Callout.php │ │ │ ├── Carousel.php │ │ │ ├── Collapse.php │ │ │ ├── ContainsForms.php │ │ │ ├── Form.php │ │ │ ├── InfoBox.php │ │ │ ├── MultipleSteps.php │ │ │ ├── Navbar.php │ │ │ ├── Navbar │ │ │ │ ├── Fullscreen.php │ │ │ │ └── RefreshButton.php │ │ │ ├── StepForm.php │ │ │ ├── Tab.php │ │ │ ├── Table.php │ │ │ └── Widget.php │ │ └── helpers.php │ │ └── tests │ │ ├── AuthTest.php │ │ ├── FileUploadTest.php │ │ ├── ImageUploadTest.php │ │ ├── IndexTest.php │ │ ├── InstallTest.php │ │ ├── LaravelTest.php │ │ ├── MenuTest.php │ │ ├── ModelTreeTest.php │ │ ├── OperationLogTest.php │ │ ├── PermissionsTest.php │ │ ├── RolesTest.php │ │ ├── TestCase.php │ │ ├── UserFormTest.php │ │ ├── UserGridTest.php │ │ ├── UserSettingTest.php │ │ ├── UsersTest.php │ │ ├── assets │ │ └── test.jpg │ │ ├── config │ │ ├── admin.php │ │ └── filesystems.php │ │ ├── controllers │ │ ├── FileController.php │ │ ├── ImageController.php │ │ ├── MultipleImageController.php │ │ └── UserController.php │ │ ├── migrations │ │ └── 2016_11_22_093148_create_test_tables.php │ │ ├── models │ │ ├── File.php │ │ ├── Image.php │ │ ├── MultipleImage.php │ │ ├── Profile.php │ │ ├── Tag.php │ │ ├── Tree.php │ │ └── User.php │ │ ├── routes.php │ │ └── seeds │ │ ├── UserTableSeeder.php │ │ └── factory.php ├── erusev │ └── parsedown │ │ ├── LICENSE.txt │ │ ├── Parsedown.php │ │ ├── README.md │ │ └── composer.json ├── fideloper │ └── proxy │ │ ├── LICENSE.md │ │ ├── composer.json │ │ ├── config │ │ └── trustedproxy.php │ │ └── src │ │ ├── TrustProxies.php │ │ └── TrustedProxyServiceProvider.php ├── filp │ └── whoops │ │ ├── LICENSE.md │ │ ├── composer.json │ │ └── src │ │ └── Whoops │ │ ├── Exception │ │ ├── ErrorException.php │ │ ├── Formatter.php │ │ ├── Frame.php │ │ ├── FrameCollection.php │ │ └── Inspector.php │ │ ├── Handler │ │ ├── CallbackHandler.php │ │ ├── Handler.php │ │ ├── HandlerInterface.php │ │ ├── JsonResponseHandler.php │ │ ├── PlainTextHandler.php │ │ ├── PrettyPageHandler.php │ │ └── XmlResponseHandler.php │ │ ├── Resources │ │ ├── css │ │ │ └── whoops.base.css │ │ ├── js │ │ │ ├── clipboard.min.js │ │ │ ├── prettify.min.js │ │ │ ├── whoops.base.js │ │ │ └── zepto.min.js │ │ └── views │ │ │ ├── env_details.html.php │ │ │ ├── frame_code.html.php │ │ │ ├── frame_list.html.php │ │ │ ├── frames_container.html.php │ │ │ ├── frames_description.html.php │ │ │ ├── header.html.php │ │ │ ├── header_outer.html.php │ │ │ ├── layout.html.php │ │ │ ├── panel_details.html.php │ │ │ ├── panel_details_outer.html.php │ │ │ ├── panel_left.html.php │ │ │ └── panel_left_outer.html.php │ │ ├── Run.php │ │ ├── RunInterface.php │ │ └── Util │ │ ├── HtmlDumperOutput.php │ │ ├── Misc.php │ │ ├── SystemFacade.php │ │ └── TemplateHelper.php ├── fzaninotto │ └── faker │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── readme.md │ │ ├── src │ │ ├── Faker │ │ │ ├── Calculator │ │ │ │ ├── Iban.php │ │ │ │ ├── Inn.php │ │ │ │ ├── Luhn.php │ │ │ │ └── TCNo.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 │ │ │ │ ├── HtmlLorem.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 │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.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_CY │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.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_HK │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_IN │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── en_NG │ │ │ │ │ ├── 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 │ │ │ │ │ └── Text.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 │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.php │ │ │ │ ├── fi_FI │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── fr_BE │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── fr_CA │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.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 │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── hr_HR │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Payment.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 │ │ │ │ │ ├── Company.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 │ │ │ │ │ ├── Payment.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 │ │ │ │ ├── ms_MY │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Miscellaneous.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── 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 │ │ │ │ │ └── Text.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 │ │ │ │ │ └── Text.php │ │ │ │ ├── ro_RO │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ ├── PhoneNumber.php │ │ │ │ │ └── Text.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 │ │ │ │ │ ├── Company.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 │ │ │ │ ├── th_TH │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── tr_TR │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── DateTime.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.php │ │ │ │ │ ├── Person.php │ │ │ │ │ └── PhoneNumber.php │ │ │ │ ├── uk_UA │ │ │ │ │ ├── Address.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Company.php │ │ │ │ │ ├── Internet.php │ │ │ │ │ ├── Payment.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 │ │ │ ├── InnTest.php │ │ │ ├── LuhnTest.php │ │ │ └── TCNoTest.php │ │ ├── DefaultGeneratorTest.php │ │ ├── GeneratorTest.php │ │ └── Provider │ │ │ ├── AddressTest.php │ │ │ ├── BarcodeTest.php │ │ │ ├── BaseTest.php │ │ │ ├── BiasedTest.php │ │ │ ├── ColorTest.php │ │ │ ├── CompanyTest.php │ │ │ ├── DateTimeTest.php │ │ │ ├── HtmlLoremTest.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 │ │ │ ├── el_GR │ │ │ └── TextTest.php │ │ │ ├── en_AU │ │ │ └── AddressTest.php │ │ │ ├── en_CA │ │ │ └── AddressTest.php │ │ │ ├── en_GB │ │ │ └── AddressTest.php │ │ │ ├── en_IN │ │ │ └── AddressTest.php │ │ │ ├── en_NG │ │ │ ├── AddressTest.php │ │ │ ├── InternetTest.php │ │ │ ├── PersonTest.php │ │ │ └── PhoneNumberTest.php │ │ │ ├── en_NZ │ │ │ └── PhoneNumberTest.php │ │ │ ├── en_PH │ │ │ └── AddressTest.php │ │ │ ├── en_SG │ │ │ ├── AddressTest.php │ │ │ └── PhoneNumberTest.php │ │ │ ├── en_UG │ │ │ └── AddressTest.php │ │ │ ├── en_US │ │ │ ├── CompanyTest.php │ │ │ ├── PaymentTest.php │ │ │ ├── PersonTest.php │ │ │ └── PhoneNumberTest.php │ │ │ ├── en_ZA │ │ │ ├── CompanyTest.php │ │ │ ├── InternetTest.php │ │ │ ├── PersonTest.php │ │ │ └── PhoneNumberTest.php │ │ │ ├── es_ES │ │ │ ├── PaymentTest.php │ │ │ ├── PersonTest.php │ │ │ └── TextTest.php │ │ │ ├── es_PE │ │ │ └── PersonTest.php │ │ │ ├── es_VE │ │ │ ├── CompanyTest.php │ │ │ └── PersonTest.php │ │ │ ├── fi_FI │ │ │ ├── InternetTest.php │ │ │ └── PersonTest.php │ │ │ ├── fr_BE │ │ │ └── PaymentTest.php │ │ │ ├── fr_CH │ │ │ ├── AddressTest.php │ │ │ ├── InternetTest.php │ │ │ └── PhoneNumberTest.php │ │ │ ├── fr_FR │ │ │ ├── AddressTest.php │ │ │ ├── CompanyTest.php │ │ │ ├── PaymentTest.php │ │ │ ├── PersonTest.php │ │ │ ├── PhoneNumberTest.php │ │ │ └── TextTest.php │ │ │ ├── id_ID │ │ │ └── PersonTest.php │ │ │ ├── it_CH │ │ │ ├── AddressTest.php │ │ │ ├── InternetTest.php │ │ │ └── PhoneNumberTest.php │ │ │ ├── it_IT │ │ │ ├── CompanyTest.php │ │ │ └── PersonTest.php │ │ │ ├── ja_JP │ │ │ ├── InternetTest.php │ │ │ ├── PersonTest.php │ │ │ └── PhoneNumberTest.php │ │ │ ├── ka_GE │ │ │ └── TextTest.php │ │ │ ├── kk_KZ │ │ │ ├── CompanyTest.php │ │ │ ├── PersonTest.php │ │ │ └── TextTest.php │ │ │ ├── ko_KR │ │ │ └── TextTest.php │ │ │ ├── mn_MN │ │ │ └── PersonTest.php │ │ │ ├── ms_MY │ │ │ └── PersonTest.php │ │ │ ├── nl_BE │ │ │ ├── PaymentTest.php │ │ │ └── PersonTest.php │ │ │ ├── nl_NL │ │ │ ├── CompanyTest.php │ │ │ └── PersonTest.php │ │ │ ├── pl_PL │ │ │ ├── AddressTest.php │ │ │ └── PersonTest.php │ │ │ ├── pt_BR │ │ │ ├── CompanyTest.php │ │ │ └── PersonTest.php │ │ │ ├── pt_PT │ │ │ ├── AddressTest.php │ │ │ ├── PersonTest.php │ │ │ └── PhoneNumberTest.php │ │ │ ├── ro_RO │ │ │ ├── PersonTest.php │ │ │ └── PhoneNumberTest.php │ │ │ ├── ru_RU │ │ │ ├── CompanyTest.php │ │ │ └── TextTest.php │ │ │ ├── sv_SE │ │ │ └── PersonTest.php │ │ │ ├── tr_TR │ │ │ ├── CompanyTest.php │ │ │ ├── PaymentTest.php │ │ │ ├── PersonTest.php │ │ │ └── PhoneNumberTest.php │ │ │ ├── uk_UA │ │ │ ├── AddressTest.php │ │ │ ├── PersonTest.php │ │ │ └── PhoneNumberTest.php │ │ │ └── zh_TW │ │ │ ├── CompanyTest.php │ │ │ ├── PersonTest.php │ │ │ └── TextTest.php │ │ ├── documentor.php │ │ └── test.php ├── guzzlehttp │ └── psr7 │ │ ├── .editorconfig │ │ ├── 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 │ │ ├── Rfc7230.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 │ │ ├── composer.lock │ │ ├── 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 ├── intervention │ └── image │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── provides.json │ │ └── src │ │ ├── Intervention │ │ └── Image │ │ │ ├── AbstractColor.php │ │ │ ├── AbstractDecoder.php │ │ │ ├── AbstractDriver.php │ │ │ ├── AbstractEncoder.php │ │ │ ├── AbstractFont.php │ │ │ ├── AbstractShape.php │ │ │ ├── Commands │ │ │ ├── AbstractCommand.php │ │ │ ├── Argument.php │ │ │ ├── ChecksumCommand.php │ │ │ ├── CircleCommand.php │ │ │ ├── EllipseCommand.php │ │ │ ├── ExifCommand.php │ │ │ ├── IptcCommand.php │ │ │ ├── LineCommand.php │ │ │ ├── OrientateCommand.php │ │ │ ├── PolygonCommand.php │ │ │ ├── PsrResponseCommand.php │ │ │ ├── RectangleCommand.php │ │ │ ├── ResponseCommand.php │ │ │ ├── StreamCommand.php │ │ │ └── TextCommand.php │ │ │ ├── Constraint.php │ │ │ ├── Exception │ │ │ ├── ImageException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── MissingDependencyException.php │ │ │ ├── NotFoundException.php │ │ │ ├── NotReadableException.php │ │ │ ├── NotSupportedException.php │ │ │ ├── NotWritableException.php │ │ │ └── RuntimeException.php │ │ │ ├── Facades │ │ │ └── Image.php │ │ │ ├── File.php │ │ │ ├── Filters │ │ │ ├── DemoFilter.php │ │ │ └── FilterInterface.php │ │ │ ├── Gd │ │ │ ├── Color.php │ │ │ ├── Commands │ │ │ │ ├── BackupCommand.php │ │ │ │ ├── BlurCommand.php │ │ │ │ ├── BrightnessCommand.php │ │ │ │ ├── ColorizeCommand.php │ │ │ │ ├── ContrastCommand.php │ │ │ │ ├── CropCommand.php │ │ │ │ ├── DestroyCommand.php │ │ │ │ ├── FillCommand.php │ │ │ │ ├── FitCommand.php │ │ │ │ ├── FlipCommand.php │ │ │ │ ├── GammaCommand.php │ │ │ │ ├── GetSizeCommand.php │ │ │ │ ├── GreyscaleCommand.php │ │ │ │ ├── HeightenCommand.php │ │ │ │ ├── InsertCommand.php │ │ │ │ ├── InterlaceCommand.php │ │ │ │ ├── InvertCommand.php │ │ │ │ ├── LimitColorsCommand.php │ │ │ │ ├── MaskCommand.php │ │ │ │ ├── OpacityCommand.php │ │ │ │ ├── PickColorCommand.php │ │ │ │ ├── PixelCommand.php │ │ │ │ ├── PixelateCommand.php │ │ │ │ ├── ResetCommand.php │ │ │ │ ├── ResizeCanvasCommand.php │ │ │ │ ├── ResizeCommand.php │ │ │ │ ├── RotateCommand.php │ │ │ │ ├── SharpenCommand.php │ │ │ │ ├── TrimCommand.php │ │ │ │ └── WidenCommand.php │ │ │ ├── Decoder.php │ │ │ ├── Driver.php │ │ │ ├── Encoder.php │ │ │ ├── Font.php │ │ │ └── Shapes │ │ │ │ ├── CircleShape.php │ │ │ │ ├── EllipseShape.php │ │ │ │ ├── LineShape.php │ │ │ │ ├── PolygonShape.php │ │ │ │ └── RectangleShape.php │ │ │ ├── Image.php │ │ │ ├── ImageManager.php │ │ │ ├── ImageManagerStatic.php │ │ │ ├── ImageServiceProvider.php │ │ │ ├── ImageServiceProviderLaravel4.php │ │ │ ├── ImageServiceProviderLaravel5.php │ │ │ ├── ImageServiceProviderLeague.php │ │ │ ├── ImageServiceProviderLumen.php │ │ │ ├── Imagick │ │ │ ├── Color.php │ │ │ ├── Commands │ │ │ │ ├── BackupCommand.php │ │ │ │ ├── BlurCommand.php │ │ │ │ ├── BrightnessCommand.php │ │ │ │ ├── ColorizeCommand.php │ │ │ │ ├── ContrastCommand.php │ │ │ │ ├── CropCommand.php │ │ │ │ ├── DestroyCommand.php │ │ │ │ ├── ExifCommand.php │ │ │ │ ├── FillCommand.php │ │ │ │ ├── FitCommand.php │ │ │ │ ├── FlipCommand.php │ │ │ │ ├── GammaCommand.php │ │ │ │ ├── GetSizeCommand.php │ │ │ │ ├── GreyscaleCommand.php │ │ │ │ ├── HeightenCommand.php │ │ │ │ ├── InsertCommand.php │ │ │ │ ├── InterlaceCommand.php │ │ │ │ ├── InvertCommand.php │ │ │ │ ├── LimitColorsCommand.php │ │ │ │ ├── MaskCommand.php │ │ │ │ ├── OpacityCommand.php │ │ │ │ ├── PickColorCommand.php │ │ │ │ ├── PixelCommand.php │ │ │ │ ├── PixelateCommand.php │ │ │ │ ├── ResetCommand.php │ │ │ │ ├── ResizeCanvasCommand.php │ │ │ │ ├── ResizeCommand.php │ │ │ │ ├── RotateCommand.php │ │ │ │ ├── SharpenCommand.php │ │ │ │ ├── TrimCommand.php │ │ │ │ └── WidenCommand.php │ │ │ ├── Decoder.php │ │ │ ├── Driver.php │ │ │ ├── Encoder.php │ │ │ ├── Font.php │ │ │ └── Shapes │ │ │ │ ├── CircleShape.php │ │ │ │ ├── EllipseShape.php │ │ │ │ ├── LineShape.php │ │ │ │ ├── PolygonShape.php │ │ │ │ └── RectangleShape.php │ │ │ ├── Point.php │ │ │ ├── Response.php │ │ │ └── Size.php │ │ └── config │ │ └── config.php ├── jakub-onderka │ ├── php-console-color │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── example.php │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── ConsoleColor.php │ │ │ └── InvalidStyleException.php │ │ └── tests │ │ │ └── ConsoleColorTest.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 │ │ └── Highlighter.php │ │ └── tests │ │ └── HigligterTest.php ├── james.xue │ └── login-captcha │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── resources │ │ ├── lang │ │ │ └── zh-CN │ │ │ │ ├── auth.php │ │ │ │ └── validation.php │ │ └── views │ │ │ └── index.blade.php │ │ ├── routes │ │ └── web.php │ │ └── src │ │ ├── Http │ │ └── Controllers │ │ │ └── JamesController.php │ │ ├── James.php │ │ └── JamesServiceProvider.php ├── jxlwqq │ └── material-ui │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README-CN.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── resources │ │ └── assets │ │ │ └── MaterialAdminLTE │ │ │ └── dist │ │ │ ├── css │ │ │ ├── MaterialAdminLTE.min.css │ │ │ ├── bootstrap-material-design.min.css │ │ │ ├── custom.css │ │ │ ├── ripples.min.css │ │ │ └── skins │ │ │ │ ├── all-md-skins.min.css │ │ │ │ ├── skin-md-black-light.min.css │ │ │ │ ├── skin-md-black.min.css │ │ │ │ ├── skin-md-blue-light.min.css │ │ │ │ ├── skin-md-blue.min.css │ │ │ │ ├── skin-md-green-light.min.css │ │ │ │ ├── skin-md-green.min.css │ │ │ │ ├── skin-md-purple-light.min.css │ │ │ │ ├── skin-md-purple.min.css │ │ │ │ ├── skin-md-red-light.min.css │ │ │ │ ├── skin-md-red.min.css │ │ │ │ ├── skin-md-yellow-light.min.css │ │ │ │ └── skin-md-yellow.min.css │ │ │ ├── img │ │ │ ├── avatar.png │ │ │ ├── avatar04.png │ │ │ ├── avatar2.png │ │ │ ├── avatar3.png │ │ │ ├── avatar5.png │ │ │ ├── boxed-bg.jpg │ │ │ ├── boxed-bg.png │ │ │ ├── credit │ │ │ │ ├── american-express.png │ │ │ │ ├── cirrus.png │ │ │ │ ├── mastercard.png │ │ │ │ ├── mestro.png │ │ │ │ ├── paypal.png │ │ │ │ ├── paypal2.png │ │ │ │ └── visa.png │ │ │ ├── default-50x50.gif │ │ │ ├── icons.png │ │ │ ├── patterns │ │ │ │ ├── user-panel-bg_blue.jpg │ │ │ │ ├── user-panel-bg_green.jpg │ │ │ │ ├── user-panel-bg_purple.jpg │ │ │ │ ├── user-panel-bg_red.jpg │ │ │ │ └── user-panel-bg_yellow.jpg │ │ │ ├── photo1.png │ │ │ ├── photo2.png │ │ │ ├── photo3.jpg │ │ │ ├── photo4.jpg │ │ │ ├── user-160x160.jpg │ │ │ ├── user1-128x128.jpg │ │ │ ├── user2-160x160.jpg │ │ │ ├── user3-128x128.jpg │ │ │ ├── user4-128x128.jpg │ │ │ ├── user5-128x128.jpg │ │ │ ├── user6-128x128.jpg │ │ │ ├── user7-128x128.jpg │ │ │ └── user8-128x128.jpg │ │ │ └── js │ │ │ ├── material.min.js │ │ │ └── ripples.min.js │ │ └── src │ │ ├── MaterialUI.php │ │ └── MaterialUIServiceProvider.php ├── laravel-admin-ext │ ├── config │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── database │ │ │ └── migrations │ │ │ │ └── 2017_07_17_040159_create_config_table.php │ │ └── src │ │ │ ├── Config.php │ │ │ ├── ConfigController.php │ │ │ ├── ConfigModel.php │ │ │ └── ConfigServiceProvider.php │ └── grid-lightbox │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── resources │ │ └── assets │ │ │ ├── jquery.magnific-popup.min.js │ │ │ └── magnific-popup.css │ │ └── src │ │ ├── GalleryDisplayer.php │ │ ├── Lightbox.php │ │ ├── LightboxDisplayer.php │ │ └── LightboxServiceProvider.php ├── laravel │ ├── framework │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ └── Illuminate │ │ │ ├── Auth │ │ │ ├── Access │ │ │ │ ├── AuthorizationException.php │ │ │ │ ├── Gate.php │ │ │ │ ├── HandlesAuthorization.php │ │ │ │ └── Response.php │ │ │ ├── AuthManager.php │ │ │ ├── AuthServiceProvider.php │ │ │ ├── Authenticatable.php │ │ │ ├── AuthenticationException.php │ │ │ ├── Console │ │ │ │ ├── AuthMakeCommand.php │ │ │ │ ├── ClearResetsCommand.php │ │ │ │ └── stubs │ │ │ │ │ └── make │ │ │ │ │ ├── controllers │ │ │ │ │ └── HomeController.stub │ │ │ │ │ ├── routes.stub │ │ │ │ │ └── views │ │ │ │ │ ├── auth │ │ │ │ │ ├── login.stub │ │ │ │ │ ├── passwords │ │ │ │ │ │ ├── email.stub │ │ │ │ │ │ └── reset.stub │ │ │ │ │ └── register.stub │ │ │ │ │ ├── home.stub │ │ │ │ │ └── layouts │ │ │ │ │ └── app.stub │ │ │ ├── CreatesUserProviders.php │ │ │ ├── DatabaseUserProvider.php │ │ │ ├── EloquentUserProvider.php │ │ │ ├── Events │ │ │ │ ├── Attempting.php │ │ │ │ ├── Authenticated.php │ │ │ │ ├── Failed.php │ │ │ │ ├── Lockout.php │ │ │ │ ├── Login.php │ │ │ │ ├── Logout.php │ │ │ │ ├── PasswordReset.php │ │ │ │ └── Registered.php │ │ │ ├── GenericUser.php │ │ │ ├── GuardHelpers.php │ │ │ ├── Middleware │ │ │ │ ├── Authenticate.php │ │ │ │ ├── AuthenticateWithBasicAuth.php │ │ │ │ └── Authorize.php │ │ │ ├── Notifications │ │ │ │ └── ResetPassword.php │ │ │ ├── Passwords │ │ │ │ ├── CanResetPassword.php │ │ │ │ ├── DatabaseTokenRepository.php │ │ │ │ ├── PasswordBroker.php │ │ │ │ ├── PasswordBrokerManager.php │ │ │ │ ├── PasswordResetServiceProvider.php │ │ │ │ └── TokenRepositoryInterface.php │ │ │ ├── Recaller.php │ │ │ ├── RequestGuard.php │ │ │ ├── SessionGuard.php │ │ │ ├── TokenGuard.php │ │ │ └── composer.json │ │ │ ├── Broadcasting │ │ │ ├── BroadcastController.php │ │ │ ├── BroadcastEvent.php │ │ │ ├── BroadcastException.php │ │ │ ├── BroadcastManager.php │ │ │ ├── BroadcastServiceProvider.php │ │ │ ├── Broadcasters │ │ │ │ ├── Broadcaster.php │ │ │ │ ├── LogBroadcaster.php │ │ │ │ ├── NullBroadcaster.php │ │ │ │ ├── PusherBroadcaster.php │ │ │ │ └── RedisBroadcaster.php │ │ │ ├── Channel.php │ │ │ ├── InteractsWithSockets.php │ │ │ ├── PendingBroadcast.php │ │ │ ├── PresenceChannel.php │ │ │ ├── PrivateChannel.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 │ │ │ │ ├── ForgetCommand.php │ │ │ │ └── stubs │ │ │ │ │ └── cache.stub │ │ │ ├── DatabaseStore.php │ │ │ ├── Events │ │ │ │ ├── CacheEvent.php │ │ │ │ ├── CacheHit.php │ │ │ │ ├── CacheMissed.php │ │ │ │ ├── KeyForgotten.php │ │ │ │ └── KeyWritten.php │ │ │ ├── FileStore.php │ │ │ ├── Lock.php │ │ │ ├── MemcachedConnector.php │ │ │ ├── MemcachedLock.php │ │ │ ├── MemcachedStore.php │ │ │ ├── NullStore.php │ │ │ ├── RateLimiter.php │ │ │ ├── RedisLock.php │ │ │ ├── RedisStore.php │ │ │ ├── RedisTaggedCache.php │ │ │ ├── Repository.php │ │ │ ├── RetrievesMultipleKeys.php │ │ │ ├── TagSet.php │ │ │ ├── TaggableStore.php │ │ │ ├── TaggedCache.php │ │ │ └── composer.json │ │ │ ├── Config │ │ │ ├── Repository.php │ │ │ └── composer.json │ │ │ ├── Console │ │ │ ├── Application.php │ │ │ ├── Command.php │ │ │ ├── ConfirmableTrait.php │ │ │ ├── DetectsApplicationNamespace.php │ │ │ ├── Events │ │ │ │ ├── ArtisanStarting.php │ │ │ │ ├── CommandFinished.php │ │ │ │ └── CommandStarting.php │ │ │ ├── GeneratorCommand.php │ │ │ ├── OutputStyle.php │ │ │ ├── Parser.php │ │ │ ├── Scheduling │ │ │ │ ├── CacheMutex.php │ │ │ │ ├── CallbackEvent.php │ │ │ │ ├── CommandBuilder.php │ │ │ │ ├── Event.php │ │ │ │ ├── ManagesFrequencies.php │ │ │ │ ├── Mutex.php │ │ │ │ ├── Schedule.php │ │ │ │ ├── ScheduleFinishCommand.php │ │ │ │ └── ScheduleRunCommand.php │ │ │ └── composer.json │ │ │ ├── Container │ │ │ ├── BoundMethod.php │ │ │ ├── Container.php │ │ │ ├── ContextualBindingBuilder.php │ │ │ ├── EntryNotFoundException.php │ │ │ └── composer.json │ │ │ ├── Contracts │ │ │ ├── Auth │ │ │ │ ├── Access │ │ │ │ │ ├── Authorizable.php │ │ │ │ │ └── Gate.php │ │ │ │ ├── Authenticatable.php │ │ │ │ ├── CanResetPassword.php │ │ │ │ ├── Factory.php │ │ │ │ ├── Guard.php │ │ │ │ ├── PasswordBroker.php │ │ │ │ ├── PasswordBrokerFactory.php │ │ │ │ ├── StatefulGuard.php │ │ │ │ ├── SupportsBasicAuth.php │ │ │ │ └── UserProvider.php │ │ │ ├── Broadcasting │ │ │ │ ├── Broadcaster.php │ │ │ │ ├── Factory.php │ │ │ │ ├── ShouldBroadcast.php │ │ │ │ └── ShouldBroadcastNow.php │ │ │ ├── Bus │ │ │ │ ├── Dispatcher.php │ │ │ │ └── QueueingDispatcher.php │ │ │ ├── Cache │ │ │ │ ├── Factory.php │ │ │ │ ├── Lock.php │ │ │ │ ├── LockProvider.php │ │ │ │ ├── LockTimeoutException.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 │ │ │ │ ├── Mailable.php │ │ │ │ └── Mailer.php │ │ │ ├── Notifications │ │ │ │ ├── Dispatcher.php │ │ │ │ └── Factory.php │ │ │ ├── Pagination │ │ │ │ ├── LengthAwarePaginator.php │ │ │ │ └── Paginator.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 │ │ │ │ ├── Factory.php │ │ │ │ └── LimiterTimeoutException.php │ │ │ ├── Routing │ │ │ │ ├── BindingRegistrar.php │ │ │ │ ├── Registrar.php │ │ │ │ ├── ResponseFactory.php │ │ │ │ ├── UrlGenerator.php │ │ │ │ └── UrlRoutable.php │ │ │ ├── Session │ │ │ │ └── Session.php │ │ │ ├── Support │ │ │ │ ├── Arrayable.php │ │ │ │ ├── Htmlable.php │ │ │ │ ├── Jsonable.php │ │ │ │ ├── MessageBag.php │ │ │ │ ├── MessageProvider.php │ │ │ │ ├── Renderable.php │ │ │ │ └── Responsable.php │ │ │ ├── Translation │ │ │ │ ├── Loader.php │ │ │ │ └── Translator.php │ │ │ ├── Validation │ │ │ │ ├── Factory.php │ │ │ │ ├── ImplicitRule.php │ │ │ │ ├── Rule.php │ │ │ │ ├── ValidatesWhenResolved.php │ │ │ │ └── Validator.php │ │ │ ├── View │ │ │ │ ├── Engine.php │ │ │ │ ├── Factory.php │ │ │ │ └── View.php │ │ │ └── composer.json │ │ │ ├── Cookie │ │ │ ├── CookieJar.php │ │ │ ├── CookieServiceProvider.php │ │ │ ├── Middleware │ │ │ │ ├── AddQueuedCookiesToResponse.php │ │ │ │ └── EncryptCookies.php │ │ │ └── composer.json │ │ │ ├── Database │ │ │ ├── Capsule │ │ │ │ └── Manager.php │ │ │ ├── Concerns │ │ │ │ ├── BuildsQueries.php │ │ │ │ └── ManagesTransactions.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 │ │ │ │ ├── Factories │ │ │ │ │ ├── FactoryMakeCommand.php │ │ │ │ │ └── stubs │ │ │ │ │ │ └── factory.stub │ │ │ │ ├── Migrations │ │ │ │ │ ├── BaseCommand.php │ │ │ │ │ ├── FreshCommand.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 │ │ │ ├── DetectsDeadlocks.php │ │ │ ├── DetectsLostConnections.php │ │ │ ├── Eloquent │ │ │ │ ├── Builder.php │ │ │ │ ├── Collection.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── GuardsAttributes.php │ │ │ │ │ ├── HasAttributes.php │ │ │ │ │ ├── HasEvents.php │ │ │ │ │ ├── HasGlobalScopes.php │ │ │ │ │ ├── HasRelationships.php │ │ │ │ │ ├── HasTimestamps.php │ │ │ │ │ ├── HidesAttributes.php │ │ │ │ │ └── QueriesRelationships.php │ │ │ │ ├── Factory.php │ │ │ │ ├── FactoryBuilder.php │ │ │ │ ├── JsonEncodingException.php │ │ │ │ ├── MassAssignmentException.php │ │ │ │ ├── Model.php │ │ │ │ ├── ModelNotFoundException.php │ │ │ │ ├── QueueEntityResolver.php │ │ │ │ ├── RelationNotFoundException.php │ │ │ │ ├── Relations │ │ │ │ │ ├── BelongsTo.php │ │ │ │ │ ├── BelongsToMany.php │ │ │ │ │ ├── Concerns │ │ │ │ │ │ ├── InteractsWithPivotTable.php │ │ │ │ │ │ └── SupportsDefaultModels.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 │ │ │ │ ├── SoftDeletes.php │ │ │ │ └── SoftDeletingScope.php │ │ │ ├── Events │ │ │ │ ├── ConnectionEvent.php │ │ │ │ ├── QueryExecuted.php │ │ │ │ ├── StatementPrepared.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 │ │ │ │ │ ├── ChangeColumn.php │ │ │ │ │ ├── Grammar.php │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ ├── RenameColumn.php │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ └── SqlServerGrammar.php │ │ │ │ ├── MySqlBuilder.php │ │ │ │ ├── PostgresBuilder.php │ │ │ │ ├── SQLiteBuilder.php │ │ │ │ └── SqlServerBuilder.php │ │ │ ├── Seeder.php │ │ │ ├── SqlServerConnection.php │ │ │ └── composer.json │ │ │ ├── Encryption │ │ │ ├── Encrypter.php │ │ │ ├── EncryptionServiceProvider.php │ │ │ └── composer.json │ │ │ ├── Events │ │ │ ├── CallQueuedListener.php │ │ │ ├── Dispatcher.php │ │ │ ├── EventServiceProvider.php │ │ │ └── composer.json │ │ │ ├── Filesystem │ │ │ ├── Cache.php │ │ │ ├── Filesystem.php │ │ │ ├── FilesystemAdapter.php │ │ │ ├── FilesystemManager.php │ │ │ ├── FilesystemServiceProvider.php │ │ │ └── composer.json │ │ │ ├── Foundation │ │ │ ├── AliasLoader.php │ │ │ ├── Application.php │ │ │ ├── Auth │ │ │ │ ├── Access │ │ │ │ │ ├── Authorizable.php │ │ │ │ │ └── AuthorizesRequests.php │ │ │ │ ├── AuthenticatesUsers.php │ │ │ │ ├── RedirectsUsers.php │ │ │ │ ├── RegistersUsers.php │ │ │ │ ├── ResetsPasswords.php │ │ │ │ ├── SendsPasswordResetEmails.php │ │ │ │ ├── ThrottlesLogins.php │ │ │ │ └── User.php │ │ │ ├── Bootstrap │ │ │ │ ├── BootProviders.php │ │ │ │ ├── HandleExceptions.php │ │ │ │ ├── LoadConfiguration.php │ │ │ │ ├── LoadEnvironmentVariables.php │ │ │ │ ├── RegisterFacades.php │ │ │ │ ├── RegisterProviders.php │ │ │ │ └── SetRequestForConsole.php │ │ │ ├── Bus │ │ │ │ ├── Dispatchable.php │ │ │ │ ├── DispatchesJobs.php │ │ │ │ ├── PendingChain.php │ │ │ │ └── PendingDispatch.php │ │ │ ├── ComposerScripts.php │ │ │ ├── Console │ │ │ │ ├── AppNameCommand.php │ │ │ │ ├── ClearCompiledCommand.php │ │ │ │ ├── ClosureCommand.php │ │ │ │ ├── ConfigCacheCommand.php │ │ │ │ ├── ConfigClearCommand.php │ │ │ │ ├── ConsoleMakeCommand.php │ │ │ │ ├── DownCommand.php │ │ │ │ ├── EnvironmentCommand.php │ │ │ │ ├── EventGenerateCommand.php │ │ │ │ ├── EventMakeCommand.php │ │ │ │ ├── ExceptionMakeCommand.php │ │ │ │ ├── JobMakeCommand.php │ │ │ │ ├── Kernel.php │ │ │ │ ├── KeyGenerateCommand.php │ │ │ │ ├── ListenerMakeCommand.php │ │ │ │ ├── MailMakeCommand.php │ │ │ │ ├── ModelMakeCommand.php │ │ │ │ ├── NotificationMakeCommand.php │ │ │ │ ├── OptimizeCommand.php │ │ │ │ ├── PackageDiscoverCommand.php │ │ │ │ ├── PolicyMakeCommand.php │ │ │ │ ├── PresetCommand.php │ │ │ │ ├── Presets │ │ │ │ │ ├── Bootstrap.php │ │ │ │ │ ├── None.php │ │ │ │ │ ├── Preset.php │ │ │ │ │ ├── React.php │ │ │ │ │ ├── Vue.php │ │ │ │ │ ├── bootstrap-stubs │ │ │ │ │ │ ├── _variables.scss │ │ │ │ │ │ └── app.scss │ │ │ │ │ ├── none-stubs │ │ │ │ │ │ └── app.js │ │ │ │ │ ├── react-stubs │ │ │ │ │ │ ├── Example.js │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ └── webpack.mix.js │ │ │ │ │ └── vue-stubs │ │ │ │ │ │ ├── ExampleComponent.vue │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ └── webpack.mix.js │ │ │ │ ├── ProviderMakeCommand.php │ │ │ │ ├── QueuedCommand.php │ │ │ │ ├── RequestMakeCommand.php │ │ │ │ ├── ResourceMakeCommand.php │ │ │ │ ├── RouteCacheCommand.php │ │ │ │ ├── RouteClearCommand.php │ │ │ │ ├── RouteListCommand.php │ │ │ │ ├── RuleMakeCommand.php │ │ │ │ ├── ServeCommand.php │ │ │ │ ├── StorageLinkCommand.php │ │ │ │ ├── TestMakeCommand.php │ │ │ │ ├── UpCommand.php │ │ │ │ ├── VendorPublishCommand.php │ │ │ │ ├── ViewClearCommand.php │ │ │ │ └── stubs │ │ │ │ │ ├── console.stub │ │ │ │ │ ├── event-handler-queued.stub │ │ │ │ │ ├── event-handler.stub │ │ │ │ │ ├── event.stub │ │ │ │ │ ├── exception-render-report.stub │ │ │ │ │ ├── exception-render.stub │ │ │ │ │ ├── exception-report.stub │ │ │ │ │ ├── exception.stub │ │ │ │ │ ├── job-queued.stub │ │ │ │ │ ├── job.stub │ │ │ │ │ ├── listener-duck.stub │ │ │ │ │ ├── listener-queued-duck.stub │ │ │ │ │ ├── listener-queued.stub │ │ │ │ │ ├── listener.stub │ │ │ │ │ ├── mail.stub │ │ │ │ │ ├── markdown-mail.stub │ │ │ │ │ ├── markdown-notification.stub │ │ │ │ │ ├── markdown.stub │ │ │ │ │ ├── model.stub │ │ │ │ │ ├── notification.stub │ │ │ │ │ ├── pivot.model.stub │ │ │ │ │ ├── policy.plain.stub │ │ │ │ │ ├── policy.stub │ │ │ │ │ ├── provider.stub │ │ │ │ │ ├── request.stub │ │ │ │ │ ├── resource-collection.stub │ │ │ │ │ ├── resource.stub │ │ │ │ │ ├── routes.stub │ │ │ │ │ ├── rule.stub │ │ │ │ │ ├── test.stub │ │ │ │ │ └── unit-test.stub │ │ │ ├── EnvironmentDetector.php │ │ │ ├── Events │ │ │ │ ├── Dispatchable.php │ │ │ │ └── LocaleUpdated.php │ │ │ ├── Exceptions │ │ │ │ ├── Handler.php │ │ │ │ └── views │ │ │ │ │ ├── 404.blade.php │ │ │ │ │ ├── 419.blade.php │ │ │ │ │ ├── 429.blade.php │ │ │ │ │ ├── 500.blade.php │ │ │ │ │ ├── 503.blade.php │ │ │ │ │ └── layout.blade.php │ │ │ ├── Http │ │ │ │ ├── Events │ │ │ │ │ └── RequestHandled.php │ │ │ │ ├── Exceptions │ │ │ │ │ └── MaintenanceModeException.php │ │ │ │ ├── FormRequest.php │ │ │ │ ├── Kernel.php │ │ │ │ └── Middleware │ │ │ │ │ ├── CheckForMaintenanceMode.php │ │ │ │ │ ├── ConvertEmptyStringsToNull.php │ │ │ │ │ ├── TransformsRequest.php │ │ │ │ │ ├── TrimStrings.php │ │ │ │ │ ├── ValidatePostSize.php │ │ │ │ │ └── VerifyCsrfToken.php │ │ │ ├── Inspiring.php │ │ │ ├── PackageManifest.php │ │ │ ├── ProviderRepository.php │ │ │ ├── Providers │ │ │ │ ├── ArtisanServiceProvider.php │ │ │ │ ├── ComposerServiceProvider.php │ │ │ │ ├── ConsoleSupportServiceProvider.php │ │ │ │ ├── FormRequestServiceProvider.php │ │ │ │ └── FoundationServiceProvider.php │ │ │ ├── Support │ │ │ │ └── Providers │ │ │ │ │ ├── AuthServiceProvider.php │ │ │ │ │ ├── EventServiceProvider.php │ │ │ │ │ └── RouteServiceProvider.php │ │ │ ├── Testing │ │ │ │ ├── Concerns │ │ │ │ │ ├── InteractsWithAuthentication.php │ │ │ │ │ ├── InteractsWithConsole.php │ │ │ │ │ ├── InteractsWithContainer.php │ │ │ │ │ ├── InteractsWithDatabase.php │ │ │ │ │ ├── InteractsWithExceptionHandling.php │ │ │ │ │ ├── InteractsWithRedis.php │ │ │ │ │ ├── InteractsWithSession.php │ │ │ │ │ ├── MakesHttpRequests.php │ │ │ │ │ └── MocksApplicationServices.php │ │ │ │ ├── Constraints │ │ │ │ │ ├── HasInDatabase.php │ │ │ │ │ └── SoftDeletedInDatabase.php │ │ │ │ ├── DatabaseMigrations.php │ │ │ │ ├── DatabaseTransactions.php │ │ │ │ ├── HttpException.php │ │ │ │ ├── RefreshDatabase.php │ │ │ │ ├── RefreshDatabaseState.php │ │ │ │ ├── TestCase.php │ │ │ │ ├── TestResponse.php │ │ │ │ ├── WithFaker.php │ │ │ │ ├── WithoutEvents.php │ │ │ │ └── WithoutMiddleware.php │ │ │ ├── Validation │ │ │ │ └── ValidatesRequests.php │ │ │ ├── helpers.php │ │ │ └── stubs │ │ │ │ └── facade.stub │ │ │ ├── Hashing │ │ │ ├── BcryptHasher.php │ │ │ ├── HashServiceProvider.php │ │ │ └── composer.json │ │ │ ├── Http │ │ │ ├── Concerns │ │ │ │ ├── InteractsWithContentTypes.php │ │ │ │ ├── InteractsWithFlashData.php │ │ │ │ └── InteractsWithInput.php │ │ │ ├── Exceptions │ │ │ │ ├── HttpResponseException.php │ │ │ │ └── PostTooLargeException.php │ │ │ ├── File.php │ │ │ ├── FileHelpers.php │ │ │ ├── JsonResponse.php │ │ │ ├── Middleware │ │ │ │ ├── CheckResponseForModifications.php │ │ │ │ └── FrameGuard.php │ │ │ ├── RedirectResponse.php │ │ │ ├── Request.php │ │ │ ├── Resources │ │ │ │ ├── CollectsResources.php │ │ │ │ ├── ConditionallyLoadsAttributes.php │ │ │ │ ├── DelegatesToResource.php │ │ │ │ ├── Json │ │ │ │ │ ├── AnonymousResourceCollection.php │ │ │ │ │ ├── PaginatedResourceResponse.php │ │ │ │ │ ├── Resource.php │ │ │ │ │ ├── ResourceCollection.php │ │ │ │ │ └── ResourceResponse.php │ │ │ │ ├── MergeValue.php │ │ │ │ ├── MissingValue.php │ │ │ │ └── PotentiallyMissing.php │ │ │ ├── Response.php │ │ │ ├── ResponseTrait.php │ │ │ ├── Testing │ │ │ │ ├── File.php │ │ │ │ ├── FileFactory.php │ │ │ │ └── MimeType.php │ │ │ ├── UploadedFile.php │ │ │ └── composer.json │ │ │ ├── Log │ │ │ ├── Events │ │ │ │ └── MessageLogged.php │ │ │ ├── LogServiceProvider.php │ │ │ ├── Writer.php │ │ │ └── composer.json │ │ │ ├── Mail │ │ │ ├── Events │ │ │ │ ├── MessageSending.php │ │ │ │ └── MessageSent.php │ │ │ ├── MailServiceProvider.php │ │ │ ├── Mailable.php │ │ │ ├── Mailer.php │ │ │ ├── Markdown.php │ │ │ ├── Message.php │ │ │ ├── PendingMail.php │ │ │ ├── SendQueuedMailable.php │ │ │ ├── Transport │ │ │ │ ├── ArrayTransport.php │ │ │ │ ├── LogTransport.php │ │ │ │ ├── MailgunTransport.php │ │ │ │ ├── MandrillTransport.php │ │ │ │ ├── SesTransport.php │ │ │ │ ├── SparkPostTransport.php │ │ │ │ └── Transport.php │ │ │ ├── TransportManager.php │ │ │ ├── composer.json │ │ │ └── resources │ │ │ │ └── views │ │ │ │ ├── html │ │ │ │ ├── button.blade.php │ │ │ │ ├── footer.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ ├── layout.blade.php │ │ │ │ ├── message.blade.php │ │ │ │ ├── panel.blade.php │ │ │ │ ├── promotion.blade.php │ │ │ │ ├── promotion │ │ │ │ │ └── button.blade.php │ │ │ │ ├── subcopy.blade.php │ │ │ │ ├── table.blade.php │ │ │ │ └── themes │ │ │ │ │ └── default.css │ │ │ │ └── markdown │ │ │ │ ├── button.blade.php │ │ │ │ ├── footer.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ ├── layout.blade.php │ │ │ │ ├── message.blade.php │ │ │ │ ├── panel.blade.php │ │ │ │ ├── promotion.blade.php │ │ │ │ ├── promotion │ │ │ │ └── button.blade.php │ │ │ │ ├── subcopy.blade.php │ │ │ │ └── table.blade.php │ │ │ ├── Notifications │ │ │ ├── Action.php │ │ │ ├── AnonymousNotifiable.php │ │ │ ├── ChannelManager.php │ │ │ ├── Channels │ │ │ │ ├── BroadcastChannel.php │ │ │ │ ├── DatabaseChannel.php │ │ │ │ ├── MailChannel.php │ │ │ │ ├── NexmoSmsChannel.php │ │ │ │ └── SlackWebhookChannel.php │ │ │ ├── Console │ │ │ │ ├── NotificationTableCommand.php │ │ │ │ └── stubs │ │ │ │ │ └── notifications.stub │ │ │ ├── DatabaseNotification.php │ │ │ ├── DatabaseNotificationCollection.php │ │ │ ├── Events │ │ │ │ ├── BroadcastNotificationCreated.php │ │ │ │ ├── NotificationFailed.php │ │ │ │ ├── NotificationSending.php │ │ │ │ └── NotificationSent.php │ │ │ ├── HasDatabaseNotifications.php │ │ │ ├── Messages │ │ │ │ ├── BroadcastMessage.php │ │ │ │ ├── DatabaseMessage.php │ │ │ │ ├── MailMessage.php │ │ │ │ ├── NexmoMessage.php │ │ │ │ ├── SimpleMessage.php │ │ │ │ ├── SlackAttachment.php │ │ │ │ ├── SlackAttachmentField.php │ │ │ │ └── SlackMessage.php │ │ │ ├── Notifiable.php │ │ │ ├── Notification.php │ │ │ ├── NotificationSender.php │ │ │ ├── NotificationServiceProvider.php │ │ │ ├── RoutesNotifications.php │ │ │ ├── SendQueuedNotifications.php │ │ │ ├── composer.json │ │ │ └── resources │ │ │ │ └── views │ │ │ │ └── email.blade.php │ │ │ ├── Pagination │ │ │ ├── AbstractPaginator.php │ │ │ ├── LengthAwarePaginator.php │ │ │ ├── PaginationServiceProvider.php │ │ │ ├── Paginator.php │ │ │ ├── UrlWindow.php │ │ │ ├── composer.json │ │ │ └── resources │ │ │ │ └── views │ │ │ │ ├── bootstrap-4.blade.php │ │ │ │ ├── default.blade.php │ │ │ │ ├── semantic-ui.blade.php │ │ │ │ ├── simple-bootstrap-4.blade.php │ │ │ │ └── simple-default.blade.php │ │ │ ├── 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 │ │ │ ├── DatabaseQueue.php │ │ │ ├── Events │ │ │ │ ├── JobExceptionOccurred.php │ │ │ │ ├── JobFailed.php │ │ │ │ ├── JobProcessed.php │ │ │ │ ├── JobProcessing.php │ │ │ │ ├── Looping.php │ │ │ │ └── WorkerStopping.php │ │ │ ├── Failed │ │ │ │ ├── DatabaseFailedJobProvider.php │ │ │ │ ├── FailedJobProviderInterface.php │ │ │ │ └── NullFailedJobProvider.php │ │ │ ├── FailingJob.php │ │ │ ├── InteractsWithQueue.php │ │ │ ├── InvalidPayloadException.php │ │ │ ├── Jobs │ │ │ │ ├── BeanstalkdJob.php │ │ │ │ ├── DatabaseJob.php │ │ │ │ ├── DatabaseJobRecord.php │ │ │ │ ├── Job.php │ │ │ │ ├── JobName.php │ │ │ │ ├── RedisJob.php │ │ │ │ ├── SqsJob.php │ │ │ │ └── SyncJob.php │ │ │ ├── Listener.php │ │ │ ├── ListenerOptions.php │ │ │ ├── LuaScripts.php │ │ │ ├── ManuallyFailedException.php │ │ │ ├── MaxAttemptsExceededException.php │ │ │ ├── NullQueue.php │ │ │ ├── Queue.php │ │ │ ├── QueueManager.php │ │ │ ├── QueueServiceProvider.php │ │ │ ├── README.md │ │ │ ├── RedisQueue.php │ │ │ ├── SerializesAndRestoresModelIdentifiers.php │ │ │ ├── SerializesModels.php │ │ │ ├── SqsQueue.php │ │ │ ├── SyncQueue.php │ │ │ ├── Worker.php │ │ │ ├── WorkerOptions.php │ │ │ └── composer.json │ │ │ ├── Redis │ │ │ ├── Connections │ │ │ │ ├── Connection.php │ │ │ │ ├── PhpRedisClusterConnection.php │ │ │ │ ├── PhpRedisConnection.php │ │ │ │ ├── PredisClusterConnection.php │ │ │ │ └── PredisConnection.php │ │ │ ├── Connectors │ │ │ │ ├── PhpRedisConnector.php │ │ │ │ └── PredisConnector.php │ │ │ ├── Limiters │ │ │ │ ├── ConcurrencyLimiter.php │ │ │ │ ├── ConcurrencyLimiterBuilder.php │ │ │ │ ├── DurationLimiter.php │ │ │ │ └── DurationLimiterBuilder.php │ │ │ ├── RedisManager.php │ │ │ ├── RedisServiceProvider.php │ │ │ └── composer.json │ │ │ ├── Routing │ │ │ ├── Console │ │ │ │ ├── ControllerMakeCommand.php │ │ │ │ ├── MiddlewareMakeCommand.php │ │ │ │ └── stubs │ │ │ │ │ ├── controller.model.stub │ │ │ │ │ ├── controller.nested.stub │ │ │ │ │ ├── controller.plain.stub │ │ │ │ │ ├── controller.stub │ │ │ │ │ └── middleware.stub │ │ │ ├── Contracts │ │ │ │ └── ControllerDispatcher.php │ │ │ ├── Controller.php │ │ │ ├── ControllerDispatcher.php │ │ │ ├── ControllerMiddlewareOptions.php │ │ │ ├── Events │ │ │ │ └── RouteMatched.php │ │ │ ├── Exceptions │ │ │ │ └── UrlGenerationException.php │ │ │ ├── ImplicitRouteBinding.php │ │ │ ├── Matching │ │ │ │ ├── HostValidator.php │ │ │ │ ├── MethodValidator.php │ │ │ │ ├── SchemeValidator.php │ │ │ │ ├── UriValidator.php │ │ │ │ └── ValidatorInterface.php │ │ │ ├── Middleware │ │ │ │ ├── SubstituteBindings.php │ │ │ │ ├── ThrottleRequests.php │ │ │ │ └── ThrottleRequestsWithRedis.php │ │ │ ├── MiddlewareNameResolver.php │ │ │ ├── PendingResourceRegistration.php │ │ │ ├── Pipeline.php │ │ │ ├── RedirectController.php │ │ │ ├── Redirector.php │ │ │ ├── ResourceRegistrar.php │ │ │ ├── ResponseFactory.php │ │ │ ├── Route.php │ │ │ ├── RouteAction.php │ │ │ ├── RouteBinding.php │ │ │ ├── RouteCollection.php │ │ │ ├── RouteCompiler.php │ │ │ ├── RouteDependencyResolverTrait.php │ │ │ ├── RouteGroup.php │ │ │ ├── RouteParameterBinder.php │ │ │ ├── RouteRegistrar.php │ │ │ ├── RouteSignatureParameters.php │ │ │ ├── RouteUrlGenerator.php │ │ │ ├── Router.php │ │ │ ├── RoutingServiceProvider.php │ │ │ ├── SortedMiddleware.php │ │ │ ├── UrlGenerator.php │ │ │ ├── ViewController.php │ │ │ └── composer.json │ │ │ ├── Session │ │ │ ├── CacheBasedSessionHandler.php │ │ │ ├── Console │ │ │ │ ├── SessionTableCommand.php │ │ │ │ └── stubs │ │ │ │ │ └── database.stub │ │ │ ├── CookieSessionHandler.php │ │ │ ├── DatabaseSessionHandler.php │ │ │ ├── EncryptedStore.php │ │ │ ├── ExistenceAwareInterface.php │ │ │ ├── FileSessionHandler.php │ │ │ ├── Middleware │ │ │ │ ├── AuthenticateSession.php │ │ │ │ └── StartSession.php │ │ │ ├── NullSessionHandler.php │ │ │ ├── SessionManager.php │ │ │ ├── SessionServiceProvider.php │ │ │ ├── Store.php │ │ │ ├── TokenMismatchException.php │ │ │ └── composer.json │ │ │ ├── Support │ │ │ ├── AggregateServiceProvider.php │ │ │ ├── Arr.php │ │ │ ├── Carbon.php │ │ │ ├── Collection.php │ │ │ ├── Composer.php │ │ │ ├── Debug │ │ │ │ ├── Dumper.php │ │ │ │ └── HtmlDumper.php │ │ │ ├── Facades │ │ │ │ ├── App.php │ │ │ │ ├── Artisan.php │ │ │ │ ├── Auth.php │ │ │ │ ├── Blade.php │ │ │ │ ├── Broadcast.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 │ │ │ │ ├── Notification.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 │ │ │ ├── HigherOrderCollectionProxy.php │ │ │ ├── HigherOrderTapProxy.php │ │ │ ├── HtmlString.php │ │ │ ├── InteractsWithTime.php │ │ │ ├── Manager.php │ │ │ ├── MessageBag.php │ │ │ ├── NamespacedItemResolver.php │ │ │ ├── Optional.php │ │ │ ├── Pluralizer.php │ │ │ ├── ProcessUtils.php │ │ │ ├── ServiceProvider.php │ │ │ ├── Str.php │ │ │ ├── Testing │ │ │ │ └── Fakes │ │ │ │ │ ├── BusFake.php │ │ │ │ │ ├── EventFake.php │ │ │ │ │ ├── MailFake.php │ │ │ │ │ ├── NotificationFake.php │ │ │ │ │ ├── PendingMailFake.php │ │ │ │ │ └── QueueFake.php │ │ │ ├── Traits │ │ │ │ ├── CapsuleManagerTrait.php │ │ │ │ └── Macroable.php │ │ │ ├── ViewErrorBag.php │ │ │ ├── composer.json │ │ │ └── helpers.php │ │ │ ├── Translation │ │ │ ├── ArrayLoader.php │ │ │ ├── FileLoader.php │ │ │ ├── MessageSelector.php │ │ │ ├── TranslationServiceProvider.php │ │ │ ├── Translator.php │ │ │ └── composer.json │ │ │ ├── Validation │ │ │ ├── ClosureValidationRule.php │ │ │ ├── Concerns │ │ │ │ ├── FormatsMessages.php │ │ │ │ ├── ReplacesAttributes.php │ │ │ │ └── ValidatesAttributes.php │ │ │ ├── DatabasePresenceVerifier.php │ │ │ ├── Factory.php │ │ │ ├── PresenceVerifierInterface.php │ │ │ ├── Rule.php │ │ │ ├── Rules │ │ │ │ ├── DatabaseRule.php │ │ │ │ ├── Dimensions.php │ │ │ │ ├── Exists.php │ │ │ │ ├── In.php │ │ │ │ ├── NotIn.php │ │ │ │ └── Unique.php │ │ │ ├── UnauthorizedException.php │ │ │ ├── ValidatesWhenResolvedTrait.php │ │ │ ├── ValidationData.php │ │ │ ├── ValidationException.php │ │ │ ├── ValidationRuleParser.php │ │ │ ├── ValidationServiceProvider.php │ │ │ ├── Validator.php │ │ │ └── composer.json │ │ │ └── View │ │ │ ├── Compilers │ │ │ ├── BladeCompiler.php │ │ │ ├── Compiler.php │ │ │ ├── CompilerInterface.php │ │ │ └── Concerns │ │ │ │ ├── CompilesAuthorizations.php │ │ │ │ ├── CompilesComments.php │ │ │ │ ├── CompilesComponents.php │ │ │ │ ├── CompilesConditionals.php │ │ │ │ ├── CompilesEchos.php │ │ │ │ ├── CompilesIncludes.php │ │ │ │ ├── CompilesInjections.php │ │ │ │ ├── CompilesJson.php │ │ │ │ ├── CompilesLayouts.php │ │ │ │ ├── CompilesLoops.php │ │ │ │ ├── CompilesRawPhp.php │ │ │ │ ├── CompilesStacks.php │ │ │ │ └── CompilesTranslations.php │ │ │ ├── Concerns │ │ │ ├── ManagesComponents.php │ │ │ ├── ManagesEvents.php │ │ │ ├── ManagesLayouts.php │ │ │ ├── ManagesLoops.php │ │ │ ├── ManagesStacks.php │ │ │ └── ManagesTranslations.php │ │ │ ├── Engines │ │ │ ├── CompilerEngine.php │ │ │ ├── Engine.php │ │ │ ├── EngineResolver.php │ │ │ ├── FileEngine.php │ │ │ └── PhpEngine.php │ │ │ ├── Factory.php │ │ │ ├── FileViewFinder.php │ │ │ ├── Middleware │ │ │ └── ShareErrorsFromSession.php │ │ │ ├── View.php │ │ │ ├── ViewFinderInterface.php │ │ │ ├── ViewName.php │ │ │ ├── ViewServiceProvider.php │ │ │ └── composer.json │ └── tinker │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── composer.json │ │ ├── config │ │ └── tinker.php │ │ └── src │ │ ├── ClassAliasAutoloader.php │ │ ├── Console │ │ └── TinkerCommand.php │ │ ├── TinkerCaster.php │ │ └── TinkerServiceProvider.php ├── lasserafn │ ├── php-initial-avatar-generator │ │ ├── .coveralls.yml │ │ ├── .styleci │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── demo_result.png │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── InitialAvatar.php │ │ │ ├── Translator │ │ │ │ ├── Base.php │ │ │ │ ├── En.php │ │ │ │ └── ZhCN.php │ │ │ └── fonts │ │ │ │ ├── FontAwesome5Brands-Regular-400.otf │ │ │ │ ├── FontAwesome5Free-Regular-400.otf │ │ │ │ ├── FontAwesome5Free-Solid-900.otf │ │ │ │ ├── NotoSans-Bold.ttf │ │ │ │ ├── NotoSans-Regular.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans-Semibold.ttf │ │ │ │ └── script │ │ │ │ ├── Noto-Arabic-Bold.ttf │ │ │ │ ├── Noto-Arabic-Regular.ttf │ │ │ │ ├── Noto-Armenian-Bold.ttf │ │ │ │ ├── Noto-Armenian-Regular.ttf │ │ │ │ ├── Noto-Bengali-Bold.ttf │ │ │ │ ├── Noto-Bengali-Regular.ttf │ │ │ │ ├── Noto-CJKJP-Regular.otf │ │ │ │ ├── Noto-CJKjp-Bold.otf │ │ │ │ ├── Noto-Georgian-Bold.ttf │ │ │ │ ├── Noto-Georgian-Regular.ttf │ │ │ │ ├── Noto-Hebrew-Bold.ttf │ │ │ │ ├── Noto-Hebrew-Regular.ttf │ │ │ │ ├── Noto-Mongolian-Regular.ttf │ │ │ │ ├── Noto-Thai-Bold.ttf │ │ │ │ ├── Noto-Thai-Regular.ttf │ │ │ │ ├── Noto-Tibetan-Bold.ttf │ │ │ │ └── Noto-Tibetan-Regular.ttf │ │ └── tests │ │ │ ├── GenerateTest.php │ │ │ ├── ImageSizeTest.php │ │ │ ├── InitialGenerationTest.php │ │ │ ├── LimitInitialLenghtTest.php │ │ │ ├── ParameterTest.php │ │ │ ├── ScriptLanguageDetectionTest.php │ │ │ └── fonts │ │ │ └── NotoSans-Regular.otf │ ├── php-initials │ │ ├── .coveralls.yml │ │ ├── .styleci │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── phpunit.xml │ │ ├── src │ │ │ └── Initials.php │ │ └── tests │ │ │ ├── GenerateTest.php │ │ │ ├── InitialCaseTest.php │ │ │ ├── InitialGenerationTest.php │ │ │ └── InitialLimitationTest.php │ └── php-string-script-language │ │ ├── .coveralls.yml │ │ ├── .styleci │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── phpunit.xml │ │ ├── src │ │ └── StringScript.php │ │ └── tests │ │ └── DetectLanguageTest.php ├── league │ └── flysystem │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── deprecations.md │ │ └── src │ │ ├── Adapter │ │ ├── AbstractAdapter.php │ │ ├── AbstractFtpAdapter.php │ │ ├── CanOverwriteFiles.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 ├── maximebf │ └── debugbar │ │ ├── LICENSE │ │ ├── composer.json │ │ └── src │ │ └── DebugBar │ │ ├── Bridge │ │ ├── CacheCacheCollector.php │ │ ├── DoctrineCollector.php │ │ ├── MonologCollector.php │ │ ├── Propel2Collector.php │ │ ├── PropelCollector.php │ │ ├── SlimCollector.php │ │ ├── SwiftMailer │ │ │ ├── SwiftLogCollector.php │ │ │ └── SwiftMailCollector.php │ │ ├── Twig │ │ │ ├── TimeableTwigExtensionProfiler.php │ │ │ ├── TraceableTwigEnvironment.php │ │ │ ├── TraceableTwigTemplate.php │ │ │ └── TwigCollector.php │ │ └── TwigProfileCollector.php │ │ ├── DataCollector │ │ ├── AggregatedCollector.php │ │ ├── AssetProvider.php │ │ ├── ConfigCollector.php │ │ ├── DataCollector.php │ │ ├── DataCollectorInterface.php │ │ ├── ExceptionsCollector.php │ │ ├── LocalizationCollector.php │ │ ├── MemoryCollector.php │ │ ├── MessagesAggregateInterface.php │ │ ├── MessagesCollector.php │ │ ├── PDO │ │ │ ├── PDOCollector.php │ │ │ ├── TraceablePDO.php │ │ │ ├── TraceablePDOStatement.php │ │ │ └── TracedStatement.php │ │ ├── PhpInfoCollector.php │ │ ├── Renderable.php │ │ ├── RequestDataCollector.php │ │ └── TimeDataCollector.php │ │ ├── DataFormatter │ │ ├── DataFormatter.php │ │ ├── DataFormatterInterface.php │ │ ├── DebugBarVarDumper.php │ │ └── VarDumper │ │ │ ├── DebugBarHtmlDumper.php │ │ │ └── SeekingData.php │ │ ├── DebugBar.php │ │ ├── DebugBarException.php │ │ ├── HttpDriverInterface.php │ │ ├── JavascriptRenderer.php │ │ ├── OpenHandler.php │ │ ├── PhpHttpDriver.php │ │ ├── RequestIdGenerator.php │ │ ├── RequestIdGeneratorInterface.php │ │ ├── Resources │ │ ├── debugbar.css │ │ ├── debugbar.js │ │ ├── openhandler.css │ │ ├── openhandler.js │ │ ├── vendor │ │ │ ├── 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 │ │ │ ├── highlightjs │ │ │ │ ├── highlight.pack.js │ │ │ │ └── styles │ │ │ │ │ └── github.css │ │ │ └── jquery │ │ │ │ └── dist │ │ │ │ └── jquery.min.js │ │ ├── widgets.css │ │ ├── widgets.js │ │ └── widgets │ │ │ ├── mails │ │ │ ├── widget.css │ │ │ └── widget.js │ │ │ ├── sqlqueries │ │ │ ├── widget.css │ │ │ └── widget.js │ │ │ └── templates │ │ │ ├── widget.css │ │ │ └── widget.js │ │ ├── StandardDebugBar.php │ │ └── Storage │ │ ├── FileStorage.php │ │ ├── MemcachedStorage.php │ │ ├── PdoStorage.php │ │ ├── RedisStorage.php │ │ ├── StorageInterface.php │ │ └── pdo_storage_schema.sql ├── mews │ └── captcha │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENCE.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── assets │ │ ├── backgrounds │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ ├── 04.png │ │ │ ├── 05.png │ │ │ ├── 06.png │ │ │ ├── 07.png │ │ │ ├── 08.png │ │ │ ├── 09.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ └── 12.png │ │ └── fonts │ │ │ ├── ABeeZee_regular.ttf │ │ │ ├── Asap_700.ttf │ │ │ ├── Khand_500.ttf │ │ │ ├── Open_Sans_regular.ttf │ │ │ ├── Roboto_regular.ttf │ │ │ ├── Ubuntu_regular.ttf │ │ │ └── license │ │ │ ├── LICENSE-2.0.txt │ │ │ ├── OFL.txt │ │ │ └── ubuntu-font-licence-1.0.txt │ │ ├── composer.json │ │ ├── config │ │ └── captcha.php │ │ ├── phpunit.xml │ │ ├── src │ │ ├── Captcha.php │ │ ├── CaptchaController.php │ │ ├── CaptchaServiceProvider.php │ │ ├── Facades │ │ │ └── Captcha.php │ │ ├── LumenCaptchaController.php │ │ └── helpers.php │ │ └── tests │ │ └── Captcha │ │ ├── CaptchaServiceProviderTest.php │ │ └── CaptchaTest.php ├── meyfa │ └── php-svg │ │ ├── .codeclimate.yml │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .phpmdRulesets.xml │ │ ├── .phpunit.xml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── autoloader.php │ │ ├── composer.json │ │ ├── src │ │ ├── Nodes │ │ │ ├── Embedded │ │ │ │ └── SVGImage.php │ │ │ ├── SVGGenericNodeType.php │ │ │ ├── SVGNode.php │ │ │ ├── SVGNodeContainer.php │ │ │ ├── Shapes │ │ │ │ ├── SVGCircle.php │ │ │ │ ├── SVGEllipse.php │ │ │ │ ├── SVGLine.php │ │ │ │ ├── SVGPath.php │ │ │ │ ├── SVGPolygon.php │ │ │ │ ├── SVGPolygonalShape.php │ │ │ │ ├── SVGPolyline.php │ │ │ │ └── SVGRect.php │ │ │ ├── Structures │ │ │ │ ├── SVGClipPath.php │ │ │ │ ├── SVGDefs.php │ │ │ │ ├── SVGDocumentFragment.php │ │ │ │ ├── SVGFont.php │ │ │ │ ├── SVGGroup.php │ │ │ │ ├── SVGLinkGroup.php │ │ │ │ └── SVGStyle.php │ │ │ └── Texts │ │ │ │ ├── SVGText.php │ │ │ │ ├── SVGTextPath.php │ │ │ │ └── SVGTitle.php │ │ ├── Rasterization │ │ │ ├── Path │ │ │ │ ├── SVGArcApproximator.php │ │ │ │ ├── SVGBezierApproximator.php │ │ │ │ ├── SVGPathApproximator.php │ │ │ │ ├── SVGPathParser.php │ │ │ │ └── SVGPolygonBuilder.php │ │ │ ├── Renderers │ │ │ │ ├── SVGEllipseRenderer.php │ │ │ │ ├── SVGImageRenderer.php │ │ │ │ ├── SVGLineRenderer.php │ │ │ │ ├── SVGPolygonRenderer.php │ │ │ │ ├── SVGRectRenderer.php │ │ │ │ ├── SVGRenderer.php │ │ │ │ └── SVGTextRenderer.php │ │ │ └── SVGRasterizer.php │ │ ├── Reading │ │ │ └── SVGReader.php │ │ ├── SVG.php │ │ ├── Utilities │ │ │ ├── Colors │ │ │ │ ├── Color.php │ │ │ │ └── ColorLookup.php │ │ │ ├── SVGStyleParser.php │ │ │ └── Units │ │ │ │ ├── Angle.php │ │ │ │ └── Length.php │ │ └── Writing │ │ │ └── SVGWriter.php │ │ └── tests │ │ ├── Nodes │ │ ├── Embedded │ │ │ └── SVGImageTest.php │ │ ├── SVGNodeContainerTest.php │ │ ├── SVGNodeTest.php │ │ ├── Shapes │ │ │ ├── SVGCircleTest.php │ │ │ ├── SVGEllipseTest.php │ │ │ ├── SVGLineTest.php │ │ │ ├── SVGPathTest.php │ │ │ ├── SVGPolygonTest.php │ │ │ ├── SVGPolygonalShapeTest.php │ │ │ ├── SVGPolylineTest.php │ │ │ └── SVGRectTest.php │ │ └── Structures │ │ │ ├── SVGDefsTest.php │ │ │ ├── SVGDocumentFragmentTest.php │ │ │ └── SVGStyleTest.php │ │ ├── Rasterization │ │ ├── Path │ │ │ ├── SVGArcApproximatorTest.php │ │ │ ├── SVGBezierApproximatorTest.php │ │ │ ├── SVGPathApproximatorTest.php │ │ │ ├── SVGPathParserTest.php │ │ │ └── SVGPolygonBuilderTest.php │ │ ├── Renderers │ │ │ ├── SVGImageRendererTest.php │ │ │ ├── SVGRectRendererTest.php │ │ │ └── SVGRendererTest.php │ │ └── SVGRasterizerTest.php │ │ ├── Reading │ │ └── SVGReaderTest.php │ │ ├── SVGTest.php │ │ ├── Utilities │ │ ├── Colors │ │ │ ├── ColorLookupTest.php │ │ │ └── ColorTest.php │ │ └── Units │ │ │ ├── AngleTest.php │ │ │ └── LengthTest.php │ │ ├── Writing │ │ └── SVGWriterTest.php │ │ ├── images │ │ ├── empty-4x8.png │ │ ├── rect-20x40.png │ │ ├── renderer-rect-empty.png │ │ ├── renderer-rect-fill-alpha.png │ │ ├── renderer-rect-fill-rounded.png │ │ ├── renderer-rect-fill.png │ │ ├── renderer-rect-stroke-alpha.png │ │ ├── renderer-rect-stroke-fill.png │ │ ├── renderer-rect-stroke-rounded.png │ │ ├── renderer-rect-stroke-thick.png │ │ └── renderer-rect-stroke.png │ │ ├── php_test.svg │ │ └── sample.svg ├── mockery │ └── mockery │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .phpstorm.meta.php │ │ ├── .scrutinizer.yml │ │ ├── .styleci.yml │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── composer.json │ │ ├── docker │ │ └── php56 │ │ │ └── Dockerfile │ │ ├── docs │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── conf.py │ │ ├── cookbook │ │ │ ├── big_parent_class.rst │ │ │ ├── class_constants.rst │ │ │ ├── default_expectations.rst │ │ │ ├── detecting_mock_objects.rst │ │ │ ├── index.rst │ │ │ ├── map.rst.inc │ │ │ ├── mockery_on.rst │ │ │ ├── mocking_hard_dependencies.rst │ │ │ └── not_calling_the_constructor.rst │ │ ├── getting_started │ │ │ ├── index.rst │ │ │ ├── installation.rst │ │ │ ├── map.rst.inc │ │ │ ├── quick_reference.rst │ │ │ ├── simple_example.rst │ │ │ └── upgrading.rst │ │ ├── index.rst │ │ ├── mockery │ │ │ ├── configuration.rst │ │ │ ├── exceptions.rst │ │ │ ├── gotchas.rst │ │ │ ├── index.rst │ │ │ ├── map.rst.inc │ │ │ └── reserved_method_names.rst │ │ └── reference │ │ │ ├── alternative_should_receive_syntax.rst │ │ │ ├── argument_validation.rst │ │ │ ├── creating_test_doubles.rst │ │ │ ├── demeter_chains.rst │ │ │ ├── expectations.rst │ │ │ ├── final_methods_classes.rst │ │ │ ├── index.rst │ │ │ ├── instance_mocking.rst │ │ │ ├── magic_methods.rst │ │ │ ├── map.rst.inc │ │ │ ├── partial_mocks.rst │ │ │ ├── pass_by_reference_behaviours.rst │ │ │ ├── phpunit_integration.rst │ │ │ ├── protected_methods.rst │ │ │ ├── public_properties.rst │ │ │ ├── public_static_properties.rst │ │ │ └── spies.rst │ │ ├── library │ │ ├── Mockery.php │ │ ├── Mockery │ │ │ ├── Adapter │ │ │ │ └── Phpunit │ │ │ │ │ ├── Legacy │ │ │ │ │ ├── TestListenerForV5.php │ │ │ │ │ ├── TestListenerForV6.php │ │ │ │ │ ├── TestListenerForV7.php │ │ │ │ │ └── TestListenerTrait.php │ │ │ │ │ ├── MockeryPHPUnitIntegration.php │ │ │ │ │ ├── MockeryTestCase.php │ │ │ │ │ └── TestListener.php │ │ │ ├── ClosureWrapper.php │ │ │ ├── CompositeExpectation.php │ │ │ ├── Configuration.php │ │ │ ├── Container.php │ │ │ ├── CountValidator │ │ │ │ ├── AtLeast.php │ │ │ │ ├── AtMost.php │ │ │ │ ├── CountValidatorAbstract.php │ │ │ │ ├── Exact.php │ │ │ │ └── Exception.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── InvalidCountException.php │ │ │ │ ├── InvalidOrderException.php │ │ │ │ ├── NoMatchingExpectationException.php │ │ │ │ └── RuntimeException.php │ │ │ ├── Expectation.php │ │ │ ├── ExpectationDirector.php │ │ │ ├── ExpectationInterface.php │ │ │ ├── ExpectsHigherOrderMessage.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 │ │ │ │ │ │ ├── ConstantsPass.php │ │ │ │ │ │ ├── InstanceMockPass.php │ │ │ │ │ │ ├── InterfacePass.php │ │ │ │ │ │ ├── MagicMethodTypeHintsPass.php │ │ │ │ │ │ ├── MethodDefinitionPass.php │ │ │ │ │ │ ├── Pass.php │ │ │ │ │ │ ├── RemoveBuiltinMethodsThatAreFinalPass.php │ │ │ │ │ │ ├── RemoveDestructorPass.php │ │ │ │ │ │ ├── RemoveUnserializeForInternalSerializableClassesPass.php │ │ │ │ │ │ └── TraitPass.php │ │ │ │ ├── StringManipulationGenerator.php │ │ │ │ ├── TargetClassInterface.php │ │ │ │ └── UndefinedTargetClass.php │ │ │ ├── HigherOrderMessage.php │ │ │ ├── Instantiator.php │ │ │ ├── Loader │ │ │ │ ├── EvalLoader.php │ │ │ │ ├── Loader.php │ │ │ │ └── RequireLoader.php │ │ │ ├── Matcher │ │ │ │ ├── AndAnyOtherArgs.php │ │ │ │ ├── Any.php │ │ │ │ ├── AnyArgs.php │ │ │ │ ├── AnyOf.php │ │ │ │ ├── ArgumentListMatcher.php │ │ │ │ ├── Closure.php │ │ │ │ ├── Contains.php │ │ │ │ ├── Ducktype.php │ │ │ │ ├── HasKey.php │ │ │ │ ├── HasValue.php │ │ │ │ ├── MatcherAbstract.php │ │ │ │ ├── MultiArgumentClosure.php │ │ │ │ ├── MustBe.php │ │ │ │ ├── NoArgs.php │ │ │ │ ├── Not.php │ │ │ │ ├── NotAnyOf.php │ │ │ │ ├── PHPUnitConstraint.php │ │ │ │ ├── Pattern.php │ │ │ │ ├── Subset.php │ │ │ │ └── Type.php │ │ │ ├── MethodCall.php │ │ │ ├── Mock.php │ │ │ ├── MockInterface.php │ │ │ ├── ReceivedMethodCalls.php │ │ │ ├── Undefined.php │ │ │ ├── VerificationDirector.php │ │ │ └── VerificationExpectation.php │ │ └── helpers.php │ │ ├── phpunit.xml.dist │ │ └── tests │ │ ├── Bootstrap.php │ │ ├── Mockery │ │ ├── Adapter │ │ │ └── Phpunit │ │ │ │ ├── MockeryPHPUnitIntegrationTest.php │ │ │ │ └── TestListenerTest.php │ │ ├── AdhocTest.php │ │ ├── AllowsExpectsSyntaxTest.php │ │ ├── CallableSpyTest.php │ │ ├── ContainerTest.php │ │ ├── DemeterChainTest.php │ │ ├── DummyClasses │ │ │ ├── DemeterChain.php │ │ │ └── Namespaced.php │ │ ├── ExpectationTest.php │ │ ├── Fixtures │ │ │ ├── ClassWithAllLowerCaseMethod.php │ │ │ ├── ClassWithConstants.php │ │ │ ├── EmptyTestCaseV5.php │ │ │ ├── EmptyTestCaseV6.php │ │ │ ├── EmptyTestCaseV7.php │ │ │ ├── MethodWithHHVMReturnType.php │ │ │ ├── MethodWithIterableTypeHints.php │ │ │ ├── MethodWithNullableReturnType.php │ │ │ ├── MethodWithNullableTypedParameter.php │ │ │ ├── MethodWithParametersWithDefaultValues.php │ │ │ ├── MethodWithVoidReturnType.php │ │ │ └── SemiReservedWordsAsMethods.php │ │ ├── Generator │ │ │ ├── DefinedTargetClassTest.php │ │ │ ├── MockConfigurationBuilderTest.php │ │ │ ├── MockConfigurationTest.php │ │ │ └── StringManipulation │ │ │ │ └── Pass │ │ │ │ ├── CallTypeHintPassTest.php │ │ │ │ ├── ClassNamePassTest.php │ │ │ │ ├── ConstantsPassTest.php │ │ │ │ ├── InstanceMockPassTest.php │ │ │ │ └── InterfacePassTest.php │ │ ├── GlobalHelpersTest.php │ │ ├── HamcrestExpectationTest.php │ │ ├── Loader │ │ │ ├── EvalLoaderTest.php │ │ │ ├── LoaderTestCase.php │ │ │ └── RequireLoaderTest.php │ │ ├── Matcher │ │ │ ├── PHPUnitConstraintTest.php │ │ │ └── SubsetTest.php │ │ ├── MockClassWithFinalWakeupTest.php │ │ ├── MockClassWithMethodOverloadingTest.php │ │ ├── MockClassWithUnknownTypeHintTest.php │ │ ├── MockTest.php │ │ ├── MockeryCanMockClassesWithSemiReservedWordsTest.php │ │ ├── MockeryCanMockMultipleInterfacesWhichOverlapTest.php │ │ ├── MockingAllLowerCasedMethodsTest.php │ │ ├── MockingClassConstantsTest.php │ │ ├── MockingHHVMMethodsTest.php │ │ ├── MockingMethodsWithIterableTypeHintsTest.php │ │ ├── MockingMethodsWithNullableParametersTest.php │ │ ├── MockingNullableMethodsTest.php │ │ ├── MockingProtectedMethodsTest.php │ │ ├── MockingVariadicArgumentsTest.php │ │ ├── MockingVoidMethodsTest.php │ │ ├── NamedMockTest.php │ │ ├── SpyTest.php │ │ ├── Stubs │ │ │ ├── Animal.php │ │ │ └── Habitat.php │ │ ├── TraitsTest.php │ │ ├── WithFormatterExpectationTest.php │ │ └── _files │ │ │ └── file.txt │ │ ├── PHP56 │ │ └── MockingOldStyleConstructorTest.php │ │ ├── PHP70 │ │ ├── Generator │ │ │ └── StringManipulation │ │ │ │ └── Pass │ │ │ │ └── MagicMethodTypeHintsPassTest.php │ │ └── MockingParameterAndReturnTypesTest.php │ │ └── PHP72 │ │ └── Php72LanguageFeaturesTest.php ├── monolog │ └── monolog │ │ ├── .php_cs │ │ ├── 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 │ │ │ ├── InsightOpsHandler.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 │ │ │ ├── ProcessorInterface.php │ │ │ ├── PsrLogMessageProcessor.php │ │ │ ├── TagProcessor.php │ │ │ ├── UidProcessor.php │ │ │ └── WebProcessor.php │ │ │ ├── Registry.php │ │ │ ├── ResettableInterface.php │ │ │ ├── SignalHandler.php │ │ │ └── Utils.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 │ │ ├── InsightOpsHandlerTest.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 │ │ ├── RollbarHandlerTest.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 │ │ ├── SignalHandlerTest.php │ │ └── TestCase.php ├── mtdowling │ └── cron-expression │ │ ├── .editorconfig │ │ ├── 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 ├── myclabs │ └── deep-copy │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .scrutinizer.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── doc │ │ ├── clone.png │ │ ├── deep-clone.png │ │ ├── deep-copy.png │ │ └── graph.png │ │ ├── fixtures │ │ ├── f001 │ │ │ ├── A.php │ │ │ └── B.php │ │ ├── f002 │ │ │ └── A.php │ │ ├── f003 │ │ │ └── Foo.php │ │ ├── f004 │ │ │ └── UnclonableItem.php │ │ ├── f005 │ │ │ └── Foo.php │ │ ├── f006 │ │ │ ├── A.php │ │ │ └── B.php │ │ ├── f007 │ │ │ ├── FooDateInterval.php │ │ │ └── FooDateTimeZone.php │ │ └── f008 │ │ │ ├── A.php │ │ │ └── B.php │ │ └── src │ │ └── DeepCopy │ │ ├── DeepCopy.php │ │ ├── Exception │ │ ├── CloneException.php │ │ └── PropertyException.php │ │ ├── Filter │ │ ├── Doctrine │ │ │ ├── DoctrineCollectionFilter.php │ │ │ ├── DoctrineEmptyCollectionFilter.php │ │ │ └── DoctrineProxyFilter.php │ │ ├── Filter.php │ │ ├── KeepFilter.php │ │ ├── ReplaceFilter.php │ │ └── SetNullFilter.php │ │ ├── Matcher │ │ ├── Doctrine │ │ │ └── DoctrineProxyMatcher.php │ │ ├── Matcher.php │ │ ├── PropertyMatcher.php │ │ ├── PropertyNameMatcher.php │ │ └── PropertyTypeMatcher.php │ │ ├── Reflection │ │ └── ReflectionHelper.php │ │ ├── TypeFilter │ │ ├── Date │ │ │ └── DateIntervalFilter.php │ │ ├── ReplaceFilter.php │ │ ├── ShallowCopyFilter.php │ │ ├── Spl │ │ │ ├── SplDoublyLinkedList.php │ │ │ └── SplDoublyLinkedListFilter.php │ │ └── TypeFilter.php │ │ ├── TypeMatcher │ │ └── TypeMatcher.php │ │ └── deep_copy.php ├── nesbot │ └── carbon │ │ ├── LICENSE │ │ ├── composer.json │ │ ├── readme.md │ │ └── src │ │ ├── Carbon │ │ ├── Carbon.php │ │ ├── CarbonInterval.php │ │ ├── CarbonPeriod.php │ │ ├── Exceptions │ │ │ └── InvalidDateException.php │ │ ├── Lang │ │ │ ├── af.php │ │ │ ├── ar.php │ │ │ ├── ar_Shakl.php │ │ │ ├── az.php │ │ │ ├── bg.php │ │ │ ├── bn.php │ │ │ ├── bs_BA.php │ │ │ ├── ca.php │ │ │ ├── cs.php │ │ │ ├── cy.php │ │ │ ├── da.php │ │ │ ├── de.php │ │ │ ├── dv_MV.php │ │ │ ├── el.php │ │ │ ├── en.php │ │ │ ├── eo.php │ │ │ ├── es.php │ │ │ ├── et.php │ │ │ ├── eu.php │ │ │ ├── fa.php │ │ │ ├── fi.php │ │ │ ├── fo.php │ │ │ ├── fr.php │ │ │ ├── gl.php │ │ │ ├── gu.php │ │ │ ├── he.php │ │ │ ├── hi.php │ │ │ ├── hr.php │ │ │ ├── hu.php │ │ │ ├── hy.php │ │ │ ├── id.php │ │ │ ├── is.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── ka.php │ │ │ ├── kk.php │ │ │ ├── km.php │ │ │ ├── ko.php │ │ │ ├── lt.php │ │ │ ├── lv.php │ │ │ ├── mk.php │ │ │ ├── mn.php │ │ │ ├── ms.php │ │ │ ├── my.php │ │ │ ├── ne.php │ │ │ ├── nl.php │ │ │ ├── no.php │ │ │ ├── oc.php │ │ │ ├── pl.php │ │ │ ├── ps.php │ │ │ ├── pt.php │ │ │ ├── pt_BR.php │ │ │ ├── ro.php │ │ │ ├── ru.php │ │ │ ├── sh.php │ │ │ ├── sk.php │ │ │ ├── sl.php │ │ │ ├── sq.php │ │ │ ├── sr.php │ │ │ ├── sr_Cyrl.php │ │ │ ├── sr_Cyrl_ME.php │ │ │ ├── sr_Latn_ME.php │ │ │ ├── sr_ME.php │ │ │ ├── sv.php │ │ │ ├── sw.php │ │ │ ├── th.php │ │ │ ├── tr.php │ │ │ ├── uk.php │ │ │ ├── ur.php │ │ │ ├── uz.php │ │ │ ├── vi.php │ │ │ ├── zh.php │ │ │ └── zh_TW.php │ │ ├── Laravel │ │ │ └── ServiceProvider.php │ │ └── Translator.php │ │ └── JsonSerializable.php ├── nikic │ └── php-parser │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADE-1.0.md │ │ ├── UPGRADE-2.0.md │ │ ├── UPGRADE-3.0.md │ │ ├── UPGRADE-4.0.md │ │ ├── bin │ │ └── php-parse │ │ ├── composer.json │ │ ├── doc │ │ ├── 0_Introduction.markdown │ │ ├── 2_Usage_of_basic_components.markdown │ │ ├── README.md │ │ └── component │ │ │ ├── AST_builders.markdown │ │ │ ├── Constant_expression_evaluation.markdown │ │ │ ├── Error_handling.markdown │ │ │ ├── FAQ.markdown │ │ │ ├── JSON_representation.markdown │ │ │ ├── Lexer.markdown │ │ │ ├── Name_resolution.markdown │ │ │ ├── Performance.markdown │ │ │ ├── Pretty_printing.markdown │ │ │ └── Walking_the_AST.markdown │ │ ├── grammar │ │ ├── README.md │ │ ├── parser.template │ │ ├── php5.y │ │ ├── php7.y │ │ ├── rebuildParsers.php │ │ ├── tokens.template │ │ └── tokens.y │ │ ├── lib │ │ └── PhpParser │ │ │ ├── Builder.php │ │ │ ├── Builder │ │ │ ├── Class_.php │ │ │ ├── Declaration.php │ │ │ ├── FunctionLike.php │ │ │ ├── Function_.php │ │ │ ├── Interface_.php │ │ │ ├── Method.php │ │ │ ├── Namespace_.php │ │ │ ├── Param.php │ │ │ ├── Property.php │ │ │ ├── TraitUse.php │ │ │ ├── TraitUseAdaptation.php │ │ │ ├── Trait_.php │ │ │ └── Use_.php │ │ │ ├── BuilderFactory.php │ │ │ ├── BuilderHelpers.php │ │ │ ├── Comment.php │ │ │ ├── Comment │ │ │ └── Doc.php │ │ │ ├── ConstExprEvaluationException.php │ │ │ ├── ConstExprEvaluator.php │ │ │ ├── Error.php │ │ │ ├── ErrorHandler.php │ │ │ ├── ErrorHandler │ │ │ ├── Collecting.php │ │ │ └── Throwing.php │ │ │ ├── Internal │ │ │ ├── DiffElem.php │ │ │ ├── Differ.php │ │ │ ├── PrintableNewAnonClassNode.php │ │ │ └── TokenStream.php │ │ │ ├── JsonDecoder.php │ │ │ ├── Lexer.php │ │ │ ├── Lexer │ │ │ └── Emulative.php │ │ │ ├── NameContext.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 │ │ │ │ ├── Error.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 │ │ │ ├── Identifier.php │ │ │ ├── Name.php │ │ │ ├── Name │ │ │ │ ├── FullyQualified.php │ │ │ │ └── Relative.php │ │ │ ├── NullableType.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 │ │ │ │ ├── Expression.php │ │ │ │ ├── Finally_.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 │ │ │ └── VarLikeIdentifier.php │ │ │ ├── NodeAbstract.php │ │ │ ├── NodeDumper.php │ │ │ ├── NodeFinder.php │ │ │ ├── NodeTraverser.php │ │ │ ├── NodeTraverserInterface.php │ │ │ ├── NodeVisitor.php │ │ │ ├── NodeVisitor │ │ │ ├── CloningVisitor.php │ │ │ ├── FindingVisitor.php │ │ │ ├── FirstFindingVisitor.php │ │ │ └── NameResolver.php │ │ │ ├── NodeVisitorAbstract.php │ │ │ ├── Parser.php │ │ │ ├── Parser │ │ │ ├── Multiple.php │ │ │ ├── Php5.php │ │ │ ├── Php7.php │ │ │ └── Tokens.php │ │ │ ├── ParserAbstract.php │ │ │ ├── ParserFactory.php │ │ │ ├── PrettyPrinter │ │ │ └── Standard.php │ │ │ └── PrettyPrinterAbstract.php │ │ ├── phpunit.xml.dist │ │ ├── test │ │ ├── PhpParser │ │ │ ├── Builder │ │ │ │ ├── ClassTest.php │ │ │ │ ├── FunctionTest.php │ │ │ │ ├── InterfaceTest.php │ │ │ │ ├── MethodTest.php │ │ │ │ ├── NamespaceTest.php │ │ │ │ ├── ParamTest.php │ │ │ │ ├── PropertyTest.php │ │ │ │ ├── TraitTest.php │ │ │ │ ├── TraitUseAdaptationTest.php │ │ │ │ ├── TraitUseTest.php │ │ │ │ └── UseTest.php │ │ │ ├── BuilderFactoryTest.php │ │ │ ├── CodeParsingTest.php │ │ │ ├── CodeTestAbstract.php │ │ │ ├── CodeTestParser.php │ │ │ ├── CommentTest.php │ │ │ ├── ConstExprEvaluatorTest.php │ │ │ ├── ErrorHandler │ │ │ │ ├── CollectingTest.php │ │ │ │ └── ThrowingTest.php │ │ │ ├── ErrorTest.php │ │ │ ├── Internal │ │ │ │ └── DifferTest.php │ │ │ ├── JsonDecoderTest.php │ │ │ ├── Lexer │ │ │ │ └── EmulativeTest.php │ │ │ ├── LexerTest.php │ │ │ ├── NameContextTest.php │ │ │ ├── Node │ │ │ │ ├── IdentifierTest.php │ │ │ │ ├── NameTest.php │ │ │ │ ├── Scalar │ │ │ │ │ ├── MagicConstTest.php │ │ │ │ │ └── StringTest.php │ │ │ │ └── Stmt │ │ │ │ │ ├── ClassConstTest.php │ │ │ │ │ ├── ClassMethodTest.php │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ └── PropertyTest.php │ │ │ ├── NodeAbstractTest.php │ │ │ ├── NodeDumperTest.php │ │ │ ├── NodeFinderTest.php │ │ │ ├── NodeTraverserTest.php │ │ │ ├── NodeVisitor │ │ │ │ ├── FindingVisitorTest.php │ │ │ │ ├── FirstFindingVisitorTest.php │ │ │ │ └── NameResolverTest.php │ │ │ ├── Parser │ │ │ │ ├── MultipleTest.php │ │ │ │ ├── Php5Test.php │ │ │ │ └── Php7Test.php │ │ │ ├── ParserFactoryTest.php │ │ │ ├── ParserTest.php │ │ │ └── PrettyPrinterTest.php │ │ ├── bootstrap.php │ │ ├── code │ │ │ ├── formatPreservation │ │ │ │ ├── addingPropertyType.test │ │ │ │ ├── anonClasses.test │ │ │ │ ├── basic.test │ │ │ │ ├── blockConversion.test │ │ │ │ ├── comments.test │ │ │ │ ├── fixup.test │ │ │ │ ├── inlineHtml.test │ │ │ │ ├── insertionOfNullable.test │ │ │ │ ├── listInsertion.test │ │ │ │ ├── listInsertionIndentation.test │ │ │ │ ├── listRemoval.test │ │ │ │ ├── modifierChange.test │ │ │ │ ├── nopCommentAtEnd.test │ │ │ │ ├── removalViaNull.test │ │ │ │ ├── removingPropertyType.test │ │ │ │ └── traitAlias.test │ │ │ ├── parser │ │ │ │ ├── blockComments.test │ │ │ │ ├── commentAtEndOfClass.test │ │ │ │ ├── comments.test │ │ │ │ ├── errorHandling │ │ │ │ │ ├── eofError.test │ │ │ │ │ ├── lexerErrors.test │ │ │ │ │ └── recovery.test │ │ │ │ ├── expr │ │ │ │ │ ├── arrayDef.test │ │ │ │ │ ├── arrayDestructuring.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 │ │ │ │ │ ├── listReferences.test │ │ │ │ │ ├── listWithKeys.test │ │ │ │ │ ├── logic.test │ │ │ │ │ ├── math.test │ │ │ │ │ ├── new.test │ │ │ │ │ ├── newWithoutClass.test │ │ │ │ │ ├── print.test │ │ │ │ │ ├── shellExec.test │ │ │ │ │ ├── ternaryAndCoalesce.test │ │ │ │ │ ├── trailingCommas.test │ │ │ │ │ ├── uvs │ │ │ │ │ │ ├── globalNonSimpleVarError.test │ │ │ │ │ │ ├── indirectCall.test │ │ │ │ │ │ ├── isset.test │ │ │ │ │ │ ├── misc.test │ │ │ │ │ │ ├── new.test │ │ │ │ │ │ └── staticProperty.test │ │ │ │ │ └── variable.test │ │ │ │ ├── exprStmtMode.test │ │ │ │ ├── scalar │ │ │ │ │ ├── constantString.test │ │ │ │ │ ├── docString.test │ │ │ │ │ ├── docStringNewlines.test │ │ │ │ │ ├── encapsedNegVarOffset.test │ │ │ │ │ ├── encapsedString.test │ │ │ │ │ ├── flexibleDocString.test │ │ │ │ │ ├── flexibleDocStringErrors.test │ │ │ │ │ ├── float.test │ │ │ │ │ ├── int.test │ │ │ │ │ ├── invalidOctal.test │ │ │ │ │ ├── magicConst.test │ │ │ │ │ └── unicodeEscape.test │ │ │ │ ├── semiReserved.test │ │ │ │ └── stmt │ │ │ │ │ ├── blocklessStatement.test │ │ │ │ │ ├── class │ │ │ │ │ ├── abstract.test │ │ │ │ │ ├── anonymous.test │ │ │ │ │ ├── conditional.test │ │ │ │ │ ├── constModifierErrors.test │ │ │ │ │ ├── constModifiers.test │ │ │ │ │ ├── final.test │ │ │ │ │ ├── implicitPublic.test │ │ │ │ │ ├── interface.test │ │ │ │ │ ├── modifier.test │ │ │ │ │ ├── name.test │ │ │ │ │ ├── php4Style.test │ │ │ │ │ ├── propertyTypes.test │ │ │ │ │ ├── simple.test │ │ │ │ │ ├── staticMethod.test │ │ │ │ │ └── trait.test │ │ │ │ │ ├── const.test │ │ │ │ │ ├── controlFlow.test │ │ │ │ │ ├── declare.test │ │ │ │ │ ├── echo.test │ │ │ │ │ ├── function │ │ │ │ │ ├── builtinTypeDeclarations.test │ │ │ │ │ ├── byRef.test │ │ │ │ │ ├── conditional.test │ │ │ │ │ ├── defaultValues.test │ │ │ │ │ ├── nullableTypes.test │ │ │ │ │ ├── returnTypes.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 │ │ │ │ │ ├── multiCatch.test │ │ │ │ │ ├── namespace │ │ │ │ │ ├── alias.test │ │ │ │ │ ├── braced.test │ │ │ │ │ ├── commentAfterNamespace.test │ │ │ │ │ ├── groupUse.test │ │ │ │ │ ├── groupUseErrors.test │ │ │ │ │ ├── groupUsePositions.test │ │ │ │ │ ├── groupUseTrailingComma.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 │ │ │ │ ├── commentsInCommaList.test │ │ │ │ ├── expr │ │ │ │ ├── anonymousClass.test │ │ │ │ ├── arrayDestructuring.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 │ │ │ │ ├── nestedInlineHTML.test │ │ │ │ ├── onlyInlineHTML.file-test │ │ │ │ ├── onlyPHP.file-test │ │ │ │ └── stmt │ │ │ │ ├── alias.test │ │ │ │ ├── break_continue.test │ │ │ │ ├── class.test │ │ │ │ ├── class_const.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 │ │ │ │ ├── multiCatch.test │ │ │ │ ├── namespaces.test │ │ │ │ ├── nullable_types.test │ │ │ │ ├── properties.test │ │ │ │ ├── switch.test │ │ │ │ ├── throw.test │ │ │ │ ├── traitUse.test │ │ │ │ ├── tryCatch.test │ │ │ │ └── while.test │ │ └── updateTests.php │ │ └── test_old │ │ ├── run-php-src.sh │ │ └── run.php ├── orangehill │ └── iseed │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ ├── Orangehill │ │ │ └── Iseed │ │ │ │ ├── Exceptions.php │ │ │ │ ├── Facades │ │ │ │ └── Iseed.php │ │ │ │ ├── Iseed.php │ │ │ │ ├── IseedCommand.php │ │ │ │ ├── IseedServiceProvider.php │ │ │ │ └── Stubs │ │ │ │ └── seed.stub │ │ └── config │ │ │ └── config.php │ │ └── tests │ │ ├── .gitkeep │ │ ├── IseedTest.php │ │ └── Stubs │ │ ├── seed.stub │ │ ├── seed_5.stub │ │ ├── seed_505.stub │ │ └── seed_blank.stub ├── overtrue │ └── pinyin │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── data │ │ ├── surnames │ │ ├── words_0 │ │ ├── words_1 │ │ ├── words_2 │ │ ├── words_3 │ │ ├── words_4 │ │ └── words_5 │ │ └── src │ │ ├── DictLoaderInterface.php │ │ ├── FileDictLoader.php │ │ ├── GeneratorFileDictLoader.php │ │ ├── MemoryFileDictLoader.php │ │ ├── Pinyin.php │ │ └── const.php ├── paragonie │ └── random_compat │ │ ├── LICENSE │ │ ├── build-phar.sh │ │ ├── composer.json │ │ ├── dist │ │ ├── random_compat.phar.pubkey │ │ └── random_compat.phar.pubkey.asc │ │ ├── lib │ │ └── random.php │ │ ├── other │ │ └── build_phar.php │ │ ├── psalm-autoload.php │ │ └── psalm.xml ├── phar-io │ ├── manifest │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── examples │ │ │ └── example-01.php │ │ ├── phive.xml │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── ManifestDocumentMapper.php │ │ │ ├── ManifestLoader.php │ │ │ ├── ManifestSerializer.php │ │ │ ├── exceptions │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidApplicationNameException.php │ │ │ │ ├── InvalidEmailException.php │ │ │ │ ├── InvalidUrlException.php │ │ │ │ ├── ManifestDocumentException.php │ │ │ │ ├── ManifestDocumentMapperException.php │ │ │ │ ├── ManifestElementException.php │ │ │ │ └── ManifestLoaderException.php │ │ │ ├── values │ │ │ │ ├── Application.php │ │ │ │ ├── ApplicationName.php │ │ │ │ ├── Author.php │ │ │ │ ├── AuthorCollection.php │ │ │ │ ├── AuthorCollectionIterator.php │ │ │ │ ├── BundledComponent.php │ │ │ │ ├── BundledComponentCollection.php │ │ │ │ ├── BundledComponentCollectionIterator.php │ │ │ │ ├── CopyrightInformation.php │ │ │ │ ├── Email.php │ │ │ │ ├── Extension.php │ │ │ │ ├── Library.php │ │ │ │ ├── License.php │ │ │ │ ├── Manifest.php │ │ │ │ ├── PhpExtensionRequirement.php │ │ │ │ ├── PhpVersionRequirement.php │ │ │ │ ├── Requirement.php │ │ │ │ ├── RequirementCollection.php │ │ │ │ ├── RequirementCollectionIterator.php │ │ │ │ ├── Type.php │ │ │ │ └── Url.php │ │ │ └── xml │ │ │ │ ├── AuthorElement.php │ │ │ │ ├── AuthorElementCollection.php │ │ │ │ ├── BundlesElement.php │ │ │ │ ├── ComponentElement.php │ │ │ │ ├── ComponentElementCollection.php │ │ │ │ ├── ContainsElement.php │ │ │ │ ├── CopyrightElement.php │ │ │ │ ├── ElementCollection.php │ │ │ │ ├── ExtElement.php │ │ │ │ ├── ExtElementCollection.php │ │ │ │ ├── ExtensionElement.php │ │ │ │ ├── LicenseElement.php │ │ │ │ ├── ManifestDocument.php │ │ │ │ ├── ManifestDocumentLoadingException.php │ │ │ │ ├── ManifestElement.php │ │ │ │ ├── PhpElement.php │ │ │ │ └── RequiresElement.php │ │ └── tests │ │ │ ├── ManifestDocumentMapperTest.php │ │ │ ├── ManifestLoaderTest.php │ │ │ ├── ManifestSerializerTest.php │ │ │ ├── _fixture │ │ │ ├── custom.xml │ │ │ ├── extension-invalidcompatible.xml │ │ │ ├── extension.xml │ │ │ ├── invalidversion.xml │ │ │ ├── invalidversionconstraint.xml │ │ │ ├── library.xml │ │ │ ├── manifest.xml │ │ │ ├── phpunit-5.6.5.xml │ │ │ └── test.phar │ │ │ ├── exceptions │ │ │ └── ManifestDocumentLoadingExceptionTest.php │ │ │ ├── values │ │ │ ├── ApplicationNameTest.php │ │ │ ├── ApplicationTest.php │ │ │ ├── AuthorCollectionTest.php │ │ │ ├── AuthorTest.php │ │ │ ├── BundledComponentCollectionTest.php │ │ │ ├── BundledComponentTest.php │ │ │ ├── CopyrightInformationTest.php │ │ │ ├── EmailTest.php │ │ │ ├── ExtensionTest.php │ │ │ ├── LibraryTest.php │ │ │ ├── LicenseTest.php │ │ │ ├── ManifestTest.php │ │ │ ├── PhpExtensionRequirementTest.php │ │ │ ├── PhpVersionRequirementTest.php │ │ │ ├── RequirementCollectionTest.php │ │ │ └── UrlTest.php │ │ │ └── xml │ │ │ ├── AuthorElementCollectionTest.php │ │ │ ├── AuthorElementTest.php │ │ │ ├── BundlesElementTest.php │ │ │ ├── ComponentElementCollectionTest.php │ │ │ ├── ComponentElementTest.php │ │ │ ├── ContainsElementTest.php │ │ │ ├── CopyrightElementTest.php │ │ │ ├── ExtElementCollectionTest.php │ │ │ ├── ExtElementTest.php │ │ │ ├── ExtensionElementTest.php │ │ │ ├── LicenseElementTest.php │ │ │ ├── ManifestDocumentTest.php │ │ │ ├── PhpElementTest.php │ │ │ └── RequiresElementTest.php │ └── version │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phive.xml │ │ ├── phpunit.xml │ │ ├── src │ │ ├── AbstractVersionConstraint.php │ │ ├── AndVersionConstraintGroup.php │ │ ├── AnyVersionConstraint.php │ │ ├── ExactVersionConstraint.php │ │ ├── Exception.php │ │ ├── GreaterThanOrEqualToVersionConstraint.php │ │ ├── InvalidVersionException.php │ │ ├── OrVersionConstraintGroup.php │ │ ├── PreReleaseSuffix.php │ │ ├── SpecificMajorAndMinorVersionConstraint.php │ │ ├── SpecificMajorVersionConstraint.php │ │ ├── UnsupportedVersionConstraintException.php │ │ ├── Version.php │ │ ├── VersionConstraint.php │ │ ├── VersionConstraintParser.php │ │ ├── VersionConstraintValue.php │ │ └── VersionNumber.php │ │ └── tests │ │ ├── Integration │ │ └── VersionConstraintParserTest.php │ │ └── Unit │ │ ├── AbstractVersionConstraintTest.php │ │ ├── AndVersionConstraintGroupTest.php │ │ ├── AnyVersionConstraintTest.php │ │ ├── ExactVersionConstraintTest.php │ │ ├── GreaterThanOrEqualToVersionConstraintTest.php │ │ ├── OrVersionConstraintGroupTest.php │ │ ├── SpecificMajorAndMinorVersionConstraintTest.php │ │ ├── SpecificMajorVersionConstraintTest.php │ │ └── VersionTest.php ├── phpdocumentor │ ├── reflection-common │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Element.php │ │ │ ├── File.php │ │ │ ├── Fqsen.php │ │ │ ├── Location.php │ │ │ ├── Project.php │ │ │ └── ProjectFactory.php │ ├── reflection-docblock │ │ ├── .coveralls.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── easy-coding-standard.neon │ │ └── 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 │ │ │ │ ├── AlignFormatter.php │ │ │ │ └── PassthroughFormatter.php │ │ │ │ ├── Generic.php │ │ │ │ ├── Link.php │ │ │ │ ├── Method.php │ │ │ │ ├── Param.php │ │ │ │ ├── Property.php │ │ │ │ ├── PropertyRead.php │ │ │ │ ├── PropertyWrite.php │ │ │ │ ├── Reference │ │ │ │ ├── Fqsen.php │ │ │ │ ├── Reference.php │ │ │ │ └── Url.php │ │ │ │ ├── Return_.php │ │ │ │ ├── See.php │ │ │ │ ├── Since.php │ │ │ │ ├── Source.php │ │ │ │ ├── Throws.php │ │ │ │ ├── Uses.php │ │ │ │ ├── Var_.php │ │ │ │ └── Version.php │ │ │ ├── DocBlockFactory.php │ │ │ └── DocBlockFactoryInterface.php │ └── type-resolver │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── FqsenResolver.php │ │ ├── Type.php │ │ ├── TypeResolver.php │ │ └── Types │ │ ├── Array_.php │ │ ├── Boolean.php │ │ ├── Callable_.php │ │ ├── Compound.php │ │ ├── Context.php │ │ ├── ContextFactory.php │ │ ├── Float_.php │ │ ├── Integer.php │ │ ├── Iterable_.php │ │ ├── Mixed_.php │ │ ├── Null_.php │ │ ├── Nullable.php │ │ ├── Object_.php │ │ ├── Parent_.php │ │ ├── Resource_.php │ │ ├── Scalar.php │ │ ├── Self_.php │ │ ├── Static_.php │ │ ├── String_.php │ │ ├── This.php │ │ └── Void_.php ├── phpspec │ └── prophecy │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── 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 │ │ │ ├── ThrowablePatch.php │ │ │ └── TraversablePatch.php │ │ ├── DoubleInterface.php │ │ ├── Doubler.php │ │ ├── Generator │ │ │ ├── ClassCodeGenerator.php │ │ │ ├── ClassCreator.php │ │ │ ├── ClassMirror.php │ │ │ ├── Node │ │ │ │ ├── ArgumentNode.php │ │ │ │ ├── ClassNode.php │ │ │ │ └── MethodNode.php │ │ │ ├── ReflectionInterface.php │ │ │ └── TypeHintReference.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 ├── phpunit │ ├── php-code-coverage │ │ ├── .gitattributes │ │ ├── .github │ │ │ ├── CONTRIBUTING.md │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog-2.2.md │ │ ├── ChangeLog-3.0.md │ │ ├── ChangeLog-3.1.md │ │ ├── ChangeLog-3.2.md │ │ ├── ChangeLog-3.3.md │ │ ├── ChangeLog-4.0.md │ │ ├── ChangeLog-5.0.md │ │ ├── ChangeLog-5.1.md │ │ ├── ChangeLog-5.2.md │ │ ├── ChangeLog-5.3.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── CodeCoverage.php │ │ │ ├── Driver │ │ │ │ ├── Driver.php │ │ │ │ ├── HHVM.php │ │ │ │ ├── PHPDBG.php │ │ │ │ └── Xdebug.php │ │ │ ├── Exception │ │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ │ ├── Exception.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── MissingCoversAnnotationException.php │ │ │ │ ├── RuntimeException.php │ │ │ │ └── UnintentionallyCoveredCodeException.php │ │ │ ├── Filter.php │ │ │ ├── Node │ │ │ │ ├── AbstractNode.php │ │ │ │ ├── Builder.php │ │ │ │ ├── Directory.php │ │ │ │ ├── File.php │ │ │ │ └── Iterator.php │ │ │ ├── Report │ │ │ │ ├── Clover.php │ │ │ │ ├── Crap4j.php │ │ │ │ ├── Html │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── file.js │ │ │ │ │ │ ├── holder.min.js │ │ │ │ │ │ ├── html5shiv.min.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── nv.d3.min.js │ │ │ │ │ │ └── respond.min.js │ │ │ │ │ │ └── method_item.html.dist │ │ │ │ ├── PHP.php │ │ │ │ ├── Text.php │ │ │ │ └── Xml │ │ │ │ │ ├── BuildInformation.php │ │ │ │ │ ├── Coverage.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── Facade.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── Node.php │ │ │ │ │ ├── Project.php │ │ │ │ │ ├── Report.php │ │ │ │ │ ├── Source.php │ │ │ │ │ ├── Tests.php │ │ │ │ │ ├── Totals.php │ │ │ │ │ └── Unit.php │ │ │ ├── Util.php │ │ │ └── Version.php │ │ └── tests │ │ │ ├── TestCase.php │ │ │ ├── _files │ │ │ ├── BankAccount-clover.xml │ │ │ ├── BankAccount-crap4j.xml │ │ │ ├── BankAccount-text.txt │ │ │ ├── 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 │ │ │ ├── Report │ │ │ │ ├── HTML │ │ │ │ │ ├── CoverageForBankAccount │ │ │ │ │ │ ├── BankAccount.php.html │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── CoverageForClassWithAnonymousFunction │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── source_with_class_and_anonymous_function.php.html │ │ │ │ │ └── CoverageForFileWithIgnoredLines │ │ │ │ │ │ ├── dashboard.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── source_with_ignore.php.html │ │ │ │ └── XML │ │ │ │ │ ├── CoverageForBankAccount │ │ │ │ │ ├── BankAccount.php.xml │ │ │ │ │ └── index.xml │ │ │ │ │ ├── CoverageForClassWithAnonymousFunction │ │ │ │ │ ├── index.xml │ │ │ │ │ └── source_with_class_and_anonymous_function.php.xml │ │ │ │ │ └── CoverageForFileWithIgnoredLines │ │ │ │ │ ├── index.xml │ │ │ │ │ └── source_with_ignore.php.xml │ │ │ ├── class-with-anonymous-function-clover.xml │ │ │ ├── class-with-anonymous-function-crap4j.xml │ │ │ ├── class-with-anonymous-function-text.txt │ │ │ ├── ignored-lines-clover.xml │ │ │ ├── ignored-lines-crap4j.xml │ │ │ ├── ignored-lines-text.txt │ │ │ ├── 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 │ │ │ ├── bootstrap.php │ │ │ └── tests │ │ │ ├── BuilderTest.php │ │ │ ├── CloverTest.php │ │ │ ├── CodeCoverageTest.php │ │ │ ├── Crap4jTest.php │ │ │ ├── FilterTest.php │ │ │ ├── HTMLTest.php │ │ │ ├── TextTest.php │ │ │ ├── UtilTest.php │ │ │ └── XMLTest.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 │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── 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_named_empty.php │ │ │ ├── class_with_method_that_declares_anonymous_class.php │ │ │ ├── class_with_method_that_declares_anonymous_class2.php │ │ │ ├── class_with_multiple_anonymous_classes_and_functions.php │ │ │ ├── closure.php │ │ │ ├── issue19.php │ │ │ ├── issue30.php │ │ │ ├── multipleNamespacesWithOneClassUsingBraces.php │ │ │ ├── multipleNamespacesWithOneClassUsingNonBraceSyntax.php │ │ │ ├── php-code-coverage-issue-424.php │ │ │ ├── source.php │ │ │ ├── source2.php │ │ │ ├── source3.php │ │ │ ├── source4.php │ │ │ └── source5.php │ │ │ └── bootstrap.php │ ├── phpunit-mock-objects │ │ ├── .gitattributes │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Builder │ │ │ │ ├── Identity.php │ │ │ │ ├── InvocationMocker.php │ │ │ │ ├── Match.php │ │ │ │ ├── MethodNameMatch.php │ │ │ │ ├── NamespaceMatch.php │ │ │ │ ├── ParametersMatch.php │ │ │ │ └── Stub.php │ │ │ ├── Exception │ │ │ │ ├── BadMethodCallException.php │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ │ ├── ForwardCompatibility │ │ │ │ └── MockObject.php │ │ │ ├── Generator.php │ │ │ ├── Generator │ │ │ │ ├── deprecation.tpl.dist │ │ │ │ ├── mocked_class.tpl.dist │ │ │ │ ├── mocked_class_method.tpl.dist │ │ │ │ ├── mocked_clone.tpl.dist │ │ │ │ ├── mocked_method.tpl.dist │ │ │ │ ├── mocked_method_void.tpl.dist │ │ │ │ ├── mocked_static_method.tpl.dist │ │ │ │ ├── proxied_method.tpl.dist │ │ │ │ ├── proxied_method_void.tpl.dist │ │ │ │ ├── trait_class.tpl.dist │ │ │ │ ├── unmocked_clone.tpl.dist │ │ │ │ ├── wsdl_class.tpl.dist │ │ │ │ └── wsdl_method.tpl.dist │ │ │ ├── Invocation │ │ │ │ ├── Invocation.php │ │ │ │ ├── ObjectInvocation.php │ │ │ │ └── StaticInvocation.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 │ │ │ │ ├── ReturnArgument.php │ │ │ │ ├── ReturnCallback.php │ │ │ │ ├── ReturnReference.php │ │ │ │ ├── ReturnSelf.php │ │ │ │ ├── ReturnStub.php │ │ │ │ └── ReturnValueMap.php │ │ │ └── Verifiable.php │ │ └── tests │ │ │ ├── Builder │ │ │ └── InvocationMockerTest.php │ │ │ ├── Generator │ │ │ ├── 232.phpt │ │ │ ├── 3154_namespaced_constant_resolving.phpt │ │ │ ├── 397.phpt │ │ │ ├── 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_deprecated_method.phpt │ │ │ ├── class_with_method_named_method.phpt │ │ │ ├── class_with_method_with_nullable_typehinted_variadic_arguments.phpt │ │ │ ├── class_with_method_with_typehinted_variadic_arguments.phpt │ │ │ ├── class_with_method_with_variadic_arguments.phpt │ │ │ ├── constant_as_parameter_default_value.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 │ │ │ ├── nullable_types.phpt │ │ │ ├── proxy.phpt │ │ │ ├── return_type_declarations_closure.phpt │ │ │ ├── return_type_declarations_final.phpt │ │ │ ├── return_type_declarations_generator.phpt │ │ │ ├── return_type_declarations_nullable.phpt │ │ │ ├── return_type_declarations_object_method.phpt │ │ │ ├── return_type_declarations_self.phpt │ │ │ ├── return_type_declarations_static_method.phpt │ │ │ ├── return_type_declarations_void.phpt │ │ │ ├── scalar_type_declarations.phpt │ │ │ ├── wsdl_class.phpt │ │ │ ├── wsdl_class_namespace.phpt │ │ │ └── wsdl_class_partial.phpt │ │ │ ├── GeneratorTest.php │ │ │ ├── Invocation │ │ │ ├── ObjectInvocationTest.php │ │ │ └── StaticInvocationTest.php │ │ │ ├── Matcher │ │ │ └── ConsecutiveParametersTest.php │ │ │ ├── MockBuilderTest.php │ │ │ ├── MockObjectTest.php │ │ │ ├── ProxyObjectTest.php │ │ │ ├── _fixture │ │ │ ├── AbstractMockTestClass.php │ │ │ ├── AbstractTrait.php │ │ │ ├── AnInterface.php │ │ │ ├── AnInterfaceWithReturnType.php │ │ │ ├── AnotherInterface.php │ │ │ ├── Bar.php │ │ │ ├── ClassThatImplementsSerializable.php │ │ │ ├── ClassWithAllPossibleReturnTypes.php │ │ │ ├── ClassWithSelfTypeHint.php │ │ │ ├── ClassWithStaticMethod.php │ │ │ ├── Foo.php │ │ │ ├── FunctionCallback.php │ │ │ ├── Go ogle-Sea.rch.wsdl │ │ │ ├── GoogleSearch.wsdl │ │ │ ├── InterfaceWithSemiReservedMethodName.php │ │ │ ├── InterfaceWithStaticMethod.php │ │ │ ├── MethodCallback.php │ │ │ ├── MethodCallbackByReference.php │ │ │ ├── MockTestInterface.php │ │ │ ├── Mockable.php │ │ │ ├── PartialMockTestClass.php │ │ │ ├── SingletonClass.php │ │ │ ├── SomeClass.php │ │ │ ├── StaticMockTestClass.php │ │ │ ├── StringableClass.php │ │ │ └── TraversableMockTestInterface.php │ │ │ └── bootstrap.php │ └── phpunit │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .github │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── ChangeLog-5.7.md │ │ ├── ChangeLog-6.5.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phive.xml │ │ ├── phpunit │ │ ├── phpunit.xml │ │ ├── phpunit.xsd │ │ ├── src │ │ ├── Exception.php │ │ ├── Framework │ │ │ ├── Assert.php │ │ │ ├── Assert │ │ │ │ └── Functions.php │ │ │ ├── AssertionFailedError.php │ │ │ ├── BaseTestListener.php │ │ │ ├── CodeCoverageException.php │ │ │ ├── Constraint │ │ │ │ ├── ArrayHasKey.php │ │ │ │ ├── ArraySubset.php │ │ │ │ ├── Attribute.php │ │ │ │ ├── Callback.php │ │ │ │ ├── ClassHasAttribute.php │ │ │ │ ├── ClassHasStaticAttribute.php │ │ │ │ ├── Composite.php │ │ │ │ ├── Constraint.php │ │ │ │ ├── Count.php │ │ │ │ ├── DirectoryExists.php │ │ │ │ ├── Exception.php │ │ │ │ ├── ExceptionCode.php │ │ │ │ ├── ExceptionMessage.php │ │ │ │ ├── ExceptionMessageRegularExpression.php │ │ │ │ ├── FileExists.php │ │ │ │ ├── GreaterThan.php │ │ │ │ ├── IsAnything.php │ │ │ │ ├── IsEmpty.php │ │ │ │ ├── IsEqual.php │ │ │ │ ├── IsFalse.php │ │ │ │ ├── IsFinite.php │ │ │ │ ├── IsIdentical.php │ │ │ │ ├── IsInfinite.php │ │ │ │ ├── IsInstanceOf.php │ │ │ │ ├── IsJson.php │ │ │ │ ├── IsNan.php │ │ │ │ ├── IsNull.php │ │ │ │ ├── IsReadable.php │ │ │ │ ├── IsTrue.php │ │ │ │ ├── IsType.php │ │ │ │ ├── IsWritable.php │ │ │ │ ├── JsonMatches.php │ │ │ │ ├── JsonMatchesErrorMessageProvider.php │ │ │ │ ├── LessThan.php │ │ │ │ ├── LogicalAnd.php │ │ │ │ ├── LogicalNot.php │ │ │ │ ├── LogicalOr.php │ │ │ │ ├── LogicalXor.php │ │ │ │ ├── ObjectHasAttribute.php │ │ │ │ ├── RegularExpression.php │ │ │ │ ├── SameSize.php │ │ │ │ ├── StringContains.php │ │ │ │ ├── StringEndsWith.php │ │ │ │ ├── StringMatchesFormatDescription.php │ │ │ │ ├── StringStartsWith.php │ │ │ │ ├── TraversableContains.php │ │ │ │ └── TraversableContainsOnly.php │ │ │ ├── CoveredCodeNotExecutedException.php │ │ │ ├── DataProviderTestSuite.php │ │ │ ├── Error │ │ │ │ ├── Deprecated.php │ │ │ │ ├── Error.php │ │ │ │ ├── Notice.php │ │ │ │ └── Warning.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionWrapper.php │ │ │ ├── ExpectationFailedException.php │ │ │ ├── IncompleteTest.php │ │ │ ├── IncompleteTestCase.php │ │ │ ├── IncompleteTestError.php │ │ │ ├── InvalidCoversTargetException.php │ │ │ ├── MissingCoversAnnotationException.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 │ │ │ ├── TestListenerDefaultImplementation.php │ │ │ ├── TestResult.php │ │ │ ├── TestSuite.php │ │ │ ├── TestSuiteIterator.php │ │ │ ├── UnintentionallyCoveredCodeError.php │ │ │ ├── Warning.php │ │ │ └── WarningTestCase.php │ │ ├── Runner │ │ │ ├── BaseTestRunner.php │ │ │ ├── Exception.php │ │ │ ├── Filter │ │ │ │ ├── ExcludeGroupFilterIterator.php │ │ │ │ ├── Factory.php │ │ │ │ ├── GroupFilterIterator.php │ │ │ │ ├── IncludeGroupFilterIterator.php │ │ │ │ └── NameFilterIterator.php │ │ │ ├── PhptTestCase.php │ │ │ ├── StandardTestSuiteLoader.php │ │ │ ├── TestSuiteLoader.php │ │ │ └── Version.php │ │ ├── TextUI │ │ │ ├── Command.php │ │ │ ├── ResultPrinter.php │ │ │ └── TestRunner.php │ │ └── Util │ │ │ ├── Blacklist.php │ │ │ ├── Configuration.php │ │ │ ├── ConfigurationGenerator.php │ │ │ ├── ErrorHandler.php │ │ │ ├── Fileloader.php │ │ │ ├── Filesystem.php │ │ │ ├── Filter.php │ │ │ ├── Getopt.php │ │ │ ├── GlobalState.php │ │ │ ├── InvalidArgumentHelper.php │ │ │ ├── Json.php │ │ │ ├── Log │ │ │ ├── JUnit.php │ │ │ └── TeamCity.php │ │ │ ├── PHP │ │ │ ├── AbstractPhpProcess.php │ │ │ ├── DefaultPhpProcess.php │ │ │ ├── Template │ │ │ │ ├── PhptTestCase.tpl.dist │ │ │ │ ├── TestCaseClass.tpl.dist │ │ │ │ └── TestCaseMethod.tpl.dist │ │ │ ├── WindowsPhpProcess.php │ │ │ └── eval-stdin.php │ │ │ ├── Printer.php │ │ │ ├── RegularExpression.php │ │ │ ├── Test.php │ │ │ ├── TestDox │ │ │ ├── HtmlResultPrinter.php │ │ │ ├── NamePrettifier.php │ │ │ ├── ResultPrinter.php │ │ │ ├── TextResultPrinter.php │ │ │ └── XmlResultPrinter.php │ │ │ ├── TextTestListRenderer.php │ │ │ ├── Type.php │ │ │ ├── Xml.php │ │ │ └── XmlTestListRenderer.php │ │ └── tests │ │ ├── _files │ │ ├── AbstractTest.php │ │ ├── ArrayAccessible.php │ │ ├── AssertionExample.php │ │ ├── AssertionExampleTest.php │ │ ├── Author.php │ │ ├── BankAccount.php │ │ ├── BankAccountTest.php │ │ ├── BankAccountTest.test.php │ │ ├── BankAccountTest2.php │ │ ├── BaseTestListenerSample.php │ │ ├── BeforeAndAfterTest.php │ │ ├── BeforeClassAndAfterClassTest.php │ │ ├── BeforeClassWithOnlyDataProviderTest.php │ │ ├── Book.php │ │ ├── Calculator.php │ │ ├── ChangeCurrentWorkingDirectoryTest.php │ │ ├── ClassWithNonPublicAttributes.php │ │ ├── ClassWithScalarTypeDeclarations.php │ │ ├── ClassWithToString.php │ │ ├── ClonedDependencyTest.php │ │ ├── ConcreteTest.my.php │ │ ├── ConcreteTest.php │ │ ├── CountConstraint.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 │ │ ├── DataProviderDependencyTest.php │ │ ├── DataProviderFilterTest.php │ │ ├── DataProviderIncompleteTest.php │ │ ├── DataProviderIssue2833 │ │ │ ├── FirstTest.php │ │ │ └── SecondTest.php │ │ ├── DataProviderIssue2859 │ │ │ ├── phpunit.xml │ │ │ └── tests │ │ │ │ └── another │ │ │ │ └── TestWithDataProviderTest.php │ │ ├── DataProviderIssue2922 │ │ │ ├── FirstTest.php │ │ │ └── SecondTest.php │ │ ├── DataProviderSkippedTest.php │ │ ├── DataProviderTest.php │ │ ├── DataProviderTestDoxTest.php │ │ ├── DependencyFailureTest.php │ │ ├── DependencySuccessTest.php │ │ ├── DependencyTestSuite.php │ │ ├── DoubleTestCase.php │ │ ├── DummyBarTest.php │ │ ├── DummyException.php │ │ ├── DummyFooTest.php │ │ ├── EmptyTestCaseTest.php │ │ ├── ExceptionInAssertPostConditionsTest.php │ │ ├── ExceptionInAssertPreConditionsTest.php │ │ ├── ExceptionInSetUpTest.php │ │ ├── ExceptionInTearDownTest.php │ │ ├── ExceptionInTest.php │ │ ├── ExceptionNamespaceTest.php │ │ ├── ExceptionStackTest.php │ │ ├── ExceptionTest.php │ │ ├── Failure.php │ │ ├── FailureTest.php │ │ ├── FalsyConstraint.php │ │ ├── FatalTest.php │ │ ├── IgnoreCodeCoverageClass.php │ │ ├── IgnoreCodeCoverageClassTest.php │ │ ├── IncompleteTest.php │ │ ├── Inheritance │ │ │ ├── InheritanceA.php │ │ │ └── InheritanceB.php │ │ ├── InheritedTestCase.php │ │ ├── IniTest.php │ │ ├── IsolationTest.php │ │ ├── JsonData │ │ │ ├── arrayObject.json │ │ │ └── simpleObject.json │ │ ├── MockRunner.php │ │ ├── Mockable.php │ │ ├── MultiDependencyTest.php │ │ ├── MultipleDataProviderTest.php │ │ ├── MyCommand.php │ │ ├── NamedConstraint.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 │ │ ├── ParseTestMethodAnnotationsMock.php │ │ ├── RequirementsClassBeforeClassHookTest.php │ │ ├── RequirementsClassDocBlockTest.php │ │ ├── RequirementsTest.php │ │ ├── SampleArrayAccess.php │ │ ├── SampleClass.php │ │ ├── Singleton.php │ │ ├── StackTest.php │ │ ├── StatusTest.php │ │ ├── StopOnWarningTestSuite.php │ │ ├── StopsOnWarningTest.php │ │ ├── Struct.php │ │ ├── Success.php │ │ ├── TemplateMethodsTest.php │ │ ├── TestAutoreferenced.php │ │ ├── TestDoxGroupTest.php │ │ ├── TestGeneratorMaker.php │ │ ├── TestIncomplete.php │ │ ├── TestIterator.php │ │ ├── TestIterator2.php │ │ ├── TestIteratorAggregate.php │ │ ├── TestIteratorAggregate2.php │ │ ├── TestSkipped.php │ │ ├── TestTestError.php │ │ ├── TestWithTest.php │ │ ├── ThrowExceptionTestCase.php │ │ ├── ThrowNoExceptionTestCase.php │ │ ├── TruthyConstraint.php │ │ ├── VariousIterableDataProviderTest.php │ │ ├── WasRun.php │ │ ├── WrapperIteratorAggregate.php │ │ ├── bar.xml │ │ ├── configuration.colors.empty.xml │ │ ├── configuration.colors.false.xml │ │ ├── configuration.colors.invalid.xml │ │ ├── configuration.colors.true.xml │ │ ├── configuration.custom-printer.xml │ │ ├── configuration.defaulttestsuite.xml │ │ ├── configuration.one-file-suite.xml │ │ ├── configuration.suites.xml │ │ ├── configuration.xml │ │ ├── configuration_empty.xml │ │ ├── configuration_stop_on_warning.xml │ │ ├── configuration_xinclude.xml │ │ ├── expectedFileFormat.txt │ │ ├── foo.xml │ │ ├── phpt-for-coverage.phpt │ │ ├── phpt-xfail.phpt │ │ ├── phpunit-example-extension │ │ │ ├── phpunit.xml │ │ │ ├── tests │ │ │ │ └── OneTest.php │ │ │ └── tools │ │ │ │ └── phpunit.d │ │ │ │ └── phpunit-example-extension-1.0.1.phar │ │ ├── structureAttributesAreSameButValuesAreNot.xml │ │ ├── structureExpected.xml │ │ ├── structureIgnoreTextNodes.xml │ │ ├── structureIsSameButDataIsNot.xml │ │ ├── structureWrongNumberOfAttributes.xml │ │ └── structureWrongNumberOfNodes.xml │ │ ├── bootstrap.php │ │ ├── end-to-end │ │ ├── _files │ │ │ ├── expect_external.txt │ │ │ ├── phpt-env.expected.txt │ │ │ └── phpt_external.php │ │ ├── abstract-test-class.phpt │ │ ├── assertion.phpt │ │ ├── code-coverage-ignore.phpt │ │ ├── code-coverage-phpt.phpt │ │ ├── colors-always.phpt │ │ ├── concrete-test-class.phpt │ │ ├── custom-printer-debug.phpt │ │ ├── custom-printer-verbose.phpt │ │ ├── dataprovider-debug.phpt │ │ ├── dataprovider-issue-2833.phpt │ │ ├── dataprovider-issue-2859.phpt │ │ ├── dataprovider-issue-2922.phpt │ │ ├── dataprovider-log-xml-isolation.phpt │ │ ├── dataprovider-log-xml.phpt │ │ ├── dataprovider-testdox.phpt │ │ ├── debug.phpt │ │ ├── default-isolation.phpt │ │ ├── default.phpt │ │ ├── defaulttestsuite-using-testsuite.phpt │ │ ├── defaulttestsuite.phpt │ │ ├── dependencies-clone.phpt │ │ ├── dependencies-isolation.phpt │ │ ├── dependencies.phpt │ │ ├── dependencies2-isolation.phpt │ │ ├── dependencies2.phpt │ │ ├── dependencies3-isolation.phpt │ │ ├── dependencies3.phpt │ │ ├── disable-code-coverage-ignore.phpt │ │ ├── empty-testcase.phpt │ │ ├── exception-stack.phpt │ │ ├── exclude-group-isolation.phpt │ │ ├── exclude-group.phpt │ │ ├── failure-isolation.phpt │ │ ├── failure-reverse-list.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 │ │ ├── forward-compatibility.phpt │ │ ├── group-isolation.phpt │ │ ├── group.phpt │ │ ├── help.phpt │ │ ├── help2.phpt │ │ ├── ini-isolation.phpt │ │ ├── list-groups.phpt │ │ ├── list-suites.phpt │ │ ├── list-tests-dataprovider.phpt │ │ ├── list-tests-xml-dataprovider.phpt │ │ ├── log-junit.phpt │ │ ├── log-teamcity.phpt │ │ ├── mycommand.phpt │ │ ├── options-after-arguments.phpt │ │ ├── output-isolation.phpt │ │ ├── phar-extension-suppressed.phpt │ │ ├── phar-extension.phpt │ │ ├── phpt-args.phpt │ │ ├── phpt-env.phpt │ │ ├── phpt-external.phpt │ │ ├── phpt-stderr.phpt │ │ ├── phpt-stdin.phpt │ │ ├── phpt-xfail.phpt │ │ ├── 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 │ │ │ │ ├── 2137 │ │ │ │ │ └── Issue2137Test.php │ │ │ │ ├── 2145 │ │ │ │ │ └── Issue2145Test.php │ │ │ │ ├── 2158 │ │ │ │ │ ├── Issue2158Test.php │ │ │ │ │ └── constant.inc │ │ │ │ ├── 2366 │ │ │ │ │ └── Issue2366Test.php │ │ │ │ ├── 2380 │ │ │ │ │ └── Issue2380Test.php │ │ │ │ ├── 2382 │ │ │ │ │ └── Issue2382Test.php │ │ │ │ ├── 2435 │ │ │ │ │ └── Issue2435Test.php │ │ │ │ ├── 2448 │ │ │ │ │ └── Test.php │ │ │ │ ├── 2591 │ │ │ │ │ ├── SeparateClassPreserveTest.php │ │ │ │ │ ├── SeparateFunctionNoPreserveTest.php │ │ │ │ │ ├── SeparateFunctionPreserveTest.php │ │ │ │ │ ├── bootstrapNoBootstrap.php │ │ │ │ │ ├── bootstrapWithBootstrap.php │ │ │ │ │ └── bootstrapWithBootstrapNoGlobal.php │ │ │ │ ├── 2725 │ │ │ │ │ └── BeforeAfterClassPidTest.php │ │ │ │ ├── 2731 │ │ │ │ │ └── Issue2731Test.php │ │ │ │ ├── 2811 │ │ │ │ │ └── Issue2811Test.php │ │ │ │ ├── 2830 │ │ │ │ │ └── Issue2830Test.php │ │ │ │ ├── 2972 │ │ │ │ │ ├── issue-2972-test.phpt │ │ │ │ │ └── unconventiallyNamedIssue2972Test.php │ │ │ │ ├── 1149.phpt │ │ │ │ ├── 1216.phpt │ │ │ │ ├── 1265.phpt │ │ │ │ ├── 1330.phpt │ │ │ │ ├── 1335.phpt │ │ │ │ ├── 1337.phpt │ │ │ │ ├── 1348.phpt │ │ │ │ ├── 1351.phpt │ │ │ │ ├── 1374.phpt │ │ │ │ ├── 1437.phpt │ │ │ │ ├── 1468.phpt │ │ │ │ ├── 1471.phpt │ │ │ │ ├── 1472.phpt │ │ │ │ ├── 1570.phpt │ │ │ │ ├── 2137-filter.phpt │ │ │ │ ├── 2137-no_filter.phpt │ │ │ │ ├── 2145.phpt │ │ │ │ ├── 2158.phpt │ │ │ │ ├── 2366.phpt │ │ │ │ ├── 2380.phpt │ │ │ │ ├── 2382.phpt │ │ │ │ ├── 2435.phpt │ │ │ │ ├── 244.phpt │ │ │ │ ├── 2448-existing-test.phpt │ │ │ │ ├── 2448-not-existing-test.phpt │ │ │ │ ├── 2591-separate-class-preserve-no-bootstrap.phpt │ │ │ │ ├── 2591-separate-class-preserve.phpt │ │ │ │ ├── 2591-separate-function-no-preserve-no-bootstrap-xdebug.phpt │ │ │ │ ├── 2591-separate-function-no-preserve-no-bootstrap.phpt │ │ │ │ ├── 2591-separate-function-no-preserve.phpt │ │ │ │ ├── 2591-separate-function-preserve.phpt │ │ │ │ ├── 2725-separate-class-before-after-pid.phpt │ │ │ │ ├── 2731.phpt │ │ │ │ ├── 2811.phpt │ │ │ │ ├── 2830.phpt │ │ │ │ ├── 2972.phpt │ │ │ │ ├── 322.phpt │ │ │ │ ├── 433.phpt │ │ │ │ ├── 445.phpt │ │ │ │ ├── 498.phpt │ │ │ │ ├── 503.phpt │ │ │ │ ├── 581.phpt │ │ │ │ ├── 74.phpt │ │ │ │ ├── 765.phpt │ │ │ │ ├── 797.phpt │ │ │ │ ├── 863.phpt │ │ │ │ └── 873.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 │ │ ├── repeat.phpt │ │ ├── report-useless-tests-incomplete.phpt │ │ ├── report-useless-tests-isolation.phpt │ │ ├── report-useless-tests.phpt │ │ ├── stop-on-warning-via-cli.phpt │ │ ├── stop-on-warning-via-config.phpt │ │ ├── teamcity-inner-exceptions.phpt │ │ ├── teamcity.phpt │ │ ├── test-suffix-multiple.phpt │ │ ├── test-suffix-single.phpt │ │ ├── testdox-exclude-group.phpt │ │ ├── testdox-group.phpt │ │ ├── testdox-html.phpt │ │ ├── testdox-text.phpt │ │ ├── testdox-xml.phpt │ │ └── testdox.phpt │ │ ├── fail │ │ └── fail.phpt │ │ └── unit │ │ ├── Framework │ │ ├── AssertTest.php │ │ ├── BaseTestListenerTest.php │ │ ├── Constraint │ │ │ ├── ArrayHasKeyTest.php │ │ │ ├── ArraySubsetTest.php │ │ │ ├── AttributeTest.php │ │ │ ├── CallbackTest.php │ │ │ ├── ClassHasAttributeTest.php │ │ │ ├── ClassHasStaticAttributeTest.php │ │ │ ├── ConstraintTestCase.php │ │ │ ├── CountTest.php │ │ │ ├── DirectoryExistsTest.php │ │ │ ├── ExceptionMessageRegExpTest.php │ │ │ ├── ExceptionMessageTest.php │ │ │ ├── FileExistsTest.php │ │ │ ├── GreaterThanTest.php │ │ │ ├── IsEmptyTest.php │ │ │ ├── IsEqualTest.php │ │ │ ├── IsIdenticalTest.php │ │ │ ├── IsJsonTest.php │ │ │ ├── IsNullTest.php │ │ │ ├── IsReadableTest.php │ │ │ ├── IsTypeTest.php │ │ │ ├── IsWritableTest.php │ │ │ ├── JsonMatchesErrorMessageProviderTest.php │ │ │ ├── JsonMatchesTest.php │ │ │ ├── LessThanTest.php │ │ │ ├── LogicalAndTest.php │ │ │ ├── LogicalOrTest.php │ │ │ ├── LogicalXorTest.php │ │ │ ├── ObjectHasAttributeTest.php │ │ │ ├── RegularExpressionTest.php │ │ │ ├── SameSizeTest.php │ │ │ ├── StringContainsTest.php │ │ │ ├── StringEndsWithTest.php │ │ │ ├── StringMatchesFormatDescriptionTest.php │ │ │ ├── StringStartsWithTest.php │ │ │ └── TraversableContainsTest.php │ │ ├── ConstraintTest.php │ │ ├── SuiteTest.php │ │ ├── TestCaseTest.php │ │ ├── TestFailureTest.php │ │ ├── TestImplementorTest.php │ │ └── TestListenerTest.php │ │ ├── Runner │ │ ├── Filter │ │ │ └── NameFilterIteratorTest.php │ │ └── PhptTestCaseTest.php │ │ ├── TextUI │ │ └── TestRunnerTest.php │ │ └── Util │ │ ├── ConfigurationGeneratorTest.php │ │ ├── ConfigurationTest.php │ │ ├── GetoptTest.php │ │ ├── GlobalStateTest.php │ │ ├── JsonTest.php │ │ ├── PHP │ │ └── AbstractPhpProcessTest.php │ │ ├── RegularExpressionTest.php │ │ ├── TestDox │ │ └── NamePrettifierTest.php │ │ ├── TestTest.php │ │ └── XmlTest.php ├── psr │ ├── container │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── ContainerExceptionInterface.php │ │ │ ├── ContainerInterface.php │ │ │ └── NotFoundExceptionInterface.php │ ├── http-message │ │ ├── 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 │ │ │ │ └── TestLogger.php │ │ ├── README.md │ │ └── composer.json │ └── simple-cache │ │ ├── .editorconfig │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── CacheException.php │ │ ├── CacheInterface.php │ │ └── InvalidArgumentException.php ├── psy │ └── psysh │ │ ├── .editorconfig │ │ ├── .github │ │ └── CONTRIBUTING.md │ │ ├── .gitignore │ │ ├── .phan │ │ └── config.php │ │ ├── .php_cs │ │ ├── .styleci.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── bin │ │ ├── build-stub │ │ └── psysh │ │ ├── box.json.dist │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── src │ │ ├── CodeCleaner.php │ │ ├── CodeCleaner │ │ │ ├── AbstractClassPass.php │ │ │ ├── AssignThisVariablePass.php │ │ │ ├── CallTimePassByReferencePass.php │ │ │ ├── CalledClassPass.php │ │ │ ├── CodeCleanerPass.php │ │ │ ├── ExitPass.php │ │ │ ├── FinalClassPass.php │ │ │ ├── FunctionContextPass.php │ │ │ ├── FunctionReturnInWriteContextPass.php │ │ │ ├── ImplicitReturnPass.php │ │ │ ├── InstanceOfPass.php │ │ │ ├── LeavePsyshAlonePass.php │ │ │ ├── LegacyEmptyPass.php │ │ │ ├── ListPass.php │ │ │ ├── LoopContextPass.php │ │ │ ├── MagicConstantsPass.php │ │ │ ├── NamespaceAwarePass.php │ │ │ ├── NamespacePass.php │ │ │ ├── NoReturnValue.php │ │ │ ├── PassableByReferencePass.php │ │ │ ├── RequirePass.php │ │ │ ├── StrictTypesPass.php │ │ │ ├── UseStatementPass.php │ │ │ ├── ValidClassNamePass.php │ │ │ ├── ValidConstantPass.php │ │ │ ├── ValidConstructorPass.php │ │ │ └── ValidFunctionNamePass.php │ │ ├── Command │ │ │ ├── BufferCommand.php │ │ │ ├── ClearCommand.php │ │ │ ├── Command.php │ │ │ ├── DocCommand.php │ │ │ ├── DumpCommand.php │ │ │ ├── EditCommand.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 │ │ │ ├── SudoCommand.php │ │ │ ├── ThrowUpCommand.php │ │ │ ├── TimeitCommand.php │ │ │ ├── TimeitCommand │ │ │ │ └── TimeitVisitor.php │ │ │ ├── TraceCommand.php │ │ │ ├── WhereamiCommand.php │ │ │ └── WtfCommand.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 │ │ ├── ExecutionClosure.php │ │ ├── ExecutionLoop.php │ │ ├── ExecutionLoop │ │ │ ├── AbstractListener.php │ │ │ ├── Listener.php │ │ │ ├── ProcessForker.php │ │ │ └── RunkitReloader.php │ │ ├── ExecutionLoopClosure.php │ │ ├── Formatter │ │ │ ├── CodeFormatter.php │ │ │ ├── DocblockFormatter.php │ │ │ ├── Formatter.php │ │ │ └── SignatureFormatter.php │ │ ├── Input │ │ │ ├── CodeArgument.php │ │ │ ├── FilterOptions.php │ │ │ ├── ShellInput.php │ │ │ └── SilentInput.php │ │ ├── Output │ │ │ ├── OutputPager.php │ │ │ ├── PassthruPager.php │ │ │ ├── ProcOutputPager.php │ │ │ └── ShellOutput.php │ │ ├── ParserFactory.php │ │ ├── Readline │ │ │ ├── GNUReadline.php │ │ │ ├── HoaConsole.php │ │ │ ├── Libedit.php │ │ │ ├── Readline.php │ │ │ └── Transient.php │ │ ├── Reflection │ │ │ ├── ReflectionClassConstant.php │ │ │ ├── ReflectionConstant.php │ │ │ ├── ReflectionConstant_.php │ │ │ ├── ReflectionLanguageConstruct.php │ │ │ └── ReflectionLanguageConstructParameter.php │ │ ├── Shell.php │ │ ├── Sudo.php │ │ ├── Sudo │ │ │ └── SudoVisitor.php │ │ ├── TabCompletion │ │ │ ├── AutoCompleter.php │ │ │ └── Matcher │ │ │ │ ├── AbstractContextAwareMatcher.php │ │ │ │ ├── AbstractDefaultParametersMatcher.php │ │ │ │ ├── AbstractMatcher.php │ │ │ │ ├── ClassAttributesMatcher.php │ │ │ │ ├── ClassMethodDefaultParametersMatcher.php │ │ │ │ ├── ClassMethodsMatcher.php │ │ │ │ ├── ClassNamesMatcher.php │ │ │ │ ├── CommandsMatcher.php │ │ │ │ ├── ConstantsMatcher.php │ │ │ │ ├── FunctionDefaultParametersMatcher.php │ │ │ │ ├── FunctionsMatcher.php │ │ │ │ ├── KeywordsMatcher.php │ │ │ │ ├── MongoClientMatcher.php │ │ │ │ ├── MongoDatabaseMatcher.php │ │ │ │ ├── ObjectAttributesMatcher.php │ │ │ │ ├── ObjectMethodDefaultParametersMatcher.php │ │ │ │ ├── ObjectMethodsMatcher.php │ │ │ │ └── VariablesMatcher.php │ │ ├── Util │ │ │ ├── Docblock.php │ │ │ ├── Json.php │ │ │ ├── Mirror.php │ │ │ └── Str.php │ │ ├── VarDumper │ │ │ ├── Cloner.php │ │ │ ├── Dumper.php │ │ │ ├── Presenter.php │ │ │ └── PresenterAware.php │ │ ├── VersionUpdater │ │ │ ├── Checker.php │ │ │ ├── GitHubChecker.php │ │ │ ├── IntervalChecker.php │ │ │ └── NoopChecker.php │ │ └── functions.php │ │ ├── test │ │ ├── ClassWithSecrets.php │ │ ├── CodeCleaner │ │ │ ├── AbstractClassPassTest.php │ │ │ ├── AssignThisVariablePassTest.php │ │ │ ├── CallTimePassByReferencePassTest.php │ │ │ ├── CalledClassPassTest.php │ │ │ ├── CodeCleanerTestCase.php │ │ │ ├── ExitPassTest.php │ │ │ ├── FinalClassPassTest.php │ │ │ ├── Fixtures │ │ │ │ ├── ClassWithCallStatic.php │ │ │ │ ├── ClassWithStatic.php │ │ │ │ └── TraitWithStatic.php │ │ │ ├── FunctionContextPassTest.php │ │ │ ├── FunctionReturnInWriteContextPassTest.php │ │ │ ├── ImplicitReturnPassTest.php │ │ │ ├── InstanceOfPassTest.php │ │ │ ├── LeavePsyshAlonePassTest.php │ │ │ ├── LegacyEmptyPassTest.php │ │ │ ├── ListPassTest.php │ │ │ ├── LoopContextPassTest.php │ │ │ ├── MagicConstantsPassTest.php │ │ │ ├── NamespacePassTest.php │ │ │ ├── NoReturnValueTest.php │ │ │ ├── PassableByReferencePassTest.php │ │ │ ├── RequirePassTest.php │ │ │ ├── StrictTypesPassTest.php │ │ │ ├── UseStatementPassTest.php │ │ │ ├── ValidClassNamePassTest.php │ │ │ ├── ValidConstantPassTest.php │ │ │ ├── ValidConstructorPassTest.php │ │ │ └── ValidFunctionNamePassTest.php │ │ ├── CodeCleanerTest.php │ │ ├── Command │ │ │ ├── ExitCommandTest.php │ │ │ ├── ThrowUpCommandTest.php │ │ │ └── TimeitCommand │ │ │ │ └── TimeitVisitorTest.php │ │ ├── ConfigurationTest.php │ │ ├── ConsoleColorFactoryTest.php │ │ ├── ContextTest.php │ │ ├── Exception │ │ │ ├── BreakExceptionTest.php │ │ │ ├── ErrorExceptionTest.php │ │ │ ├── FatalErrorExceptionTest.php │ │ │ ├── ParseErrorExceptionTest.php │ │ │ ├── RuntimeExceptionTest.php │ │ │ ├── ThrowUpExceptionTest.php │ │ │ └── TypeErrorExceptionTest.php │ │ ├── FakeShell.php │ │ ├── Formatter │ │ │ ├── CodeFormatterTest.php │ │ │ ├── DocblockFormatterTest.php │ │ │ ├── Fixtures │ │ │ │ ├── BoringTrait.php │ │ │ │ └── SomeClass.php │ │ │ └── SignatureFormatterTest.php │ │ ├── Input │ │ │ ├── CodeArgumentTest.php │ │ │ ├── FilterOptionsTest.php │ │ │ └── ShellInputTest.php │ │ ├── ParserTestCase.php │ │ ├── Readline │ │ │ ├── GNUReadlineTest.php │ │ │ ├── HoaConsoleTest.php │ │ │ ├── LibeditTest.php │ │ │ └── TransientTest.php │ │ ├── Reflection │ │ │ ├── ReflectionClassConstantTest.php │ │ │ ├── ReflectionConstantBCTest.php │ │ │ ├── ReflectionConstantTest.php │ │ │ ├── ReflectionLanguageConstructParameterTest.php │ │ │ └── ReflectionLanguageConstructTest.php │ │ ├── ShellTest.php │ │ ├── Sudo │ │ │ └── SudoVisitorTest.php │ │ ├── SudoTest.php │ │ ├── TabCompletion │ │ │ ├── AutoCompleterTest.php │ │ │ └── StaticSample.php │ │ ├── Util │ │ │ ├── DocblockTest.php │ │ │ ├── MirrorTest.php │ │ │ └── StrTest.php │ │ ├── VersionUpdater │ │ │ ├── GitHubCheckerTest.php │ │ │ └── NoopCheckerTest.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 │ │ └── vendor-bin │ │ └── box │ │ ├── composer.json │ │ └── composer.lock ├── ralouphie │ └── getallheaders │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ └── getallheaders.php │ │ └── tests │ │ └── GetAllHeadersTest.php ├── ramsey │ └── uuid │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── BinaryUtils.php │ │ ├── Builder │ │ ├── DefaultUuidBuilder.php │ │ ├── DegradedUuidBuilder.php │ │ └── UuidBuilderInterface.php │ │ ├── Codec │ │ ├── CodecInterface.php │ │ ├── GuidStringCodec.php │ │ ├── OrderedTimeCodec.php │ │ ├── StringCodec.php │ │ ├── TimestampFirstCombCodec.php │ │ └── TimestampLastCombCodec.php │ │ ├── Converter │ │ ├── Number │ │ │ ├── BigNumberConverter.php │ │ │ └── DegradedNumberConverter.php │ │ ├── NumberConverterInterface.php │ │ ├── Time │ │ │ ├── BigNumberTimeConverter.php │ │ │ ├── DegradedTimeConverter.php │ │ │ └── PhpTimeConverter.php │ │ └── TimeConverterInterface.php │ │ ├── DegradedUuid.php │ │ ├── Exception │ │ ├── InvalidUuidStringException.php │ │ ├── UnsatisfiedDependencyException.php │ │ └── UnsupportedOperationException.php │ │ ├── FeatureSet.php │ │ ├── Generator │ │ ├── CombGenerator.php │ │ ├── DefaultTimeGenerator.php │ │ ├── MtRandGenerator.php │ │ ├── OpenSslGenerator.php │ │ ├── PeclUuidRandomGenerator.php │ │ ├── PeclUuidTimeGenerator.php │ │ ├── RandomBytesGenerator.php │ │ ├── RandomGeneratorFactory.php │ │ ├── RandomGeneratorInterface.php │ │ ├── RandomLibAdapter.php │ │ ├── SodiumRandomGenerator.php │ │ ├── TimeGeneratorFactory.php │ │ └── TimeGeneratorInterface.php │ │ ├── Provider │ │ ├── Node │ │ │ ├── FallbackNodeProvider.php │ │ │ ├── RandomNodeProvider.php │ │ │ └── SystemNodeProvider.php │ │ ├── NodeProviderInterface.php │ │ ├── Time │ │ │ ├── FixedTimeProvider.php │ │ │ └── SystemTimeProvider.php │ │ └── TimeProviderInterface.php │ │ ├── Uuid.php │ │ ├── UuidFactory.php │ │ ├── UuidFactoryInterface.php │ │ └── UuidInterface.php ├── sebastian │ ├── code-unit-reverse-lookup │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ └── Wizard.php │ │ └── tests │ │ │ └── WizardTest.php │ ├── comparator │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── 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 │ │ │ ├── ComparisonFailureTest.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 │ │ │ └── _fixture │ │ │ ├── Author.php │ │ │ ├── Book.php │ │ │ ├── ClassWithToString.php │ │ │ ├── SampleClass.php │ │ │ ├── Struct.php │ │ │ ├── TestClass.php │ │ │ └── TestClassComparator.php │ ├── diff │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Chunk.php │ │ │ ├── Diff.php │ │ │ ├── Differ.php │ │ │ ├── Exception │ │ │ │ ├── Exception.php │ │ │ │ └── InvalidArgumentException.php │ │ │ ├── Line.php │ │ │ ├── LongestCommonSubsequenceCalculator.php │ │ │ ├── MemoryEfficientLongestCommonSubsequenceCalculator.php │ │ │ ├── Output │ │ │ │ ├── AbstractChunkOutputBuilder.php │ │ │ │ ├── DiffOnlyOutputBuilder.php │ │ │ │ ├── DiffOutputBuilderInterface.php │ │ │ │ └── UnifiedDiffOutputBuilder.php │ │ │ ├── Parser.php │ │ │ └── TimeEfficientLongestCommonSubsequenceCalculator.php │ │ └── tests │ │ │ ├── ChunkTest.php │ │ │ ├── DiffTest.php │ │ │ ├── DifferTest.php │ │ │ ├── DifferTestTest.php │ │ │ ├── LineTest.php │ │ │ ├── LongestCommonSubsequenceTest.php │ │ │ ├── MemoryEfficientImplementationTest.php │ │ │ ├── ParserTest.php │ │ │ ├── TimeEfficientImplementationTest.php │ │ │ └── fixtures │ │ │ ├── patch.txt │ │ │ └── patch2.txt │ ├── environment │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Console.php │ │ │ ├── OperatingSystem.php │ │ │ └── Runtime.php │ │ └── tests │ │ │ ├── ConsoleTest.php │ │ │ ├── OperatingSystemTest.php │ │ │ └── RuntimeTest.php │ ├── exporter │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ └── Exporter.php │ │ └── tests │ │ │ └── ExporterTest.php │ ├── global-state │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Blacklist.php │ │ │ ├── CodeExporter.php │ │ │ ├── Restorer.php │ │ │ ├── Snapshot.php │ │ │ └── exceptions │ │ │ │ ├── Exception.php │ │ │ │ └── RuntimeException.php │ │ └── tests │ │ │ ├── BlacklistTest.php │ │ │ ├── CodeExporterTest.php │ │ │ ├── RestorerTest.php │ │ │ ├── SnapshotTest.php │ │ │ └── _fixture │ │ │ ├── BlacklistedChildClass.php │ │ │ ├── BlacklistedClass.php │ │ │ ├── BlacklistedImplementor.php │ │ │ ├── BlacklistedInterface.php │ │ │ ├── SnapshotClass.php │ │ │ ├── SnapshotDomDocument.php │ │ │ ├── SnapshotFunctions.php │ │ │ └── SnapshotTrait.php │ ├── object-enumerator │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Enumerator.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ └── tests │ │ │ ├── EnumeratorTest.php │ │ │ └── _fixture │ │ │ └── ExceptionThrower.php │ ├── object-reflector │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── ChangeLog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Exception.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── ObjectReflector.php │ │ └── tests │ │ │ ├── ObjectReflectorTest.php │ │ │ └── _fixture │ │ │ ├── ChildClass.php │ │ │ ├── ClassWithIntegerAttributeName.php │ │ │ └── ParentClass.php │ ├── recursion-context │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── src │ │ │ ├── Context.php │ │ │ ├── Exception.php │ │ │ └── InvalidArgumentException.php │ │ └── tests │ │ │ └── ContextTest.php │ ├── resource-operations │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── build │ │ │ └── generate.php │ │ ├── composer.json │ │ └── src │ │ │ └── ResourceOperations.php │ └── version │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── Version.php ├── swiftmailer │ └── swiftmailer │ │ ├── .gitattributes │ │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .travis.yml │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── README │ │ ├── composer.json │ │ ├── doc │ │ ├── headers.rst │ │ ├── index.rst │ │ ├── introduction.rst │ │ ├── japanese.rst │ │ ├── messages.rst │ │ ├── plugins.rst │ │ └── sending.rst │ │ ├── lib │ │ ├── classes │ │ │ ├── Swift.php │ │ │ └── Swift │ │ │ │ ├── AddressEncoder.php │ │ │ │ ├── AddressEncoder │ │ │ │ ├── IdnAddressEncoder.php │ │ │ │ └── Utf8AddressEncoder.php │ │ │ │ ├── AddressEncoderException.php │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── IdGenerator.php │ │ │ │ ├── Image.php │ │ │ │ ├── InputByteStream.php │ │ │ │ ├── IoException.php │ │ │ │ ├── KeyCache.php │ │ │ │ ├── KeyCache │ │ │ │ ├── ArrayKeyCache.php │ │ │ │ ├── DiskKeyCache.php │ │ │ │ ├── KeyCacheInputStream.php │ │ │ │ ├── NullKeyCache.php │ │ │ │ └── SimpleKeyCacheInputStream.php │ │ │ │ ├── LoadBalancedTransport.php │ │ │ │ ├── Mailer.php │ │ │ │ ├── Mailer │ │ │ │ ├── ArrayRecipientIterator.php │ │ │ │ └── RecipientIterator.php │ │ │ │ ├── MemorySpool.php │ │ │ │ ├── Message.php │ │ │ │ ├── Mime │ │ │ │ ├── Attachment.php │ │ │ │ ├── CharsetObserver.php │ │ │ │ ├── ContentEncoder.php │ │ │ │ ├── ContentEncoder │ │ │ │ │ ├── Base64ContentEncoder.php │ │ │ │ │ ├── NativeQpContentEncoder.php │ │ │ │ │ ├── NullContentEncoder.php │ │ │ │ │ ├── PlainContentEncoder.php │ │ │ │ │ ├── QpContentEncoder.php │ │ │ │ │ ├── QpContentEncoderProxy.php │ │ │ │ │ └── RawContentEncoder.php │ │ │ │ ├── EmbeddedFile.php │ │ │ │ ├── EncodingObserver.php │ │ │ │ ├── Header.php │ │ │ │ ├── HeaderEncoder.php │ │ │ │ ├── HeaderEncoder │ │ │ │ │ ├── Base64HeaderEncoder.php │ │ │ │ │ └── QpHeaderEncoder.php │ │ │ │ ├── Headers │ │ │ │ │ ├── AbstractHeader.php │ │ │ │ │ ├── DateHeader.php │ │ │ │ │ ├── IdentificationHeader.php │ │ │ │ │ ├── MailboxHeader.php │ │ │ │ │ ├── OpenDKIMHeader.php │ │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ │ ├── PathHeader.php │ │ │ │ │ └── UnstructuredHeader.php │ │ │ │ ├── IdGenerator.php │ │ │ │ ├── MimePart.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 │ │ │ │ ├── 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 │ │ │ │ │ ├── EightBitMimeHandler.php │ │ │ │ │ └── SmtpUtf8Handler.php │ │ │ │ ├── EsmtpHandler.php │ │ │ │ ├── EsmtpTransport.php │ │ │ │ ├── FailoverTransport.php │ │ │ │ ├── IoBuffer.php │ │ │ │ ├── LoadBalancedTransport.php │ │ │ │ ├── NullTransport.php │ │ │ │ ├── SendmailTransport.php │ │ │ │ ├── SmtpAgent.php │ │ │ │ ├── SpoolTransport.php │ │ │ │ └── StreamBuffer.php │ │ │ │ └── TransportException.php │ │ ├── dependency_maps │ │ │ ├── cache_deps.php │ │ │ ├── message_deps.php │ │ │ ├── mime_deps.php │ │ │ └── transport_deps.php │ │ ├── mime_types.php │ │ ├── preferences.php │ │ ├── swift_required.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 │ │ │ ├── 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 │ │ ├── IdGeneratorTest.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 │ │ ├── SendmailTransportTest.php │ │ └── StreamBufferTest.php ├── symfony │ ├── console │ │ ├── .gitignore │ │ ├── Application.php │ │ ├── Command │ │ │ ├── Command.php │ │ │ ├── HelpCommand.php │ │ │ ├── ListCommand.php │ │ │ └── LockableTrait.php │ │ ├── CommandLoader │ │ │ ├── CommandLoaderInterface.php │ │ │ ├── ContainerCommandLoader.php │ │ │ └── FactoryCommandLoader.php │ │ ├── ConsoleEvents.php │ │ ├── DependencyInjection │ │ │ └── AddConsoleCommandPass.php │ │ ├── Descriptor │ │ │ ├── ApplicationDescription.php │ │ │ ├── Descriptor.php │ │ │ ├── DescriptorInterface.php │ │ │ ├── JsonDescriptor.php │ │ │ ├── MarkdownDescriptor.php │ │ │ ├── TextDescriptor.php │ │ │ └── XmlDescriptor.php │ │ ├── Event │ │ │ ├── ConsoleCommandEvent.php │ │ │ ├── ConsoleErrorEvent.php │ │ │ ├── ConsoleEvent.php │ │ │ ├── ConsoleExceptionEvent.php │ │ │ └── ConsoleTerminateEvent.php │ │ ├── EventListener │ │ │ └── ErrorListener.php │ │ ├── Exception │ │ │ ├── CommandNotFoundException.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidOptionException.php │ │ │ ├── LogicException.php │ │ │ └── RuntimeException.php │ │ ├── Formatter │ │ │ ├── OutputFormatter.php │ │ │ ├── OutputFormatterInterface.php │ │ │ ├── OutputFormatterStyle.php │ │ │ ├── OutputFormatterStyleInterface.php │ │ │ └── OutputFormatterStyleStack.php │ │ ├── Helper │ │ │ ├── DebugFormatterHelper.php │ │ │ ├── DescriptorHelper.php │ │ │ ├── FormatterHelper.php │ │ │ ├── Helper.php │ │ │ ├── HelperInterface.php │ │ │ ├── HelperSet.php │ │ │ ├── InputAwareHelper.php │ │ │ ├── ProcessHelper.php │ │ │ ├── ProgressBar.php │ │ │ ├── ProgressIndicator.php │ │ │ ├── QuestionHelper.php │ │ │ ├── SymfonyQuestionHelper.php │ │ │ ├── Table.php │ │ │ ├── TableCell.php │ │ │ ├── TableSeparator.php │ │ │ └── TableStyle.php │ │ ├── Input │ │ │ ├── ArgvInput.php │ │ │ ├── ArrayInput.php │ │ │ ├── Input.php │ │ │ ├── InputArgument.php │ │ │ ├── InputAwareInterface.php │ │ │ ├── InputDefinition.php │ │ │ ├── InputInterface.php │ │ │ ├── InputOption.php │ │ │ ├── StreamableInputInterface.php │ │ │ └── StringInput.php │ │ ├── LICENSE │ │ ├── Logger │ │ │ └── ConsoleLogger.php │ │ ├── Output │ │ │ ├── BufferedOutput.php │ │ │ ├── ConsoleOutput.php │ │ │ ├── ConsoleOutputInterface.php │ │ │ ├── NullOutput.php │ │ │ ├── Output.php │ │ │ ├── OutputInterface.php │ │ │ └── StreamOutput.php │ │ ├── Question │ │ │ ├── ChoiceQuestion.php │ │ │ ├── ConfirmationQuestion.php │ │ │ └── Question.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── bin │ │ │ │ └── hiddeninput.exe │ │ ├── Style │ │ │ ├── OutputStyle.php │ │ │ ├── StyleInterface.php │ │ │ └── SymfonyStyle.php │ │ ├── Terminal.php │ │ ├── Tester │ │ │ ├── ApplicationTester.php │ │ │ └── CommandTester.php │ │ ├── Tests │ │ │ ├── ApplicationTest.php │ │ │ ├── Command │ │ │ │ ├── CommandTest.php │ │ │ │ ├── HelpCommandTest.php │ │ │ │ ├── ListCommandTest.php │ │ │ │ └── LockableTraitTest.php │ │ │ ├── CommandLoader │ │ │ │ ├── ContainerCommandLoaderTest.php │ │ │ │ └── FactoryCommandLoaderTest.php │ │ │ ├── DependencyInjection │ │ │ │ └── AddConsoleCommandPassTest.php │ │ │ ├── Descriptor │ │ │ │ ├── AbstractDescriptorTest.php │ │ │ │ ├── JsonDescriptorTest.php │ │ │ │ ├── MarkdownDescriptorTest.php │ │ │ │ ├── ObjectsProvider.php │ │ │ │ ├── TextDescriptorTest.php │ │ │ │ └── XmlDescriptorTest.php │ │ │ ├── EventListener │ │ │ │ └── ErrorListenerTest.php │ │ │ ├── Fixtures │ │ │ │ ├── BarBucCommand.php │ │ │ │ ├── DescriptorApplication1.php │ │ │ │ ├── DescriptorApplication2.php │ │ │ │ ├── DescriptorApplicationMbString.php │ │ │ │ ├── DescriptorCommand1.php │ │ │ │ ├── DescriptorCommand2.php │ │ │ │ ├── DescriptorCommand3.php │ │ │ │ ├── DescriptorCommand4.php │ │ │ │ ├── DescriptorCommandMbString.php │ │ │ │ ├── DummyOutput.php │ │ │ │ ├── Foo1Command.php │ │ │ │ ├── Foo2Command.php │ │ │ │ ├── Foo3Command.php │ │ │ │ ├── Foo4Command.php │ │ │ │ ├── Foo5Command.php │ │ │ │ ├── Foo6Command.php │ │ │ │ ├── FooCommand.php │ │ │ │ ├── FooLock2Command.php │ │ │ │ ├── FooLockCommand.php │ │ │ │ ├── FooOptCommand.php │ │ │ │ ├── FooSameCaseLowercaseCommand.php │ │ │ │ ├── FooSameCaseUppercaseCommand.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_17.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 │ │ │ │ │ │ └── interactive_command_1.php │ │ │ │ │ │ └── output │ │ │ │ │ │ ├── interactive_output_1.txt │ │ │ │ │ │ ├── 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_17.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 │ │ │ │ ├── TestTiti.php │ │ │ │ ├── TestToto.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_filtered_namespace.txt │ │ │ │ ├── application_gethelp.txt │ │ │ │ ├── application_mbstring.md │ │ │ │ ├── application_mbstring.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_renderexception_escapeslines.txt │ │ │ │ ├── application_renderexception_linebreaks.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_mbstring.md │ │ │ │ ├── command_mbstring.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_argument_with_default_inf_value.json │ │ │ │ ├── input_argument_with_default_inf_value.md │ │ │ │ ├── input_argument_with_default_inf_value.txt │ │ │ │ ├── input_argument_with_default_inf_value.xml │ │ │ │ ├── input_argument_with_style.json │ │ │ │ ├── input_argument_with_style.md │ │ │ │ ├── input_argument_with_style.txt │ │ │ │ ├── input_argument_with_style.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 │ │ │ │ ├── input_option_with_default_inf_value.json │ │ │ │ ├── input_option_with_default_inf_value.md │ │ │ │ ├── input_option_with_default_inf_value.txt │ │ │ │ ├── input_option_with_default_inf_value.xml │ │ │ │ ├── input_option_with_style.json │ │ │ │ ├── input_option_with_style.md │ │ │ │ ├── input_option_with_style.txt │ │ │ │ ├── input_option_with_style.xml │ │ │ │ ├── input_option_with_style_array.json │ │ │ │ ├── input_option_with_style_array.md │ │ │ │ ├── input_option_with_style_array.txt │ │ │ │ └── input_option_with_style_array.xml │ │ │ ├── Formatter │ │ │ │ ├── OutputFormatterStyleStackTest.php │ │ │ │ ├── OutputFormatterStyleTest.php │ │ │ │ └── OutputFormatterTest.php │ │ │ ├── Helper │ │ │ │ ├── AbstractQuestionHelperTest.php │ │ │ │ ├── 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 │ │ │ ├── TerminalTest.php │ │ │ └── Tester │ │ │ │ ├── ApplicationTesterTest.php │ │ │ │ └── CommandTesterTest.php │ │ ├── composer.json │ │ └── phpunit.xml.dist │ ├── contracts │ │ ├── .gitignore │ │ ├── Cache │ │ │ ├── CacheInterface.php │ │ │ ├── CacheTrait.php │ │ │ ├── CallbackInterface.php │ │ │ ├── ItemInterface.php │ │ │ └── TagAwareCacheInterface.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Service │ │ │ ├── ResetInterface.php │ │ │ ├── ServiceLocatorTrait.php │ │ │ ├── ServiceSubscriberInterface.php │ │ │ └── ServiceSubscriberTrait.php │ │ ├── Tests │ │ │ ├── Cache │ │ │ │ └── CacheTraitTest.php │ │ │ ├── Service │ │ │ │ ├── ServiceLocatorTest.php │ │ │ │ └── ServiceSubscriberTraitTest.php │ │ │ └── Translation │ │ │ │ └── TranslatorTest.php │ │ ├── Translation │ │ │ ├── LocaleAwareInterface.php │ │ │ ├── TranslatorInterface.php │ │ │ └── TranslatorTrait.php │ │ ├── composer.json │ │ └── phpunit.xml.dist │ ├── css-selector │ │ ├── .gitignore │ │ ├── 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 │ │ ├── Debug.php │ │ ├── DebugClassLoader.php │ │ ├── ErrorHandler.php │ │ ├── Exception │ │ │ ├── ClassNotFoundException.php │ │ │ ├── ContextErrorException.php │ │ │ ├── FatalErrorException.php │ │ │ ├── FatalThrowableError.php │ │ │ ├── FlattenException.php │ │ │ ├── OutOfMemoryException.php │ │ │ ├── SilencedErrorContext.php │ │ │ ├── UndefinedFunctionException.php │ │ │ └── UndefinedMethodException.php │ │ ├── ExceptionHandler.php │ │ ├── FatalErrorHandler │ │ │ ├── ClassNotFoundFatalErrorHandler.php │ │ │ ├── FatalErrorHandlerInterface.php │ │ │ ├── UndefinedFunctionFatalErrorHandler.php │ │ │ └── UndefinedMethodFatalErrorHandler.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ │ └── ext │ │ │ │ ├── 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 │ │ │ │ ├── AnnotatedClass.php │ │ │ │ ├── ClassAlias.php │ │ │ │ ├── DeprecatedClass.php │ │ │ │ ├── DeprecatedInterface.php │ │ │ │ ├── ExtendedFinalMethod.php │ │ │ │ ├── FinalClass.php │ │ │ │ ├── FinalMethod.php │ │ │ │ ├── FinalMethod2Trait.php │ │ │ │ ├── InternalClass.php │ │ │ │ ├── InternalInterface.php │ │ │ │ ├── InternalTrait.php │ │ │ │ ├── InternalTrait2.php │ │ │ │ ├── NonDeprecatedInterface.php │ │ │ │ ├── PEARClass.php │ │ │ │ ├── Throwing.php │ │ │ │ ├── ToStringThrower.php │ │ │ │ ├── TraitWithInternalMethod.php │ │ │ │ ├── casemismatch.php │ │ │ │ ├── notPsr0Bis.php │ │ │ │ ├── psr4 │ │ │ │ │ └── Psr4CaseMismatch.php │ │ │ │ └── reallyNotPsr0.php │ │ │ ├── Fixtures2 │ │ │ │ └── RequiredTwice.php │ │ │ ├── HeaderMock.php │ │ │ ├── MockExceptionHandler.php │ │ │ └── phpt │ │ │ │ ├── debug_class_loader.phpt │ │ │ │ ├── decorate_exception_hander.phpt │ │ │ │ ├── exception_rethrown.phpt │ │ │ │ └── fatal_with_nested_handlers.phpt │ │ ├── composer.json │ │ └── phpunit.xml.dist │ ├── dom-crawler │ │ ├── .gitignore │ │ ├── AbstractUriElement.php │ │ ├── Crawler.php │ │ ├── Field │ │ │ ├── ChoiceFormField.php │ │ │ ├── FileFormField.php │ │ │ ├── FormField.php │ │ │ ├── InputFormField.php │ │ │ └── TextareaFormField.php │ │ ├── Form.php │ │ ├── FormFieldRegistry.php │ │ ├── Image.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 │ │ │ ├── ImageTest.php │ │ │ └── LinkTest.php │ │ ├── composer.json │ │ └── phpunit.xml.dist │ ├── event-dispatcher │ │ ├── .gitignore │ │ ├── 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 │ │ │ ├── Debug │ │ │ │ ├── TraceableEventDispatcherTest.php │ │ │ │ └── WrappedListenerTest.php │ │ │ ├── DependencyInjection │ │ │ │ └── RegisterListenersPassTest.php │ │ │ ├── EventDispatcherTest.php │ │ │ ├── EventTest.php │ │ │ ├── GenericEventTest.php │ │ │ └── ImmutableEventDispatcherTest.php │ │ ├── composer.json │ │ └── phpunit.xml.dist │ ├── finder │ │ ├── .gitignore │ │ ├── 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 │ │ │ │ ├── .dot │ │ │ │ │ ├── a │ │ │ │ │ └── b │ │ │ │ │ │ ├── c.neon │ │ │ │ │ │ └── d.neon │ │ │ │ ├── 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 │ │ │ │ │ ├── .dot │ │ │ │ │ ├── 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 │ │ ├── Cookie.php │ │ ├── Exception │ │ │ ├── ConflictingHeadersException.php │ │ │ ├── RequestExceptionInterface.php │ │ │ └── SuspiciousOperationException.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 │ │ │ ├── Stream.php │ │ │ └── UploadedFile.php │ │ ├── FileBag.php │ │ ├── HeaderBag.php │ │ ├── IpUtils.php │ │ ├── JsonResponse.php │ │ ├── LICENSE │ │ ├── ParameterBag.php │ │ ├── README.md │ │ ├── RedirectResponse.php │ │ ├── Request.php │ │ ├── RequestMatcher.php │ │ ├── RequestMatcherInterface.php │ │ ├── RequestStack.php │ │ ├── Response.php │ │ ├── ResponseHeaderBag.php │ │ ├── ServerBag.php │ │ ├── Session │ │ │ ├── Attribute │ │ │ │ ├── AttributeBag.php │ │ │ │ ├── AttributeBagInterface.php │ │ │ │ └── NamespacedAttributeBag.php │ │ │ ├── Flash │ │ │ │ ├── AutoExpireFlashBag.php │ │ │ │ ├── FlashBag.php │ │ │ │ └── FlashBagInterface.php │ │ │ ├── Session.php │ │ │ ├── SessionBagInterface.php │ │ │ ├── SessionBagProxy.php │ │ │ ├── SessionInterface.php │ │ │ └── Storage │ │ │ │ ├── Handler │ │ │ │ ├── AbstractSessionHandler.php │ │ │ │ ├── MemcacheSessionHandler.php │ │ │ │ ├── MemcachedSessionHandler.php │ │ │ │ ├── MongoDbSessionHandler.php │ │ │ │ ├── NativeFileSessionHandler.php │ │ │ │ ├── NativeSessionHandler.php │ │ │ │ ├── NullSessionHandler.php │ │ │ │ ├── PdoSessionHandler.php │ │ │ │ ├── StrictSessionHandler.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 │ │ │ ├── Fixtures │ │ │ │ └── response-functional │ │ │ │ │ ├── common.inc │ │ │ │ │ ├── cookie_max_age.expected │ │ │ │ │ ├── cookie_max_age.php │ │ │ │ │ ├── cookie_raw_urlencode.expected │ │ │ │ │ ├── cookie_raw_urlencode.php │ │ │ │ │ ├── cookie_samesite_lax.expected │ │ │ │ │ ├── cookie_samesite_lax.php │ │ │ │ │ ├── cookie_samesite_strict.expected │ │ │ │ │ ├── cookie_samesite_strict.php │ │ │ │ │ ├── cookie_urlencode.expected │ │ │ │ │ ├── cookie_urlencode.php │ │ │ │ │ ├── invalid_cookie_name.expected │ │ │ │ │ └── invalid_cookie_name.php │ │ │ ├── HeaderBagTest.php │ │ │ ├── IpUtilsTest.php │ │ │ ├── JsonResponseTest.php │ │ │ ├── ParameterBagTest.php │ │ │ ├── RedirectResponseTest.php │ │ │ ├── RequestMatcherTest.php │ │ │ ├── RequestStackTest.php │ │ │ ├── RequestTest.php │ │ │ ├── ResponseFunctionalTest.php │ │ │ ├── ResponseHeaderBagTest.php │ │ │ ├── ResponseTest.php │ │ │ ├── ResponseTestCase.php │ │ │ ├── ServerBagTest.php │ │ │ ├── Session │ │ │ │ ├── Attribute │ │ │ │ │ ├── AttributeBagTest.php │ │ │ │ │ └── NamespacedAttributeBagTest.php │ │ │ │ ├── Flash │ │ │ │ │ ├── AutoExpireFlashBagTest.php │ │ │ │ │ └── FlashBagTest.php │ │ │ │ ├── SessionTest.php │ │ │ │ └── Storage │ │ │ │ │ ├── Handler │ │ │ │ │ ├── AbstractSessionHandlerTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── common.inc │ │ │ │ │ │ ├── empty_destroys.expected │ │ │ │ │ │ ├── empty_destroys.php │ │ │ │ │ │ ├── read_only.expected │ │ │ │ │ │ ├── read_only.php │ │ │ │ │ │ ├── regenerate.expected │ │ │ │ │ │ ├── regenerate.php │ │ │ │ │ │ ├── storage.expected │ │ │ │ │ │ ├── storage.php │ │ │ │ │ │ ├── with_cookie.expected │ │ │ │ │ │ ├── with_cookie.php │ │ │ │ │ │ ├── with_cookie_and_session.expected │ │ │ │ │ │ └── with_cookie_and_session.php │ │ │ │ │ ├── MemcacheSessionHandlerTest.php │ │ │ │ │ ├── MemcachedSessionHandlerTest.php │ │ │ │ │ ├── MongoDbSessionHandlerTest.php │ │ │ │ │ ├── NativeFileSessionHandlerTest.php │ │ │ │ │ ├── NativeSessionHandlerTest.php │ │ │ │ │ ├── NullSessionHandlerTest.php │ │ │ │ │ ├── PdoSessionHandlerTest.php │ │ │ │ │ ├── StrictSessionHandlerTest.php │ │ │ │ │ └── WriteCheckSessionHandlerTest.php │ │ │ │ │ ├── MetadataBagTest.php │ │ │ │ │ ├── MockArraySessionStorageTest.php │ │ │ │ │ ├── MockFileSessionStorageTest.php │ │ │ │ │ ├── NativeSessionStorageTest.php │ │ │ │ │ ├── PhpBridgeSessionStorageTest.php │ │ │ │ │ └── Proxy │ │ │ │ │ ├── AbstractProxyTest.php │ │ │ │ │ ├── NativeProxyTest.php │ │ │ │ │ └── SessionHandlerProxyTest.php │ │ │ ├── StreamedResponseTest.php │ │ │ └── schema │ │ │ │ ├── http-status-codes.rng │ │ │ │ └── iana-registry.rng │ │ ├── composer.json │ │ └── phpunit.xml.dist │ ├── http-kernel │ │ ├── .gitignore │ │ ├── Bundle │ │ │ ├── Bundle.php │ │ │ └── BundleInterface.php │ │ ├── CacheClearer │ │ │ ├── CacheClearerInterface.php │ │ │ ├── ChainCacheClearer.php │ │ │ └── Psr6CacheClearer.php │ │ ├── CacheWarmer │ │ │ ├── CacheWarmer.php │ │ │ ├── CacheWarmerAggregate.php │ │ │ ├── CacheWarmerInterface.php │ │ │ └── WarmableInterface.php │ │ ├── Client.php │ │ ├── Config │ │ │ ├── EnvParametersResource.php │ │ │ └── FileLocator.php │ │ ├── Controller │ │ │ ├── ArgumentResolver.php │ │ │ ├── ArgumentResolver │ │ │ │ ├── DefaultValueResolver.php │ │ │ │ ├── RequestAttributeValueResolver.php │ │ │ │ ├── RequestValueResolver.php │ │ │ │ ├── ServiceValueResolver.php │ │ │ │ ├── SessionValueResolver.php │ │ │ │ └── VariadicValueResolver.php │ │ │ ├── ArgumentResolverInterface.php │ │ │ ├── ArgumentValueResolverInterface.php │ │ │ ├── ContainerControllerResolver.php │ │ │ ├── ControllerReference.php │ │ │ ├── ControllerResolver.php │ │ │ ├── ControllerResolverInterface.php │ │ │ ├── TraceableArgumentResolver.php │ │ │ └── TraceableControllerResolver.php │ │ ├── ControllerMetadata │ │ │ ├── ArgumentMetadata.php │ │ │ ├── ArgumentMetadataFactory.php │ │ │ └── ArgumentMetadataFactoryInterface.php │ │ ├── DataCollector │ │ │ ├── AjaxDataCollector.php │ │ │ ├── ConfigDataCollector.php │ │ │ ├── DataCollector.php │ │ │ ├── DataCollectorInterface.php │ │ │ ├── DumpDataCollector.php │ │ │ ├── EventDataCollector.php │ │ │ ├── ExceptionDataCollector.php │ │ │ ├── LateDataCollectorInterface.php │ │ │ ├── LoggerDataCollector.php │ │ │ ├── MemoryDataCollector.php │ │ │ ├── RequestDataCollector.php │ │ │ ├── RouterDataCollector.php │ │ │ ├── TimeDataCollector.php │ │ │ └── Util │ │ │ │ └── ValueExporter.php │ │ ├── Debug │ │ │ ├── FileLinkFormatter.php │ │ │ └── TraceableEventDispatcher.php │ │ ├── DependencyInjection │ │ │ ├── AddAnnotatedClassesToCachePass.php │ │ │ ├── AddClassesToCachePass.php │ │ │ ├── ConfigurableExtension.php │ │ │ ├── ControllerArgumentValueResolverPass.php │ │ │ ├── Extension.php │ │ │ ├── FragmentRendererPass.php │ │ │ ├── LazyLoadingFragmentHandler.php │ │ │ ├── LoggerPass.php │ │ │ ├── MergeExtensionConfigurationPass.php │ │ │ ├── RegisterControllerArgumentLocatorsPass.php │ │ │ ├── RemoveEmptyControllerArgumentLocatorsPass.php │ │ │ ├── ResettableServicePass.php │ │ │ └── ServicesResetter.php │ │ ├── Event │ │ │ ├── FilterControllerArgumentsEvent.php │ │ │ ├── FilterControllerEvent.php │ │ │ ├── FilterResponseEvent.php │ │ │ ├── FinishRequestEvent.php │ │ │ ├── GetResponseEvent.php │ │ │ ├── GetResponseForControllerResultEvent.php │ │ │ ├── GetResponseForExceptionEvent.php │ │ │ ├── KernelEvent.php │ │ │ └── PostResponseEvent.php │ │ ├── EventListener │ │ │ ├── AbstractSessionListener.php │ │ │ ├── AbstractTestSessionListener.php │ │ │ ├── AddRequestFormatsListener.php │ │ │ ├── DebugHandlersListener.php │ │ │ ├── DumpListener.php │ │ │ ├── ExceptionListener.php │ │ │ ├── FragmentListener.php │ │ │ ├── LocaleListener.php │ │ │ ├── ProfilerListener.php │ │ │ ├── ResponseListener.php │ │ │ ├── RouterListener.php │ │ │ ├── SaveSessionListener.php │ │ │ ├── SessionListener.php │ │ │ ├── StreamedResponseListener.php │ │ │ ├── SurrogateListener.php │ │ │ ├── TestSessionListener.php │ │ │ ├── TranslatorListener.php │ │ │ └── ValidateRequestListener.php │ │ ├── Exception │ │ │ ├── AccessDeniedHttpException.php │ │ │ ├── BadRequestHttpException.php │ │ │ ├── ConflictHttpException.php │ │ │ ├── GoneHttpException.php │ │ │ ├── HttpException.php │ │ │ ├── HttpExceptionInterface.php │ │ │ ├── LengthRequiredHttpException.php │ │ │ ├── MethodNotAllowedHttpException.php │ │ │ ├── NotAcceptableHttpException.php │ │ │ ├── NotFoundHttpException.php │ │ │ ├── PreconditionFailedHttpException.php │ │ │ ├── PreconditionRequiredHttpException.php │ │ │ ├── ServiceUnavailableHttpException.php │ │ │ ├── TooManyRequestsHttpException.php │ │ │ ├── UnauthorizedHttpException.php │ │ │ ├── UnprocessableEntityHttpException.php │ │ │ └── UnsupportedMediaTypeHttpException.php │ │ ├── Fragment │ │ │ ├── AbstractSurrogateFragmentRenderer.php │ │ │ ├── EsiFragmentRenderer.php │ │ │ ├── FragmentHandler.php │ │ │ ├── FragmentRendererInterface.php │ │ │ ├── HIncludeFragmentRenderer.php │ │ │ ├── InlineFragmentRenderer.php │ │ │ ├── RoutableFragmentRenderer.php │ │ │ └── SsiFragmentRenderer.php │ │ ├── HttpCache │ │ │ ├── AbstractSurrogate.php │ │ │ ├── Esi.php │ │ │ ├── HttpCache.php │ │ │ ├── ResponseCacheStrategy.php │ │ │ ├── ResponseCacheStrategyInterface.php │ │ │ ├── Ssi.php │ │ │ ├── Store.php │ │ │ ├── StoreInterface.php │ │ │ ├── SubRequestHandler.php │ │ │ └── SurrogateInterface.php │ │ ├── HttpKernel.php │ │ ├── HttpKernelInterface.php │ │ ├── Kernel.php │ │ ├── KernelEvents.php │ │ ├── KernelInterface.php │ │ ├── LICENSE │ │ ├── Log │ │ │ ├── DebugLoggerInterface.php │ │ │ └── Logger.php │ │ ├── Profiler │ │ │ ├── FileProfilerStorage.php │ │ │ ├── Profile.php │ │ │ ├── Profiler.php │ │ │ └── ProfilerStorageInterface.php │ │ ├── README.md │ │ ├── RebootableInterface.php │ │ ├── Resources │ │ │ └── welcome.html.php │ │ ├── TerminableInterface.php │ │ ├── Tests │ │ │ ├── Bundle │ │ │ │ └── BundleTest.php │ │ │ ├── CacheClearer │ │ │ │ ├── ChainCacheClearerTest.php │ │ │ │ └── Psr6CacheClearerTest.php │ │ │ ├── CacheWarmer │ │ │ │ ├── CacheWarmerAggregateTest.php │ │ │ │ └── CacheWarmerTest.php │ │ │ ├── ClientTest.php │ │ │ ├── Config │ │ │ │ ├── EnvParametersResourceTest.php │ │ │ │ └── FileLocatorTest.php │ │ │ ├── Controller │ │ │ │ ├── ArgumentResolver │ │ │ │ │ └── ServiceValueResolverTest.php │ │ │ │ ├── ArgumentResolverTest.php │ │ │ │ ├── ContainerControllerResolverTest.php │ │ │ │ └── ControllerResolverTest.php │ │ │ ├── ControllerMetadata │ │ │ │ ├── ArgumentMetadataFactoryTest.php │ │ │ │ └── ArgumentMetadataTest.php │ │ │ ├── DataCollector │ │ │ │ ├── ConfigDataCollectorTest.php │ │ │ │ ├── DataCollectorTest.php │ │ │ │ ├── DumpDataCollectorTest.php │ │ │ │ ├── ExceptionDataCollectorTest.php │ │ │ │ ├── LoggerDataCollectorTest.php │ │ │ │ ├── MemoryDataCollectorTest.php │ │ │ │ ├── RequestDataCollectorTest.php │ │ │ │ ├── TimeDataCollectorTest.php │ │ │ │ └── Util │ │ │ │ │ └── ValueExporterTest.php │ │ │ ├── Debug │ │ │ │ ├── FileLinkFormatterTest.php │ │ │ │ └── TraceableEventDispatcherTest.php │ │ │ ├── DependencyInjection │ │ │ │ ├── AddAnnotatedClassesToCachePassTest.php │ │ │ │ ├── ControllerArgumentValueResolverPassTest.php │ │ │ │ ├── FragmentRendererPassTest.php │ │ │ │ ├── LazyLoadingFragmentHandlerTest.php │ │ │ │ ├── LoggerPassTest.php │ │ │ │ ├── MergeExtensionConfigurationPassTest.php │ │ │ │ ├── RegisterControllerArgumentLocatorsPassTest.php │ │ │ │ ├── RemoveEmptyControllerArgumentLocatorsPassTest.php │ │ │ │ ├── ResettableServicePassTest.php │ │ │ │ └── ServicesResetterTest.php │ │ │ ├── Event │ │ │ │ ├── FilterControllerArgumentsEventTest.php │ │ │ │ └── GetResponseForExceptionEventTest.php │ │ │ ├── EventListener │ │ │ │ ├── AddRequestFormatsListenerTest.php │ │ │ │ ├── DebugHandlersListenerTest.php │ │ │ │ ├── DumpListenerTest.php │ │ │ │ ├── ExceptionListenerTest.php │ │ │ │ ├── FragmentListenerTest.php │ │ │ │ ├── LocaleListenerTest.php │ │ │ │ ├── ProfilerListenerTest.php │ │ │ │ ├── ResponseListenerTest.php │ │ │ │ ├── RouterListenerTest.php │ │ │ │ ├── SaveSessionListenerTest.php │ │ │ │ ├── SessionListenerTest.php │ │ │ │ ├── SurrogateListenerTest.php │ │ │ │ ├── TestSessionListenerTest.php │ │ │ │ ├── TranslatorListenerTest.php │ │ │ │ └── ValidateRequestListenerTest.php │ │ │ ├── Exception │ │ │ │ ├── AccessDeniedHttpExceptionTest.php │ │ │ │ ├── BadRequestHttpExceptionTest.php │ │ │ │ ├── ConflictHttpExceptionTest.php │ │ │ │ ├── GoneHttpExceptionTest.php │ │ │ │ ├── HttpExceptionTest.php │ │ │ │ ├── LengthRequiredHttpExceptionTest.php │ │ │ │ ├── MethodNotAllowedHttpExceptionTest.php │ │ │ │ ├── NotAcceptableHttpExceptionTest.php │ │ │ │ ├── NotFoundHttpExceptionTest.php │ │ │ │ ├── PreconditionFailedHttpExceptionTest.php │ │ │ │ ├── PreconditionRequiredHttpExceptionTest.php │ │ │ │ ├── ServiceUnavailableHttpExceptionTest.php │ │ │ │ ├── TooManyRequestsHttpExceptionTest.php │ │ │ │ ├── UnauthorizedHttpExceptionTest.php │ │ │ │ ├── UnprocessableEntityHttpExceptionTest.php │ │ │ │ └── UnsupportedMediaTypeHttpExceptionTest.php │ │ │ ├── Fixtures │ │ │ │ ├── 123 │ │ │ │ │ └── Kernel123.php │ │ │ │ ├── BaseBundle │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── foo.txt │ │ │ │ │ │ └── hide.txt │ │ │ │ ├── Bundle1Bundle │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── foo.txt │ │ │ │ │ ├── bar.txt │ │ │ │ │ └── foo.txt │ │ │ │ ├── Bundle2Bundle │ │ │ │ │ └── foo.txt │ │ │ │ ├── ChildBundle │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── foo.txt │ │ │ │ │ │ └── hide.txt │ │ │ │ ├── ClearableService.php │ │ │ │ ├── Controller │ │ │ │ │ ├── BasicTypesController.php │ │ │ │ │ ├── ExtendingRequest.php │ │ │ │ │ ├── ExtendingSession.php │ │ │ │ │ ├── NullableController.php │ │ │ │ │ └── VariadicController.php │ │ │ │ ├── DataCollector │ │ │ │ │ └── CloneVarDataCollector.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 │ │ │ │ ├── KernelWithoutBundles.php │ │ │ │ ├── ResettableService.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 │ │ │ │ └── SsiFragmentRendererTest.php │ │ │ ├── HttpCache │ │ │ │ ├── EsiTest.php │ │ │ │ ├── HttpCacheTest.php │ │ │ │ ├── HttpCacheTestCase.php │ │ │ │ ├── ResponseCacheStrategyTest.php │ │ │ │ ├── SsiTest.php │ │ │ │ ├── StoreTest.php │ │ │ │ ├── SubRequestHandlerTest.php │ │ │ │ ├── TestHttpKernel.php │ │ │ │ └── TestMultipleHttpKernel.php │ │ │ ├── HttpKernelTest.php │ │ │ ├── KernelTest.php │ │ │ ├── Log │ │ │ │ └── LoggerTest.php │ │ │ ├── Logger.php │ │ │ ├── Profiler │ │ │ │ ├── FileProfilerStorageTest.php │ │ │ │ └── ProfilerTest.php │ │ │ ├── TestHttpKernel.php │ │ │ └── UriSignerTest.php │ │ ├── UriSigner.php │ │ ├── composer.json │ │ └── phpunit.xml.dist │ ├── polyfill-ctype │ │ ├── Ctype.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-mbstring │ │ ├── LICENSE │ │ ├── Mbstring.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── lowerCase.php │ │ │ │ ├── titleCaseRegexp.php │ │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ └── composer.json │ ├── polyfill-php70 │ │ ├── LICENSE │ │ ├── Php70.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ ├── ArithmeticError.php │ │ │ │ ├── AssertionError.php │ │ │ │ ├── DivisionByZeroError.php │ │ │ │ ├── Error.php │ │ │ │ ├── ParseError.php │ │ │ │ ├── SessionUpdateTimestampHandlerInterface.php │ │ │ │ └── TypeError.php │ │ ├── bootstrap.php │ │ └── composer.json │ ├── process │ │ ├── .gitignore │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LogicException.php │ │ │ ├── ProcessFailedException.php │ │ │ ├── ProcessTimedOutException.php │ │ │ └── RuntimeException.php │ │ ├── ExecutableFinder.php │ │ ├── InputStream.php │ │ ├── LICENSE │ │ ├── PhpExecutableFinder.php │ │ ├── PhpProcess.php │ │ ├── Pipes │ │ │ ├── AbstractPipes.php │ │ │ ├── PipesInterface.php │ │ │ ├── UnixPipes.php │ │ │ └── WindowsPipes.php │ │ ├── Process.php │ │ ├── ProcessBuilder.php │ │ ├── ProcessUtils.php │ │ ├── README.md │ │ ├── Tests │ │ │ ├── ExecutableFinderTest.php │ │ │ ├── NonStopableProcess.php │ │ │ ├── PhpExecutableFinderTest.php │ │ │ ├── PhpProcessTest.php │ │ │ ├── PipeStdinInStdoutStdErrStreamSelect.php │ │ │ ├── ProcessBuilderTest.php │ │ │ ├── ProcessFailedExceptionTest.php │ │ │ ├── ProcessTest.php │ │ │ ├── ProcessUtilsTest.php │ │ │ └── SignalListener.php │ │ ├── composer.json │ │ └── phpunit.xml.dist │ ├── routing │ │ ├── .gitignore │ │ ├── Annotation │ │ │ └── Route.php │ │ ├── CompiledRoute.php │ │ ├── DependencyInjection │ │ │ └── RoutingResolverPass.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidParameterException.php │ │ │ ├── MethodNotAllowedException.php │ │ │ ├── MissingMandatoryParametersException.php │ │ │ ├── NoConfigurationException.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 │ │ │ ├── Configurator │ │ │ │ ├── CollectionConfigurator.php │ │ │ │ ├── ImportConfigurator.php │ │ │ │ ├── RouteConfigurator.php │ │ │ │ ├── RoutingConfigurator.php │ │ │ │ └── Traits │ │ │ │ │ ├── AddTrait.php │ │ │ │ │ └── RouteTrait.php │ │ │ ├── DependencyInjection │ │ │ │ └── ServiceRouterLoader.php │ │ │ ├── DirectoryLoader.php │ │ │ ├── GlobFileLoader.php │ │ │ ├── ObjectRouteLoader.php │ │ │ ├── PhpFileLoader.php │ │ │ ├── XmlFileLoader.php │ │ │ ├── YamlFileLoader.php │ │ │ └── schema │ │ │ │ └── routing │ │ │ │ └── routing-1.0.xsd │ │ ├── Matcher │ │ │ ├── Dumper │ │ │ │ ├── DumperCollection.php │ │ │ │ ├── DumperRoute.php │ │ │ │ ├── MatcherDumper.php │ │ │ │ ├── MatcherDumperInterface.php │ │ │ │ ├── PhpMatcherDumper.php │ │ │ │ └── StaticPrefixCollection.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 │ │ │ ├── DependencyInjection │ │ │ │ └── RoutingResolverPassTest.php │ │ │ ├── Fixtures │ │ │ │ ├── AnnotatedClasses │ │ │ │ │ ├── AbstractClass.php │ │ │ │ │ ├── BarClass.php │ │ │ │ │ ├── BazClass.php │ │ │ │ │ ├── FooClass.php │ │ │ │ │ └── FooTrait.php │ │ │ │ ├── CustomCompiledRoute.php │ │ │ │ ├── CustomRouteCompiler.php │ │ │ │ ├── CustomXmlFileLoader.php │ │ │ │ ├── OtherAnnotatedClasses │ │ │ │ │ ├── AnonymousClassInTrait.php │ │ │ │ │ ├── NoStartTagClass.php │ │ │ │ │ └── VariadicClass.php │ │ │ │ ├── RedirectableUrlMatcher.php │ │ │ │ ├── annotated.php │ │ │ │ ├── bad_format.yml │ │ │ │ ├── bar.xml │ │ │ │ ├── controller │ │ │ │ │ ├── import__controller.xml │ │ │ │ │ ├── import__controller.yml │ │ │ │ │ ├── import_controller.xml │ │ │ │ │ ├── import_controller.yml │ │ │ │ │ ├── import_override_defaults.xml │ │ │ │ │ ├── import_override_defaults.yml │ │ │ │ │ ├── override_defaults.xml │ │ │ │ │ ├── override_defaults.yml │ │ │ │ │ ├── routing.xml │ │ │ │ │ └── routing.yml │ │ │ │ ├── directory │ │ │ │ │ ├── recurse │ │ │ │ │ │ ├── routes1.yml │ │ │ │ │ │ └── routes2.yml │ │ │ │ │ └── routes3.yml │ │ │ │ ├── directory_import │ │ │ │ │ └── import.yml │ │ │ │ ├── dumper │ │ │ │ │ ├── url_matcher0.php │ │ │ │ │ ├── url_matcher1.php │ │ │ │ │ ├── url_matcher2.php │ │ │ │ │ ├── url_matcher3.php │ │ │ │ │ ├── url_matcher4.php │ │ │ │ │ ├── url_matcher5.php │ │ │ │ │ ├── url_matcher6.php │ │ │ │ │ └── url_matcher7.php │ │ │ │ ├── empty.yml │ │ │ │ ├── file_resource.yml │ │ │ │ ├── foo.xml │ │ │ │ ├── foo1.xml │ │ │ │ ├── glob │ │ │ │ │ ├── bar.xml │ │ │ │ │ ├── bar.yml │ │ │ │ │ ├── baz.xml │ │ │ │ │ ├── baz.yml │ │ │ │ │ ├── import_multiple.xml │ │ │ │ │ ├── import_multiple.yml │ │ │ │ │ ├── import_single.xml │ │ │ │ │ ├── import_single.yml │ │ │ │ │ ├── php_dsl.php │ │ │ │ │ ├── php_dsl_bar.php │ │ │ │ │ └── php_dsl_baz.php │ │ │ │ ├── incomplete.yml │ │ │ │ ├── list_defaults.xml │ │ │ │ ├── list_in_list_defaults.xml │ │ │ │ ├── list_in_map_defaults.xml │ │ │ │ ├── list_null_values.xml │ │ │ │ ├── map_defaults.xml │ │ │ │ ├── map_in_list_defaults.xml │ │ │ │ ├── map_in_map_defaults.xml │ │ │ │ ├── map_null_values.xml │ │ │ │ ├── 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 │ │ │ │ ├── php_dsl.php │ │ │ │ ├── php_dsl_sub.php │ │ │ │ ├── scalar_defaults.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 │ │ │ │ ├── GlobFileLoaderTest.php │ │ │ │ ├── ObjectRouteLoaderTest.php │ │ │ │ ├── PhpFileLoaderTest.php │ │ │ │ ├── XmlFileLoaderTest.php │ │ │ │ └── YamlFileLoaderTest.php │ │ │ ├── Matcher │ │ │ │ ├── DumpedRedirectableUrlMatcherTest.php │ │ │ │ ├── DumpedUrlMatcherTest.php │ │ │ │ ├── Dumper │ │ │ │ │ ├── DumperCollectionTest.php │ │ │ │ │ ├── PhpMatcherDumperTest.php │ │ │ │ │ └── StaticPrefixCollectionTest.php │ │ │ │ ├── RedirectableUrlMatcherTest.php │ │ │ │ ├── TraceableUrlMatcherTest.php │ │ │ │ └── UrlMatcherTest.php │ │ │ ├── RequestContextTest.php │ │ │ ├── RouteCollectionBuilderTest.php │ │ │ ├── RouteCollectionTest.php │ │ │ ├── RouteCompilerTest.php │ │ │ ├── RouteTest.php │ │ │ └── RouterTest.php │ │ ├── composer.json │ │ └── phpunit.xml.dist │ ├── thanks │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ │ ├── Command │ │ │ └── ThanksCommand.php │ │ │ ├── GitHubClient.php │ │ │ └── Thanks.php │ ├── translation │ │ ├── .gitignore │ │ ├── Catalogue │ │ │ ├── AbstractOperation.php │ │ │ ├── MergeOperation.php │ │ │ ├── OperationInterface.php │ │ │ └── TargetOperation.php │ │ ├── Command │ │ │ └── XliffLintCommand.php │ │ ├── DataCollector │ │ │ └── TranslationDataCollector.php │ │ ├── DataCollectorTranslator.php │ │ ├── DependencyInjection │ │ │ ├── TranslationDumperPass.php │ │ │ ├── TranslationExtractorPass.php │ │ │ └── TranslatorPass.php │ │ ├── Dumper │ │ │ ├── CsvFileDumper.php │ │ │ ├── DumperInterface.php │ │ │ ├── FileDumper.php │ │ │ ├── IcuResFileDumper.php │ │ │ ├── IniFileDumper.php │ │ │ ├── JsonFileDumper.php │ │ │ ├── MoFileDumper.php │ │ │ ├── PhpFileDumper.php │ │ │ ├── PoFileDumper.php │ │ │ ├── QtFileDumper.php │ │ │ ├── XliffFileDumper.php │ │ │ └── YamlFileDumper.php │ │ ├── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidResourceException.php │ │ │ ├── LogicException.php │ │ │ ├── NotFoundResourceException.php │ │ │ └── RuntimeException.php │ │ ├── Extractor │ │ │ ├── AbstractFileExtractor.php │ │ │ ├── ChainExtractor.php │ │ │ ├── ExtractorInterface.php │ │ │ ├── PhpExtractor.php │ │ │ └── PhpStringTokenParser.php │ │ ├── Formatter │ │ │ ├── ChoiceMessageFormatterInterface.php │ │ │ ├── IntlFormatter.php │ │ │ ├── IntlFormatterInterface.php │ │ │ ├── MessageFormatter.php │ │ │ └── MessageFormatterInterface.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 │ │ ├── LoggingTranslator.php │ │ ├── MessageCatalogue.php │ │ ├── MessageCatalogueInterface.php │ │ ├── MessageSelector.php │ │ ├── MetadataAwareInterface.php │ │ ├── PluralizationRules.php │ │ ├── README.md │ │ ├── Reader │ │ │ ├── TranslationReader.php │ │ │ └── TranslationReaderInterface.php │ │ ├── Resources │ │ │ ├── data │ │ │ │ └── parents.json │ │ │ └── schemas │ │ │ │ ├── xliff-core-1.2-strict.xsd │ │ │ │ ├── xliff-core-2.0.xsd │ │ │ │ └── xml.xsd │ │ ├── Tests │ │ │ ├── Catalogue │ │ │ │ ├── AbstractOperationTest.php │ │ │ │ ├── MergeOperationTest.php │ │ │ │ └── TargetOperationTest.php │ │ │ ├── Command │ │ │ │ └── XliffLintCommandTest.php │ │ │ ├── DataCollector │ │ │ │ └── TranslationDataCollectorTest.php │ │ │ ├── DataCollectorTranslatorTest.php │ │ │ ├── DependencyInjection │ │ │ │ ├── TranslationDumperPassTest.php │ │ │ │ ├── TranslationExtractorPassTest.php │ │ │ │ └── TranslationPassTest.php │ │ │ ├── Dumper │ │ │ │ ├── CsvFileDumperTest.php │ │ │ │ ├── FileDumperTest.php │ │ │ │ ├── IcuResFileDumperTest.php │ │ │ │ ├── IniFileDumperTest.php │ │ │ │ ├── JsonFileDumperTest.php │ │ │ │ ├── MoFileDumperTest.php │ │ │ │ ├── PhpFileDumperTest.php │ │ │ │ ├── PoFileDumperTest.php │ │ │ │ ├── QtFileDumperTest.php │ │ │ │ ├── XliffFileDumperTest.php │ │ │ │ └── YamlFileDumperTest.php │ │ │ ├── Extractor │ │ │ │ └── PhpExtractorTest.php │ │ │ ├── Formatter │ │ │ │ ├── IntlFormatterTest.php │ │ │ │ └── MessageFormatterTest.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 │ │ │ │ ├── extractor │ │ │ │ ├── resource.format.engine │ │ │ │ ├── this.is.a.template.format.engine │ │ │ │ └── translation.html.php │ │ │ │ ├── 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-multi-segment-unit.xlf │ │ │ │ ├── resources-2.0.xlf │ │ │ │ ├── resources-clean.xlf │ │ │ │ ├── resources-notes-meta.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 │ │ │ └── XliffUtils.php │ │ ├── Writer │ │ │ ├── TranslationWriter.php │ │ │ └── TranslationWriterInterface.php │ │ ├── composer.json │ │ └── phpunit.xml.dist │ └── var-dumper │ │ ├── .gitignore │ │ ├── Caster │ │ ├── AmqpCaster.php │ │ ├── ArgsStub.php │ │ ├── Caster.php │ │ ├── ClassStub.php │ │ ├── ConstStub.php │ │ ├── CutArrayStub.php │ │ ├── CutStub.php │ │ ├── DOMCaster.php │ │ ├── DateCaster.php │ │ ├── DoctrineCaster.php │ │ ├── EnumStub.php │ │ ├── ExceptionCaster.php │ │ ├── FrameStub.php │ │ ├── LinkStub.php │ │ ├── MongoCaster.php │ │ ├── PdoCaster.php │ │ ├── PgSqlCaster.php │ │ ├── RedisCaster.php │ │ ├── ReflectionCaster.php │ │ ├── ResourceCaster.php │ │ ├── SplCaster.php │ │ ├── StubCaster.php │ │ ├── SymfonyCaster.php │ │ ├── TraceStub.php │ │ ├── XmlReaderCaster.php │ │ └── XmlResourceCaster.php │ │ ├── Cloner │ │ ├── AbstractCloner.php │ │ ├── ClonerInterface.php │ │ ├── Cursor.php │ │ ├── Data.php │ │ ├── DumperInterface.php │ │ ├── Stub.php │ │ └── VarCloner.php │ │ ├── Dumper │ │ ├── AbstractDumper.php │ │ ├── CliDumper.php │ │ ├── DataDumperInterface.php │ │ └── HtmlDumper.php │ │ ├── Exception │ │ └── ThrowingCasterException.php │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Resources │ │ └── functions │ │ │ └── dump.php │ │ ├── Test │ │ └── VarDumperTestTrait.php │ │ ├── Tests │ │ ├── Caster │ │ │ ├── CasterTest.php │ │ │ ├── DateCasterTest.php │ │ │ ├── ExceptionCasterTest.php │ │ │ ├── PdoCasterTest.php │ │ │ ├── RedisCasterTest.php │ │ │ ├── ReflectionCasterTest.php │ │ │ ├── SplCasterTest.php │ │ │ ├── StubCasterTest.php │ │ │ └── XmlReaderCasterTest.php │ │ ├── Cloner │ │ │ ├── DataTest.php │ │ │ └── VarClonerTest.php │ │ ├── Dumper │ │ │ ├── CliDumperTest.php │ │ │ ├── FunctionsTest.php │ │ │ └── HtmlDumperTest.php │ │ ├── Fixtures │ │ │ ├── FooInterface.php │ │ │ ├── GeneratorDemo.php │ │ │ ├── NotLoadableClass.php │ │ │ ├── Twig.php │ │ │ ├── dumb-var.php │ │ │ └── xml_reader.xml │ │ └── Test │ │ │ └── VarDumperTestTraitTest.php │ │ ├── VarDumper.php │ │ ├── composer.json │ │ └── phpunit.xml.dist ├── theseer │ └── tokenizer │ │ ├── .gitignore │ │ ├── .php_cs │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.xml │ │ ├── composer.json │ │ ├── phive.xml │ │ ├── phpunit.xml │ │ ├── src │ │ ├── Exception.php │ │ ├── NamespaceUri.php │ │ ├── NamespaceUriException.php │ │ ├── Token.php │ │ ├── TokenCollection.php │ │ ├── TokenCollectionException.php │ │ ├── Tokenizer.php │ │ └── XMLSerializer.php │ │ └── tests │ │ ├── NamespaceUriTest.php │ │ ├── TokenCollectionTest.php │ │ ├── TokenTest.php │ │ ├── TokenizerTest.php │ │ ├── XMLSerializerTest.php │ │ └── _files │ │ ├── customns.xml │ │ ├── test.php │ │ ├── test.php.tokens │ │ └── test.php.xml ├── tijsverkoyen │ └── css-to-inline-styles │ │ ├── LICENSE.md │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ └── src │ │ ├── Css │ │ ├── Processor.php │ │ ├── Property │ │ │ ├── Processor.php │ │ │ └── Property.php │ │ └── Rule │ │ │ ├── Processor.php │ │ │ └── Rule.php │ │ └── CssToInlineStyles.php ├── 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 │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ └── Assert.php └── webpack.mix.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/404.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/README.md -------------------------------------------------------------------------------- /admin-categories.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/admin-categories.PNG -------------------------------------------------------------------------------- /admin-home.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/admin-home.PNG -------------------------------------------------------------------------------- /admin-sites.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/admin-sites.PNG -------------------------------------------------------------------------------- /app/Admin/Controllers/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Admin/Controllers/AuthController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Admin/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Admin/Controllers/SiteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Admin/Controllers/SiteController.php -------------------------------------------------------------------------------- /app/Admin/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Admin/bootstrap.php -------------------------------------------------------------------------------- /app/Admin/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Admin/routes.php -------------------------------------------------------------------------------- /app/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Category.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Observers/SiteObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Observers/SiteObserver.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/app/Site.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/composer.lock -------------------------------------------------------------------------------- /config/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/config/admin.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/config/database.php -------------------------------------------------------------------------------- /config/debugbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/config/debugbar.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/seeds/AdminConfigTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/database/seeds/AdminConfigTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/AdminMenuTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/database/seeds/AdminMenuTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/AdminRolesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/database/seeds/AdminRolesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/AdminUsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/database/seeds/AdminUsersTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/CategoriesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/database/seeds/CategoriesTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/SitesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/database/seeds/SitesTableSeeder.php -------------------------------------------------------------------------------- /deploy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/deploy.php -------------------------------------------------------------------------------- /hitokoto.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/hitokoto.sql -------------------------------------------------------------------------------- /index.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/index.PNG -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/index.html -------------------------------------------------------------------------------- /music.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/music.PNG -------------------------------------------------------------------------------- /null: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/null -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/.user.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/.user.ini -------------------------------------------------------------------------------- /public/TRANSLATE.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/TRANSLATE.zip -------------------------------------------------------------------------------- /public/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/about.html -------------------------------------------------------------------------------- /public/category.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/category.svg -------------------------------------------------------------------------------- /public/css/component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/css/component.css -------------------------------------------------------------------------------- /public/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/css/demo.css -------------------------------------------------------------------------------- /public/css/organicfoodicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/css/organicfoodicons.css -------------------------------------------------------------------------------- /public/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/css/search.css -------------------------------------------------------------------------------- /public/css2/component2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/css2/component2.css -------------------------------------------------------------------------------- /public/css2/demo2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/css2/demo2.css -------------------------------------------------------------------------------- /public/css2/organicfoodicons2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/css2/organicfoodicons2.css -------------------------------------------------------------------------------- /public/css2/search2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/css2/search2.css -------------------------------------------------------------------------------- /public/css3/component2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/css3/component2.css -------------------------------------------------------------------------------- /public/css3/demo2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/css3/demo2.css -------------------------------------------------------------------------------- /public/css3/organicfoodicons2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/css3/organicfoodicons2.css -------------------------------------------------------------------------------- /public/css3/search2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/css3/search2.css -------------------------------------------------------------------------------- /public/css3/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/css3/styles.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/font/linecons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/font/linecons.eot -------------------------------------------------------------------------------- /public/font/linecons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/font/linecons.svg -------------------------------------------------------------------------------- /public/font/linecons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/font/linecons.ttf -------------------------------------------------------------------------------- /public/font/linecons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/font/linecons.woff -------------------------------------------------------------------------------- /public/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/fonts/bpicons/bpicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/fonts/bpicons/bpicons.eot -------------------------------------------------------------------------------- /public/fonts/bpicons/bpicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/fonts/bpicons/bpicons.svg -------------------------------------------------------------------------------- /public/fonts/bpicons/bpicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/fonts/bpicons/bpicons.ttf -------------------------------------------------------------------------------- /public/fonts/bpicons/bpicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/fonts/bpicons/bpicons.woff -------------------------------------------------------------------------------- /public/fonts/bpicons/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/fonts/bpicons/license.txt -------------------------------------------------------------------------------- /public/fonts/feather/feather.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/fonts/feather/feather.eot -------------------------------------------------------------------------------- /public/fonts/feather/feather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/fonts/feather/feather.svg -------------------------------------------------------------------------------- /public/fonts/feather/feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/fonts/feather/feather.ttf -------------------------------------------------------------------------------- /public/fonts/feather/feather.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/fonts/feather/feather.woff -------------------------------------------------------------------------------- /public/fonts/feather/feather.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/fonts/feather/feather.woff2 -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/geek2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/geek2.js -------------------------------------------------------------------------------- /public/img/1117.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/background.jpg -------------------------------------------------------------------------------- /public/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/bg.jpg -------------------------------------------------------------------------------- /public/img/bgart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/bgart.jpg -------------------------------------------------------------------------------- /public/img/bing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/bing.png -------------------------------------------------------------------------------- /public/img/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/chrome.png -------------------------------------------------------------------------------- /public/img/e.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/e.PNG -------------------------------------------------------------------------------- /public/img/flags/flag-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/flags/flag-cn.png -------------------------------------------------------------------------------- /public/img/flags/flag-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/flags/flag-us.png -------------------------------------------------------------------------------- /public/img/flags/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/flags/loading.png -------------------------------------------------------------------------------- /public/img/flags/loading2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/flags/loading2.png -------------------------------------------------------------------------------- /public/img/flags/logo-collapsed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/flags/logo-collapsed@2x.png -------------------------------------------------------------------------------- /public/img/flags/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/flags/logo.png -------------------------------------------------------------------------------- /public/img/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/loading.svg -------------------------------------------------------------------------------- /public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/logo.png -------------------------------------------------------------------------------- /public/img/qr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/qr.jpg -------------------------------------------------------------------------------- /public/img/wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/wall.jpg -------------------------------------------------------------------------------- /public/img/xue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/xue.png -------------------------------------------------------------------------------- /public/img/yourname.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/img/yourname.jpg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js.tar.gz -------------------------------------------------------------------------------- /public/js/classie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/classie.js -------------------------------------------------------------------------------- /public/js/geek.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/geek.js -------------------------------------------------------------------------------- /public/js/geek.js.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/geek.js.tar.gz -------------------------------------------------------------------------------- /public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/main.js -------------------------------------------------------------------------------- /public/js/modernizr-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/modernizr-custom.js -------------------------------------------------------------------------------- /public/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/search.js -------------------------------------------------------------------------------- /public/js/searh2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/searh2.js -------------------------------------------------------------------------------- /public/js/sidebar/geek.js.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/sidebar/geek.js.tar.gz -------------------------------------------------------------------------------- /public/js/sidebar/package/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/sidebar/package/.babelrc -------------------------------------------------------------------------------- /public/js/sidebar/package/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/sidebar/package/.eslintrc -------------------------------------------------------------------------------- /public/js/sidebar/package/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/sidebar/package/.gitlab-ci.yml -------------------------------------------------------------------------------- /public/js/sidebar/package/.nvmrc: -------------------------------------------------------------------------------- 1 | v8.16.2 2 | -------------------------------------------------------------------------------- /public/js/sidebar/package/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/sidebar/package/API.md -------------------------------------------------------------------------------- /public/js/sidebar/package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/sidebar/package/README.md -------------------------------------------------------------------------------- /public/js/sidebar/package/dist/sidecar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/sidebar/package/dist/sidecar.js -------------------------------------------------------------------------------- /public/js/sidebar/package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/sidebar/package/package.json -------------------------------------------------------------------------------- /public/js/sidebar/package/src/css/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/sidebar/package/src/css/chat.css -------------------------------------------------------------------------------- /public/js/sidebar/package/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/sidebar/package/src/index.js -------------------------------------------------------------------------------- /public/js/sidebar/package/src/lib/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js/sidebar/package/src/lib/chat.js -------------------------------------------------------------------------------- /public/js2/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/js2/search.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/public.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/public.rar -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/screen/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/screen/01.png -------------------------------------------------------------------------------- /public/screen/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/screen/02.png -------------------------------------------------------------------------------- /public/screen/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/screen/03.png -------------------------------------------------------------------------------- /public/screen/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/screen/04.png -------------------------------------------------------------------------------- /public/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/search.svg -------------------------------------------------------------------------------- /public/sword.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/sword.svg -------------------------------------------------------------------------------- /public/swords.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/swords.svg -------------------------------------------------------------------------------- /public/uploads/images/1best.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/uploads/images/1best.png -------------------------------------------------------------------------------- /public/uploads/images/code (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/uploads/images/code (1).png -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/web.config -------------------------------------------------------------------------------- /public/按时间切换.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/public/按时间切换.tar.gz -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/assets/sass/app.scss -------------------------------------------------------------------------------- /resources/assets/web-stack/css/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/assets/web-stack/css/nav.css -------------------------------------------------------------------------------- /resources/assets/web-stack/css/xenon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/assets/web-stack/css/xenon.css -------------------------------------------------------------------------------- /resources/assets/web-stack/js/joinable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/assets/web-stack/js/joinable.js -------------------------------------------------------------------------------- /resources/assets/web-stack/js/xenon-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/assets/web-stack/js/xenon-api.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/id/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/lang/id/admin.php -------------------------------------------------------------------------------- /resources/lang/ms/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/lang/ms/admin.php -------------------------------------------------------------------------------- /resources/lang/uk/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/lang/uk/admin.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/lang/zh-CN/admin.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/lang/zh-CN/auth.php -------------------------------------------------------------------------------- /resources/lang/zh-CN/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/lang/zh-CN/validation.php -------------------------------------------------------------------------------- /resources/views.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/views.tar.gz -------------------------------------------------------------------------------- /resources/views/about.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/views/about.blade.php -------------------------------------------------------------------------------- /resources/views/admin/home.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/views/index.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/content.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/views/layouts/content.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/views/layouts/footer.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/views/layouts/header.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/views/layouts/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/按时间切换.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/resources/views/按时间切换.tar.gz -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/server.php -------------------------------------------------------------------------------- /sites.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/sites.PNG -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/barryvdh/laravel-debugbar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/barryvdh/laravel-debugbar/LICENSE -------------------------------------------------------------------------------- /vendor/barryvdh/laravel-debugbar/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/barryvdh/laravel-debugbar/readme.md -------------------------------------------------------------------------------- /vendor/bin/doctrine-dbal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/bin/doctrine-dbal -------------------------------------------------------------------------------- /vendor/bin/php-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/bin/php-parse -------------------------------------------------------------------------------- /vendor/bin/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/bin/phpunit -------------------------------------------------------------------------------- /vendor/bin/psysh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/bin/psysh -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/.editorconfig -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/.gitignore -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/.php_cs -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/LICENSE.md -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/README.md -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/Source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/Source.md -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/changelog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/changelog.php -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/composer.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/ar.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/cs.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/de.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/el.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/es.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/fi.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/fr.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/hr.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/id.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/it.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/ka.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/ko.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/ms.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/nl.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/pl.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/ru.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/sr.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/th.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/uk.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/json/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/json/vi.json -------------------------------------------------------------------------------- /vendor/caouecs/laravel-lang/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/caouecs/laravel-lang/todo.md -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/dnoegel/php-xdg-base-dir/LICENSE -------------------------------------------------------------------------------- /vendor/dnoegel/php-xdg-base-dir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/dnoegel/php-xdg-base-dir/README.md -------------------------------------------------------------------------------- /vendor/doctrine/cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/cache/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/cache/README.md -------------------------------------------------------------------------------- /vendor/doctrine/cache/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/cache/UPGRADE.md -------------------------------------------------------------------------------- /vendor/doctrine/cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/cache/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/cache/docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/cache/docs/en/index.rst -------------------------------------------------------------------------------- /vendor/doctrine/dbal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/dbal/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/dbal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/dbal/README.md -------------------------------------------------------------------------------- /vendor/doctrine/dbal/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/dbal/SECURITY.md -------------------------------------------------------------------------------- /vendor/doctrine/dbal/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/dbal/UPGRADE.md -------------------------------------------------------------------------------- /vendor/doctrine/dbal/bin/doctrine-dbal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/dbal/bin/doctrine-dbal -------------------------------------------------------------------------------- /vendor/doctrine/dbal/bin/doctrine-dbal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/dbal/bin/doctrine-dbal.php -------------------------------------------------------------------------------- /vendor/doctrine/dbal/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/dbal/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/event-manager/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/event-manager/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/event-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/event-manager/README.md -------------------------------------------------------------------------------- /vendor/doctrine/inflector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/inflector/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/inflector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/inflector/README.md -------------------------------------------------------------------------------- /vendor/doctrine/inflector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/inflector/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/instantiator/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/instantiator/README.md -------------------------------------------------------------------------------- /vendor/doctrine/instantiator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/instantiator/composer.json -------------------------------------------------------------------------------- /vendor/doctrine/lexer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/lexer/LICENSE -------------------------------------------------------------------------------- /vendor/doctrine/lexer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/lexer/README.md -------------------------------------------------------------------------------- /vendor/doctrine/lexer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/doctrine/lexer/composer.json -------------------------------------------------------------------------------- /vendor/egulias/email-validator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/egulias/email-validator/LICENSE -------------------------------------------------------------------------------- /vendor/egulias/email-validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/egulias/email-validator/README.md -------------------------------------------------------------------------------- /vendor/encore/laravel-admin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/encore/laravel-admin/.gitignore -------------------------------------------------------------------------------- /vendor/encore/laravel-admin/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/encore/laravel-admin/.travis.yml -------------------------------------------------------------------------------- /vendor/encore/laravel-admin/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/encore/laravel-admin/FUNDING.yml -------------------------------------------------------------------------------- /vendor/encore/laravel-admin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/encore/laravel-admin/LICENSE -------------------------------------------------------------------------------- /vendor/encore/laravel-admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/encore/laravel-admin/README.md -------------------------------------------------------------------------------- /vendor/encore/laravel-admin/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/encore/laravel-admin/composer.json -------------------------------------------------------------------------------- /vendor/encore/laravel-admin/docs/zh/qa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/encore/laravel-admin/docs/zh/qa.md -------------------------------------------------------------------------------- /vendor/encore/laravel-admin/src/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/encore/laravel-admin/src/Admin.php -------------------------------------------------------------------------------- /vendor/encore/laravel-admin/src/Console/stubs/extension/view.stub: -------------------------------------------------------------------------------- 1 | Welcome to laravel-admin -------------------------------------------------------------------------------- /vendor/encore/laravel-admin/src/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/encore/laravel-admin/src/Form.php -------------------------------------------------------------------------------- /vendor/encore/laravel-admin/src/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/encore/laravel-admin/src/Grid.php -------------------------------------------------------------------------------- /vendor/encore/laravel-admin/src/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/encore/laravel-admin/src/Show.php -------------------------------------------------------------------------------- /vendor/encore/laravel-admin/src/Tree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/encore/laravel-admin/src/Tree.php -------------------------------------------------------------------------------- /vendor/erusev/parsedown/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/erusev/parsedown/LICENSE.txt -------------------------------------------------------------------------------- /vendor/erusev/parsedown/Parsedown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/erusev/parsedown/Parsedown.php -------------------------------------------------------------------------------- /vendor/erusev/parsedown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/erusev/parsedown/README.md -------------------------------------------------------------------------------- /vendor/erusev/parsedown/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/erusev/parsedown/composer.json -------------------------------------------------------------------------------- /vendor/fideloper/proxy/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/fideloper/proxy/LICENSE.md -------------------------------------------------------------------------------- /vendor/fideloper/proxy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/fideloper/proxy/composer.json -------------------------------------------------------------------------------- /vendor/filp/whoops/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/filp/whoops/LICENSE.md -------------------------------------------------------------------------------- /vendor/filp/whoops/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/filp/whoops/composer.json -------------------------------------------------------------------------------- /vendor/filp/whoops/src/Whoops/Run.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/filp/whoops/src/Whoops/Run.php -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/fzaninotto/faker/.travis.yml -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/fzaninotto/faker/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/fzaninotto/faker/LICENSE -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/fzaninotto/faker/Makefile -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/fzaninotto/faker/composer.json -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/fzaninotto/faker/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/fzaninotto/faker/readme.md -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/fzaninotto/faker/src/autoload.php -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/test/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/fzaninotto/faker/test/test.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/guzzlehttp/psr7/.editorconfig -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/guzzlehttp/psr7/LICENSE -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/guzzlehttp/psr7/README.md -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/guzzlehttp/psr7/composer.json -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/FnStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/guzzlehttp/psr7/src/FnStream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/LimitStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/guzzlehttp/psr7/src/LimitStream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/PumpStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/guzzlehttp/psr7/src/PumpStream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/guzzlehttp/psr7/src/Request.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/guzzlehttp/psr7/src/Response.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Rfc7230.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/guzzlehttp/psr7/src/Rfc7230.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/guzzlehttp/psr7/src/Stream.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/guzzlehttp/psr7/src/Uri.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/UriResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/guzzlehttp/psr7/src/UriResolver.php -------------------------------------------------------------------------------- /vendor/guzzlehttp/psr7/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/guzzlehttp/psr7/src/functions.php -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.coveralls.yml: -------------------------------------------------------------------------------- 1 | src_dir: hamcrest 2 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.gush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/hamcrest/hamcrest-php/.gush.yml -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/hamcrest/hamcrest-php/.travis.yml -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/hamcrest/hamcrest-php/CHANGES.txt -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/hamcrest/hamcrest-php/LICENSE.txt -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/hamcrest/hamcrest-php/README.md -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/hamcrest/hamcrest-php/TODO.txt -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/hamcrest/hamcrest-php/composer.json -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/hamcrest/hamcrest-php/composer.lock -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/functions_footer.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/functions_imports.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/matchers_footer.txt: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /vendor/hamcrest/hamcrest-php/generator/parts/matchers_imports.txt: -------------------------------------------------------------------------------- 1 | 2 | namespace Hamcrest; -------------------------------------------------------------------------------- /vendor/intervention/image/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/intervention/image/LICENSE -------------------------------------------------------------------------------- /vendor/intervention/image/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/intervention/image/composer.json -------------------------------------------------------------------------------- /vendor/intervention/image/provides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/intervention/image/provides.json -------------------------------------------------------------------------------- /vendor/jakub-onderka/php-console-color/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | vendor 3 | composer.lock 4 | -------------------------------------------------------------------------------- /vendor/james.xue/login-captcha/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/james.xue/login-captcha/.gitignore -------------------------------------------------------------------------------- /vendor/james.xue/login-captcha/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/james.xue/login-captcha/LICENSE -------------------------------------------------------------------------------- /vendor/james.xue/login-captcha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/james.xue/login-captcha/README.md -------------------------------------------------------------------------------- /vendor/jxlwqq/material-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/jxlwqq/material-ui/.gitignore -------------------------------------------------------------------------------- /vendor/jxlwqq/material-ui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/jxlwqq/material-ui/LICENSE -------------------------------------------------------------------------------- /vendor/jxlwqq/material-ui/README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/jxlwqq/material-ui/README-CN.md -------------------------------------------------------------------------------- /vendor/jxlwqq/material-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/jxlwqq/material-ui/README.md -------------------------------------------------------------------------------- /vendor/jxlwqq/material-ui/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/jxlwqq/material-ui/composer.json -------------------------------------------------------------------------------- /vendor/laravel-admin-ext/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/laravel-admin-ext/config/.gitignore -------------------------------------------------------------------------------- /vendor/laravel-admin-ext/config/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/laravel-admin-ext/config/LICENSE -------------------------------------------------------------------------------- /vendor/laravel-admin-ext/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/laravel-admin-ext/config/README.md -------------------------------------------------------------------------------- /vendor/laravel/framework/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/laravel/framework/LICENSE.md -------------------------------------------------------------------------------- /vendor/laravel/framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/laravel/framework/README.md -------------------------------------------------------------------------------- /vendor/laravel/framework/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/laravel/framework/composer.json -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/promotion.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/framework/src/Illuminate/Mail/resources/views/markdown/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /vendor/laravel/tinker/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/laravel/tinker/LICENSE.txt -------------------------------------------------------------------------------- /vendor/laravel/tinker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/laravel/tinker/README.md -------------------------------------------------------------------------------- /vendor/laravel/tinker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/laravel/tinker/composer.json -------------------------------------------------------------------------------- /vendor/laravel/tinker/config/tinker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/laravel/tinker/config/tinker.php -------------------------------------------------------------------------------- /vendor/laravel/tinker/src/TinkerCaster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/laravel/tinker/src/TinkerCaster.php -------------------------------------------------------------------------------- /vendor/lasserafn/php-initials/.styleci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/lasserafn/php-initials/.styleci -------------------------------------------------------------------------------- /vendor/lasserafn/php-initials/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/lasserafn/php-initials/.travis.yml -------------------------------------------------------------------------------- /vendor/lasserafn/php-initials/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/lasserafn/php-initials/LICENSE.md -------------------------------------------------------------------------------- /vendor/lasserafn/php-initials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/lasserafn/php-initials/README.md -------------------------------------------------------------------------------- /vendor/lasserafn/php-initials/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/lasserafn/php-initials/phpunit.xml -------------------------------------------------------------------------------- /vendor/league/flysystem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/league/flysystem/LICENSE -------------------------------------------------------------------------------- /vendor/league/flysystem/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/league/flysystem/composer.json -------------------------------------------------------------------------------- /vendor/league/flysystem/deprecations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/league/flysystem/deprecations.md -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/league/flysystem/src/Config.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Directory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/league/flysystem/src/Directory.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/league/flysystem/src/Exception.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/league/flysystem/src/File.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/league/flysystem/src/Filesystem.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/league/flysystem/src/Handler.php -------------------------------------------------------------------------------- /vendor/league/flysystem/src/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/league/flysystem/src/Util.php -------------------------------------------------------------------------------- /vendor/maximebf/debugbar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/maximebf/debugbar/LICENSE -------------------------------------------------------------------------------- /vendor/maximebf/debugbar/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/maximebf/debugbar/composer.json -------------------------------------------------------------------------------- /vendor/mews/captcha/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mews/captcha/.gitignore -------------------------------------------------------------------------------- /vendor/mews/captcha/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mews/captcha/.travis.yml -------------------------------------------------------------------------------- /vendor/mews/captcha/LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mews/captcha/LICENCE.md -------------------------------------------------------------------------------- /vendor/mews/captcha/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mews/captcha/LICENSE -------------------------------------------------------------------------------- /vendor/mews/captcha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mews/captcha/Makefile -------------------------------------------------------------------------------- /vendor/mews/captcha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mews/captcha/README.md -------------------------------------------------------------------------------- /vendor/mews/captcha/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mews/captcha/composer.json -------------------------------------------------------------------------------- /vendor/mews/captcha/config/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mews/captcha/config/captcha.php -------------------------------------------------------------------------------- /vendor/mews/captcha/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mews/captcha/phpunit.xml -------------------------------------------------------------------------------- /vendor/mews/captcha/src/Captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mews/captcha/src/Captcha.php -------------------------------------------------------------------------------- /vendor/mews/captcha/src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mews/captcha/src/helpers.php -------------------------------------------------------------------------------- /vendor/meyfa/php-svg/.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/meyfa/php-svg/.codeclimate.yml -------------------------------------------------------------------------------- /vendor/meyfa/php-svg/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/meyfa/php-svg/.gitattributes -------------------------------------------------------------------------------- /vendor/meyfa/php-svg/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | /composer.lock 3 | /test/ 4 | .idea 5 | -------------------------------------------------------------------------------- /vendor/meyfa/php-svg/.phpmdRulesets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/meyfa/php-svg/.phpmdRulesets.xml -------------------------------------------------------------------------------- /vendor/meyfa/php-svg/.phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/meyfa/php-svg/.phpunit.xml -------------------------------------------------------------------------------- /vendor/meyfa/php-svg/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/meyfa/php-svg/.travis.yml -------------------------------------------------------------------------------- /vendor/meyfa/php-svg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/meyfa/php-svg/LICENSE -------------------------------------------------------------------------------- /vendor/meyfa/php-svg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/meyfa/php-svg/README.md -------------------------------------------------------------------------------- /vendor/meyfa/php-svg/autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/meyfa/php-svg/autoloader.php -------------------------------------------------------------------------------- /vendor/meyfa/php-svg/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/meyfa/php-svg/composer.json -------------------------------------------------------------------------------- /vendor/meyfa/php-svg/src/Nodes/SVGNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/meyfa/php-svg/src/Nodes/SVGNode.php -------------------------------------------------------------------------------- /vendor/meyfa/php-svg/src/SVG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/meyfa/php-svg/src/SVG.php -------------------------------------------------------------------------------- /vendor/meyfa/php-svg/tests/SVGTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/meyfa/php-svg/tests/SVGTest.php -------------------------------------------------------------------------------- /vendor/meyfa/php-svg/tests/php_test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/meyfa/php-svg/tests/php_test.svg -------------------------------------------------------------------------------- /vendor/meyfa/php-svg/tests/sample.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/meyfa/php-svg/tests/sample.svg -------------------------------------------------------------------------------- /vendor/mockery/mockery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mockery/mockery/.gitignore -------------------------------------------------------------------------------- /vendor/mockery/mockery/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mockery/mockery/.php_cs -------------------------------------------------------------------------------- /vendor/mockery/mockery/.phpstorm.meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mockery/mockery/.phpstorm.meta.php -------------------------------------------------------------------------------- /vendor/mockery/mockery/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mockery/mockery/.scrutinizer.yml -------------------------------------------------------------------------------- /vendor/mockery/mockery/.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mockery/mockery/.styleci.yml -------------------------------------------------------------------------------- /vendor/mockery/mockery/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mockery/mockery/.travis.yml -------------------------------------------------------------------------------- /vendor/mockery/mockery/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mockery/mockery/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/mockery/mockery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mockery/mockery/LICENSE -------------------------------------------------------------------------------- /vendor/mockery/mockery/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mockery/mockery/Makefile -------------------------------------------------------------------------------- /vendor/mockery/mockery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mockery/mockery/README.md -------------------------------------------------------------------------------- /vendor/mockery/mockery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mockery/mockery/composer.json -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mockery/mockery/docs/Makefile -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mockery/mockery/docs/README.md -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mockery/mockery/docs/conf.py -------------------------------------------------------------------------------- /vendor/mockery/mockery/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mockery/mockery/docs/index.rst -------------------------------------------------------------------------------- /vendor/mockery/mockery/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mockery/mockery/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/mockery/mockery/tests/Mockery/_files/file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/monolog/monolog/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/monolog/monolog/.php_cs -------------------------------------------------------------------------------- /vendor/monolog/monolog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/monolog/monolog/LICENSE -------------------------------------------------------------------------------- /vendor/monolog/monolog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/monolog/monolog/README.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/monolog/monolog/composer.json -------------------------------------------------------------------------------- /vendor/monolog/monolog/doc/01-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/monolog/monolog/doc/01-usage.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/doc/sockets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/monolog/monolog/doc/sockets.md -------------------------------------------------------------------------------- /vendor/monolog/monolog/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/monolog/monolog/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/monolog/monolog/tests/Monolog/Handler/Fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/mtdowling/cron-expression/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/mtdowling/cron-expression/LICENSE -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/myclabs/deep-copy/.gitattributes -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/myclabs/deep-copy/.gitignore -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/myclabs/deep-copy/.travis.yml -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/myclabs/deep-copy/LICENSE -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/myclabs/deep-copy/README.md -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/myclabs/deep-copy/composer.json -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/myclabs/deep-copy/doc/clone.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/doc/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/myclabs/deep-copy/doc/graph.png -------------------------------------------------------------------------------- /vendor/myclabs/deep-copy/fixtures/f008/B.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/expectedFileFormat.txt: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/_files/foo.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/_files/expect_external.txt: -------------------------------------------------------------------------------- 1 | Hello World -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/_files/phpt-env.expected.txt: -------------------------------------------------------------------------------- 1 | string(%d) "%s" 2 | -------------------------------------------------------------------------------- /vendor/phpunit/phpunit/tests/end-to-end/_files/phpt_external.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/console/Application.php -------------------------------------------------------------------------------- /vendor/symfony/console/ConsoleEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/console/ConsoleEvents.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/console/Helper/Helper.php -------------------------------------------------------------------------------- /vendor/symfony/console/Helper/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/console/Helper/Table.php -------------------------------------------------------------------------------- /vendor/symfony/console/Input/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/console/Input/Input.php -------------------------------------------------------------------------------- /vendor/symfony/console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/console/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/console/Output/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/console/Output/Output.php -------------------------------------------------------------------------------- /vendor/symfony/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/console/README.md -------------------------------------------------------------------------------- /vendor/symfony/console/Terminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/console/Terminal.php -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_gethelp.txt: -------------------------------------------------------------------------------- 1 | Console Tool -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/application_run4.txt: -------------------------------------------------------------------------------- 1 | Console Tool 2 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/console/Tests/Fixtures/input_definition_1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/console/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/console/composer.json -------------------------------------------------------------------------------- /vendor/symfony/console/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/console/phpunit.xml.dist -------------------------------------------------------------------------------- /vendor/symfony/contracts/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | -------------------------------------------------------------------------------- /vendor/symfony/contracts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/contracts/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/contracts/README.md -------------------------------------------------------------------------------- /vendor/symfony/contracts/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/contracts/composer.json -------------------------------------------------------------------------------- /vendor/symfony/css-selector/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/css-selector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/css-selector/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/css-selector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/css-selector/README.md -------------------------------------------------------------------------------- /vendor/symfony/debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/debug/BufferingLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/debug/BufferingLogger.php -------------------------------------------------------------------------------- /vendor/symfony/debug/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/debug/Debug.php -------------------------------------------------------------------------------- /vendor/symfony/debug/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/debug/ErrorHandler.php -------------------------------------------------------------------------------- /vendor/symfony/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/debug/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/debug/README.md -------------------------------------------------------------------------------- /vendor/symfony/debug/Tests/Fixtures/Throwing.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /vendor/symfony/translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /vendor/symfony/translation/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/translation/composer.json -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | phpunit.xml 3 | vendor/ 4 | -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/var-dumper/LICENSE -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/var-dumper/README.md -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/VarDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/var-dumper/VarDumper.php -------------------------------------------------------------------------------- /vendor/symfony/var-dumper/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/symfony/var-dumper/composer.json -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/theseer/tokenizer/.gitignore -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/theseer/tokenizer/.php_cs -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/theseer/tokenizer/.travis.yml -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/theseer/tokenizer/LICENSE -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/theseer/tokenizer/README.md -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/theseer/tokenizer/build.xml -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/theseer/tokenizer/composer.json -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/phive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/theseer/tokenizer/phive.xml -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/theseer/tokenizer/phpunit.xml -------------------------------------------------------------------------------- /vendor/theseer/tokenizer/src/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/theseer/tokenizer/src/Token.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/vlucas/phpdotenv/LICENSE.txt -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/vlucas/phpdotenv/composer.json -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Dotenv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/vlucas/phpdotenv/src/Dotenv.php -------------------------------------------------------------------------------- /vendor/vlucas/phpdotenv/src/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/vlucas/phpdotenv/src/Loader.php -------------------------------------------------------------------------------- /vendor/webmozart/assert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/webmozart/assert/LICENSE -------------------------------------------------------------------------------- /vendor/webmozart/assert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/webmozart/assert/README.md -------------------------------------------------------------------------------- /vendor/webmozart/assert/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/webmozart/assert/composer.json -------------------------------------------------------------------------------- /vendor/webmozart/assert/src/Assert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/vendor/webmozart/assert/src/Assert.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazyBoyM/geeknav/HEAD/webpack.mix.js --------------------------------------------------------------------------------