2017 © Pedro Peláez
 

symfony-bundle version-bundle

Corley Version Bundle

image

corley/version-bundle

Corley Version Bundle

  • Friday, January 16, 2015
  • by wdalmut
  • Repository
  • 1 Watchers
  • 3 Stars
  • 577 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 8 Versions
  • 0 % Grown

The README.md

CorleyVersionBundle

SensioLabsInsight, (*1)

  • Master: Build Status
  • Develop: Build Status

Just an unified way in order to bump app version for Symfony2 applications, (*2)

In your AppKernel.php, (*3)

public function registerBundles()
{
    ...
    $bundles = array(
        ...
        new Corley\VersionBundle\CorleyVersionBundle(),
    );
    ...
    return $bundles;
}

And use it!, (*4)

app/console corley:version:bump 0.0.1

And see the actual version, (*5)

app/console corley:version:show

The bundle creates/updates a version.yml file in your config folder. That's it no big deal..., (*6)

In your config/config.yml add an import, (*7)

imports:
    - { resource: version.yml }

If you want to print it in your templates, just add the version in your twig configuration, (*8)

# config/config.yml
twig:
    globals:
        version: %version%

Now you can use it in your templates, (*9)

<footer>
    Version: {{ version.number }}
</footer>

You can also append the version number after your static resources, (*10)

{% javascripts
    '@CorleyBaseBundle/Resources/public/js/jquery.min.js'
    '@CorleyBaseBundle/Resources/public/bootstrap/js/bootstrap.min.js'
    '@CorleyBaseBundle/Resources/public/select2/select2.min.js'
    '@CorleyBaseBundle/Resources/public/js/bootstrap-datepicker.js'
    '@CorleyBaseBundle/Resources/public/js/theme.js' filter='uglifyjs' output='js/compiled/base.js' %}
    <script type="text/javascript" src="{{ asset_url }}?v={{ version.number }}"></script>
{% endjavascripts %}

Or you can use it in your git flow release process, (*11)

$ git flow release start 1.0.0
$ app/console corley:version:bump 1.0.0
$ git commit -a -m "Bumped version 1.0.0
$ git flow release finish 1.0.0

Install with composer

In your composer.json add the requirement, (*12)

"require": {
    "corley/version-bundle": "~1"
}

Add also the repository to your composer, (*13)

The Versions

16/01 2015

dev-develop

dev-develop

Corley Version Bundle

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony management version

20/10 2014

dev-master

9999999-dev

Corley Version Bundle

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony management version

20/10 2014

0.0.6

0.0.6.0

Corley Version Bundle

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony management version

01/10 2014

0.0.5

0.0.5.0

Corley Version Bundle

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony management version

01/10 2014

0.0.4

0.0.4.0

Corley Version Bundle

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony management version

01/10 2014

0.0.3

0.0.3.0

Corley Version Bundle

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony management version

30/09 2014

0.0.2

0.0.2.0

Corley Version Bundle

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony management version

30/09 2014

0.0.1

0.0.1.0

Corley Version Bundle

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony management version