Download the PHP package qafoolabs/symfony2-workshop without Composer

On this page you can find all versions of the php package qafoolabs/symfony2-workshop. 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 symfony2-workshop

Qafoo Symfony2 Workshop

This repository hosts a Symfony2 application used for Symfony Testing and Doctrine2 workshops. It is a derivation of the Symfony Standard Distribution that is explicitly build for teaching Functional Testing in a Symfony2 application.

Installation

When you have trouble intalling this application before a workshop, send an email to [email protected] with your errors/problems and we try to help you.

If you don't have Composer installed, go to: http://getcomposer.org/download/ Install Composer as described.

If you have Composer installed on your machine, go into your working directory and call depending on:

composer create-project qafoolabs/symfony2-workshop symfony-ws dev-master --prefer-dist

or

php composer.phar create-project qafoolabs/symfony2-workshop symfony-ws dev-master --prefer-dist

This will create a new project with this application and download all the dependencies.

Experiencing Github API Rate Limitations?

If you are executing the composer installation during the workshop, it is possible Github limits the amount of calls through Composer by IP address. You have to create an OAuth token to continue:

  1. Create a Github account if you don't have one yet
  2. From the Commandline call:

    curl -u 'your_github_user' -d '\{"note":"Workshop"\}' https://api.github.com/authorizations
  3. Update your composer.json with the Token in the result:

    {
        "config": {
            "github-oauth": {
                "github.com":"tokenhere"
            }
        }
    }

Database Configuration

By default this example application will use SQLite as a database. To configure another database to use during the workshop go to app/config/config.yml and change the configuration as explained in the file. You can uncomment the specific sections for MySQL or PostgreSQL to change the database.

Setup Webserver

Unless you have PHP 5.4 installed, you have to setup a webserver like Apache or Nginx to serve your project.

With PHP 5.4 starting your Symfony application is as simple as calling:

php app/console server:run

If you dont have 5.4, see Symfony documentation on (how to configure with a webserver)[http://symfony.com/doc/current/cookbook/configuration/web_server_configuration.html].

Don't forget to adjust your /etc/hosts to point to the workshop webserver.


All versions of symfony2-workshop with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.3
symfony/symfony Version 2.3.*
doctrine/orm Version ~2.3
doctrine/doctrine-bundle Version @stable
twig/extensions Version @stable
symfony/monolog-bundle Version @stable
sensio/distribution-bundle Version @stable
sensio/generator-bundle Version @stable
behat/behat Version @stable
behat/mink-goutte-driver Version @stable
behat/symfony2-extension Version @stable
behat/mink-extension Version @stable
behat/mink-browserkit-driver Version @stable
behat/mink-sahi-driver Version @stable
phpunit/phpunit Version @stable
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 qafoolabs/symfony2-workshop contains the following files

Loading the files please wait ....