Skip to content

DevGears/silex-application

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

silex-application

A basic application to get things up and running.

The aim is to accomplish the following topics:

TOPIC SUBTOPIC STATUS
Template Rendering static contents To do
Rendering dynamic contents To do
Update dynamic templates To do
Session Opening To do
Reading To do
Closing / Cleaning To do
Database Open connection To do
CRUD To do
Transaction To do
Close connection To do
HTTP GET Done
POST To do
Auth Login To do
Logout To do
Clean previous data To do
Routes Basic To do
Acl Rules by user profile To do
Permissions To do
Validation Data types To do
Form validation To do
Filtering Data types To do
Form filtering To do
Messages Form messages To do
Application/User messages To do
Logs Log into files To do
Log into database To do

Installing

  1. git clone this repository, then use composer install to get all Silex dependencies.

  2. Add the following vhost to your Apache httpd-vhosts.conf file (make sure you've enabled mod_rewrite):

<VirtualHost *>
    DocumentRoot "path\to\silex-application\web"
    ServerName silex-application.dev
    <Directory "path\to\silex-application\web">
        AllowOverride All
    </Directory>
</VirtualHost>

I suggest you to create the same folder structure, as follows:

\path\to\silex-application
    \app
    \src
    \tests
    \vendor
    \web

References

I have an eternal gratitude to the authors of the posts above:

Contact

Just ping me at @devdrops

About

A basic application to get things up and running. Check links on README.md file for references.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%