Skip to content

Releases: auraphp/Aura.Project_Kernel

4.0.0-alpha1

01 Aug 17:28
Compare
Choose a tag to compare
4.0.0-alpha1 Pre-release
Pre-release
  • Added support for new composer installed.json format
  • Updated _Config\Common

2.2.0: Merge pull request #14 from sixcare/hotfix/2.1.2

01 Aug 16:44
d51e2bc
Compare
Choose a tag to compare
  • Add support for the new composer installed.json format #13 . Thank you @sixcare .

2.1.1

27 Mar 22:30
Compare
Choose a tag to compare

This release modifies the testing structure and updates other support files.

2.1.0

06 Nov 19:46
Compare
Choose a tag to compare
  • ADD: Factory::newKernel() and Factory::newContainer() have an added param,
    $auto_resolve, to allow you enable/disable auto-resolution in the container

2.0.0

04 Oct 20:30
Compare
Choose a tag to compare
  • DOC: Update README and docblocks.

  • ADD: Make allowance for *_Bundle packages when loading configs.

  • ADD: Allow multiple config classes for each config mode. Something like this
    might be in a composer.json:

      {
          "extra": { "aura": {
              "type": "project",
              "config": {
                  "common": [
                      "Acme\\Example\\_Config\\AuraSql",
                      "Acme\\Example\\_Config\\Twig"
                  ],
                  "dev": "Acme\\Example\\_Config\\Dev"
              }
          } }
      }
    

    A bigger application might want to separate configuration into several
    different classes. Normal strings still work, but arrays may be used as
    well.

  • FIX: Do not execute the common config twice when the config mode is "common".

  • CHG: Use new service name rules.

  • CHG: Update composer to point to stable releases.

2.0.0-beta1

14 Apr 20:48
Compare
Choose a tag to compare

Initial 2.0 "Google beta" release.