friendsofsymfony / propel1-user-bundle
Propel 1.6 integration for FOSUserBundle
Installs: 17 555
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 15
Forks: 2
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^5.5.9 || ^7.0
- friendsofsymfony/user-bundle: ^2.0
- propel/propel-bundle: ^1.4
- propel/propel1: ^1.6.8
- willdurand/propel-typehintable-behavior: ^1.0.3
Requires (Dev)
- phpunit/phpunit: ^4.8.35 || ^5.7
- symfony/phpunit-bridge: ^3.2
This package is auto-updated.
Last update: 2023-01-10 11:04:18 UTC
README
The FOSPropel1UserBundle provides support for Propel 1.x in FOSUserBundle.
Installation
Install the bundle through composer:
$ composer require friendsofsymfony/propel1-user-bundle "~1.0@dev"
Then enable the bundle in the kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new FOS\UserBundle\FOSUserBundle(), new FOS\Propel1UserBundle\FOSPropel1UserBundle(), // ... ); }
Usage
This bundle will automatically configure FOSUserBundle to use
FOS\Propel1UserBundle\Model\User
as its user class when enabled.
When configuring FOSUserBundle, skip the configuration of the db_driver
and service.user_manager
settings, as well as of the user_class
(unless
you want to change the user class).
License
This bundle is under the MIT license. See the complete license in the bundle
Reporting an issue or a feature request
Issues and feature requests are tracked in the Github issue tracker.
When reporting a bug, it may be a good idea to reproduce it in a basic project built using the Symfony Standard Edition to allow developers of the bundle to reproduce the issue by simply cloning it and following some steps.