Download the PHP package jswhetstone/slim-skeleton-bootstrap without Composer

On this page you can find all versions of the php package jswhetstone/slim-skeleton-bootstrap. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package slim-skeleton-bootstrap

Slim Framework Skeleton Application with Bootstrap 3 and LESS

Based on Slim-Skeleton by Josh Lockhart.

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, and Bootstrap 3

Requirements

Composer

node.js

Grunt

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 node.js

Visit http://nodejs.org/ and click the big green "Install" button.

Install Grunt

npm install -g grunt-cli

Install the Application

After you install Composer, node.js, and Grunt run this command from the directory in which you want to install your new Slim Framework application.

php composer.phar create-project jswhetstone/slim-skeleton-bootstrap [my-app-name]

Then CD into your newly created application

cd [my-app-name]

And run the following commands

npm install

grunt bootstrap

Replace [my-app-name] with the desired directory name for your new application. You'll want to:

That's it! Now go build something cool.

Provided Grunt commands

grunt watch Watches the less directory for changes, compiles less when any files in the less directory or subdirectory are modified

grunt dist Compiles all less into minified CSS for distribution

grunt bootstrap Copies all files necessary for Bootstrap to function. NOTE: this WILL OVERWRITE all files in less/bootstrap, as well as js/vendor/bootstrap.min.js and js/vendor/jquery.min.js You Should not need to use this command more than once, at the beginning of your project setup

How to Contribute

Pull Requests

  1. Fork the jswhetstone/slim-skeleton-bootstrap repository
  2. Create a new branch for each feature or improvement
  3. Send a pull request from each feature branch to the develop branch

It is very important to separate new features or improvements into separate feature branches, and to send a pull request for each branch. This allows us to review and pull in new features or improvements individually.


All versions of slim-skeleton-bootstrap with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
monolog/monolog Version 1.*
slim/slim Version 2.*
slim/views Version 0.*
twig/twig Version 1.*
components/jquery Version 1.*
components/bootstrap Version 3.*
jswhetstone/twig-extension Version dev-master
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package jswhetstone/slim-skeleton-bootstrap contains the following files

Loading the files please wait ...