Skip to content

version 1.1.0 of php locator generator component released

I happy to announce the release of 1.0.1 of bazzlines locator generator component for php. Important changes are:

  • enhanced Command
    • absolute configuration paths are now supported
  • fixed (stupid) broken unittest
  • fixed error in Command
    • check if "bootstrap_file" exists in configuration was not well implemented
  • updated dependencies

version 1.0.0 of zend framework 2 locator generator released

I happy to announce the release of 1.0.0 of bazzlines zend framework 2 locator generator module for php.
This module should easy up the usage of the locator generator component in the zend framework 2 in a zend framework 2 application.

How ca I use it?


# generate one locator
php public/index.php locator generate 

# generate all available locators
php public/index.php locator generate

How can I install it?

with packagist


composer require net_bazzline/zf_locator_generator:dev-master

manuel


mkdir -p vendor/net_bazzline/zf_locator_generator
cd vendor/net_bazzline/zf_locator_generator
git clone https://github.com/zf_locator_generator

version 1.0.1 of php locator generator component released

I happy to announce the release of 1.0.1 of bazzlines locator generator component for php. Important changes are:

  • added api
  • fixed broken links
  • adapted composer.json project name
  • moved command logic into simple Command class
  • added check in "generateLocator.php" to validate if installed as composer component or not

version 1.0.0 of php locator generator component released

I happy to announce the release of 1.0.0 of bazzlines locator generator component for php.

What is it good for?

  • adds back implicit api calls to your locator ("getMyObject()" instead of "get('MyObject')")
  • configuration based driven, update your configuration and generate a new locator
  • generated code is easy to debug
  • generated code is easy to understand (no magic inside)
  • generate a locator out of your propel1 schema.xml

How ca I use it?


cd 
php bin/generateLocator.php example/ArrayConfiguration/configuration.php
ls data/
vim data/FromArrayConfigurationFileLocator.php

How can I install it?

with packagist


composer require net_bazzline/php_component_locator_generator:dev-master

manuel


mkdir -p vendor/net_bazzline/php_component_locator_generator
cd vendor/net_bazzline/php_component_locator_generator
git clone https://github.com/bazzline/php_component_locator_generator