Download the PHP package tournikoti/tourbillon-framework without Composer

On this page you can find all versions of the php package tournikoti/tourbillon-framework. 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 tourbillon-framework

Tourbillon Framework

Introduction

Tourbillon Framework est un framework PHP comme il en existe déjà un bon paquet.

Installation

executer la commande suivante afin de créer le projet :

Configuration

Pour configurer votre application, dupliquez le fichier app/config/parameters.example.neon et renommez le en parameters.neon.

Vous pouvez modifier le contenu de ce fichier pour la connexion à votre base de données.

La configuration complète de votre application se fera dans le fichier app/config/config.neon.

Le Router

Le router contient toutes les routes de votre application. Une route est un ensemble URL, controller et methode à executer.

Vos routes sont déclarées dans le fichier app/config/routing.neon.

Voici un exemple :

Ici, pour une url comme http://localhost/users, la méthode listAction du controller UserController sera executé.

Voici un exemple avec un paramètre :

Ici, l'URL contient un parametre user. il sera possible de récuperer cette valeur en paramètre de la méthode du controller :

Ici, pour une URL comme http://localhost/users/59, la variable $user sera égale à 59.


All versions of tourbillon-framework with dependencies

PHP Build Version
Package Version
Requires php Version >=5.6
tournikoti/tourbillon Version ^1.0
symfony/var-dumper Version ^3.2
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 tournikoti/tourbillon-framework contains the following files

Loading the files please wait ....