<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Aura on Hari KT — Full Stack Developer</title>
    <link>https://harikt.com/tags/aura/</link>
    <description>Recent content in Aura on Hari KT — Full Stack Developer</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-GB</language>
    <copyright>© 2026 Hari KT</copyright>
    <lastBuildDate>Tue, 15 Mar 2016 00:00:00 +0000</lastBuildDate><atom:link href="https://harikt.com/tags/aura/index.xml" rel="self" type="application/rss+xml" />
    
    <item>
      <title>Aura.Di 2.x to 3.x Upgrade Guide</title>
      <link>https://harikt.com/blog/2016/03/15/aura-dot-di-2-dot-x-to-3-dot-x-upgrade-guide/</link>
      <pubDate>Tue, 15 Mar 2016 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2016/03/15/aura-dot-di-2-dot-x-to-3-dot-x-upgrade-guide/</guid>
      <description>&lt;p&gt;3.x has a very minimal BC break. But if you are not sure what are they, then you may feel the pain.&#xA;I am trying to document most of them, incase I missed please &lt;a href=&#34;https://github.com/harikt/harikt.github.com/edit/source/source/_posts/2016-03-15-aura-dot-di-2-dot-x-to-3-dot-x-upgrade-guide.markdown&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;edit and send a pull request&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;I will try to eventually pushed to the main Aura.Di repo.&lt;/p&gt;&#xA;&#xA;&lt;h2 class=&#34;relative group&#34;&gt;BC Breaks&#xA;    &lt;div id=&#34;bc-breaks&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#bc-breaks&#34; aria-label=&#34;Anchor&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h2&gt;&#xA;&#xA;&lt;h3 class=&#34;relative group&#34;&gt;Instantiation&#xA;    &lt;div id=&#34;instantiation&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#instantiation&#34; aria-label=&#34;Anchor&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h3&gt;&#xA;&lt;p&gt;The way di container is instantiated has been changed from&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Improving Environment Values in Aura v2</title>
      <link>https://harikt.com/blog/2014/12/12/improving-environment-value-in-aura-v2/</link>
      <pubDate>Fri, 12 Dec 2014 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2014/12/12/improving-environment-value-in-aura-v2/</guid>
      <description>&lt;p&gt;Aura v2 framework probably have missed a better way to handle environment variables. But that doesn&amp;rsquo;t make you stall. Things can be improved ;-).&lt;/p&gt;&#xA;&lt;blockquote&gt;&lt;p&gt;Assume you are already using aura framework and is at root of the project.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&lt;p&gt;We are going to make use of &lt;a href=&#34;https://github.com/vlucas/phpdotenv&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;vlucas/phpdotenv&lt;/a&gt; , alternatives are there if you are interested to experiment.&lt;/p&gt;&#xA;&lt;div class=&#34;highlight-wrapper&#34;&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;&#xA;&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1&#xA;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&#xA;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;composer require vlucas/phpdotenv&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&lt;/div&gt;&lt;/div&gt;&#xA;&lt;p&gt;Edit the file &lt;code&gt;config/_env.php&lt;/code&gt; and add &lt;code&gt;Dotenv::load(/path/to/.env);&lt;/code&gt; to the first line. If you have not modified anything it will look as below&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Speed Up Configuration in Aura v2</title>
      <link>https://harikt.com/blog/2014/12/06/speedup-configuration-aura-v2/</link>
      <pubDate>Sat, 06 Dec 2014 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2014/12/06/speedup-configuration-aura-v2/</guid>
      <description>&lt;p&gt;Aura v2 added auto resolution in-order to help lazy people writing configuration manually. Even though it was introduced to help, &lt;a href=&#34;https://github.com/auraphp/Aura.Di/blob/2.1.0/README.md#auto-resolution-of-parameter-values&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;it introduced a few issues&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;So auto resolution will be disabled in the future. Some of the complains/suggestions are how to easily write the di configuration.&lt;/p&gt;&#xA;&lt;p&gt;So introducing you &lt;a href=&#34;https://github.com/friendsofaura/FOA.DiConfig&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;FOA.DiConfig&lt;/a&gt;&lt;/p&gt;&#xA;&#xA;&lt;h2 class=&#34;relative group&#34;&gt;Installation&#xA;    &lt;div id=&#34;installation&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#installation&#34; aria-label=&#34;Anchor&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;highlight-wrapper&#34;&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;&#xA;&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1&#xA;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&#xA;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;composer require foa/di-config&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&lt;/div&gt;&lt;/div&gt;&#xA;&#xA;&lt;h2 class=&#34;relative group&#34;&gt;Usage&#xA;    &lt;div id=&#34;usage&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#usage&#34; aria-label=&#34;Anchor&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h2&gt;&#xA;&lt;div class=&#34;highlight-wrapper&#34;&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;&#xA;&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3&#xA;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&#xA;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;vendor/bin/di-config-dump&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Usage : vendor/bin/di-config-dump /real/path/to/file.php&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;Usage : vendor/bin/di-config-dump /real/path/to/directory&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&lt;/div&gt;&lt;/div&gt;&#xA;&#xA;&lt;h2 class=&#34;relative group&#34;&gt;Example 1&#xA;    &lt;div id=&#34;example-1&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#example-1&#34; aria-label=&#34;Anchor&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Let&amp;rsquo;s assume you have&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Getting Started With Aura v2</title>
      <link>https://harikt.com/blog/2014/10/06/getting-started-with-aura-v2/</link>
      <pubDate>Mon, 06 Oct 2014 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2014/10/06/getting-started-with-aura-v2/</guid>
      <description>&lt;p&gt;Yesterday &lt;a href=&#34;http://auraphp.com/blog/2014/10/05/stable-project-releases/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;aura framework v2 stable released&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Lots of complains about documentation or missing documentation. So this is a quick start. Probably a five minutes walk through. Learn and change to make it better.&lt;/p&gt;&#xA;&#xA;&lt;h2 class=&#34;relative group&#34;&gt;Creating your project&#xA;    &lt;div id=&#34;creating-your-project&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#creating-your-project&#34; aria-label=&#34;Anchor&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Create the project using composer.&lt;/p&gt;&#xA;&lt;div class=&#34;highlight-wrapper&#34;&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;&#xA;&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2&#xA;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&#xA;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;composer create-project aura/web-project quick-start&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;nb&#34;&gt;cd&lt;/span&gt; quick-start&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&lt;/div&gt;&lt;/div&gt;&#xA;&lt;p&gt;The minimal framework don&amp;rsquo;t come with any sort of view integrated. Let us use &lt;code&gt;aura/view&lt;/code&gt;, the two step templating with the help of &lt;code&gt;foa/html-view-bundle&lt;/code&gt;.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Using Aura.Input Forms Inside Slim Framework</title>
      <link>https://harikt.com/blog/2014/09/02/aura-input-form-inside-slim-framework/</link>
      <pubDate>Tue, 02 Sep 2014 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2014/09/02/aura-input-form-inside-slim-framework/</guid>
      <description>&lt;p&gt;Rob Allen wrote about &lt;a href=&#34;http://akrabat.com/zend-framework-2/integrating-zf2-forms-into-slim/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Integrating ZF2 forms into Slim&lt;/a&gt;.&#xA;I did write how you can use &lt;a href=&#34;https://github.com/auraphp/Aura.Input/tree/develop&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Input&lt;/a&gt; and &lt;a href=&#34;https://github.com/auraphp/Aura.Html&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Html&lt;/a&gt; to create &lt;a href=&#34;http://harikt.com/phpform/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;standalone form for PHP&lt;/a&gt;.&#xA;This time I felt I should write about integrating aura input inside &lt;a href=&#34;http://slimframework.com/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Slim&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Let us install a few dependencies &lt;code&gt;aura/input&lt;/code&gt; for building the form and&#xA;&lt;code&gt;aura/html&lt;/code&gt; for the html helpers. You of-course can skip not to use &lt;code&gt;aura/html&lt;/code&gt;&#xA;and build your own helper. I also purposefully left not integrating the powerful&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Filter/tree/develop&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Filter&lt;/a&gt; , but you&#xA;are not limited to integrate any validator you love inside Aura.Input .&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Aura Framework v2: The Missing Manual</title>
      <link>https://harikt.com/blog/2014/07/15/aura-framework-v2-the-missing-manual/</link>
      <pubDate>Tue, 15 Jul 2014 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2014/07/15/aura-framework-v2-the-missing-manual/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://auraphp.com&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura&lt;/a&gt; has an awesome collection of&#xA;&lt;a href=&#34;https://github.com/auraphp&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;libraries&lt;/a&gt; for different purpose.&lt;/p&gt;&#xA;&lt;p&gt;It has components for&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Auth&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;authentication&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Cli&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;cli&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Web&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;request and response&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Router&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;router&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Router&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;dependency injection container&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Dispatcher&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;dispatcher&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Html&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;html&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.View&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;view&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Signal&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;event handlers&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Filter&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;validation&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Sql&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;extended pdo&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.SqlQuery&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;query builders&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.SqlSchema&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;sql schema&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Marshal&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;marshal&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Uri&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;build and modify uri&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Http&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;http&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Intl&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;internationalization&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Session&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;session&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Input&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;forms&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Include&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;includer&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;If you are new to aura, there is probably something you&#xA;may want to figure out yourself.&lt;/p&gt;&#xA;&lt;p&gt;Some of the components have &lt;a href=&#34;http://auraphp.com/packages/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;version 1&lt;/a&gt; and&#xA;&lt;a href=&#34;http://auraphp.com/packages/v2&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;version 2&lt;/a&gt; releases.&#xA;There is a question of which branch corresponds to which version.&lt;/p&gt;&#xA;&lt;p&gt;The v1 packages are in &lt;code&gt;develop&lt;/code&gt; branch and v2 over &lt;code&gt;develop-2&lt;/code&gt; branch.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Extending Plates With Aura.Html Helpers</title>
      <link>https://harikt.com/blog/2014/05/13/extending-plates-with-aura-html-helpers/</link>
      <pubDate>Tue, 13 May 2014 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2014/05/13/extending-plates-with-aura-html-helpers/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://github.com/auraphp/Aura.Html&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Html&lt;/a&gt; provides HTML escapers and helpers, including form input helpers,&#xA;that can be used in any template, view, or presentation system.&lt;/p&gt;&#xA;&lt;p&gt;In this post I would like to give you a short introduction to Aura.Html&#xA;and how you could use with &lt;a href=&#34;http://platesphp.com&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Plates&lt;/a&gt; a native php templating system like &lt;a href=&#34;https://github.com/auraphp/Aura.View&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.View&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/auraphp/Aura.Html&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Html&lt;/a&gt; was extracted from &lt;a href=&#34;https://github.com/auraphp/Aura.View&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.View&lt;/a&gt; helper functions of version 1,&#xA;when we at aura noticed that people who uses &lt;a href=&#34;https://github.com/auraphp/Aura.Input&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Input&lt;/a&gt; may need some html helper&#xA;functions and they may not be using a templating like &lt;a href=&#34;https://github.com/auraphp/Aura.View&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.View&lt;/a&gt;,&#xA;but some other templating system.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Installing an Aura Framework Project via Composer</title>
      <link>https://harikt.com/blog/2014/04/29/installing-aura-framework-project-via-composer/</link>
      <pubDate>Tue, 29 Apr 2014 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2014/04/29/installing-aura-framework-project-via-composer/</guid>
      <description>&lt;p&gt;In this tutorial I am showing how to install aura framework project v2&#xA;via composer.&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;composer create-project -s beta aura/framework-project path-to-project&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/auraphp/Aura.Framework_Project&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Framework_Project&lt;/a&gt; helps&#xA;you to build web and cli applications.&lt;/p&gt;&#xA;&lt;p&gt;If you need only web based application then&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Web_Project&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Web_Project&lt;/a&gt;&#xA;is what you need.&lt;/p&gt;&#xA;&lt;p&gt;{% showterm b971330ea7fd28d22e2f3 %}&lt;/p&gt;&#xA;&lt;p&gt;If you need only cli, then &lt;a href=&#34;https://github.com/auraphp/Aura.Cli_Project&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Cli_Project&lt;/a&gt; helps you.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Using Aura.Dispatcher in Silex</title>
      <link>https://harikt.com/blog/2013/11/06/using-aura-dispatcher-in-silex/</link>
      <pubDate>Wed, 06 Nov 2013 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2013/11/06/using-aura-dispatcher-in-silex/</guid>
      <description>&lt;p&gt;2 days back &lt;a href=&#34;http://paul-m-jones.com/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Paul M Jones&lt;/a&gt; wrote an awesome post&#xA;&lt;a href=&#34;http://auraphp.com/blog/2013/11/04/aura-v2-dispatcher/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;A Peek At Aura v2 &amp;ndash; Aura.Dispatcher&lt;/a&gt;&#xA;the idea behind &lt;a href=&#34;http://github.com/auraphp/Aura.Dispatcher/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Dispatcher&lt;/a&gt;&#xA;and how it was born.&lt;/p&gt;&#xA;&lt;p&gt;So today, let us try to integrate&#xA;&lt;a href=&#34;http://github.com/auraphp/Aura.Dispatcher&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Dispatcher&lt;/a&gt; with&#xA;&lt;a href=&#34;https://github.com/silexphp/Silex&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Silex&lt;/a&gt;. This post is inspired by the&#xA;&lt;a href=&#34;http://auraphp.com/blog/2013/11/04/aura-v2-dispatcher/#comment-1109657910&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;comment&lt;/a&gt;&#xA;made by &lt;a href=&#34;https://twitter.com/cordoval&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Luis Cordova&lt;/a&gt;. Thank you.&lt;/p&gt;&#xA;&lt;div class=&#34;highlight-wrapper&#34;&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;&#xA;&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3&#xA;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&#xA;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;composer create-project silex/silex --no-dev silexproject&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;nb&#34;&gt;cd&lt;/span&gt; silexproject&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;composer require aura/dispatcher dev-develop-2&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&lt;/div&gt;&lt;/div&gt;&#xA;&lt;blockquote&gt;&lt;p&gt;I hope you have composer installed else &lt;a href=&#34;http://getcomposer.org/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;get composer&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&lt;p&gt;I am not going to explain each and everything, the code is self explanatory.&#xA;You can move the classes according to your wish (may be to another folder).&#xA;I am trying to show a simple use case.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Looking at Aura v2</title>
      <link>https://harikt.com/blog/2013/09/28/looking-at-aura-v2/</link>
      <pubDate>Sat, 28 Sep 2013 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2013/09/28/looking-at-aura-v2/</guid>
      <description>&lt;p&gt;If you have noticed recently, there have been tons of commits from&#xA;&lt;a href=&#34;https://github.com/pmjones&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Paul M Jones&lt;/a&gt;﻿ for aura version 2.&lt;/p&gt;&#xA;&lt;p&gt;More standalone repos born. Everyone should try and give feedback as much as possible.&lt;/p&gt;&#xA;&lt;p&gt;Interesting stuffs split from Aura.Sql v 1.3 are&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/auraphp/Aura.Sql/tree/develop-2&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Extended PDO&lt;/a&gt;,&lt;/p&gt;&#xA;&lt;p&gt;As the name says, it is an extended version of PDO. Good thing is it is&#xA;PHP 5.3 compatible.&lt;/p&gt;&#xA;&lt;p&gt;If you have worked with PDO you know the good and bad.&#xA;One of the difficulty is, it cannot use an array for an in clause.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Aura Framework Released</title>
      <link>https://harikt.com/blog/2013/09/19/aura-framework-released/</link>
      <pubDate>Thu, 19 Sep 2013 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2013/09/19/aura-framework-released/</guid>
      <description>&lt;p&gt;It is a great feeling, and one of the happiest moment in my life when&#xA;&lt;a href=&#34;http://auraphp.com/blog/2013/09/18/aura-framework-stable-system-release/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;aura releases its stable framework&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Aura is one of my first framework, which helped me to learn the inner&#xA;working of a framework, how to create a framework, rather than playing&#xA;with full stack framework.&lt;/p&gt;&#xA;&lt;p&gt;If you are interested to learn or contribute in the next version of Aura&#xA;&lt;a href=&#34;http://groups.google.com/group/auraphp&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;join the group&lt;/a&gt;.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>The Book on Aura Moves to the Manual</title>
      <link>https://harikt.com/blog/2013/09/07/book-on-aura-moved-to-manual/</link>
      <pubDate>Sat, 07 Sep 2013 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2013/09/07/book-on-aura-moved-to-manual/</guid>
      <description>&lt;p&gt;Some days back I wrote about a WIP of&#xA;&lt;a href=&#34;http://harikt.com/blog/2013/07/09/the-book-on-aura/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;The Book on Aura&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;It got some attention and pull requests.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/koriym/the-book-on-aura-ja&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Akihito Koriyama&lt;/a&gt;&#xA;have already started to convert the documentation to Japanese.&lt;/p&gt;&#xA;&lt;p&gt;And today I am happy to announce that it is officially going to the&#xA;manuals.&lt;/p&gt;&#xA;&#xA;&lt;h2 class=&#34;relative group&#34;&gt;Contributing&#xA;    &lt;div id=&#34;contributing&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#contributing&#34; aria-label=&#34;Anchor&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Fork&#xA;&lt;a href=&#34;https://github.com/auraphp/auraphp.github.com&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;https://github.com/auraphp/auraphp.github.com&lt;/a&gt;&#xA;and contribute to the manuals.&lt;/p&gt;&#xA;&lt;p&gt;The manuals are in different languages. Currently&lt;br&gt;&#xA;&lt;a href=&#34;https://github.com/koriym/the-book-on-aura-ja&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Akihito Koriyama&lt;/a&gt;&#xA;is working on Japanese translation.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>The Book on Aura</title>
      <link>https://harikt.com/blog/2013/07/09/the-book-on-aura/</link>
      <pubDate>Tue, 09 Jul 2013 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2013/07/09/the-book-on-aura/</guid>
      <description>&lt;p&gt;There has been lot of requests to show how the individual packages&#xA;in aura, can be made use inside the framework.&lt;/p&gt;&#xA;&lt;p&gt;So today I am happy to announce that there is a work in progress&#xA;to make the framework documentation better. I have already started&#xA;the work on the same.&lt;/p&gt;&#xA;&lt;p&gt;You can &lt;a href=&#34;http://auraphp.com/manuals/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;read the chapters online&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;The examples used in the book are also online at&lt;br&gt;&#xA;&lt;a href=&#34;https://github.com/harikt/Example.Package&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;https://github.com/harikt/Example.Package&lt;/a&gt;&lt;/p&gt;&#xA;&lt;blockquote&gt;&lt;p&gt;I hope Something is better than nothing.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Aura.Web: A Page Controller for MVC</title>
      <link>https://harikt.com/blog/2013/06/04/aura-dot-web/</link>
      <pubDate>Tue, 04 Jun 2013 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2013/06/04/aura-dot-web/</guid>
      <description>&lt;p&gt;If you are new to the concept of MVC, or if you are planning to build your&#xA;own framework, probably Aura.Web help you to do the same.&lt;/p&gt;&#xA;&lt;p&gt;Here is the article in phpmaster.com &lt;a href=&#34;http://phpmaster.com/aura-web-auras-page-controller-for-mvc/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Web: Aura’s Page Controller for MVC&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Probably you may also like the article &lt;a href=&#34;http://phpmaster.com/web-routing-in-php-with-aura-router/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Web Routing in PHP with Aura.Router&lt;/a&gt;.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Aura System Released Beta 5</title>
      <link>https://harikt.com/blog/2013/05/25/aura-system-released-beta5/</link>
      <pubDate>Sat, 25 May 2013 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2013/05/25/aura-system-released-beta5/</guid>
      <description>&lt;p&gt;Yesterday Paul M Jones tagged the beta5 for the system repo.&lt;/p&gt;&#xA;&lt;p&gt;So you can download the system from &lt;a href=&#34;http://auraphp.com/system/downloads&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;http://auraphp.com/system/downloads/&lt;/a&gt;&lt;/p&gt;&#xA;&#xA;&lt;h2 class=&#34;relative group&#34;&gt;via composer&#xA;    &lt;div id=&#34;via-composer&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#via-composer&#34; aria-label=&#34;Anchor&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Creating aura framework based projects has been made easy with composer. You can run&lt;/p&gt;&#xA;&lt;pre&gt;&lt;code&gt;php composer.phar create-project -s dev aura/system your-directory&#xA;&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;p&gt;What it does is almost similar to git clone and installing via git as below&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Standalone Forms for PHP</title>
      <link>https://harikt.com/blog/2013/05/23/standalone-form-for-php/</link>
      <pubDate>Thu, 23 May 2013 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2013/05/23/standalone-form-for-php/</guid>
      <description>&lt;p&gt;Yesterday I wrote about &lt;a href=&#34;http://harikt.com/blog/2013/05/21/standalone-forms-and-validation/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Standalone Forms and Validation&lt;/a&gt;. It may need&#xA;a little bit knowledge on how the &lt;a href=&#34;http://auraphp.com/packages&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Filter&lt;/a&gt; works. But that is&#xA;a good start if you want to know how you can integrate the pieces of Aura.&lt;/p&gt;&#xA;&lt;p&gt;Today I think I need to show you the very minimal approach you can take&#xA;to build the form and validate your form. If you want to&#xA;use a powerful validation and filtering use something like &lt;a href=&#34;http://auraphp.com/packages&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Filter&lt;/a&gt;&#xA;or bind your favourite components which does the validation &lt;a href=&#34;https://github.com/Respect/Validation&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Respect&lt;/a&gt;, &lt;a href=&#34;https://github.com/symfony/validator&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Symfony2 Validator&lt;/a&gt;,&#xA;&lt;a href=&#34;https://github.com/vlucas/valitron&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;valitron&lt;/a&gt; and filtering with something like &lt;a href=&#34;https://github.com/rdohms/DMS-Filter&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;DMS-Filter&lt;/a&gt;.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Standalone Forms and Validation in PHP</title>
      <link>https://harikt.com/blog/2013/05/21/standalone-forms-and-validation/</link>
      <pubDate>Tue, 21 May 2013 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2013/05/21/standalone-forms-and-validation/</guid>
      <description>&lt;p&gt;Update : I wrote a very minimal approach &lt;a href=&#34;http://harikt.com/blog/2013/05/23/standalone-form-for-php/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;here&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Recently &lt;a href=&#34;http://auraphp.com/Aura.Input/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Input&lt;/a&gt; was tagged Beta1. I would like to show you how you&#xA;can use &lt;a href=&#34;http://auraphp.com/Aura.Input/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Input&lt;/a&gt;, &lt;a href=&#34;http://auraphp.com/Aura.Filter/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Filter&lt;/a&gt; and &lt;a href=&#34;http://auraphp.com/Aura.View/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.View&lt;/a&gt; to create form.&lt;/p&gt;&#xA;&lt;p&gt;The &lt;a href=&#34;http://auraphp.com/Aura.Input/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Input&lt;/a&gt; itself contains a basic filter implementation. As shown&#xA;in earlier post &lt;a href=&#34;http://harikt.com/blog/2013/02/22/aura-turns-2/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura Turns 2&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;But in this post let us use the power of &lt;a href=&#34;http://auraphp.com/Aura.Filter/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Filter&lt;/a&gt;. As &lt;a href=&#34;http://auraphp.com/Aura.Input/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Input&lt;/a&gt;&#xA;doesn&amp;rsquo;t have a rendering capability you may need to use &lt;a href=&#34;http://auraphp.com/Aura.View/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.View&lt;/a&gt; as&#xA;templating system ( see Using Aura.View ) or use the helper classes provided by &lt;a href=&#34;http://auraphp.com/Aura.View/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.View&lt;/a&gt;&#xA;( see below Without using Aura.View completely )&#xA;or create your own helper classes to render the same from the hints&#xA;( see Hints for the view ).&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Aura Turns 2</title>
      <link>https://harikt.com/blog/2013/02/22/aura-turns-2/</link>
      <pubDate>Fri, 22 Feb 2013 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2013/02/22/aura-turns-2/</guid>
      <description>&lt;p&gt;Looking over &lt;a href=&#34;https://github.com/auraphp/Aura.Router/commit/8de403dc49bf803a1fd641f55726079853716ab7&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;the commits on Aura.Router&lt;/a&gt;, &lt;a href=&#34;https://github.com/auraphp/Aura.Signal&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Signal&lt;/a&gt; etc you will&#xA;notice, &lt;a href=&#34;https://github.com/auraphp&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;aura project&lt;/a&gt; has turned 2.&lt;/p&gt;&#xA;&lt;p&gt;And today, I would like to introduce you, the new born baby still under active&#xA;development and refactoring based on user feedback, the&#xA;&lt;a href=&#34;https://github.com/auraphp/Aura.Input&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;form library for php, Aura.Input&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;The &lt;a href=&#34;https://github.com/auraphp/Aura.Input&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Input&lt;/a&gt;, doesn&amp;rsquo;t have a rendering functionality. But you can always&#xA;use Aura.View or create your own helpers.&lt;/p&gt;&#xA;&lt;p&gt;A basic filtering based on closure exists in &lt;a href=&#34;https://github.com/auraphp/Aura.Input&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Input&lt;/a&gt;. But you are&#xA;not limited, you can use your own filtering components or&#xA;integrate &lt;a href=&#34;https://github.com/auraphp/Aura.Filter&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Filter&lt;/a&gt;.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Aura.Http Request and Response</title>
      <link>https://harikt.com/blog/2013/02/16/aura-dot-http-request-and-response/</link>
      <pubDate>Sat, 16 Feb 2013 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2013/02/16/aura-dot-http-request-and-response/</guid>
      <description>&lt;p&gt;The &lt;code&gt;Aura.Http&lt;/code&gt; package provide you the tool to build and send request and response.&lt;/p&gt;&#xA;&#xA;&lt;h1 class=&#34;relative group&#34;&gt;Instantiation:&#xA;    &lt;div id=&#34;instantiation&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#instantiation&#34; aria-label=&#34;Anchor&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h1&gt;&#xA;&lt;p&gt;The easiest way is&lt;/p&gt;&#xA;&lt;div class=&#34;highlight-wrapper&#34;&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;&#xA;&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2&#xA;&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3&#xA;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&#xA;&lt;td class=&#34;lntd&#34;&gt;&#xA;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-php&#34; data-lang=&#34;php&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;o&#34;&gt;&amp;lt;?&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;php&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;nv&#34;&gt;$http&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;k&#34;&gt;require&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;path/to/Aura.Http/scripts/instance.php&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&lt;/div&gt;&lt;/div&gt;&#xA;&lt;p&gt;What it gives you is an object of &lt;code&gt;Aura\Http\Manager&lt;/code&gt;. If you want to create&#xA;manually you can look into the &lt;code&gt;instance.php&lt;/code&gt;&lt;/p&gt;&#xA;&#xA;&lt;h1 class=&#34;relative group&#34;&gt;Building your Response&#xA;    &lt;div id=&#34;building-your-response&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#building-your-response&#34; aria-label=&#34;Anchor&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h1&gt;&#xA;&lt;p&gt;Probably you may not have bothered too much on building the http response&#xA;either the framework does it for you, or until you need to send the correct&#xA;response.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Aura Framework Releases Beta 4</title>
      <link>https://harikt.com/blog/2012/12/18/aura-framework-releases-beta4/</link>
      <pubDate>Tue, 18 Dec 2012 00:00:00 +0000</pubDate>
      
      <guid>https://harikt.com/blog/2012/12/18/aura-framework-releases-beta4/</guid>
      <description>&lt;p&gt;Aura.Framework released Beta4. In this release &lt;a href=&#34;http://auraphp.github.com/Aura.Framework&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Framework&lt;/a&gt; has extracted the Hello Word package and renamed it as &lt;a href=&#34;http://auraphp.github.com/Aura.Demo&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;Aura.Demo&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;You can get the system as a whole from &lt;a href=&#34;http://auraphp.github.com/system/downloads/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;http://auraphp.github.com/system/downloads/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Read about the release from &lt;a href=&#34;http://auraphp.github.com/2012/12/18/new-system-release/&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;blog post&lt;/a&gt; and join discussion at &lt;a href=&#34;https://groups.google.com/d/topic/auraphp/uPsSK7OqOoI/discussion&#34;  target=&#34;_blank&#34; rel=&#34;noreferrer&#34;&gt;auraphp group&lt;/a&gt;&lt;/p&gt;</description>
      
    </item>
    
  </channel>
</rss>
