├── .gitignore ├── .htaccess ├── Application ├── Misc │ ├── .htaccess │ ├── Config │ │ ├── Autoload.php │ │ ├── Database.php │ │ ├── Firewall.php │ │ ├── Routes.php │ │ ├── Templates.php │ │ ├── Terminal.php │ │ └── index.html │ ├── Handlers │ │ └── .gitkeep │ ├── Helpers │ │ ├── .gitkeep │ │ └── index.html │ ├── Hooks │ │ ├── .gitkeep │ │ └── index.html │ ├── Libraries │ │ ├── .gitkeep │ │ └── index.html │ ├── Packages │ │ ├── .gitkeep │ │ └── index.html │ ├── Phrases │ │ ├── ar_EG.php │ │ ├── en_US.php │ │ ├── fr_FR.php │ │ └── index.html │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── Contracts │ │ │ └── AppContract.php │ │ ├── Services │ │ │ └── AppService.php │ │ └── index.html │ ├── Settings.php │ └── index.html ├── Public │ ├── Readme.md │ ├── assets │ │ ├── index.html │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── index.html │ └── index.html ├── Resources │ ├── Controllers │ │ ├── Aliases │ │ │ ├── Home.php │ │ │ └── index.html │ │ ├── Home.php │ │ └── index.html │ ├── Languages │ │ ├── .gitkeep │ │ ├── en_US │ │ │ ├── Welcome.php │ │ │ └── index.html │ │ └── index.html │ ├── Models │ │ ├── Eloquents │ │ │ ├── Users.php │ │ │ └── index.html │ │ ├── HomeModel.php │ │ ├── Migrations │ │ │ ├── CreateUsersTable.php │ │ │ └── index.html │ │ ├── Seeds │ │ │ ├── .gitkeep │ │ │ └── index.html │ │ └── index.html │ ├── Views │ │ └── index.php │ └── index.html ├── Storage │ ├── .htaccess │ ├── Cache │ │ ├── FileCache │ │ │ └── index.html │ │ ├── Sessions │ │ │ └── index.html │ │ ├── System │ │ │ └── index.html │ │ ├── Views │ │ │ └── index.html │ │ └── index.html │ ├── Logs │ │ ├── .htaccess │ │ └── index.html │ └── index.html └── index.php ├── Changelog.md ├── Core ├── .htaccess ├── Constants.php ├── Ecosystem │ ├── Bases │ │ ├── .htaccess │ │ ├── Controller.php │ │ ├── Driver.php │ │ ├── Interfaces │ │ │ ├── .htaccess │ │ │ ├── IController.php │ │ │ └── index.html │ │ ├── Model.php │ │ └── View.php │ ├── Cache.php │ ├── Console.php │ ├── Drivers │ │ ├── .htaccess │ │ ├── Cache │ │ │ ├── .htaccess │ │ │ ├── Adapters │ │ │ │ ├── .htaccess │ │ │ │ ├── APC.php │ │ │ │ ├── FileCache.php │ │ │ │ ├── Memcache.php │ │ │ │ └── index.html │ │ │ ├── Cache.php │ │ │ └── index.html │ │ ├── Database │ │ │ ├── index.html │ │ │ └── mysqli │ │ │ │ ├── DBObject.php │ │ │ │ ├── Init.php │ │ │ │ ├── SQLManager.php │ │ │ │ ├── index.html │ │ │ │ └── index.php │ │ └── index.html │ ├── Functions │ │ ├── Core.php │ │ ├── Packages.php │ │ ├── Path.php │ │ ├── Typography.php │ │ └── index.html │ ├── Handlers │ │ ├── Cookies.php │ │ ├── CurrencyConverter.php │ │ ├── Encryption.php │ │ ├── Hash.php │ │ ├── HtmlBuilder.php │ │ ├── HtmlBuilder │ │ │ ├── HtmlBuilder.forms.php │ │ │ ├── HtmlBuilder.inputs.php │ │ │ └── index.html │ │ ├── HtmlParser.php │ │ ├── Http.php │ │ ├── Mail.php │ │ ├── Random.php │ │ ├── Session.php │ │ ├── Uri.php │ │ └── index.html │ ├── Helpers │ │ ├── Common.php │ │ ├── Datetime.php │ │ ├── Easyfy.php │ │ ├── QRCode.php │ │ ├── Security.php │ │ ├── Validation.php │ │ └── index.html │ ├── Hooks │ │ ├── .gitkeep │ │ └── index.html │ ├── Libraries │ │ ├── AI │ │ │ ├── Distanceifier.php │ │ │ └── index.html │ │ ├── Benchmark.php │ │ ├── CSRFProtection.php │ │ ├── Captcha.php │ │ ├── Curl │ │ │ ├── Curl.php │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ └── vendor │ │ │ │ ├── autoload.php │ │ │ │ ├── composer │ │ │ │ ├── ClassLoader.php │ │ │ │ ├── LICENSE │ │ │ │ ├── autoload_classmap.php │ │ │ │ ├── autoload_namespaces.php │ │ │ │ ├── autoload_psr4.php │ │ │ │ ├── autoload_real.php │ │ │ │ ├── autoload_static.php │ │ │ │ └── installed.json │ │ │ │ └── php-curl-class │ │ │ │ └── php-curl-class │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── SECURITY.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ └── Curl │ │ │ │ ├── ArrayUtil.php │ │ │ │ ├── CaseInsensitiveArray.php │ │ │ │ ├── Curl.php │ │ │ │ ├── Decoder.php │ │ │ │ ├── MultiCurl.php │ │ │ │ ├── StrUtil.php │ │ │ │ └── Url.php │ │ ├── DateTime │ │ │ ├── Carbon.php │ │ │ ├── CarbonInterval.php │ │ │ ├── Exceptions │ │ │ │ ├── InvalidDateException.php │ │ │ │ └── index.html │ │ │ ├── Lang │ │ │ │ ├── af.php │ │ │ │ ├── ar.php │ │ │ │ ├── az.php │ │ │ │ ├── bg.php │ │ │ │ ├── bn.php │ │ │ │ ├── ca.php │ │ │ │ ├── cs.php │ │ │ │ ├── da.php │ │ │ │ ├── de.php │ │ │ │ ├── el.php │ │ │ │ ├── en.php │ │ │ │ ├── eo.php │ │ │ │ ├── es.php │ │ │ │ ├── et.php │ │ │ │ ├── eu.php │ │ │ │ ├── fa.php │ │ │ │ ├── fi.php │ │ │ │ ├── fo.php │ │ │ │ ├── fr.php │ │ │ │ ├── gl.php │ │ │ │ ├── he.php │ │ │ │ ├── hr.php │ │ │ │ ├── hu.php │ │ │ │ ├── hy.php │ │ │ │ ├── id.php │ │ │ │ ├── index.html │ │ │ │ ├── it.php │ │ │ │ ├── ja.php │ │ │ │ ├── ka.php │ │ │ │ ├── km.php │ │ │ │ ├── ko.php │ │ │ │ ├── lt.php │ │ │ │ ├── lv.php │ │ │ │ ├── mk.php │ │ │ │ ├── ms.php │ │ │ │ ├── nl.php │ │ │ │ ├── no.php │ │ │ │ ├── pl.php │ │ │ │ ├── pt.php │ │ │ │ ├── pt_BR.php │ │ │ │ ├── ro.php │ │ │ │ ├── ru.php │ │ │ │ ├── sk.php │ │ │ │ ├── sl.php │ │ │ │ ├── sq.php │ │ │ │ ├── sr.php │ │ │ │ ├── sr_Cyrl_ME.php │ │ │ │ ├── sr_Latn_ME.php │ │ │ │ ├── sr_ME.php │ │ │ │ ├── sv.php │ │ │ │ ├── th.php │ │ │ │ ├── tr.php │ │ │ │ ├── uk.php │ │ │ │ ├── ur.php │ │ │ │ ├── uz.php │ │ │ │ ├── vi.php │ │ │ │ ├── zh.php │ │ │ │ └── zh_TW.php │ │ │ └── index.html │ │ ├── Embed.php │ │ ├── Embed │ │ │ ├── Adapters │ │ │ │ ├── Adapter.php │ │ │ │ ├── Archive.php │ │ │ │ ├── Cadenaser.php │ │ │ │ ├── Carto.php │ │ │ │ ├── File.php │ │ │ │ ├── Flickr.php │ │ │ │ ├── Github.php │ │ │ │ ├── Google.php │ │ │ │ ├── Howcast.php │ │ │ │ ├── Ideone.php │ │ │ │ ├── Imageshack.php │ │ │ │ ├── Jsfiddle.php │ │ │ │ ├── Lavozdegalicia.php │ │ │ │ ├── Line.php │ │ │ │ ├── N500px.php │ │ │ │ ├── Parleys.php │ │ │ │ ├── Pastebin.php │ │ │ │ ├── Pastie.php │ │ │ │ ├── Sassmeister.php │ │ │ │ ├── Slides.php │ │ │ │ ├── Snipplr.php │ │ │ │ ├── Spreaker.php │ │ │ │ ├── Webpage.php │ │ │ │ ├── Wikipedia.php │ │ │ │ ├── Youtube.php │ │ │ │ └── index.html │ │ │ ├── Bag.php │ │ │ ├── DataInterface.php │ │ │ ├── Embed.php │ │ │ ├── Exceptions │ │ │ │ ├── EmbedException.php │ │ │ │ ├── InvalidUrlException.php │ │ │ │ └── index.html │ │ │ ├── Http │ │ │ │ ├── AbstractResponse.php │ │ │ │ ├── CurlDispatcher.php │ │ │ │ ├── CurlResult.php │ │ │ │ ├── DispatcherInterface.php │ │ │ │ ├── ImageResponse.php │ │ │ │ ├── Redirects.php │ │ │ │ ├── Response.php │ │ │ │ ├── Url.php │ │ │ │ └── index.html │ │ │ ├── Providers │ │ │ │ ├── Api │ │ │ │ │ ├── Archive.php │ │ │ │ │ ├── Gist.php │ │ │ │ │ ├── GoogleMaps.php │ │ │ │ │ ├── Imageshack.php │ │ │ │ │ ├── Soundcloud.php │ │ │ │ │ ├── Wikipedia.php │ │ │ │ │ └── index.html │ │ │ │ ├── Dcterms.php │ │ │ │ ├── Html.php │ │ │ │ ├── OEmbed.php │ │ │ │ ├── OEmbed │ │ │ │ │ ├── Amcharts.php │ │ │ │ │ ├── Bambuser.php │ │ │ │ │ ├── DOM.php │ │ │ │ │ ├── Deviantart.php │ │ │ │ │ ├── Dotsub.php │ │ │ │ │ ├── Embedly.php │ │ │ │ │ ├── EndPoint.php │ │ │ │ │ ├── EndPointInterface.php │ │ │ │ │ ├── Facebook.php │ │ │ │ │ ├── Flickr.php │ │ │ │ │ ├── Iframely.php │ │ │ │ │ ├── Imgur.php │ │ │ │ │ ├── Instagram.php │ │ │ │ │ ├── Jsbin.php │ │ │ │ │ ├── Kickstarter.php │ │ │ │ │ ├── Meetup.php │ │ │ │ │ ├── Photobucket.php │ │ │ │ │ ├── Polldaddy.php │ │ │ │ │ ├── Scribd.php │ │ │ │ │ ├── Shoudio.php │ │ │ │ │ ├── Smugmug.php │ │ │ │ │ ├── Soundcloud.php │ │ │ │ │ ├── Spotify.php │ │ │ │ │ ├── Ustream.php │ │ │ │ │ ├── WordPress.php │ │ │ │ │ ├── Youtube.php │ │ │ │ │ └── index.html │ │ │ │ ├── OpenGraph.php │ │ │ │ ├── Provider.php │ │ │ │ ├── Sailthru.php │ │ │ │ ├── TwitterCards.php │ │ │ │ └── index.html │ │ │ ├── Utils.php │ │ │ ├── autoloader.php │ │ │ ├── index.html │ │ │ └── resources │ │ │ │ ├── index.html │ │ │ │ └── public_suffix_list.php │ │ ├── ExcelStreamer.php │ │ ├── JsonpCallbackValidator.php │ │ ├── Mailer.php │ │ ├── MessengerBot.php │ │ ├── PasswordPolicy.php │ │ ├── Uploader.php │ │ ├── UserAgent.php │ │ ├── WebClient.php │ │ ├── WebClient │ │ │ ├── Requests.php │ │ │ ├── Requests │ │ │ │ ├── Auth.php │ │ │ │ ├── Auth │ │ │ │ │ ├── Basic.php │ │ │ │ │ └── index.html │ │ │ │ ├── Cookie.php │ │ │ │ ├── Cookie │ │ │ │ │ ├── Jar.php │ │ │ │ │ └── index.html │ │ │ │ ├── Exception.php │ │ │ │ ├── Exception │ │ │ │ │ ├── HTTP.php │ │ │ │ │ ├── HTTP │ │ │ │ │ │ ├── 304.php │ │ │ │ │ │ ├── 305.php │ │ │ │ │ │ ├── 306.php │ │ │ │ │ │ ├── 400.php │ │ │ │ │ │ ├── 401.php │ │ │ │ │ │ ├── 402.php │ │ │ │ │ │ ├── 403.php │ │ │ │ │ │ ├── 404.php │ │ │ │ │ │ ├── 405.php │ │ │ │ │ │ ├── 406.php │ │ │ │ │ │ ├── 407.php │ │ │ │ │ │ ├── 408.php │ │ │ │ │ │ ├── 409.php │ │ │ │ │ │ ├── 410.php │ │ │ │ │ │ ├── 411.php │ │ │ │ │ │ ├── 412.php │ │ │ │ │ │ ├── 413.php │ │ │ │ │ │ ├── 414.php │ │ │ │ │ │ ├── 415.php │ │ │ │ │ │ ├── 416.php │ │ │ │ │ │ ├── 417.php │ │ │ │ │ │ ├── 418.php │ │ │ │ │ │ ├── 428.php │ │ │ │ │ │ ├── 429.php │ │ │ │ │ │ ├── 431.php │ │ │ │ │ │ ├── 500.php │ │ │ │ │ │ ├── 501.php │ │ │ │ │ │ ├── 502.php │ │ │ │ │ │ ├── 503.php │ │ │ │ │ │ ├── 504.php │ │ │ │ │ │ ├── 505.php │ │ │ │ │ │ ├── 511.php │ │ │ │ │ │ ├── Unknown.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Transport.php │ │ │ │ │ ├── Transport │ │ │ │ │ │ ├── cURL.php │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── Hooker.php │ │ │ │ ├── Hooks.php │ │ │ │ ├── IDNAEncoder.php │ │ │ │ ├── IPv6.php │ │ │ │ ├── IRI.php │ │ │ │ ├── Proxy.php │ │ │ │ ├── Proxy │ │ │ │ │ ├── HTTP.php │ │ │ │ │ └── index.html │ │ │ │ ├── Response.php │ │ │ │ ├── Response │ │ │ │ │ ├── Headers.php │ │ │ │ │ └── index.html │ │ │ │ ├── SSL.php │ │ │ │ ├── Session.php │ │ │ │ ├── Transport.php │ │ │ │ ├── Transport │ │ │ │ │ ├── cURL.php │ │ │ │ │ ├── cacert.pem │ │ │ │ │ ├── fsockopen.php │ │ │ │ │ └── index.html │ │ │ │ ├── Utility │ │ │ │ │ ├── CaseInsensitiveDictionary.php │ │ │ │ │ ├── FilteredIterator.php │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── index.html │ │ └── reCaptcha.php │ ├── Loader.php │ ├── Modules │ │ ├── .htaccess │ │ ├── Firewall.php │ │ └── index.html │ ├── Payload.php │ ├── Resolver.php │ ├── Resources │ │ ├── System │ │ │ ├── CLI │ │ │ │ ├── Window.php │ │ │ │ ├── index.html │ │ │ │ ├── index.php │ │ │ │ └── skytells │ │ │ ├── css │ │ │ │ ├── fw.css │ │ │ │ ├── index.html │ │ │ │ └── w3.css │ │ │ ├── html │ │ │ │ ├── 404.html │ │ │ │ ├── debug_error.html │ │ │ │ ├── debug_log.html │ │ │ │ ├── index.html │ │ │ │ └── security_warning.html │ │ │ ├── index.html │ │ │ └── php │ │ │ │ ├── DevTools.php │ │ │ │ ├── Terminal.php │ │ │ │ ├── index.html │ │ │ │ └── scanner.php │ │ ├── Views │ │ │ ├── Errors │ │ │ │ ├── 101.php │ │ │ │ ├── 401.php │ │ │ │ ├── 404.php │ │ │ │ ├── index.html │ │ │ │ └── msg.php │ │ │ └── index.html │ │ └── index.html │ ├── Router.php │ ├── Runtime.php │ └── index.html ├── Global.php ├── Kernel │ ├── Boot.php │ ├── Components │ │ ├── .gitkeep │ │ └── index.html │ ├── Composer │ │ ├── composer.json │ │ ├── index.html │ │ └── vendor │ │ │ ├── IntelliSense │ │ │ ├── Exception │ │ │ │ ├── ErrorException.php │ │ │ │ ├── Formatter.php │ │ │ │ ├── Frame.php │ │ │ │ ├── FrameCollection.php │ │ │ │ ├── Inspector.php │ │ │ │ └── index.html │ │ │ ├── Handler │ │ │ │ ├── CallbackHandler.php │ │ │ │ ├── Handler.php │ │ │ │ ├── HandlerInterface.php │ │ │ │ ├── JsonResponseHandler.php │ │ │ │ ├── PlainTextHandler.php │ │ │ │ ├── PrettyPageHandler.php │ │ │ │ ├── XmlResponseHandler.php │ │ │ │ └── index.html │ │ │ ├── Resources │ │ │ │ ├── css │ │ │ │ │ ├── IntelliSense.base.css │ │ │ │ │ ├── index.html │ │ │ │ │ └── whoops.base.css │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── IntelliSense.base.js │ │ │ │ │ ├── clipboard.min.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── 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 │ │ │ │ │ ├── index.html │ │ │ │ │ ├── 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 │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ ├── autoload.php │ │ │ ├── composer │ │ │ ├── ClassLoader.php │ │ │ ├── LICENSE │ │ │ ├── autoload_classmap.php │ │ │ ├── autoload_files.php │ │ │ ├── autoload_namespaces.php │ │ │ ├── autoload_psr4.php │ │ │ ├── autoload_real.php │ │ │ ├── autoload_static.php │ │ │ └── installed.json │ │ │ ├── doctrine │ │ │ └── inflector │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ ├── lib │ │ │ │ └── Doctrine │ │ │ │ │ └── Common │ │ │ │ │ └── Inflector │ │ │ │ │ └── Inflector.php │ │ │ │ ├── phpunit.xml.dist │ │ │ │ └── tests │ │ │ │ └── Doctrine │ │ │ │ └── Tests │ │ │ │ ├── Common │ │ │ │ └── Inflector │ │ │ │ │ └── InflectorTest.php │ │ │ │ ├── DoctrineTestCase.php │ │ │ │ └── TestInit.php │ │ │ ├── nesbot │ │ │ └── carbon │ │ │ │ ├── .php_cs.dist │ │ │ │ ├── LICENSE │ │ │ │ ├── composer.json │ │ │ │ ├── readme.md │ │ │ │ └── src │ │ │ │ └── Carbon │ │ │ │ ├── Carbon.php │ │ │ │ ├── CarbonInterval.php │ │ │ │ ├── Exceptions │ │ │ │ └── InvalidDateException.php │ │ │ │ └── Lang │ │ │ │ ├── af.php │ │ │ │ ├── ar.php │ │ │ │ ├── az.php │ │ │ │ ├── bg.php │ │ │ │ ├── bn.php │ │ │ │ ├── ca.php │ │ │ │ ├── cs.php │ │ │ │ ├── da.php │ │ │ │ ├── de.php │ │ │ │ ├── el.php │ │ │ │ ├── en.php │ │ │ │ ├── eo.php │ │ │ │ ├── es.php │ │ │ │ ├── et.php │ │ │ │ ├── eu.php │ │ │ │ ├── fa.php │ │ │ │ ├── fi.php │ │ │ │ ├── fo.php │ │ │ │ ├── fr.php │ │ │ │ ├── gl.php │ │ │ │ ├── he.php │ │ │ │ ├── hr.php │ │ │ │ ├── hu.php │ │ │ │ ├── hy.php │ │ │ │ ├── id.php │ │ │ │ ├── it.php │ │ │ │ ├── ja.php │ │ │ │ ├── ka.php │ │ │ │ ├── km.php │ │ │ │ ├── ko.php │ │ │ │ ├── lt.php │ │ │ │ ├── lv.php │ │ │ │ ├── mk.php │ │ │ │ ├── ms.php │ │ │ │ ├── nl.php │ │ │ │ ├── no.php │ │ │ │ ├── pl.php │ │ │ │ ├── pt.php │ │ │ │ ├── pt_BR.php │ │ │ │ ├── ro.php │ │ │ │ ├── ru.php │ │ │ │ ├── sk.php │ │ │ │ ├── sl.php │ │ │ │ ├── sq.php │ │ │ │ ├── sr.php │ │ │ │ ├── sr_Cyrl_ME.php │ │ │ │ ├── sr_Latn_ME.php │ │ │ │ ├── sr_ME.php │ │ │ │ ├── sv.php │ │ │ │ ├── th.php │ │ │ │ ├── tr.php │ │ │ │ ├── uk.php │ │ │ │ ├── ur.php │ │ │ │ ├── uz.php │ │ │ │ ├── vi.php │ │ │ │ ├── zh.php │ │ │ │ └── zh_TW.php │ │ │ ├── paragonie │ │ │ └── random_compat │ │ │ │ ├── LICENSE │ │ │ │ ├── build-phar.sh │ │ │ │ ├── composer.json │ │ │ │ ├── dist │ │ │ │ ├── random_compat.phar.pubkey │ │ │ │ └── random_compat.phar.pubkey.asc │ │ │ │ ├── lib │ │ │ │ ├── byte_safe_strings.php │ │ │ │ ├── cast_to_int.php │ │ │ │ ├── error_polyfill.php │ │ │ │ ├── random.php │ │ │ │ ├── random_bytes_com_dotnet.php │ │ │ │ ├── random_bytes_dev_urandom.php │ │ │ │ ├── random_bytes_libsodium.php │ │ │ │ ├── random_bytes_libsodium_legacy.php │ │ │ │ ├── random_bytes_mcrypt.php │ │ │ │ └── random_int.php │ │ │ │ ├── other │ │ │ │ └── build_phar.php │ │ │ │ ├── psalm-autoload.php │ │ │ │ └── psalm.xml │ │ │ ├── psr │ │ │ └── log │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── Psr │ │ │ │ └── Log │ │ │ │ │ ├── AbstractLogger.php │ │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ │ ├── LogLevel.php │ │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ │ ├── LoggerInterface.php │ │ │ │ │ ├── LoggerTrait.php │ │ │ │ │ ├── NullLogger.php │ │ │ │ │ └── Test │ │ │ │ │ └── LoggerInterfaceTest.php │ │ │ │ ├── README.md │ │ │ │ └── composer.json │ │ │ ├── skytells │ │ │ ├── cache │ │ │ │ ├── ApcStore.php │ │ │ │ ├── ApcWrapper.php │ │ │ │ ├── ArrayStore.php │ │ │ │ ├── CacheManager.php │ │ │ │ ├── CacheServiceProvider.php │ │ │ │ ├── Console │ │ │ │ │ ├── CacheTableCommand.php │ │ │ │ │ ├── ClearCommand.php │ │ │ │ │ ├── ForgetCommand.php │ │ │ │ │ ├── index.html │ │ │ │ │ └── stubs │ │ │ │ │ │ ├── cache.stub │ │ │ │ │ │ └── index.html │ │ │ │ ├── DatabaseStore.php │ │ │ │ ├── Events │ │ │ │ │ ├── CacheEvent.php │ │ │ │ │ ├── CacheHit.php │ │ │ │ │ ├── CacheMissed.php │ │ │ │ │ ├── KeyForgotten.php │ │ │ │ │ ├── KeyWritten.php │ │ │ │ │ └── index.html │ │ │ │ ├── FileStore.php │ │ │ │ ├── MemcachedConnector.php │ │ │ │ ├── MemcachedStore.php │ │ │ │ ├── NullStore.php │ │ │ │ ├── RateLimiter.php │ │ │ │ ├── RedisStore.php │ │ │ │ ├── RedisTaggedCache.php │ │ │ │ ├── Repository.php │ │ │ │ ├── RetrievesMultipleKeys.php │ │ │ │ ├── TagSet.php │ │ │ │ ├── TaggableStore.php │ │ │ │ ├── TaggedCache.php │ │ │ │ ├── composer.json │ │ │ │ └── index.html │ │ │ ├── container │ │ │ │ ├── BoundMethod.php │ │ │ │ ├── Container.php │ │ │ │ ├── ContextualBindingBuilder.php │ │ │ │ ├── composer.json │ │ │ │ └── index.html │ │ │ ├── contracts │ │ │ │ ├── Auth │ │ │ │ │ ├── Access │ │ │ │ │ │ ├── Authorizable.php │ │ │ │ │ │ ├── Gate.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Authenticatable.php │ │ │ │ │ ├── CanResetPassword.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── Guard.php │ │ │ │ │ ├── PasswordBroker.php │ │ │ │ │ ├── PasswordBrokerFactory.php │ │ │ │ │ ├── StatefulGuard.php │ │ │ │ │ ├── SupportsBasicAuth.php │ │ │ │ │ ├── UserProvider.php │ │ │ │ │ └── index.html │ │ │ │ ├── Broadcasting │ │ │ │ │ ├── Broadcaster.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── ShouldBroadcast.php │ │ │ │ │ ├── ShouldBroadcastNow.php │ │ │ │ │ └── index.html │ │ │ │ ├── Bus │ │ │ │ │ ├── Dispatcher.php │ │ │ │ │ ├── QueueingDispatcher.php │ │ │ │ │ └── index.html │ │ │ │ ├── Cache │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── Repository.php │ │ │ │ │ ├── Store.php │ │ │ │ │ └── index.html │ │ │ │ ├── Config │ │ │ │ │ ├── Repository.php │ │ │ │ │ └── index.html │ │ │ │ ├── Console │ │ │ │ │ ├── Application.php │ │ │ │ │ ├── Kernel.php │ │ │ │ │ └── index.html │ │ │ │ ├── Container │ │ │ │ │ ├── BindingResolutionException.php │ │ │ │ │ ├── Container.php │ │ │ │ │ ├── ContextualBindingBuilder.php │ │ │ │ │ └── index.html │ │ │ │ ├── Cookie │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── QueueingFactory.php │ │ │ │ │ └── index.html │ │ │ │ ├── Database │ │ │ │ │ ├── ModelIdentifier.php │ │ │ │ │ └── index.html │ │ │ │ ├── Debug │ │ │ │ │ ├── ExceptionHandler.php │ │ │ │ │ └── index.html │ │ │ │ ├── Encryption │ │ │ │ │ ├── DecryptException.php │ │ │ │ │ ├── EncryptException.php │ │ │ │ │ ├── Encrypter.php │ │ │ │ │ └── index.html │ │ │ │ ├── Events │ │ │ │ │ ├── Dispatcher.php │ │ │ │ │ └── index.html │ │ │ │ ├── Filesystem │ │ │ │ │ ├── Cloud.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── FileNotFoundException.php │ │ │ │ │ ├── Filesystem.php │ │ │ │ │ └── index.html │ │ │ │ ├── Foundation │ │ │ │ │ ├── Application.php │ │ │ │ │ └── index.html │ │ │ │ ├── Hashing │ │ │ │ │ ├── Hasher.php │ │ │ │ │ └── index.html │ │ │ │ ├── Http │ │ │ │ │ ├── Kernel.php │ │ │ │ │ └── index.html │ │ │ │ ├── Logging │ │ │ │ │ ├── Log.php │ │ │ │ │ └── index.html │ │ │ │ ├── Mail │ │ │ │ │ ├── MailQueue.php │ │ │ │ │ ├── Mailable.php │ │ │ │ │ ├── Mailer.php │ │ │ │ │ └── index.html │ │ │ │ ├── Notifications │ │ │ │ │ ├── Dispatcher.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ └── index.html │ │ │ │ ├── Pagination │ │ │ │ │ ├── LengthAwarePaginator.php │ │ │ │ │ ├── Paginator.php │ │ │ │ │ └── index.html │ │ │ │ ├── Pipeline │ │ │ │ │ ├── Hub.php │ │ │ │ │ ├── Pipeline.php │ │ │ │ │ └── index.html │ │ │ │ ├── Queue │ │ │ │ │ ├── EntityNotFoundException.php │ │ │ │ │ ├── EntityResolver.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── Job.php │ │ │ │ │ ├── Monitor.php │ │ │ │ │ ├── Queue.php │ │ │ │ │ ├── QueueableCollection.php │ │ │ │ │ ├── QueueableEntity.php │ │ │ │ │ ├── ShouldQueue.php │ │ │ │ │ └── index.html │ │ │ │ ├── Redis │ │ │ │ │ ├── Factory.php │ │ │ │ │ └── index.html │ │ │ │ ├── Routing │ │ │ │ │ ├── BindingRegistrar.php │ │ │ │ │ ├── Registrar.php │ │ │ │ │ ├── ResponseFactory.php │ │ │ │ │ ├── UrlGenerator.php │ │ │ │ │ ├── UrlRoutable.php │ │ │ │ │ └── index.html │ │ │ │ ├── Session │ │ │ │ │ ├── Session.php │ │ │ │ │ └── index.html │ │ │ │ ├── Support │ │ │ │ │ ├── Arrayable.php │ │ │ │ │ ├── Htmlable.php │ │ │ │ │ ├── Jsonable.php │ │ │ │ │ ├── MessageBag.php │ │ │ │ │ ├── MessageProvider.php │ │ │ │ │ ├── Renderable.php │ │ │ │ │ └── index.html │ │ │ │ ├── Translation │ │ │ │ │ ├── Translator.php │ │ │ │ │ └── index.html │ │ │ │ ├── Validation │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── ValidatesWhenResolved.php │ │ │ │ │ ├── Validator.php │ │ │ │ │ └── index.html │ │ │ │ ├── View │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── View.php │ │ │ │ │ └── index.html │ │ │ │ ├── composer.json │ │ │ │ └── index.html │ │ │ ├── database │ │ │ │ ├── Capsule │ │ │ │ │ ├── Manager.php │ │ │ │ │ └── index.html │ │ │ │ ├── Concerns │ │ │ │ │ ├── BuildsQueries.php │ │ │ │ │ ├── ManagesTransactions.php │ │ │ │ │ └── index.html │ │ │ │ ├── Connection.php │ │ │ │ ├── ConnectionInterface.php │ │ │ │ ├── ConnectionResolver.php │ │ │ │ ├── ConnectionResolverInterface.php │ │ │ │ ├── Connectors │ │ │ │ │ ├── ConnectionFactory.php │ │ │ │ │ ├── Connector.php │ │ │ │ │ ├── ConnectorInterface.php │ │ │ │ │ ├── MySqlConnector.php │ │ │ │ │ ├── PostgresConnector.php │ │ │ │ │ ├── SQLiteConnector.php │ │ │ │ │ ├── SqlServerConnector.php │ │ │ │ │ └── index.html │ │ │ │ ├── Console │ │ │ │ │ ├── Migrations │ │ │ │ │ │ ├── BaseCommand.php │ │ │ │ │ │ ├── InstallCommand.php │ │ │ │ │ │ ├── MigrateCommand.php │ │ │ │ │ │ ├── MigrateMakeCommand.php │ │ │ │ │ │ ├── RefreshCommand.php │ │ │ │ │ │ ├── ResetCommand.php │ │ │ │ │ │ ├── RollbackCommand.php │ │ │ │ │ │ ├── StatusCommand.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Seeds │ │ │ │ │ │ ├── SeedCommand.php │ │ │ │ │ │ ├── SeederMakeCommand.php │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── stubs │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── seeder.stub │ │ │ │ │ └── index.html │ │ │ │ ├── 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 │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── HasMany.php │ │ │ │ │ │ ├── HasManyThrough.php │ │ │ │ │ │ ├── HasOne.php │ │ │ │ │ │ ├── HasOneOrMany.php │ │ │ │ │ │ ├── MorphMany.php │ │ │ │ │ │ ├── MorphOne.php │ │ │ │ │ │ ├── MorphOneOrMany.php │ │ │ │ │ │ ├── MorphPivot.php │ │ │ │ │ │ ├── MorphTo.php │ │ │ │ │ │ ├── MorphToMany.php │ │ │ │ │ │ ├── Pivot.php │ │ │ │ │ │ ├── Relation.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Scope.php │ │ │ │ │ ├── SoftDeletes.php │ │ │ │ │ ├── SoftDeletingScope.php │ │ │ │ │ └── index.html │ │ │ │ ├── Events │ │ │ │ │ ├── ConnectionEvent.php │ │ │ │ │ ├── QueryExecuted.php │ │ │ │ │ ├── StatementPrepared.php │ │ │ │ │ ├── TransactionBeginning.php │ │ │ │ │ ├── TransactionCommitted.php │ │ │ │ │ ├── TransactionRolledBack.php │ │ │ │ │ └── index.html │ │ │ │ ├── Grammar.php │ │ │ │ ├── MigrationServiceProvider.php │ │ │ │ ├── Migrations │ │ │ │ │ ├── DatabaseMigrationRepository.php │ │ │ │ │ ├── Migration.php │ │ │ │ │ ├── MigrationCreator.php │ │ │ │ │ ├── MigrationRepositoryInterface.php │ │ │ │ │ ├── Migrator.php │ │ │ │ │ ├── index.html │ │ │ │ │ └── stubs │ │ │ │ │ │ ├── blank.stub │ │ │ │ │ │ ├── create.stub │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── update.stub │ │ │ │ ├── MySqlConnection.php │ │ │ │ ├── PostgresConnection.php │ │ │ │ ├── Query │ │ │ │ │ ├── Builder.php │ │ │ │ │ ├── Expression.php │ │ │ │ │ ├── Grammars │ │ │ │ │ │ ├── Grammar.php │ │ │ │ │ │ ├── MySqlGrammar.php │ │ │ │ │ │ ├── PostgresGrammar.php │ │ │ │ │ │ ├── SQLiteGrammar.php │ │ │ │ │ │ ├── SqlServerGrammar.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── JoinClause.php │ │ │ │ │ ├── JsonExpression.php │ │ │ │ │ ├── Processors │ │ │ │ │ │ ├── MySqlProcessor.php │ │ │ │ │ │ ├── PostgresProcessor.php │ │ │ │ │ │ ├── Processor.php │ │ │ │ │ │ ├── SQLiteProcessor.php │ │ │ │ │ │ ├── SqlServerProcessor.php │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── 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 │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── MySqlBuilder.php │ │ │ │ │ ├── PostgresBuilder.php │ │ │ │ │ └── index.html │ │ │ │ ├── Seeder.php │ │ │ │ ├── SqlServerConnection.php │ │ │ │ ├── composer.json │ │ │ │ └── index.html │ │ │ ├── events │ │ │ │ ├── CallQueuedHandler.php │ │ │ │ ├── CallQueuedListener.php │ │ │ │ ├── Dispatcher.php │ │ │ │ ├── EventServiceProvider.php │ │ │ │ ├── composer.json │ │ │ │ └── index.html │ │ │ ├── filesystem │ │ │ │ ├── Filesystem.php │ │ │ │ ├── FilesystemAdapter.php │ │ │ │ ├── FilesystemManager.php │ │ │ │ ├── FilesystemServiceProvider.php │ │ │ │ ├── composer.json │ │ │ │ └── index.html │ │ │ ├── support │ │ │ │ ├── AggregateServiceProvider.php │ │ │ │ ├── Arr.php │ │ │ │ ├── Collection.php │ │ │ │ ├── Composer.php │ │ │ │ ├── Debug │ │ │ │ │ ├── Dumper.php │ │ │ │ │ ├── HtmlDumper.php │ │ │ │ │ └── index.html │ │ │ │ ├── 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 │ │ │ │ │ └── index.html │ │ │ │ ├── Fluent.php │ │ │ │ ├── HigherOrderCollectionProxy.php │ │ │ │ ├── HigherOrderTapProxy.php │ │ │ │ ├── HtmlString.php │ │ │ │ ├── Manager.php │ │ │ │ ├── MessageBag.php │ │ │ │ ├── NamespacedItemResolver.php │ │ │ │ ├── Pluralizer.php │ │ │ │ ├── ServiceProvider.php │ │ │ │ ├── Str.php │ │ │ │ ├── Testing │ │ │ │ │ ├── Fakes │ │ │ │ │ │ ├── BusFake.php │ │ │ │ │ │ ├── EventFake.php │ │ │ │ │ │ ├── MailFake.php │ │ │ │ │ │ ├── NotificationFake.php │ │ │ │ │ │ ├── PendingMailFake.php │ │ │ │ │ │ ├── QueueFake.php │ │ │ │ │ │ └── index.html │ │ │ │ │ └── index.html │ │ │ │ ├── Traits │ │ │ │ │ ├── CapsuleManagerTrait.php │ │ │ │ │ ├── Macroable.php │ │ │ │ │ └── index.html │ │ │ │ ├── ViewErrorBag.php │ │ │ │ ├── composer.json │ │ │ │ ├── helpers.php │ │ │ │ └── index.html │ │ │ ├── translation │ │ │ │ ├── ArrayLoader.php │ │ │ │ ├── FileLoader.php │ │ │ │ ├── LoaderInterface.php │ │ │ │ ├── MessageSelector.php │ │ │ │ ├── TranslationServiceProvider.php │ │ │ │ ├── Translator.php │ │ │ │ ├── composer.json │ │ │ │ └── index.html │ │ │ └── view │ │ │ │ ├── Compilers │ │ │ │ ├── BladeCompiler.php │ │ │ │ ├── Compiler.php │ │ │ │ ├── CompilerInterface.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── CompilesAuthorizations.php │ │ │ │ │ ├── CompilesComments.php │ │ │ │ │ ├── CompilesComponents.php │ │ │ │ │ ├── CompilesConditionals.php │ │ │ │ │ ├── CompilesEchos.php │ │ │ │ │ ├── CompilesIncludes.php │ │ │ │ │ ├── CompilesInjections.php │ │ │ │ │ ├── CompilesLayouts.php │ │ │ │ │ ├── CompilesLoops.php │ │ │ │ │ ├── CompilesRawPhp.php │ │ │ │ │ ├── CompilesStacks.php │ │ │ │ │ ├── CompilesTranslations.php │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ │ ├── Concerns │ │ │ │ ├── ManagesComponents.php │ │ │ │ ├── ManagesEvents.php │ │ │ │ ├── ManagesLayouts.php │ │ │ │ ├── ManagesLoops.php │ │ │ │ ├── ManagesStacks.php │ │ │ │ ├── ManagesTranslations.php │ │ │ │ └── index.html │ │ │ │ ├── Engines │ │ │ │ ├── CompilerEngine.php │ │ │ │ ├── Engine.php │ │ │ │ ├── EngineInterface.php │ │ │ │ ├── EngineResolver.php │ │ │ │ ├── FileEngine.php │ │ │ │ ├── PhpEngine.php │ │ │ │ └── index.html │ │ │ │ ├── Factory.php │ │ │ │ ├── FileViewFinder.php │ │ │ │ ├── Middleware │ │ │ │ ├── ShareErrorsFromSession.php │ │ │ │ └── index.html │ │ │ │ ├── View.php │ │ │ │ ├── ViewFinderInterface.php │ │ │ │ ├── ViewName.php │ │ │ │ ├── ViewServiceProvider.php │ │ │ │ ├── composer.json │ │ │ │ └── index.html │ │ │ └── symfony │ │ │ ├── debug │ │ │ ├── .gitignore │ │ │ ├── BufferingLogger.php │ │ │ ├── CHANGELOG.md │ │ │ ├── Debug.php │ │ │ ├── DebugClassLoader.php │ │ │ ├── ErrorHandler.php │ │ │ ├── Exception │ │ │ │ ├── ClassNotFoundException.php │ │ │ │ ├── ContextErrorException.php │ │ │ │ ├── FatalErrorException.php │ │ │ │ ├── FatalThrowableError.php │ │ │ │ ├── FlattenException.php │ │ │ │ ├── OutOfMemoryException.php │ │ │ │ ├── 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 │ │ │ │ │ ├── InternalClass.php │ │ │ │ │ ├── InternalInterface.php │ │ │ │ │ ├── InternalTrait.php │ │ │ │ │ ├── InternalTrait2.php │ │ │ │ │ ├── NonDeprecatedInterface.php │ │ │ │ │ ├── PEARClass.php │ │ │ │ │ ├── Throwing.php │ │ │ │ │ ├── ToStringThrower.php │ │ │ │ │ ├── casemismatch.php │ │ │ │ │ ├── notPsr0Bis.php │ │ │ │ │ ├── psr4 │ │ │ │ │ │ └── Psr4CaseMismatch.php │ │ │ │ │ └── reallyNotPsr0.php │ │ │ │ ├── Fixtures2 │ │ │ │ │ └── RequiredTwice.php │ │ │ │ ├── HeaderMock.php │ │ │ │ ├── MockExceptionHandler.php │ │ │ │ └── phpt │ │ │ │ │ ├── exception_rethrown.phpt │ │ │ │ │ └── fatal_with_nested_handlers.phpt │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ │ │ ├── finder │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── Comparator │ │ │ │ ├── Comparator.php │ │ │ │ ├── DateComparator.php │ │ │ │ └── NumberComparator.php │ │ │ ├── Exception │ │ │ │ ├── AccessDeniedException.php │ │ │ │ └── ExceptionInterface.php │ │ │ ├── Finder.php │ │ │ ├── Glob.php │ │ │ ├── Iterator │ │ │ │ ├── CustomFilterIterator.php │ │ │ │ ├── DateRangeFilterIterator.php │ │ │ │ ├── DepthRangeFilterIterator.php │ │ │ │ ├── ExcludeDirectoryFilterIterator.php │ │ │ │ ├── FileTypeFilterIterator.php │ │ │ │ ├── FilecontentFilterIterator.php │ │ │ │ ├── FilenameFilterIterator.php │ │ │ │ ├── FilterIterator.php │ │ │ │ ├── MultiplePcreFilterIterator.php │ │ │ │ ├── PathFilterIterator.php │ │ │ │ ├── RecursiveDirectoryIterator.php │ │ │ │ ├── SizeRangeFilterIterator.php │ │ │ │ └── SortableIterator.php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SplFileInfo.php │ │ │ ├── Tests │ │ │ │ ├── Comparator │ │ │ │ │ ├── ComparatorTest.php │ │ │ │ │ ├── DateComparatorTest.php │ │ │ │ │ └── NumberComparatorTest.php │ │ │ │ ├── FinderTest.php │ │ │ │ ├── Fixtures │ │ │ │ │ ├── .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 │ │ │ ├── polyfill-mbstring │ │ │ ├── LICENSE │ │ │ ├── Mbstring.php │ │ │ ├── README.md │ │ │ ├── Resources │ │ │ │ └── unidata │ │ │ │ │ ├── lowerCase.php │ │ │ │ │ └── upperCase.php │ │ │ ├── bootstrap.php │ │ │ └── composer.json │ │ │ └── translation │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ └── schema │ │ │ │ └── dic │ │ │ │ └── xliff-core │ │ │ │ ├── xliff-core-1.2-strict.xsd │ │ │ │ ├── xliff-core-2.0.xsd │ │ │ │ └── xml.xsd │ │ │ ├── LoggingTranslator.php │ │ │ ├── MessageCatalogue.php │ │ │ ├── MessageCatalogueInterface.php │ │ │ ├── MessageSelector.php │ │ │ ├── MetadataAwareInterface.php │ │ │ ├── PluralizationRules.php │ │ │ ├── README.md │ │ │ ├── Reader │ │ │ ├── TranslationReader.php │ │ │ └── TranslationReaderInterface.php │ │ │ ├── Resources │ │ │ └── schemas │ │ │ │ └── xliff-core-1.2-strict.xsd │ │ │ ├── Tests │ │ │ ├── Catalogue │ │ │ │ ├── AbstractOperationTest.php │ │ │ │ ├── MergeOperationTest.php │ │ │ │ └── TargetOperationTest.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 │ │ │ │ └── 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.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 │ │ │ ├── Writer │ │ │ ├── TranslationWriter.php │ │ │ └── TranslationWriterInterface.php │ │ │ ├── composer.json │ │ │ └── phpunit.xml.dist │ ├── Config.php │ ├── Exceptions │ │ ├── .gitkeep │ │ └── index.html │ ├── Foundation.php │ ├── Kernel.php │ ├── Services │ │ ├── CLI.php │ │ └── index.html │ ├── Units │ │ ├── ConsoleKit │ │ │ ├── Colors.php │ │ │ ├── Command.php │ │ │ ├── Console.php │ │ │ ├── ConsoleException.php │ │ │ ├── DefaultOptionsParser.php │ │ │ ├── EchoTextWriter.php │ │ │ ├── FileSystem.php │ │ │ ├── FormatedWriter.php │ │ │ ├── Help.php │ │ │ ├── HelpCommand.php │ │ │ ├── Helpers │ │ │ │ └── ServiceProviders.php │ │ │ ├── Lab │ │ │ │ ├── .htaccess │ │ │ │ ├── Alias.io │ │ │ │ ├── Controller.io │ │ │ │ ├── Eloquent.io │ │ │ │ ├── Migration.io │ │ │ │ ├── Model.io │ │ │ │ └── Providers │ │ │ │ │ ├── Contract.io │ │ │ │ │ ├── Provider.io │ │ │ │ │ ├── Service.io │ │ │ │ │ └── index.html │ │ │ ├── OptionsParser.php │ │ │ ├── Seeds │ │ │ │ ├── Default.php │ │ │ │ └── index.html │ │ │ ├── StdTextWriter.php │ │ │ ├── TextFormater.php │ │ │ ├── TextWriter.php │ │ │ ├── Utils.php │ │ │ ├── Widgets │ │ │ │ ├── AbstractWidget.php │ │ │ │ ├── Box.php │ │ │ │ ├── Checklist.php │ │ │ │ ├── Dialog.php │ │ │ │ ├── ProgressBar.php │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── Devconsole │ │ │ ├── CLI │ │ │ │ ├── Window.php │ │ │ │ ├── index.html │ │ │ │ ├── index.php │ │ │ │ └── skytells │ │ │ ├── Console.php │ │ │ ├── Handler.php │ │ │ ├── Inner.php │ │ │ ├── assets │ │ │ │ ├── index.html │ │ │ │ ├── inner.css │ │ │ │ ├── js │ │ │ │ │ ├── functions.js.php │ │ │ │ │ ├── index.html │ │ │ │ │ └── jquery-1.7.1.min.js │ │ │ │ └── style.css │ │ │ ├── data │ │ │ │ ├── Framework.io │ │ │ │ ├── Framework.json │ │ │ │ └── index.html │ │ │ ├── images │ │ │ │ ├── devIcon.png │ │ │ │ ├── form_bg.jpg │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── DocBlock.php │ │ ├── IntelliSense.php │ │ ├── MicroUI.php │ │ ├── Oxygen.php │ │ ├── Oxygen │ │ │ ├── Oxygen.php │ │ │ ├── OxygenInstance.php │ │ │ └── index.html │ │ └── index.html │ └── index.html ├── Services.php └── index.html ├── Latest ├── README.md ├── composer.json ├── favicon.png ├── index.php └── skytells /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/.htaccess -------------------------------------------------------------------------------- /Application/Misc/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /Application/Misc/Config/Autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Misc/Config/Autoload.php -------------------------------------------------------------------------------- /Application/Misc/Config/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Misc/Config/Database.php -------------------------------------------------------------------------------- /Application/Misc/Config/Firewall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Misc/Config/Firewall.php -------------------------------------------------------------------------------- /Application/Misc/Config/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Misc/Config/Routes.php -------------------------------------------------------------------------------- /Application/Misc/Config/Templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Misc/Config/Templates.php -------------------------------------------------------------------------------- /Application/Misc/Config/Terminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Misc/Config/Terminal.php -------------------------------------------------------------------------------- /Application/Misc/Config/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Misc/Handlers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Misc/Helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Misc/Helpers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Misc/Hooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Misc/Hooks/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Misc/Libraries/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Misc/Libraries/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Misc/Packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Misc/Packages/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Misc/Phrases/ar_EG.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Misc/Phrases/ar_EG.php -------------------------------------------------------------------------------- /Application/Misc/Phrases/en_US.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Misc/Phrases/en_US.php -------------------------------------------------------------------------------- /Application/Misc/Phrases/fr_FR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Misc/Phrases/fr_FR.php -------------------------------------------------------------------------------- /Application/Misc/Phrases/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Misc/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Misc/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /Application/Misc/Providers/Contracts/AppContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Misc/Providers/Contracts/AppContract.php -------------------------------------------------------------------------------- /Application/Misc/Providers/Services/AppService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Misc/Providers/Services/AppService.php -------------------------------------------------------------------------------- /Application/Misc/Providers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Misc/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Misc/Settings.php -------------------------------------------------------------------------------- /Application/Misc/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Public/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Public/Readme.md -------------------------------------------------------------------------------- /Application/Public/assets/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Public/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Public/assets/js/bootstrap.js -------------------------------------------------------------------------------- /Application/Public/assets/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Public/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Resources/Controllers/Aliases/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Resources/Controllers/Aliases/Home.php -------------------------------------------------------------------------------- /Application/Resources/Controllers/Aliases/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Resources/Controllers/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Resources/Controllers/Home.php -------------------------------------------------------------------------------- /Application/Resources/Controllers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Resources/Languages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Resources/Languages/en_US/Welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Resources/Languages/en_US/Welcome.php -------------------------------------------------------------------------------- /Application/Resources/Languages/en_US/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Resources/Languages/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Resources/Models/Eloquents/Users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Resources/Models/Eloquents/Users.php -------------------------------------------------------------------------------- /Application/Resources/Models/Eloquents/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Resources/Models/HomeModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Resources/Models/HomeModel.php -------------------------------------------------------------------------------- /Application/Resources/Models/Migrations/CreateUsersTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Resources/Models/Migrations/CreateUsersTable.php -------------------------------------------------------------------------------- /Application/Resources/Models/Migrations/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Resources/Models/Seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Resources/Models/Seeds/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Resources/Models/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Resources/Views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Application/Resources/Views/index.php -------------------------------------------------------------------------------- /Application/Resources/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Storage/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /Application/Storage/Cache/FileCache/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Storage/Cache/Sessions/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Storage/Cache/System/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Storage/Cache/Views/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Storage/Cache/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Storage/Logs/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Application/Storage/Logs/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/Storage/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Application/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Changelog.md -------------------------------------------------------------------------------- /Core/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/.htaccess -------------------------------------------------------------------------------- /Core/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Constants.php -------------------------------------------------------------------------------- /Core/Ecosystem/Bases/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /Core/Ecosystem/Bases/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Bases/Controller.php -------------------------------------------------------------------------------- /Core/Ecosystem/Bases/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Bases/Driver.php -------------------------------------------------------------------------------- /Core/Ecosystem/Bases/Interfaces/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /Core/Ecosystem/Bases/Interfaces/IController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Bases/Interfaces/IController.php -------------------------------------------------------------------------------- /Core/Ecosystem/Bases/Interfaces/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Ecosystem/Bases/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Bases/Model.php -------------------------------------------------------------------------------- /Core/Ecosystem/Bases/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Bases/View.php -------------------------------------------------------------------------------- /Core/Ecosystem/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Cache.php -------------------------------------------------------------------------------- /Core/Ecosystem/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Console.php -------------------------------------------------------------------------------- /Core/Ecosystem/Drivers/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /Core/Ecosystem/Drivers/Cache/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /Core/Ecosystem/Drivers/Cache/Adapters/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /Core/Ecosystem/Drivers/Cache/Adapters/APC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Drivers/Cache/Adapters/APC.php -------------------------------------------------------------------------------- /Core/Ecosystem/Drivers/Cache/Adapters/FileCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Drivers/Cache/Adapters/FileCache.php -------------------------------------------------------------------------------- /Core/Ecosystem/Drivers/Cache/Adapters/Memcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Drivers/Cache/Adapters/Memcache.php -------------------------------------------------------------------------------- /Core/Ecosystem/Drivers/Cache/Adapters/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Ecosystem/Drivers/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Drivers/Cache/Cache.php -------------------------------------------------------------------------------- /Core/Ecosystem/Drivers/Cache/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Ecosystem/Drivers/Database/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Ecosystem/Drivers/Database/mysqli/DBObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Drivers/Database/mysqli/DBObject.php -------------------------------------------------------------------------------- /Core/Ecosystem/Drivers/Database/mysqli/Init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Drivers/Database/mysqli/Init.php -------------------------------------------------------------------------------- /Core/Ecosystem/Drivers/Database/mysqli/SQLManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Drivers/Database/mysqli/SQLManager.php -------------------------------------------------------------------------------- /Core/Ecosystem/Drivers/Database/mysqli/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Ecosystem/Drivers/Database/mysqli/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Ecosystem/Drivers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Ecosystem/Functions/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Functions/Core.php -------------------------------------------------------------------------------- /Core/Ecosystem/Functions/Packages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Functions/Packages.php -------------------------------------------------------------------------------- /Core/Ecosystem/Functions/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Functions/Path.php -------------------------------------------------------------------------------- /Core/Ecosystem/Functions/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Functions/Typography.php -------------------------------------------------------------------------------- /Core/Ecosystem/Functions/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Ecosystem/Handlers/Cookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Handlers/Cookies.php -------------------------------------------------------------------------------- /Core/Ecosystem/Handlers/CurrencyConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Handlers/CurrencyConverter.php -------------------------------------------------------------------------------- /Core/Ecosystem/Handlers/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Handlers/Encryption.php -------------------------------------------------------------------------------- /Core/Ecosystem/Handlers/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Handlers/Hash.php -------------------------------------------------------------------------------- /Core/Ecosystem/Handlers/HtmlBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Handlers/HtmlBuilder.php -------------------------------------------------------------------------------- /Core/Ecosystem/Handlers/HtmlBuilder/HtmlBuilder.forms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Handlers/HtmlBuilder/HtmlBuilder.forms.php -------------------------------------------------------------------------------- /Core/Ecosystem/Handlers/HtmlBuilder/HtmlBuilder.inputs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Handlers/HtmlBuilder/HtmlBuilder.inputs.php -------------------------------------------------------------------------------- /Core/Ecosystem/Handlers/HtmlBuilder/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Ecosystem/Handlers/HtmlParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Handlers/HtmlParser.php -------------------------------------------------------------------------------- /Core/Ecosystem/Handlers/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Handlers/Http.php -------------------------------------------------------------------------------- /Core/Ecosystem/Handlers/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Handlers/Mail.php -------------------------------------------------------------------------------- /Core/Ecosystem/Handlers/Random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Handlers/Random.php -------------------------------------------------------------------------------- /Core/Ecosystem/Handlers/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Handlers/Session.php -------------------------------------------------------------------------------- /Core/Ecosystem/Handlers/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Handlers/Uri.php -------------------------------------------------------------------------------- /Core/Ecosystem/Handlers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Ecosystem/Helpers/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Helpers/Common.php -------------------------------------------------------------------------------- /Core/Ecosystem/Helpers/Datetime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Helpers/Datetime.php -------------------------------------------------------------------------------- /Core/Ecosystem/Helpers/Easyfy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Helpers/Easyfy.php -------------------------------------------------------------------------------- /Core/Ecosystem/Helpers/QRCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Helpers/QRCode.php -------------------------------------------------------------------------------- /Core/Ecosystem/Helpers/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Helpers/Security.php -------------------------------------------------------------------------------- /Core/Ecosystem/Helpers/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Helpers/Validation.php -------------------------------------------------------------------------------- /Core/Ecosystem/Helpers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Ecosystem/Hooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Ecosystem/Hooks/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Ecosystem/Libraries/AI/Distanceifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Libraries/AI/Distanceifier.php -------------------------------------------------------------------------------- /Core/Ecosystem/Libraries/AI/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Ecosystem/Libraries/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Libraries/Benchmark.php -------------------------------------------------------------------------------- /Core/Ecosystem/Libraries/CSRFProtection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Libraries/CSRFProtection.php -------------------------------------------------------------------------------- /Core/Ecosystem/Libraries/Captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Ecosystem/Libraries/Captcha.php -------------------------------------------------------------------------------- /Core/Ecosystem/Libraries/Curl/Curl.php: -------------------------------------------------------------------------------- 1 | 'bar', 5 | ); 6 | -------------------------------------------------------------------------------- /Core/Kernel/Composer/vendor/symfony/translation/Tests/fixtures/resources.yml: -------------------------------------------------------------------------------- 1 | foo: bar 2 | -------------------------------------------------------------------------------- /Core/Kernel/Composer/vendor/symfony/translation/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Composer/vendor/symfony/translation/Translator.php -------------------------------------------------------------------------------- /Core/Kernel/Composer/vendor/symfony/translation/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Composer/vendor/symfony/translation/composer.json -------------------------------------------------------------------------------- /Core/Kernel/Composer/vendor/symfony/translation/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Composer/vendor/symfony/translation/phpunit.xml.dist -------------------------------------------------------------------------------- /Core/Kernel/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Config.php -------------------------------------------------------------------------------- /Core/Kernel/Exceptions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Kernel/Exceptions/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Kernel/Foundation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Foundation.php -------------------------------------------------------------------------------- /Core/Kernel/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Kernel.php -------------------------------------------------------------------------------- /Core/Kernel/Services/CLI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Services/CLI.php -------------------------------------------------------------------------------- /Core/Kernel/Services/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Colors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Colors.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Command.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Console.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/ConsoleException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/ConsoleException.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/DefaultOptionsParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/DefaultOptionsParser.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/EchoTextWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/EchoTextWriter.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/FileSystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/FileSystem.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/FormatedWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/FormatedWriter.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Help.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/HelpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/HelpCommand.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Helpers/ServiceProviders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Helpers/ServiceProviders.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Lab/.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Lab/Alias.io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Lab/Alias.io -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Lab/Controller.io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Lab/Controller.io -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Lab/Eloquent.io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Lab/Eloquent.io -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Lab/Migration.io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Lab/Migration.io -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Lab/Model.io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Lab/Model.io -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Lab/Providers/Contract.io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Lab/Providers/Contract.io -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Lab/Providers/Provider.io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Lab/Providers/Provider.io -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Lab/Providers/Service.io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Lab/Providers/Service.io -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Lab/Providers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/OptionsParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/OptionsParser.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Seeds/Default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Seeds/Default.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Seeds/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/StdTextWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/StdTextWriter.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/TextFormater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/TextFormater.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/TextWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/TextWriter.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Utils.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Widgets/AbstractWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Widgets/AbstractWidget.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Widgets/Box.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Widgets/Box.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Widgets/Checklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Widgets/Checklist.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Widgets/Dialog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Widgets/Dialog.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Widgets/ProgressBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/ConsoleKit/Widgets/ProgressBar.php -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/Widgets/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Kernel/Units/ConsoleKit/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/CLI/Window.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/CLI/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/CLI/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/Devconsole/CLI/index.php -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/CLI/skytells: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/Devconsole/CLI/skytells -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/Devconsole/Console.php -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/Devconsole/Handler.php -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/Inner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/Devconsole/Inner.php -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/assets/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/assets/inner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/Devconsole/assets/inner.css -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/assets/js/functions.js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/Devconsole/assets/js/functions.js.php -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/assets/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/assets/js/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/Devconsole/assets/js/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/Devconsole/assets/style.css -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/data/Framework.io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/Devconsole/data/Framework.io -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/data/Framework.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/Devconsole/data/Framework.json -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/data/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/images/devIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/Devconsole/images/devIcon.png -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/images/form_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/Devconsole/images/form_bg.jpg -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/images/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Kernel/Units/Devconsole/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Kernel/Units/DocBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/DocBlock.php -------------------------------------------------------------------------------- /Core/Kernel/Units/IntelliSense.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/IntelliSense.php -------------------------------------------------------------------------------- /Core/Kernel/Units/MicroUI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/MicroUI.php -------------------------------------------------------------------------------- /Core/Kernel/Units/Oxygen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/Oxygen.php -------------------------------------------------------------------------------- /Core/Kernel/Units/Oxygen/Oxygen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/Oxygen/Oxygen.php -------------------------------------------------------------------------------- /Core/Kernel/Units/Oxygen/OxygenInstance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Kernel/Units/Oxygen/OxygenInstance.php -------------------------------------------------------------------------------- /Core/Kernel/Units/Oxygen/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Kernel/Units/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Kernel/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/Services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Core/Services.php -------------------------------------------------------------------------------- /Core/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/Latest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/composer.json -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/favicon.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/index.php -------------------------------------------------------------------------------- /skytells: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Skytells/Framework/HEAD/skytells --------------------------------------------------------------------------------