1 /** 2 Aedi, a dependency injection framework. 3 4 Aedi is a dependency injection framework. It provides a set of containers that do 5 IoC, and an interface to configure components (structs, objects, or any data possible in D). 6 7 Aim: 8 9 The aim of framework is to provide a dependency injection solution that is 10 feature rich, easy to use, easy to learn, and easy to extend up to your needs. 11 12 Features: 13 14 - Configuration through code or annotations. 15 - Memory management based on std.experimental.allocator for components. 16 - Modular design. 17 - Documentation. Tutorials and api documentation in section below. 18 - Highly tested. 19 - Usable in @safe code. 20 21 See: 22 23 For a comprehensive tutorial on functionality provided please check available examples. 24 For documentation please use a ddoc generator or any available dlang documentation store. 25 26 License: 27 Boost Software License - Version 1.0 - August 17th, 2003 28 29 Permission is hereby granted, free of charge, to any person or organization 30 obtaining a copy of the software and accompanying documentation covered by 31 this license (the "Software") to use, reproduce, display, distribute, 32 execute, and transmit the Software, and to prepare derivative works of the 33 Software, and to permit third-parties to whom the Software is furnished to 34 do so, all subject to the following: 35 36 The copyright notices in the Software and this entire statement, including 37 the above license grant, this restriction and the following disclaimer, 38 must be included in all copies of the Software, in whole or in part, and 39 all derivative works of the Software, unless such copies or derivative 40 works are solely in the form of machine-executable object code generated by 41 a source language processor. 42 43 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 44 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 45 FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT 46 SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE 47 FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, 48 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 49 DEALINGS IN THE SOFTWARE. 50 51 Authors: 52 Alexandru Ermicioi 53 **/ 54 module aermicioi.aedi; 55 56 public import aermicioi.aedi.exception; 57 public import aermicioi.aedi.configurer; 58 public import aermicioi.aedi.factory; 59 public import aermicioi.aedi.container; 60 public import aermicioi.aedi.storage;