Go to file
2024-07-28 18:23:30 -03:00
api clean external js lib to only use the minifyed version 2024-07-28 17:54:56 -03:00
db adds database 2024-07-28 18:23:30 -03:00
fonts initial commit based on 6coloquio site 2017-11-15 15:17:06 -03:00
img add practical information, front-page mañé picture, minor modifications 2017-12-08 11:17:40 -03:00
js add practical information, front-page mañé picture, minor modifications 2017-12-08 11:17:40 -03:00
lib clean external js lib to only use the minifyed version 2024-07-28 17:54:56 -03:00
logs clean external js lib to only use the minifyed version 2024-07-28 17:54:56 -03:00
prgr initial commit based on 6coloquio site 2017-11-15 15:17:06 -03:00
public clean external js lib to only use the minifyed version 2024-07-28 17:59:32 -03:00
src clean external js lib to only use the minifyed version 2024-07-28 17:54:56 -03:00
style - Agrega lista de invited speaker 2017-12-08 13:42:21 -03:00
templates clean external js lib to only use the minifyed version 2024-07-28 17:54:56 -03:00
tests/Functional clean external js lib to only use the minifyed version 2024-07-28 17:54:56 -03:00
vendor clean external js lib to only use the minifyed version 2024-07-28 17:54:56 -03:00
.gitignore clean external js lib to only use the minifyed version 2024-07-28 17:54:56 -03:00
.htaccess fix rewrite for api calls to not redirect 2017-12-05 13:53:05 -03:00
calendario.php initial commit based on 6coloquio site 2017-11-15 15:17:06 -03:00
committess.php - Agrega lista de invited speaker 2017-12-08 13:42:21 -03:00
composer.json change php version 2024-07-28 18:14:10 -03:00
config.php Crea la base de datos, 2017-12-01 21:27:32 -03:00
contact.php fix menu principal links and disable forms 2024-07-28 18:20:50 -03:00
CONTRIBUTING.md clean external js lib to only use the minifyed version 2024-07-28 17:54:56 -03:00
dbconnect.php Crea la base de datos, 2017-12-01 21:27:32 -03:00
docker-compose.yml clean external js lib to only use the minifyed version 2024-07-28 17:54:56 -03:00
favicon.ico add practical information, front-page mañé picture, minor modifications 2017-12-08 11:17:40 -03:00
footer.php initial commit based on 6coloquio site 2017-11-15 15:17:06 -03:00
header.php fix menu principal links and disable forms 2024-07-28 18:20:50 -03:00
index.php add practical information, front-page mañé picture, minor modifications 2017-12-08 11:17:40 -03:00
invitedspeakers.php - Agrega lista de invited speaker 2017-12-08 13:42:21 -03:00
mapa.php initial commit based on 6coloquio site 2017-11-15 15:17:06 -03:00
participants.php Crea la base de datos, 2017-12-01 21:27:32 -03:00
phpunit.xml clean external js lib to only use the minifyed version 2024-07-28 17:54:56 -03:00
practicalinfo.php add practical information, front-page mañé picture, minor modifications 2017-12-08 11:17:40 -03:00
program.php - Agrega lista de invited speaker 2017-12-08 13:42:21 -03:00
programa.php initial commit based on 6coloquio site 2017-11-15 15:17:06 -03:00
README.md clean external js lib to only use the minifyed version 2024-07-28 17:54:56 -03:00
registration.php fix menu principal links and disable forms 2024-07-28 18:20:50 -03:00
robots.txt initial commit based on 6coloquio site 2017-11-15 15:17:06 -03:00
sidebar.php - Agrega lista de invited speaker 2017-12-08 13:42:21 -03:00

Slim Framework 3 Skeleton Application

Use this skeleton application to quickly setup and start working on a new Slim Framework 3 application. This application uses the latest Slim 3 with the PHP-View template renderer. It also uses the Monolog logger.

This skeleton application was built for Composer. This makes setting up a new Slim Framework application quick and easy.

Install the Application

Run this command from the directory in which you want to install your new Slim Framework application.

php composer.phar create-project slim/slim-skeleton [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/ is web writeable.

To run the application in development, you can also run this command.

php composer.phar start

Run this command to run the test suite

php composer.phar test

That's it! Now go build something cool.