z-rosenthal / slim-plus
A Slim Framework skeleton application for rapid development
Installs: 10
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:HTML
Requires
- php: >=5.3.0
- illuminate/database: *
- monolog/monolog: 1.*
- slim/slim: 2.*
- slim/views: 0.*
- twig/twig: 1.*
This package is not auto-updated.
Last update: 2025-04-26 21:03:55 UTC
README
Use this skeleton application to quickly setup and start working on a new Slim Framework application. This application uses the latest Slim and Slim-Views repositories. It also uses Sensio Labs' Twig template library.
This skeleton application was built for Composer. This makes setting up a new Slim Framework application quick and easy.
Install Composer
If you have not installed Composer, do that now. I prefer to install Composer globally in /usr/local/bin
, but you may also install Composer locally in your current working directory. For this tutorial, I assume you have installed Composer locally.
http://getcomposer.org/doc/00-intro.md#installation
Install the Application
After you install Composer, run this command from the directory in which you want to install your new Slim Framework application.
php composer.phar create-project z-rosenthal/slim-plus [my-app-name]
Replace [my-app-name]
with the desired directory name for your new application. You'll want to:
- Point your virtual host document root to your new application's
public/
directory. - Ensure
logs/
andtemplates/cache
are web writeable.
That's it! Now go build something cool.
##Note: For Eloquent ORM You will need to install mysql
sudo apt-get install mysql-server
You will also need to install the php5-mysql package
sudo apt-get install php5-mysql
Then restart apache
sudo /etc/init.d/apache2 restart
The mysql connection info is located in index.php at the top
A user model has been created in the app/models directory