netbull / security-bundle
NetBull Security bundle
Installs: 1 883
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3
- ext-json: *
- browscap/browscap-php: 6.*|7.*|8.*
- netbull/core-bundle: 5.*|6.*
- symfony/framework-bundle: 5.2.*|5.3.*|5.4.*|6.3.*|6.4.*|7.0.*|7.1.*
- symfony/monolog-bundle: 3.*
- symfony/orm-pack: ^2.0
- symfony/validator: 5.4.*|6.3.*|6.4.*|7.0.*|7.1.*
Requires (Dev)
- symfony/phpunit-bridge: 5.1.*|5.2.*|5.4|6.3.*|6.4.*|7.0.*|7.1.*
This package is auto-updated.
Last update: 2024-10-21 08:33:42 UTC
README
Installation
Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
$ composer require netbull/security-bundle
Applications that don't use Symfony Flex
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
$ composer require netbull/security-bundle
This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the app/AppKernel.php
file of your project:
<?php // app/AppKernel.php // ... class AppKernel extends Kernel { public function registerBundles() { $bundles = array( // ... new NetBull\SecurityBundle\NetBullSecurityBundle(), ); // ... } // ... }
Step 3: Configuration
###ToDo..