Overview for 'frameworks'
Written by Sitepoint
/ Original link
on Oct. 15, 2017
Symfony Flex is a modern replacement for the Symfony Installer, and not the name of the next Symfony version. As the intro text says:Internally, Symfony Flex is a Composer plugin that modifies the behavior of the require and update commands. When installing or updating dependencies in a Flex-enable…
Written by Sitepoint
/ Original link
on Sep. 4, 2017
I have learned a few tricks when writing Zend Expressive modules that I want to share with you. Please follow the previous post first to set up a proper working environment. I explained how to install and configure Zend Expressive with Doctrine, Gulp, and an abstract reflection factory - it'll take …
Written by code-diesel
/ Original link
on May. 15, 2017
Here’s a scenario: you’ve been tasked with the creation of a modern app or website for a client or your company. You know you’ll need a dashboard for administrators to add content, manage links and otherwise fairly simple data, and a front-end that turns that data into a brilliant, usable design. …
Written by Sitepoint
/ Original link
on Jan. 28, 2015
In this tutorial, we will see how to use Cockpit CMS to setup a CMS backend and to use the API interface provided by Cockpit to build a customized functional frontend. Not quite like other “heavy weight”, or “fully fledged” CMS’, Cockpit is light weight and “bare”. It only provides a backend to ma…
Written by Sitepoint
/ Original link
on Dec. 15, 2014
Angular.js is the hot new thing right now for designing applications in the client. Well, it’s not so new anymore but is sure as hell still hot, especially now that it’s being used and backed by Google. It takes the idea of a JavaScript framework to a whole new level and provides a great basis for …
Written by Sitepoint
/ Original link
on Dec. 8, 2014
Since PHP 5.4.0, PHP supports a pretty way to reuse code called “Traits” - a set of methods that you can include within another class in order not to repeat yourself. You can read more about traits in previously published SitePoint posts: here, here and here.Today, I am going to show you how they …