해외축구중계스포츠중계축구중계EPL중계스포츠무료중계실시간스포츠
{"id":144,"date":"2016-04-05T22:05:14","date_gmt":"2016-04-05T22:05:14","guid":{"rendered":"https:\/\/www.wdb24.com\/?p=144"},"modified":"2018-04-22T20:49:57","modified_gmt":"2018-04-22T20:49:57","slug":"how-to-install-slim-framework-3-in-windows-using-xampp","status":"publish","type":"post","link":"https:\/\/www.wdb24.com\/how-to-install-slim-framework-3-in-windows-using-xampp\/","title":{"rendered":"How to install Slim Framework 3 in windows using XAMPP"},"content":{"rendered":"

Slim is a powerful php<\/a> micro framework which allows developers to create web applications. In this tutorial I am going to describe you about how to install Slim Framework 3.<\/p>\n

I will use Composer for installing Slim Framework. So I am assuming that you already install Composer on your Windows machine. If you don\u2019t know how to install composer then check my post how to install composer on windows with XAMPP<\/a><\/p>\n

First of all create a directory in your xampp\/htdocs<\/strong> folder. In my example I am taking testSlim <\/strong>folder. Once testSlim folder is created then create composer.json (file name should be same )<\/strong> file inside testSlim <\/strong>folder. <\/strong>Now open composer.json <\/strong>and paste following\u00a0 json code.<\/p>\n

{\r\n\"require\":{\r\n   \"slim\/slim-skeleton\": \"3.*\"\r\n }\r\n}\r\n<\/pre>\n

In the above json code “require” <\/strong>key is telling composer about your project dependencies. \u00a0slim\/slim-skeleton <\/strong>is a package name which consist of two parts first part is vendor name and second part is project name. 3.* <\/strong>is a package version which means any version in the 3 development branch or \u00a0in other words version > 3.0 but < 3.9.<\/p>\n

\n<\/ins>
\n