GitXplorerGitXplorer
m

api_baladay

public
5 stars
1 forks
1 issues

Commits

List of commits on branch master.
Unverified
1b28f0adce6ad6d160d840d4eebb1637230bdf1e

deleting files useless

mmarcosdalte committed 8 years ago
Unverified
508c4ae07c8cf20a39ff48e842a2a15af5e89e3b

Merge branch 'development' of github.com:marcosdalte/api_baladay into development

mmarcosdalte committed 8 years ago
Unverified
101e75dfb20d902320f6340ef0f7646b198700a5

using tests and travis

mmarcosdalte committed 8 years ago
Unverified
40864372df7df86738c0c2edb7929b09d9a0de76

added travis build

mmarcosdalte committed 8 years ago
Unverified
42c8747fe706a05ae239bf6467c8b1109a441276

script database

mmarcosdalte committed 8 years ago
Unverified
73f69110874b8e4ef074f1e8ff42c8c817bfebbe

adding files in gitignore

mmarcosdalte committed 8 years ago

README

The README file for this repository.

Slim Framework 3 Skeleton Application

Build Status

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.