Download the PHP package discutea/forum-bundle without Composer

On this page you can find all versions of the php package discutea/forum-bundle. 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 forum-bundle

ForumBundle README.

Lisez-moi Français

SensioLabsInsight Build Status Latest Stable Version Total Downloads

BUNDLE INFORMATION:

This bundle has been conceived with and for Symfony 3 (PHP >= 5.x | 7.x)

Annonce: If my work seems good to you, be aware that I am currently looking for a job.

Available on:

FEATURES:

This bundle includes the following features:

SETUP:

Before setting up everything, this bundle requires that you install KnpPaginatorBundle.

1: Add the dependancy to your composer

composer require discutea/forum-bundle

2: Register DForumBundle in the Symfony kernel

4: Add routes routes

# app/Config/routing.yml

discutea_forum:
    resource: "@DForumBundle/Resources/config/routing.yml"
    prefix:   /

5: Bundle configuration:

User entity

doctrine:
    orm:
        auto_generate_proxy_classes: "%kernel.debug%"
        naming_strategy: doctrine.orm.naming_strategy.underscore
        auto_mapping: true
        resolve_target_entities:
            Symfony\Component\Security\Core\User\UserInterface: Namespace\YourUserBundle\Entity\User

# Stof Doctrine Extensions
stof_doctrine_extensions:
    orm:
        default:
            sluggable: true

# Configuration for knp paginator: don't forget to customize page_name
knp_paginator:
    page_range: 3
    default_options:
        page_name: p
        sort_field_name: sort
        sort_direction_name: direction
        distinct: true
    template:
        pagination: KnpPaginatorBundle:Pagination:twitter_bootstrap_v3_pagination.html.twig
        sortable: KnpPaginatorBundle:Pagination:sortable_link.html.twig

# Configuration for discutea forum
discutea_forum:
    preview:
        enabled: true
    knp_paginator:
        page_name: p  #see knp_paginator.default_option.page_name
        topics:
            enabled: true
            per_page: 10
        posts:
            enabled: true
            per_page: 10

6: Add a ROLE_MODERATOR in app/config/security.yml

7: Update the database

php bin/console doctrine:schema:update --force

8: Install the styles

php bin/console asset:install

All set, browse /forum and start by creating your first category and forum

8: Avoid to 404 http://symfony.com/doc/current/cookbook/routing/redirect_trailing_slash.html

MORE INFO

To get help regarding this bundle or to request features (English and French)

To deal with potential issues, please open a ticket on GitHub.


All versions of forum-bundle with dependencies

PHP Build Version
Package Version
Requires php Version >5.5.0 || ^7.0
symfony/form Version ^2.8 || ^3.0 || ^4.0
symfony/framework-bundle Version ^2.8 || ^3.0 || ^4.0
symfony/security-bundle Version ^2.8 || ^3.0 || ^4.0
symfony/twig-bundle Version ^2.8 || ^3.0 || ^4.0
symfony/validator Version ^2.8 || ^3.0 || ^4.0
twig/twig Version ^1.28 || ^2.0
symfony/templating Version ^2.8 || ^3.0 || ^4.0
doctrine/doctrine-bundle Version ^1.3
doctrine/orm Version ^2.5
swiftmailer/swiftmailer Version ^4.3 || ^5.0 || ^6.0
stof/doctrine-extensions-bundle Version >=1.2
knplabs/knp-paginator-bundle Version >=2.5
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 discutea/forum-bundle contains the following files

Loading the files please wait ....