dev-master
9999999-dev https://github.com/Bharakuda/user_url_shortener.gitJust a test module for UserBundle.
MIT
by Alisa Koprić
url shortener
Just a test module for UserBundle.
Note: This project is still undergoing a lot of changes, (*1)
Installation is a quick 5 step process:, (*2)
Create new project directory and execute git clone command inside of it, (*3)
git clone https://alisa_kopric@bitbucket.org/sightsdigitalteam/url_shortener.git
Simply execute following command, (*4)
composer update
information required by the install script: - database_host: - database_port: - database_name: - database_username: - database_password: - mailer_transport: - mailer_host: - mailer_username: - mailer_password: - secret:, (*5)
Register the bundle in AppKernel.php:, (*6)
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new UserBundle\UserBundle(), ); }
Configuration in your config.yml: -> uncomment resource line, (*7)
app/config/config.yml, (*8)
imports: # - { resource: "@UserBundle/Resources/config/services.yml" }
Configuration in your routing.yml: -> uncomment lines, (*9)
app/config/routing.yml, (*10)
#user: # resource: "@UserBundle/Controller/" # type: annotation # prefix: /
Prepare your database, (*11)
This implementation takes care about building the database and creating your schema., (*12)
php bin/console doctrine:database:create php bin/console doctrine:schema:update --force
Just a test module for UserBundle.
MIT
url shortener